/* =====================================================
   RESET & BASE STYLES
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-brown: #B08968;
    --dark-brown: #7F5539;
    --light-beige: #F5F1E8;
    --cream: #FAF7F0;
    --sage-green: #9CAF88;
    --dark-green: #6B8E23;
    --white: #FFFFFF;
    --charcoal: #3A3A3A;
    --light-gray: #E8E4DC;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Transitions */
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    --primary-brown: #d49e95;
    --dark-brown: #E6D2B5;
    --light-beige: #2C2C2C;
    --cream: #1E1E1E;
    --sage-green: #B5C9A0;
    --dark-green: #8FA76B;
    --white: #3d3c3c;
    --charcoal: #000000;
    --light-gray: #404040;

    /* Box shadows need adjustment for dark mode visibility */
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-brown);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--primary-brown);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    transition: var(--transition);
    position: relative;
}

.icon-btn:hover {
    color: var(--primary-brown);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--dark-brown);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--charcoal);
    transition: var(--transition);
}

/* =====================================================
   ACTIVE NAVIGATION LINK STYLE
   Add this to your style.css file
   ===================================================== */

/* Active Navigation Link with Underline */
.nav-menu a.active {
    color: var(--primary-brown);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-brown);
}

/* Optional: Add smooth transition for the underline effect */
.nav-menu a {
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-brown);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    transform: scaleX(1);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--cream) 100%);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(176, 137, 104, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(156, 175, 136, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    text-align: center;
    z-index: 1;
    margin-top: -60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(68px, 8vw, 70px);
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--charcoal);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--primary-brown);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-brown), transparent);
    animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--dark-brown);
    color: white;
    border-color: var(--dark-brown);
}

.btn-primary:hover {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(127, 85, 57, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-brown);
    border-color: var(--dark-brown);
}

.btn-secondary:hover {
    background-color: var(--dark-brown);
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-brown);
    border-color: var(--primary-brown);
}

.btn-outline:hover {
    background-color: var(--primary-brown);
    color: white;
}

/* =====================================================
   SECTIONS
   ===================================================== */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--dark-brown);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* =====================================================
   VALUE PROPOSITION
   ===================================================== */
.value-proposition {
    padding: var(--section-padding);
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.value-card {
    text-align: center;
}

.value-icon {
    color: var(--primary-brown);
    margin-bottom: 24px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-description {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 15px;
}

/* =====================================================
   FEATURED PRODUCTS
   ===================================================== */
.featured-products {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.quick-view-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: white;
    color: var(--dark-brown);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .quick-view-btn {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.product-info {
    padding: 24px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark-brown);
    margin-bottom: 8px;
    font-weight: 600;
}

.product-tagline {
    font-size: 13px;
    color: var(--sage-green);
    margin-bottom: 12px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    color: #FFB800;
    font-size: 14px;
}

.review-count {
    font-size: 13px;
    color: #888;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-brown);
}

.btn-add-cart {
    background-color: var(--light-beige);
    color: var(--dark-brown);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);

}

.btn-add-cart:hover {
    background-color: var(--dark-brown);
    color: white;
}

.btn-add-cart a {
    text-decoration: none;
    color: var(--dark-brown);

}

.btn-add-cart:hover a {
    /* background-color: var(--dark-brown); */
    color: white;
}



/* =====================================================
   PROCESS SECTION
   ===================================================== */
.process-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--white) 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--primary-brown);
    opacity: 0.2;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 16px;
    font-weight: 600;
}

.step-description {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 15px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.testimonial-card {
    text-align: center;
    padding: 60px 40px;
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.testimonial-card.prev {
    transform: translateX(-100%);
}

.testimonial-rating {
    color: #FFB800;
    font-size: 24px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 32px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--dark-brown);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--sage-green);
    font-size: 14px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: 2px solid var(--light-gray);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    border-color: var(--primary-brown);
    background-color: var(--primary-brown);
    color: white;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background-color: var(--primary-brown);
    width: 30px;
    border-radius: 5px;
}

/* =====================================================
   SUSTAINABILITY SECTION
   ===================================================== */
.sustainability-section {
    padding: var(--section-padding);
    background-color: var(--cream);
}

.sustainability-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sustainability-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.sustainability-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.sustainability-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sustainability-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--primary-brown) 100%);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.newsletter-description {
    font-size: 16px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
}

.newsletter-form .btn-primary {
    background-color: white;
    color: var(--dark-brown);
    border-color: white;
}

.newsletter-form .btn-primary:hover {
    background-color: var(--light-beige);
}

.newsletter-incentive {
    font-size: 14px;
    opacity: 0.8;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background-color: var(--charcoal);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-brown);
}

.footer-text {
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-brown);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-brown);
}

.footer-trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
    font-size: 13px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    opacity: 0.6;
    font-size: 14px;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .carousel-btn {
        display: none;
    }

    .sustainability-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        padding: 40px 24px;
        gap: 24px;
        transition: var(--transition);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .values-grid {
        gap: 40px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
    }

    .process-timeline {
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-trust-badges {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section {
    padding: var(--section-padding);
    background-color: var(--light-beige);
}

.blog-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--charcoal);
    margin-top: -40px;
    margin-bottom: 60px;
    opacity: 0.8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--dark-brown);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: var(--sage-green);
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--dark-brown);
    gap: 8px;
}


/* =====================================================
   PARTNERS SECTION
   ===================================================== */
.partners-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.partners-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--charcoal);
    margin-top: -40px;
    margin-bottom: 60px;
    opacity: 0.8;
}

.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: var(--cream);
    border-radius: 8px;
    transition: var(--transition);
    min-width: 200px;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.partner-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--light-beige);
}

.partner-name {
    font-weight: 600;
    color: var(--dark-brown);
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   SEARCH MODAL
   ===================================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 24px 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    background-color: white;
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--charcoal);
}

.search-close-btn:hover {
    background-color: var(--light-beige);
    color: var(--dark-brown);
}

.search-input-wrapper {
    position: relative;
    padding: 24px;
    border-bottom: 2px solid var(--light-gray);
}

.search-icon {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-brown);
}

.search-modal-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: none;
    font-size: 18px;
    color: var(--charcoal);
    background-color: transparent;
    outline: none;
}

.search-modal-input::placeholder {
    color: #999;
}

.search-results {
    max-height: 500px;
    overflow-y: auto;
    padding: 24px;
}

.search-placeholder {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-size: 15px;
}

.search-results-header {
    font-size: 13px;
    color: var(--sage-green);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--charcoal);
    transition: var(--transition);
    background-color: var(--cream);
}

.search-result-item:hover {
    background-color: var(--light-beige);
    transform: translateX(4px);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.search-result-name mark {
    background-color: var(--primary-brown);
    color: white;
    padding: 2px 4px;
    border-radius: 3px;
}

.search-result-category {
    font-size: 13px;
    color: var(--sage-green);
}

.search-result-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-left: 16px;
}

.search-no-results {
    text-align: center;
    padding: 60px 20px;
}

.search-no-results svg {
    color: var(--primary-brown);
    margin-bottom: 16px;
}

.search-no-results h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 8px;
}

.search-no-results p {
    color: var(--charcoal);
    font-size: 15px;
}

.search-no-results a {
    color: var(--primary-brown);
    text-decoration: underline;
    font-weight: 600;
}

.search-no-results a:hover {
    color: var(--dark-brown);
}


/* =====================================================
   VISITOR COUNTER
   ===================================================== */
.visitor-counter {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: var(--charcoal);
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: var(--transition);
}

.visitor-counter:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateX(-50%) translateY(-2px);
}

.visitor-counter-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.visitor-counter-content svg {
    color: var(--primary-brown);
    flex-shrink: 0;
}

.visitor-label {
    font-weight: 500;
    color: var(--charcoal);
}

.visitor-count {
    font-weight: 700;
    color: var(--dark-brown);
    min-width: 40px;
    text-align: left;
}

/* =====================================================
   WHATSAPP CHAT BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 10px;
    left: 10px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: white;
    color: var(--charcoal);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */


/* =====================================================
   NEWSLETTER POPUP
   ===================================================== */
.newsletter-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-popup-content {
    background-color: white;
    padding: 48px 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.newsletter-popup-overlay.active .newsletter-popup-content {
    transform: scale(1) translateY(0);
}

.newsletter-popup-icon {
    margin-bottom: 24px;
}

.newsletter-popup-content.success .newsletter-popup-icon svg {
    color: var(--sage-green);
    stroke-width: 2.5;
}

.newsletter-popup-content.error .newsletter-popup-icon svg {
    color: #D32F2F;
    stroke-width: 2.5;
}

.newsletter-popup-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 16px;
    font-weight: 600;
}

.newsletter-popup-message {
    font-size: 16px;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 32px;
}

.newsletter-popup-close {
    min-width: 140px;
}

/* Responsive */
@media (max-width: 480px) {
    .newsletter-popup-content {
        padding: 36px 24px;
    }

    .newsletter-popup-title {
        font-size: 24px;
    }

    .newsletter-popup-icon svg {
        width: 50px;
        height: 50px;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* =====================================================
   THEME TOGGLE
   ===================================================== */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
}

.theme-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-brown);
    transform: rotate(15deg);
}

[data-theme='dark'] .theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}