* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif Devanagari', 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a3c34 0%, #2e5a4e 50%, #4a7043 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    transition: background-color 0.3s ease;
}

body.light-theme {
    background: linear-gradient(135deg, #f0f4e6 0%, #d9e4c3 50%, #c5d9a8 100%);
    color: #1a3c34;
}

.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 5px;
    height: 5px;
    background: linear-gradient(45deg, #00d4ff, #4a7043);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(180deg); }
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(26, 60, 52, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #00d4ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 1px;
    background: #00d4ff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #00d4ff;
}

.nav-item {
    position: relative;
}

.nav-item.active .nav-link {
    color: #00d4ff;
}

.nav-item .fa-chevron-down {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 60, 52, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    display: none;
    z-index: 1000;
    min-width: 200px;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.dropdown-item.active {
    color: #00d4ff;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 1200;
}

.nav-toggle:hover {
    color: #00d4ff;
}

.language-toggle {
    position: relative;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    color: #00d4ff;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: rgba(26, 60, 52, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    z-index: 1000;
}

.language-dropdown.show {
    display: block;
}

.language-dropdown a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
    transition: background 0.3s ease;
}

.language-dropdown a:hover {
    background: rgba(0, 212, 255, 0.2);
}

.theme-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    color: #00d4ff;
}

.cta-button {
    padding: 12px 35px;
    background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: rgba(26, 60, 52, 0.95);
    border-right: 2px solid rgba(0, 212, 255, 0.3);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1200;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

body.light-theme .mobile-nav {
    background: #f0f4e6;
    color: #1a3c34;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1201;
}

.mobile-nav-logo {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-close {
    background: rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.4);
    border-radius: 8px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

body.light-theme .mobile-close {
    color: #1a3c34;
}

.mobile-close:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.3);
    transform: rotate(90deg);
}

.mobile-nav-menu {
    padding: 25px;
}

.mobile-nav-item {
    margin-bottom: 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

body.light-theme .mobile-nav-item {
    background: rgba(26, 60, 52, 0.03);
    border-color: rgba(26, 60, 52, 0.08);
}

.mobile-nav-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

body.light-theme .mobile-nav-link {
    color: #1a3c34;
}

.mobile-nav-link.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.mobile-dropdown-toggle {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

body.light-theme .mobile-dropdown-toggle {
    color: #1a3c34;
}

.mobile-dropdown-toggle:hover {
    color: #00d4ff;
}

.mobile-dropdown {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin: 0 20px 10px;
    padding: 10px;
}

body.light-theme .mobile-dropdown {
    background: rgba(26, 60, 52, 0.05);
    border-color: rgba(26, 60, 52, 0.1);
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown-item {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-size: 16px;
    transition: all 0.3s ease;
}

body.light-theme .mobile-dropdown-item {
    color: #1a3c34;
}

.mobile-dropdown-item:hover {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1100;
    display: none;
}

.nav-overlay.active {
    display: block;
}

.hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 50px 50px;
            overflow: hidden;
        }

        .hero-container {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
            width: 100%;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
            animation: fadeInUp 1s ease-out forwards;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(0, 212, 255, 0.2);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
            animation: pulse 2s infinite;
            border: 1px solid rgba(0, 212, 255, 0.3);
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .hero-title {
            font-size: 52px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 19px;
            opacity: 0.85;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .primary-btn {
            padding: 16px 45px;
            background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
            border: none;
            border-radius: 50px;
            color: #ffffff;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: slideInLeft 1s ease-out 0.2s forwards;
            opacity: 0;
            font-size: 16px;
        }

        @keyframes slideInLeft {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .secondary-btn {
            padding: 16px 45px;
            background: transparent;
            border: 2px solid #00d4ff;
            border-radius: 50px;
            color: #00d4ff;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: slideInRight 1s ease-out 0.4s forwards;
            opacity: 0;
            font-size: 16px;
        }

        @keyframes slideInRight {
            0% {
                opacity: 0;
                transform: translateX(20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .primary-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
            background: linear-gradient(135deg, #4a7043 0%, #00d4ff 100%);
        }

        .secondary-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
            background: #00d4ff;
            color: #ffffff;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 20px;
        }

        .stat {
            text-align: center;
            animation: fadeIn 1s ease-out 0.6s forwards;
            opacity: 0;
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        .stat-number {
            display: block;
            font-size: 28px;
            font-weight: 700;
            color: #00d4ff;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            opacity: 0.8;
        }

        .hero-visual {
            flex: 1;
            max-width: 600px;
            position: relative;
            animation: slideInRight 1s ease-out forwards;
        }

        .product-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .carousel-slide {
            display: none;
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            width: 100%;
            box-sizing: border-box;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .carousel-slide.active {
            display: block;
            animation: slideInCarousel 0.8s ease-out forwards;
        }

        @keyframes slideInCarousel {
            0% {
                opacity: 0;
                transform: translateY(30px) scale(0.95);
            }
            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .product-image {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 16px;
            transition: transform 0.3s ease;
            display: block;
            max-width: 100%;
            margin-bottom: 20px;
        }

        .carousel-slide.active .product-image {
            transform: scale(1.02);
        }

        .product-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: #00d4ff;
        }

        .carousel-nav {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: #00d4ff;
            transform: scale(1.2);
            box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .floating-element {
            position: absolute;
            background: rgba(26, 60, 52, 0.9);
            padding: 12px 18px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            text-align: center;
            font-size: 12px;
            animation: floatElement 6s ease-in-out infinite;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        @keyframes floatElement {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }

        .top-left {
            top: 40px;
            left: 40px;
            animation-delay: 0s;
        }

        .top-right {
            top: 40px;
            right: 40px;
            animation-delay: 1s;
        }

        .bottom-left {
            bottom: 100px;
            left: 40px;
            animation-delay: 2s;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            font-size: 14px;
            opacity: 0.8;
            animation: bounceScroll 2s infinite;
        }

        @keyframes bounceScroll {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        .scroll-arrow {
            width: 20px;
            height: 20px;
            border-right: 2px solid #00d4ff;
            border-bottom: 2px solid #00d4ff;
            transform: rotate(45deg);
            margin: 10px auto;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .nav {
                padding: 0 20px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 100px 20px 50px;
                min-height: 90vh;
            }

            .hero-container {
                flex-direction: column;
                text-align: center;
                gap: 50px;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .primary-btn, .secondary-btn {
                width: 100%;
                max-width: 280px;
                padding: 14px 30px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 25px;
                margin-top: 30px;
            }

            .hero-visual {
                max-width: 100%;
            }

            .product-image {
                height: 220px;
            }

            .floating-element {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-subtitle {
                font-size: 15px;
            }

            .product-carousel {
                max-width: 100%;
            }
        }

.features-section {
    padding: 80px 50px;
    max-width: 1440px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

body.light-theme .feature-card {
    background: rgba(26, 60, 52, 0.05);
    border-color: rgba(26, 60, 52, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 16px;
    opacity: 0.8;
}

.seasonal-offers-section {
    padding: 80px 50px;
    max-width: 1440px;
    margin: 0 auto;
}

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

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.light-theme .offer-card {
    background: rgba(26, 60, 52, 0.05);
    border-color: rgba(26, 60, 52, 0.1);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.offer-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-title {
    font-size: 24px;
    font-weight: 600;
    padding: 20px;
}

.offer-desc {
    font-size: 16px;
    opacity: 0.8;
    padding: 0 20px 20px;
}

.offer-countdown {
    font-size: 14px;
    color: #00d4ff;
    font-weight: 600;
    padding: 0 20px 20px;
}

.offer-btn {
    display: block;
    margin: 0 20px 20px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.offer-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.categories-section {
    padding: 80px 50px;
    max-width: 1440px;
    margin: 0 auto;
}

.category-subheading {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #00d4ff;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

body.light-theme .category-card {
    background: rgba(26, 60, 52, 0.05);
    border-color: rgba(26, 60, 52, 0.1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.category-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.category-desc {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.category-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 15px;
}

.category-list li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.category-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 20px;
}

.category-tagline {
    font-size: 14px;
    font-style: italic;
    color: #00d4ff;
    text-align: center;
}

.testimonials-section {
    padding: 80px 50px;
    max-width: 1440px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

body.light-theme .testimonial-card {
    background: rgba(26, 60, 52, 0.05);
    border-color: rgba(26, 60, 52, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.testimonial-text {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #00d4ff;
}

.community-section {
    padding: 80px 50px;
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.community-desc {
    font-size: 18px;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.vendor-section {
    padding: 80px 50px;
    background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
    text-align: center;
}

.vendor-content {
    max-width: 800px;
    margin: 0 auto;
}

.vendor-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #ffffff;
    color: #1a3c34;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vendor-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.faq-section {
    padding: 80px 50px;
    max-width: 1440px;
    margin: 0 auto;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body.light-theme .faq-item {
    border-color: rgba(26, 60, 52, 0.2);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 20px;
    color: #00d4ff;
}

.faq-answer {
    display: none;
    font-size: 16px;
    opacity: 0.8;
    padding: 0 0 15px;
}

.faq-answer.active {
    display: block;
}

.footer {
    padding: 80px 50px 30px;
    background: rgba(26, 60, 52, 0.95);
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

body.light-theme .footer-links a {
    color: #1a3c34;
}

.footer-links a:hover {
    color: #00d4ff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s ease;
}

body.light-theme .footer-social a {
    color: #1a3c34;
}

.footer-social a:hover {
    color: #00d4ff;
}

.footer-text {
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 50px;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.sticky-cta a {
    padding: 12px 25px;
    background: linear-gradient(135deg, #00d4ff 0%, #4a7043 100%);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-visual {
        max-width: 100%;
    }

    .product-image {
        height: 200px;
    }

    .features-section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .seasonal-offers-section {
        padding: 50px 20px;
    }

    .categories-section {
        padding: 50px 20px;
    }

    .category-subheading {
        font-size: 24px;
    }

    .testimonials-section {
        padding: 50px 20px;
    }

    .community-section {
        padding: 50px 20px;
    }

    .community-stats {
        flex-direction: column;
        gap: 20px;
    }

    .vendor-section {
        padding: 50px 20px;
    }

    .faq-section {
        padding: 50px 20px;
    }

    .footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}


/* Modal Styles */
    .guide-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        animation: fadeIn 0.3s ease-out;
    }
    .guide-modal-overlay.active {
        display: flex;
    }
    .guide-modal {
 znane: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        width: 90%;
        max-width: 900px;
        max-height: 85vh;
        overflow: hidden;
        position: relative;
        font-family: 'Noto Serif Devanagari', serif;
    }
    .guide-modal-header {
        background: linear-gradient(135deg, #27ca3f 0%, #00d4ff 100%);
        color: white;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .guide-modal-title {
        font-size: 20px;
        font-weight: 600;
        margin: 0;
    }
    .guide-close-btn {
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    .guide-close-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }
    .guide-modal-content {
        height: 600px;
        overflow: hidden;
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    /* Guide Button */
    .guide-btn {
        background: linear-gradient(135deg, #27ca3f, #00d4ff);
        color: white;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-left: 10px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: none;
        font-family: 'Noto Serif Devanagari', serif;
    }
    .guide-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    .guide-btn i {
        font-size: 18px;
    }