/* ==================== 
   Hero Section 
   ==================== */

.hero-section {
    position: relative;
    height: 900px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    margin: -10.47% -18.52%;
    height: 128.44%;
    width: 137.73%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.42));
    mix-blend-mode: multiply;
}

.hero-nav {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 65px 98px 0;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 18px;
}

.nav-link {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.12px;
    color: var(--white);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -51px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 113px;
    width: 123px;
    font-family: 'Doulos SIL', serif;
    font-weight: bold;
    font-size: 24px;
    color: var(--gold);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 128px;
}

.hero-product {
    width: 404px;
    height: 287px;
    margin-bottom: 77px;
}

.hero-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-heading {
    font-family: 'Doulos SIL', serif;
    font-size: 65px;
    line-height: 0.9;
    margin-bottom: 20px;
    white-space: pre-wrap;
}

.hero-subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color: #FFFAF1;
    max-width: 674px;
    margin-bottom: 66px;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 45px;
    margin-bottom: 50px;
}

.countdown-box {
    backdrop-filter: blur(8px);
    background: rgba(115, 67, 31, 0.7);
    border-radius: 8px;
    padding: 16px;
    width: 125px;
    height: 164px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.countdown-box-seconds {
    width: 118px;
}

.countdown-number {
    font-family: 'Doulos SIL', serif;
    font-size: 64px;
    line-height: 1;
}

.countdown-label {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.btn-shop {
    backdrop-filter: blur(99.707px);
    background: var(--white);
    border-radius: 39.883px;
    padding: 8px 32px;
    height: 48px;
    width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Figtree', sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: var(--black);
    letter-spacing: 0.9971px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-shop:hover {
    background: var(--beige);
}

/* ==================== 
   Products Section 
   ==================== */

.products-section {
    padding: 50px 0;
    background: var(--white);
}

.section-title {
    font-family: 'Doulos SIL', serif;
    font-size: 72px;
    line-height: 0.9;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 50px;
}

.categories-grid-top,
.categories-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.categories-grid-bottom {
    margin-bottom: 0;
}

.category-card {
    position: relative;
    height: 365px;
    overflow: hidden;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: scale(1.02);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
}

.category-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 0.95;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--dark-brown);
}

.popular-badge {
    position: absolute;
    top: 313px;
    right: 0;
    background: var(--red);
    padding: 4px 10px;
    border-radius: 4px 0 0 4px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 13.92px;
    color: var(--white);
    letter-spacing: 1.1136px;
    text-transform: uppercase;
}

.category-disabled {
    opacity: 0.5;
}

.category-inactive {
    opacity: 0.25;
}

/* ==================== 
   Divider Sections 
   ==================== */

.divider {
    height: 175px;
    transform: scaleY(-1);
}

.divider-light {
    background: #F0F0F0;
}

.divider-beige {
    background: rgba(211, 178, 171, 0.4);
}

/* ==================== 
   About Section 
   ==================== */

.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.section-title-left {
    font-family: 'Doulos SIL', serif;
    font-size: 72px;
    line-height: 0.945;
    color: var(--dark-brown);
    margin-bottom: 24px;
}

.about-quote {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 36px;
    line-height: 1.5;
    color: var(--dark-brown);
    margin-bottom: 30px;
}

.about-description {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: var(--light-brown);
}

.about-description p {
    margin-bottom: 16px;
}

.about-image {
    height: 590px;
    width: 618px;
    overflow: hidden;
}

.about-image img {
    height: 142.75%;
    width: 102.01%;
    object-fit: cover;
    margin-left: -1.19%;
    margin-top: -4.24%;
}

/* ==================== 
   Testimonials Section 
   ==================== */

.testimonials-section {
    padding: 100px 0;
    background: var(--tan);
}

.section-title-dark {
    font-family: 'Doulos SIL', serif;
    font-size: 65px;
    line-height: normal;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 76px;
}

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

.testimonial-image {
    height: 370px;
    overflow: hidden;
}

.testimonial-tall {
    height: 528px;
    margin-top: -66px;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-tall img {
    width: 100%;
}

.testimonial-content {
    text-align: center;
}

.testimonial-name {
    font-family: 'Figtree', sans-serif;
    font-size: 36px;
    line-height: 1.5;
    color: var(--dark-brown);
    margin-bottom: 10px;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 37px;
}

.star {
    font-size: 20px;
}

.star-filled {
    color: #FDB140;
}

.star-empty {
    color: #FDB140;
}

.testimonial-text {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.2px;
    color: #523016;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== 
   Blog Section 
   ==================== */

.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title-blog {
    font-family: 'Doulos SIL', serif;
    font-size: 72px;
    line-height: 0.9;
    color: var(--dark-brown);
    text-align: center;
    letter-spacing: -2.16px;
    margin-bottom: 68px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.blog-card {
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 386.638px;
    overflow: hidden;
    margin-bottom: 50px;
}

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

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

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-category,
.blog-date {
    font-family: 'Figtree', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.47;
    letter-spacing: 1.33px;
    text-transform: uppercase;
    color: var(--dark-brown);
    opacity: 0.8;
}

.blog-separator {
    color: var(--dark-brown);
    opacity: 0.8;
}

.blog-title {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 0.95;
    letter-spacing: -1.08px;
    color: var(--dark-brown);
}

/* ==================== 
   Features Section 
   ==================== */

.features-section {
    padding: 80px 0;
    background: var(--beige);
}

.features-title {
    font-family: 'Doulos SIL', serif;
    font-size: 32px;
    line-height: 1.5;
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 95px;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-text {
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.12px;
    text-transform: uppercase;
    color: var(--dark-brown);
}

.features-cta {
    font-family: 'Doulos SIL', serif;
    font-size: 32px;
    line-height: 1.5;
    color: var(--dark-brown);
    text-align: center;
}

/* ==================== 
   Responsive Design 
   ==================== */

@media (max-width: 1200px) {
    .hero-nav {
        padding: 65px 60px 0;
    }
    
    .about-grid {
        gap: 32px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 700px;
    }
    
    .hero-nav {
        flex-direction: column;
        gap: 20px;
        padding: 40px 40px 0;
    }
    
    .nav-logo {
        position: static;
        transform: none;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-product {
        width: 300px;
        height: 200px;
        margin-bottom: 40px;
    }
    
    .hero-heading {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        max-width: 500px;
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .countdown-box {
        width: 90px;
        height: 120px;
    }
    
    .countdown-number {
        font-size: 48px;
    }
    
    .countdown-label {
        font-size: 14px;
    }
    
    .categories-grid-top,
    .categories-grid-bottom {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        width: 100%;
        height: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-tall {
        margin-top: 0;
        height: 370px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 600px;
    }
    
    .hero-heading {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        max-width: 350px;
    }
    
    .countdown-timer {
        gap: 12px;
    }
    
    .countdown-box {
        width: 70px;
        height: 100px;
        padding: 8px;
    }
    
    .countdown-number {
        font-size: 36px;
    }
    
    .countdown-label {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 48px;
    }
}
