/* Extracted from our-product.php */

        /* ===== ROOT VARIABLES ===== */
        :root {
            --primary: #009B8E;
            --primary-dark: #00776D;
            --deep: #00594F;
            --ink: #06322C;
            --mint: #E3F4F1;
            --mint-soft: #F1FAF8;
            --ivory: #F8FBFA;
            --gold: #E9B44C;
            --white: #ffffff;
            --text-dark: #23423D;
            --text-light: #5E7A75;
            --shadow: 0 6px 24px rgba(0,89,79,0.10);
            --shadow-lg: 0 18px 45px rgba(0,89,79,0.16);
            --teal-gradient: linear-gradient(135deg, #009B8E 0%, #00594F 100%);
            --gold-gradient: linear-gradient(135deg, #E9B44C 0%, #D69A2D 100%);
            --leaf-radius: 6px 36px 6px 36px;
            --leaf-radius-lg: 8px 56px 8px 56px;
            --whatsapp-color: #25D366;
        }

        * { margin: 0; padding: 0; text-decoration: none; box-sizing: border-box; }
        body {
            font-family: 'Hind Siliguri', sans-serif;
            background: var(--ivory);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 { font-family: 'Fraunces', serif; line-height: 1.3; }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ===== ANIMATION ===== */
        .section {
            padding: 40px 0;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }
        .section.visible { opacity: 1; transform: translateY(0); }

        .section-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--ink);
            padding-left: 40px;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 28px;
            height: 28px;
            background: var(--teal-gradient);
            border-radius: 50% 50% 50% 8px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 40px;
            width: 60px;
            height: 3px;
            background: var(--teal-gradient);
            border-radius: 3px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            border-radius: var(--leaf-radius);
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,155,142,0.3);
        }
        .btn:hover {
            background: var(--gold-gradient);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(233,180,76,0.4);
        }

        /* ===== HEADER (standardized to match every other page) ===== */
        .top-header {
            background: var(--ink);
            color: rgba(255,255,255,0.85);
            padding: 9px 0;
            font-size: 0.88rem;
        }
        .top-header .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .contact-info span { margin-right: 22px; }
        .contact-info i { margin-right: 6px; color: var(--gold); }

        .main-header {
            background: var(--white);
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0, 89, 79, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .main-header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 6px 24px rgba(0, 89, 79, 0.14);
        }
        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 15px;
        }
        .logo {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        .logo:hover { transform: scale(1.03); }
        .logo img {
            height: 62px;
            margin-right: 12px;
            transition: all 0.3s ease;
        }
        .logo h1 {
            font-family: 'Fraunces', serif;
            font-size: 1.35rem;
            font-weight: 600;
            color: var(--ink);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
        }
        .nav-menu li { margin-left: 22px; }
        .nav-menu a {
            text-decoration: none;
            color: var(--ink);
            font-weight: 600;
            transition: color 0.3s ease;
            padding: 6px 0;
            position: relative;
        }
        .nav-menu a:hover { color: var(--primary); }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            transition: width 0.3s ease;
        }
        .nav-menu a:hover::after { width: 100%; }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            position: relative;
            z-index: 1001;
        }
        .hamburger {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
            position: relative;
            transition: all 0.3s ease;
        }
        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            border-radius: 3px;
            background-color: var(--primary);
            left: 0;
            transition: all 0.3s ease;
        }
        .hamburger::before { top: -8px; }
        .hamburger::after { bottom: -8px; }
        .mobile-menu-btn.active .hamburger { background-color: transparent; }
        .mobile-menu-btn.active .hamburger::before { top: 0; transform: rotate(45deg); }
        .mobile-menu-btn.active .hamburger::after { bottom: 0; transform: rotate(-45deg); }

        /* ===== BUSINESS MODEL GRID - FULLY RESPONSIVE ===== */
        .business-model-wrapper {
            background: var(--white);
            border-radius: var(--leaf-radius-lg);
            padding: 30px 25px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary);
        }

        .business-model-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }

        /* Left side content */
        .business-model-content h2 {
            font-size: 1.8rem;
            color: var(--ink);
            margin-bottom: 10px;
        }
        .business-model-content h2 span {
            color: var(--primary);
        }
        .business-model-content p {
            color: var(--text-light);
            font-size: 0.98rem;
            margin-bottom: 15px;
            line-height: 1.8;
        }

        .business-model-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        .business-model-features .feature-item {
            background: var(--mint-soft);
            padding: 12px;
            border-radius: var(--leaf-radius);
            border-left: 4px solid var(--primary);
        }
        .business-model-features .feature-item.gold-border {
            border-left-color: var(--gold);
        }
        .business-model-features .feature-item.span-2 {
            grid-column: span 2;
        }
        .business-model-features .feature-item i {
            font-size: 1.2rem;
            display: block;
            margin-bottom: 3px;
        }
        .business-model-features .feature-item i.gold-icon {
            color: var(--gold);
        }
        .business-model-features .feature-item i.teal-icon {
            color: var(--primary);
        }
        .business-model-features .feature-item h4 {
            font-size: 0.9rem;
        }
        .business-model-features .feature-item p {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        /* Right side - Why Water Hyacinth */
        .business-model-highlight {
            background: var(--teal-gradient);
            border-radius: var(--leaf-radius);
            padding: 25px;
            text-align: center;
            color: var(--white);
        }
        .business-model-highlight .icon-large {
            font-size: 3.5rem;
            margin-bottom: 10px;
        }
        .business-model-highlight h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .business-model-highlight ul {
            list-style: none;
            text-align: left;
            padding: 0;
            font-size: 0.9rem;
        }
        .business-model-highlight ul li {
            padding: 6px 0;
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }
        .business-model-highlight ul li:last-child {
            border-bottom: none;
        }

        /* ===== INFO GRID ===== */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .info-card {
            background: var(--white);
            border-radius: var(--leaf-radius);
            padding: 25px 20px;
            box-shadow: var(--shadow);
            text-align: center;
            border-bottom: 4px solid var(--primary);
            transition: all 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-bottom-color: var(--gold);
        }
        .info-card .icon { font-size: 2.5rem; display: block; margin-bottom: 10px; }
        .info-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
        .info-card p { font-size: 0.9rem; color: var(--text-light); }

        /* ===== IMAGE GALLERY ===== */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .gallery-item {
            border-radius: var(--leaf-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
            aspect-ratio: 4/3;
            transition: all 0.3s ease;
        }
        .gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .gallery-item:hover img { transform: scale(1.05); }
        .gallery-item .caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,89,79,0.85));
            color: var(--white);
            padding: 12px 15px 10px;
            font-size: 0.8rem;
            text-align: center;
        }

        /* ===== STORY SECTION ===== */
        .story-section {
            background: var(--white);
            border-radius: var(--leaf-radius-lg);
            padding: 35px 30px;
            box-shadow: var(--shadow);
            border-left: 5px solid var(--primary);
            margin-top: 20px;
        }
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        .story-content h3 { font-size: 1.6rem; margin-bottom: 12px; }
        .story-content p { font-size: 0.95rem; margin-bottom: 12px; color: var(--text-dark); }
        .story-image {
            border-radius: var(--leaf-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .story-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        /* ===== STATS ===== */
        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        .stat-item {
            background: var(--white);
            padding: 20px 15px;
            border-radius: var(--leaf-radius);
            text-align: center;
            box-shadow: var(--shadow);
            border-bottom: 4px solid var(--gold);
            transition: all 0.3s ease;
        }
        .stat-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
        .stat-item .number {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            display: block;
            font-family: 'Fraunces', serif;
        }
        .stat-item .label { font-size: 0.85rem; color: var(--text-light); }

        /* ===== PRODUCTS ===== */
        .products-container { padding: 10px 0; }
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
        }
        .search-box {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .search-box input {
            padding: 10px 16px;
            border: 2px solid var(--primary);
            border-radius: var(--leaf-radius);
            font-size: 0.95rem;
            min-width: 220px;
            background: var(--white);
            transition: 0.3s;
        }
        .search-box input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,155,142,0.15);
        }
        .search-box button {
            padding: 10px 20px;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            border-radius: var(--leaf-radius);
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
        }
        .search-box button:hover { background: var(--gold-gradient); transform: translateY(-2px); }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
        }
        .product-card {
            background: var(--white);
            border-radius: var(--leaf-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
            cursor: pointer;
            opacity: 0;
            transform: scale(0.95);
        }
        .product-card.visible {
            opacity: 1;
            transform: scale(1);
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-top-color: var(--gold);
        }
        .product-image {
            height: 200px;
            overflow: hidden;
            background: #f0f0f0;
            position: relative;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }
        .product-card:hover .product-image img { transform: scale(1.05); }
        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--teal-gradient);
            color: var(--white);
            padding: 3px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }
        .product-content { padding: 18px; text-align: center; }
        .product-name {
            font-size: 1rem;
            font-weight: 600;
            min-height: 45px;
            margin-bottom: 5px;
        }
        .product-price {
            color: var(--primary);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .view-more-btn {
            width: 100%;
            padding: 9px;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            border-radius: var(--leaf-radius);
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
        }
        .view-more-btn:hover {
            background: var(--gold-gradient);
            transform: translateY(-2px);
        }

        .no-products {
            text-align: center;
            padding: 40px;
            background: var(--white);
            border-radius: var(--leaf-radius);
            grid-column: 1/-1;
        }

        /* ===== MODAL ===== */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(6,50,44,0.92);
            z-index: 1100;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        .modal-content {
            background: var(--white);
            padding: 25px;
            border-radius: var(--leaf-radius-lg);
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            border-top: 5px solid var(--primary);
        }
        .close-modal {
            position: sticky;
            top: 0;
            float: right;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            transition: 0.3s;
        }
        .close-modal:hover { background: var(--gold-gradient); transform: rotate(90deg); }
        .modal-product-title { font-size: 1.5rem; margin-bottom: 5px; }
        .modal-product-price {
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 700;
        }
        .modal-image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 12px;
            margin: 15px 0;
        }
        .modal-image-gallery img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: var(--leaf-radius);
            border: 2px solid var(--mint);
        }
        .shop-now-btn {
            display: block;
            width: 100%;
            padding: 14px;
            background: var(--whatsapp-color);
            color: var(--white);
            border: none;
            border-radius: var(--leaf-radius);
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 4px 20px rgba(37,211,102,0.3);
        }
        .shop-now-btn:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        /* ===== CTA SECTION ===== */
        .cta-section {
            background: var(--teal-gradient);
            padding: 40px 20px;
            text-align: center;
            border-radius: var(--leaf-radius-lg);
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }
        .cta-section h2 {
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 10px;
        }
        .cta-section p {
            color: rgba(255,255,255,0.9);
            max-width: 650px;
            margin: 0 auto 25px;
            font-size: 1rem;
        }
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 35px;
            border-radius: var(--leaf-radius);
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .cta-btn-primary {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .cta-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .cta-btn-whatsapp {
            background: var(--whatsapp-color);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(37,211,102,0.3);
        }
        .cta-btn-whatsapp:hover {
            transform: translateY(-3px);
            background: #128C7E;
        }

        /* ===== WHATSAPP FLOAT ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            animation: pulse 2s infinite;
        }
        .whatsapp-float .whatsapp-icon {
            background: var(--whatsapp-color);
            color: white;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 25px rgba(37,211,102,0.4);
            transition: 0.3s;
        }
        .whatsapp-float .whatsapp-icon:hover { transform: scale(1.1); }
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* ===== FOOTER ===== */
        .footer {
            background: linear-gradient(180deg, var(--deep), var(--ink));
            color: rgba(255,255,255,0.9);
            padding: 40px 0 0;
            border-top: 5px solid var(--gold);
            margin-top: 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            font-size: 1.1rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 3px;
            background: var(--teal-gradient);
            border-radius: 3px;
        }
        .contact-info-footer p {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .contact-info-footer i { color: var(--gold); margin-top: 4px; }
        .quick-links { list-style: none; }
        .quick-links li { margin-bottom: 6px; }
        .quick-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .quick-links a:hover { color: var(--gold); padding-left: 5px; }
        .social-links {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: var(--white);
            text-decoration: none;
            transition: 0.3s;
        }
        .social-links a:hover {
            background: var(--gold-gradient);
            color: var(--ink);
            transform: translateY(-3px);
        }
        .newsletter-form {
            display: flex;
            margin-top: 10px;
        }
        .newsletter-form input {
            flex: 1;
            padding: 10px 14px;
            border: none;
            border-radius: 6px 0 0 18px;
            font-size: 0.9rem;
        }
        .newsletter-form button {
            background: var(--gold-gradient);
            color: var(--ink);
            border: none;
            padding: 0 16px;
            border-radius: 0 18px 6px 0;
            cursor: pointer;
            transition: 0.3s;
        }
        .newsletter-form button:hover { background: var(--teal-gradient); color: var(--white); }
        .copyright {
            text-align: center;
            padding: 15px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.85rem;
            color: rgba(255,255,255,0.6);
        }

        /* ===== RESPONSIVE BREAKPOINTS ===== */

        /* Tablet and below */
        @media (max-width: 992px) {
            .business-model-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .business-model-content h2 {
                font-size: 1.6rem;
            }

            .business-model-highlight {
                padding: 20px;
            }
            .business-model-highlight .icon-large {
                font-size: 2.8rem;
            }
            .business-model-highlight h3 {
                font-size: 1.3rem;
            }

            .story-content { grid-template-columns: 1fr; }
            .story-image img { height: 200px; }
            .products-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
        }

        /* Mobile Large (576px - 768px) */
        @media (max-width: 768px) {
            .top-header { display: none; }
            .mobile-menu-btn { display: block; }

            .nav-menu {
                position: fixed;
        top: 100px;
        left: -100%;
        width: 72%;
        height: calc(75vh - 100px);
        background: rgba(0, 89, 79, 0.96);
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
                align-items: stretch;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 25px;
        border-radius: 0 36px 36px 0;
        z-index: 1000;
                gap: 15px;
            }
            .nav-menu.active { left: 0; }
            .nav-menu a {
                color: var(--white);
                font-size: 1rem;
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .nav-menu a::after { display: none; }
            .nav-menu a:hover { color: var(--gold); }

            .section-title { font-size: 1.5rem; padding-left: 35px; }
            .section-title::before { width: 24px; height: 24px; }
            .section-title::after { left: 35px; width: 50px; }

            /* Business Model Mobile */
            .business-model-wrapper {
                padding: 25px 18px;
            }

            .business-model-content h2 {
                font-size: 1.3rem;
            }
            .business-model-content p {
                font-size: 0.9rem;
            }

            .business-model-features {
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }
            .business-model-features .feature-item {
                padding: 10px;
            }
            .business-model-features .feature-item h4 {
                font-size: 0.8rem;
            }
            .business-model-features .feature-item p {
                font-size: 0.75rem;
            }

            .business-model-highlight {
                padding: 18px;
            }
            .business-model-highlight .icon-large {
                font-size: 2.5rem;
            }
            .business-model-highlight h3 {
                font-size: 1.1rem;
            }
            .business-model-highlight ul li {
                font-size: 0.8rem;
                padding: 5px 0;
            }

            .info-grid { grid-template-columns: 1fr 1fr; }
            .image-gallery { grid-template-columns: repeat(3, 1fr); }
            .stats-container { grid-template-columns: repeat(3, 1fr); }
            .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }

            .story-section { padding: 25px 20px; }
            .story-content h3 { font-size: 1.3rem; }

            .cta-section h2 { font-size: 1.6rem; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .cta-btn { width: 100%; justify-content: center; }

            .footer-content { grid-template-columns: 1fr 1fr; }
            .modal-content { padding: 20px; }
            .modal-product-title { font-size: 1.2rem; }
            .modal-image-gallery { grid-template-columns: 1fr 1fr; }
            .modal-image-gallery img { height: 120px; }
        }

        /* Mobile Small (up to 576px) */
        @media (max-width: 576px) {
            .logo img { height: 35px; }
            .logo h1 { font-size: 1.2rem; }

            .section-title { font-size: 1.2rem; padding-left: 30px; }
            .section-title::before { width: 20px; height: 20px; }
            .section-title::after { left: 30px; width: 40px; }

            /* Business Model Mobile Small */
            .business-model-wrapper {
                padding: 20px 14px;
                border-radius: var(--leaf-radius);
            }

            .business-model-content h2 {
                font-size: 1.1rem;
            }
            .business-model-content p {
                font-size: 0.85rem;
                margin-bottom: 12px;
            }

            .business-model-features {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }
            .business-model-features .feature-item {
                padding: 8px 10px;
                border-left-width: 3px;
            }
            .business-model-features .feature-item.span-2 {
                grid-column: span 2;
            }
            .business-model-features .feature-item i {
                font-size: 1rem;
            }
            .business-model-features .feature-item h4 {
                font-size: 0.75rem;
                margin-bottom: 2px;
            }
            .business-model-features .feature-item p {
                font-size: 0.7rem;
                line-height: 1.4;
            }

            .business-model-highlight {
                padding: 15px;
                border-radius: var(--leaf-radius);
            }
            .business-model-highlight .icon-large {
                font-size: 2rem;
                margin-bottom: 5px;
            }
            .business-model-highlight h3 {
                font-size: 0.95rem;
                margin-bottom: 8px;
            }
            .business-model-highlight ul li {
                font-size: 0.75rem;
                padding: 4px 0;
            }

            .info-grid { grid-template-columns: 1fr; gap: 12px; }
            .image-gallery { grid-template-columns: 1fr 1fr; gap: 10px; }
            .stats-container { grid-template-columns: 1fr 1fr; gap: 10px; }
            .stat-item .number { font-size: 1.8rem; }
            .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .product-image { height: 150px; }
            .product-content { padding: 12px; }
            .product-name { font-size: 0.85rem; min-height: 35px; }
            .product-price { font-size: 1rem; }
            .view-more-btn { font-size: 0.8rem; padding: 7px; }

            .search-box input { min-width: 150px; font-size: 0.85rem; padding: 8px 12px; }
            .search-box button { padding: 8px 14px; font-size: 0.85rem; }

            .story-section { padding: 20px 15px; }
            .story-content h3 { font-size: 1.1rem; }
            .story-content p { font-size: 0.85rem; }
            .story-image img { height: 160px; }

            .modal-content { padding: 15px; }
            .modal-image-gallery { grid-template-columns: 1fr 1fr; gap: 8px; }
            .modal-image-gallery img { height: 100px; }
            .shop-now-btn { font-size: 0.95rem; padding: 12px; }

            .cta-section { padding: 30px 15px; }
            .cta-section h2 { font-size: 1.3rem; }
            .cta-section p { font-size: 0.9rem; }

            .footer-content { grid-template-columns: 1fr; gap: 20px; }
            .whatsapp-float { bottom: 15px; right: 15px; }
            .whatsapp-float .whatsapp-icon { width: 48px; height: 48px; font-size: 1.6rem; }
        }

        /* Extra Small (up to 400px) */
        @media (max-width: 400px) {
            .business-model-features {
                grid-template-columns: 1fr;
            }
            .business-model-features .feature-item.span-2 {
                grid-column: 1;
            }

            .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .product-image { height: 120px; }
            .product-name { font-size: 0.75rem; min-height: 30px; }
            .product-price { font-size: 0.9rem; }
            .view-more-btn { font-size: 0.7rem; padding: 5px; }
            .image-gallery { grid-template-columns: 1fr 1fr; }
            .stats-container { grid-template-columns: 1fr 1fr; }
        }

        /* ===== LAZY LOAD PLACEHOLDER ===== */
        img.lazy {
            background: #e8f0ee;
            min-height: 100px;
        }
        img.lazy:not([src]) {
            opacity: 0;
        }
        img.lazy[src] {
            opacity: 1;
            transition: opacity 0.3s;
        }
    