/* ==========================================
   Reset & Global Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5 {
    font-family: 'BenchNine', sans-serif;
    color: #626262;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* ==========================================
   Header
   ========================================== */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

/* ==========================================
   Navigation
   ========================================== */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
    display: block;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0A0A0A;
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* ==========================================
   Hero Slider
   ========================================== */
.hero-slider {
    background-color: #333;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(98,98,98,0.5) 100%);
}

.slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.slide-content h2 {
    font-size: 60px;
    color: #fff;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0A0A0A;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #626262;
}

/* ==========================================
   Product Spotlight Section
   ========================================== */
.product-spotlight {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 50px;
    color: #0A0A0A;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0A0A0A;
}

.product-info p {
    color: #626262;
    margin-bottom: 20px;
}

/* ==========================================
   Warranty Section
   ========================================== */
.warranty-section {
    background-color: #0A0A0A;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.warranty-section h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
}

.warranty-section p {
    font-size: 20px;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #f5f5f5;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #626262;
    color: #f5f5f5;
    font-size: 14px;
}

/* ==========================================
   Content Pages
   ========================================== */
.page-content {
    background-color: #fff;
    padding: 60px 0;
    min-height: 500px;
}

.page-header {
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 48px;
    color: #0A0A0A;
}

.catalog-note {
    font-style: italic;
    color: #626262;
    margin-top: 8px;
}

/* ==========================================
   Catalog Page
   ========================================== */
.category-filter {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    background-color: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background-color: #e0e0e0;
    border-color: #626262;
}

.filter-btn.active {
    background-color: #0A0A0A;
    color: #fff;
    border-color: #0A0A0A;
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.catalog-product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.catalog-product-card.hidden {
    display: none;
}

.catalog-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.catalog-product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.catalog-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.3s ease;
}

.catalog-product-card:hover .catalog-product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #0A0A0A;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.catalog-product-info {
    padding: 25px;
}

.catalog-product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #0A0A0A;
}

.product-description {
    color: #626262;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 45px;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 15px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
    display: inline-block;
}

.catalog-info-box {
    background: linear-gradient(135deg, #0A0A0A 0%, #626262 100%);
    color: #fff;
    padding: 50px;
    border-radius: 8px;
    margin-top: 50px;
}

.catalog-info-box h2 {
    color: #fff;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
}

.info-item h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.info-item p {
    line-height: 1.8;
    opacity: 0.95;
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0A0A0A;
}

.contact-details p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-details a {
    color: #0A0A0A;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.info-box {
    background-color: #f5f5f5;
    padding: 20px;
    border-left: 4px solid #0A0A0A;
    margin-top: 25px;
    border-radius: 4px;
}

.info-box p {
    margin: 0;
    font-style: italic;
    color: #626262;
}

.market-dates {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.market-dates h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #0A0A0A;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.month-block {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.month-block h3 {
    font-size: 24px;
    color: #0A0A0A;
    margin-bottom: 12px;
    border-bottom: 2px solid #0A0A0A;
    padding-bottom: 8px;
}

.month-block p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
}

/* ==========================================
   Product Detail Page
   ========================================== */
.product-detail-page {
    background-color: #fff;
}

.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: #626262;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #0A0A0A;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #626262;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    padding: 40px;
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    background-color: #f5f5f5;
}

.thumbnail:hover {
    border-color: #626262;
}

.thumbnail.active {
    border-color: #0A0A0A;
}

.product-info-detail h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #0A0A0A;
}

.product-badge-detail {
    display: inline-block;
    background-color: #0A0A0A;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-sku {
    color: #626262;
    font-size: 14px;
    margin-bottom: 25px;
}

.product-price-large {
    font-size: 48px;
    font-weight: 700;
    color: #0A0A0A;
    margin-bottom: 15px;
}

.stock-status {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 30px;
}

.stock-status.in-stock {
    color: #28a745;
}

.product-description-box {
    background-color: #f5f5f5;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #0A0A0A;
}

.product-description-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0A0A0A;
}

.product-description-box p {
    line-height: 1.8;
    margin-bottom: 12px;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0A0A0A;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td {
    padding: 12px 0;
    font-size: 15px;
}

.specs-table td:first-child {
    width: 40%;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-secondary {
    background-color: #626262;
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #0A0A0A;
}

.product-guarantee {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 8px;
}

.guarantee-box {
    text-align: center;
    padding: 20px;
}

.guarantee-box h3 {
    font-size: 24px;
    color: #0A0A0A;
    margin-bottom: 15px;
}

.guarantee-box p {
    line-height: 1.8;
    color: #333;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-slider {
        height: 350px;
    }

    .slide-content h2 {
        font-size: 40px;
    }

    .slide-content p {
        font-size: 18px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        grid-template-columns: 1fr;
    }

    .dates-grid {
        grid-template-columns: 1fr 1fr;
    }

    .market-dates {
        padding: 20px;
    }

    .products-catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-info-box {
        padding: 30px 20px;
    }

    .category-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
    }

    .product-info-detail h1 {
        font-size: 32px;
    }

    .product-price-large {
        font-size: 36px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
        text-align: center;
    }

    .product-guarantee {
        padding: 30px 20px;
    }
}
