
        :root {
            --green-dark: #16320d;
            --green-mid: #2d5016;
            --green-light: #4a7c2c;
            --gold: #f0b90b;
            --gold-dark: #c79100;
            --white: #fff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --red: #ef4444;
            --blue: #3b82f6;
            --orange: #f97316;
            --teal: #0d9488;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
            --radius: 12px;
            --radius-lg: 18px;
            --radius-xl: 24px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            line-height: 1.6;
            color: var(--gray-800);
            background: #f8faf9;
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        /* ===== Top utility bar ===== */
        .utility-bar {
            background: var(--green-dark);
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.82rem;
            padding: 0.5rem 2rem;
        }

        .utility-bar-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .utility-bar a {
            color: inherit;
            text-decoration: none;
        }

        .utility-left {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .utility-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        /* ===== Header ===== */
        header {
            background: rgba(26, 59, 15, 0.94);
            backdrop-filter: blur(12px);
            color: #fff;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .header-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 2rem;
            gap: 1.5rem;
        }

        .logo {
            font-size: 1.7rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 0.6rem;
            cursor: pointer;
            text-decoration: none;
            color: #fff;
            flex-shrink: 0;
        }

            .logo span {
                background: var(--gold);
                color: var(--green-dark);
                width: 40px;
                height: 40px;
                border-radius: 9px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.4rem;
            }

        .header-search {
            flex: 1;
            max-width: 420px;
            display: flex;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            padding: 0.45rem 0.5rem 0.45rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

            .header-search input {
                flex: 1;
                background: transparent;
                border: none;
                outline: none;
                color: #fff;
                font-size: 0.9rem;
            }

                .header-search input::placeholder {
                    color: rgba(255, 255, 255, 0.6);
                }

            .header-search button {
                background: var(--gold);
                color: var(--green-dark);
                border: none;
                border-radius: 6px;
                padding: 0 1rem;
                cursor: pointer;
                font-weight: 700;
            }

        nav {
            display: flex;
            gap: 1.8rem;
            align-items: center;
            flex-shrink: 0;
        }

            nav a {
                color: rgba(255, 255, 255, 0.9);
                text-decoration: none;
                font-weight: 500;
                transition: color 0.2s;
                position: relative;
                font-size: 0.93rem;
            }

                nav a::after {
                    content: "";
                    position: absolute;
                    width: 0;
                    height: 2px;
                    bottom: -4px;
                    left: 0;
                    background: var(--gold);
                    transition: width 0.3s;
                }

                nav a:hover {
                    color: #fff;
                }

                    nav a:hover::after {
                        width: 100%;
                    }

        .cart-icon {
            position: relative;
            font-size: 1.4rem;
            cursor: pointer;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 0.65rem;
            border-radius: 8px;
            transition: all 0.2s;
        }

            .cart-icon:hover {
                background: rgba(255, 255, 255, 0.2);
                transform: scale(1.05);
            }

        .cart-count {
            position: absolute;
            top: -7px;
            right: -7px;
            background: var(--red);
            color: #fff;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 800;
            box-shadow: 0 0 0 3px rgba(26, 59, 15, 0.94);
        }

        /* ===== Hero ===== */
        .hero {
            background: linear-gradient( 160deg, #13280b 0%, #2d5016 45%, #436b27 100% );
            color: #fff;
            padding: 4.5rem 2rem;
            position: relative;
            overflow: hidden;
        }

            .hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient( circle at 85% 20%, rgba(240, 185, 11, 0.18), transparent 45% ), radial-gradient( circle at 10% 90%, rgba(255, 255, 255, 0.07), transparent 40% );
                pointer-events: none;
            }

        .hero-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.14);
            backdrop-filter: blur(8px);
            padding: 0.45rem 1.1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.4rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.18;
            margin-bottom: 1.2rem;
        }

            .hero h1 .highlight {
                color: var(--gold);
            }

        .hero p {
            font-size: 1.08rem;
            margin-bottom: 2rem;
            opacity: 0.92;
            max-width: 540px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .hero-trust {
            display: flex;
            gap: 1.6rem;
            flex-wrap: wrap;
        }

        .hero-trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        .btn {
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.96rem;
            font-weight: 700;
            transition: all var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font);
        }

        .btn-primary {
            background: var(--gold);
            color: var(--green-dark);
            box-shadow: 0 4px 15px rgba(240, 185, 11, 0.4);
        }

            .btn-primary:hover {
                background: #ffc107;
                transform: translateY(-3px);
            }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

            .btn-secondary:hover {
                background: #fff;
                color: var(--green-dark);
            }

        /* Hero visual */
        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-visual-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(6px);
            border-radius: var(--radius-xl);
            padding: 2.2rem;
            text-align: center;
            width: 100%;
            max-width: 340px;
        }

        .hero-visual-emoji {
            font-size: 5rem;
            margin-bottom: 1rem;
        }

        .hero-visual-card h4 {
            font-size: 1.1rem;
            margin-bottom: 0.4rem;
        }

        .hero-visual-card p {
            font-size: 0.85rem;
            opacity: 0.85;
            margin-bottom: 0;
        }

        .hero-stats-float {
            display: flex;
            justify-content: space-between;
            margin-top: 1.4rem;
            padding-top: 1.2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.18);
        }

            .hero-stats-float div {
                text-align: center;
            }

            .hero-stats-float b {
                display: block;
                font-size: 1.2rem;
                color: var(--gold);
            }

            .hero-stats-float span {
                font-size: 0.72rem;
                opacity: 0.8;
            }

        /* ===== Certification strip ===== */
        .cert-strip {
            background: #fff;
            border-bottom: 1px solid var(--gray-200);
        }

        .cert-strip-inner {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.1rem 2rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            color: var(--gray-700);
        }

        .cert-item {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.85rem;
            font-weight: 600;
        }

            .cert-item .ic {
                font-size: 1.3rem;
            }

        /* ===== Promo banner ===== */
        .promo-banner {
            max-width: 1300px;
            margin: 2.4rem auto;
            padding: 0 2rem;
        }

        .promo-card {
            background: linear-gradient(135deg, #f0b90b 0%, #ffc107 100%);
            border-radius: var(--radius-lg);
            padding: 2rem 2.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            box-shadow: var(--shadow-lg);
        }

        .promo-text h2 {
            color: var(--green-dark);
            font-size: 1.7rem;
        }

        .promo-text p {
            color: #3d3d3d;
            font-weight: 500;
        }

        /* ===== Section title ===== */
        .section-title {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--green-dark);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

            .section-title::before {
                content: "";
                width: 6px;
                height: 32px;
                background: var(--gold);
                border-radius: 8px;
                flex-shrink: 0;
            }

        .section-sub {
            color: var(--gray-600);
            margin: 0 0 2rem 1.5rem;
            font-size: 0.95rem;
        }

        .categories,
        .featured-products,
        .stats,
        .features,
        .testimonials,
        .contact {
            max-width: 1300px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        /* ===== Categories ===== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .category-card {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            transition: all 0.3s;
            cursor: pointer;
            border: 1px solid var(--gray-100);
            overflow: hidden;
        }

            .category-card:hover {
                transform: translateY(-8px);
                box-shadow: var(--shadow-xl);
            }

        .category-icon {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #e8f5e9, #d7ecd9);
            padding: 2rem;
            text-align: center;
        }

        .category-content {
            padding: 1.5rem;
        }

            .category-content h3 {
                color: var(--green-dark);
                margin-bottom: 0.4rem;
            }

            .category-content p {
                color: var(--gray-600);
                font-size: 0.9rem;
                margin-bottom: 1rem;
                min-height: 2.6em;
            }

        .category-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--gray-100);
            padding-top: 1rem;
        }

        .category-count {
            background: #eef7ec;
            color: var(--green-mid);
            padding: 0.3rem 0.75rem;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 700;
        }

        .category-link {
            color: var(--green-mid);
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
        }

        /* ===== Toolbar filter ===== */
        .product-toolbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.8rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .toolbar-filters {
            display: flex;
            gap: 0.7rem;
            flex-wrap: wrap;
        }

            .toolbar-filters select {
                padding: 0.6rem 1rem;
                border: 1px solid var(--gray-200);
                border-radius: 8px;
                font-size: 0.86rem;
                background: #fff;
                cursor: pointer;
            }

        .toolbar-sort {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .sort-btn {
            padding: 0.55rem 1rem;
            border: 1px solid var(--gray-200);
            background: #fff;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-700);
            transition: 0.2s;
        }

            .sort-btn.active,
            .sort-btn:hover {
                background: var(--green-mid);
                color: #fff;
                border-color: var(--green-mid);
            }

        /* ===== Products ===== */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
            gap: 1.8rem;
        }

        .product-card {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            transition: all 0.3s;
            border: 1px solid var(--gray-100);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

            .product-card:hover {
                box-shadow: var(--shadow-xl);
                transform: translateY(-6px);
            }

        .product-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            color: #fff;
            padding: 0.25rem 0.9rem;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 700;
            z-index: 2;
        }

            .product-badge.hot {
                background: var(--orange);
            }

            .product-badge.low {
                background: var(--red);
            }

            .product-badge.out {
                background: #9ca3af;
            }

        .product-image {
            height: 170px;
            background: linear-gradient(135deg, #e8f5e9, #d7ecd9);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--green-mid);
        }

        .product-info {
            padding: 1.4rem;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .product-category {
            color: var(--gold-dark);
            font-size: 0.74rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            background: #fefce8;
            padding: 0.18rem 0.65rem;
            border-radius: 50px;
            display: inline-block;
            width: fit-content;
        }

        .product-name {
            font-size: 1.04rem;
            font-weight: 700;
            margin-bottom: 0.35rem;
            flex-grow: 0;
            line-height: 1.35;
        }

        .product-desc {
            color: var(--gray-600);
            font-size: 0.84rem;
            margin-bottom: 0.6rem;
            flex-grow: 1;
        }

        .product-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: var(--gray-600);
            margin-bottom: 0.8rem;
        }

        .product-stock {
            font-weight: 600;
        }

            .product-stock.low {
                color: var(--red);
            }

            .product-stock.out {
                color: #9ca3af;
            }

        .product-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
            gap: 0.6rem;
        }

        .product-price {
            font-size: 1.3rem;
            color: var(--green-dark);
            font-weight: 800;
        }

        .add-to-cart {
            background: var(--green-mid);
            color: #fff;
            border: none;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 700;
            font-size: 0.85rem;
            transition: all 0.2s;
            white-space: nowrap;
        }

            .add-to-cart:hover {
                background: var(--green-dark);
                transform: scale(1.05);
            }

            .add-to-cart:disabled {
                background: #cbd5c4;
                cursor: not-allowed;
                transform: none;
            }

        .empty-products {
            grid-column: 1/-1;
            text-align: center;
            padding: 3rem 1rem;
            color: #9ca3af;
        }

            .empty-products .ic {
                font-size: 3rem;
                margin-bottom: 1rem;
            }

        .view-all-wrap {
            text-align: center;
            margin-top: 2.4rem;
        }

        /* ===== Stats ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            background: #fff;
            padding: 2rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
        }

        .stat-number {
            font-size: 2.3rem;
            font-weight: 800;
            color: var(--green-dark);
        }

        .stat-label {
            color: var(--gray-600);
            margin-top: 0.5rem;
        }

        /* ===== Features ===== */
        .features {
            width: 100%;
            background: #f4f8f2;
            padding: 70px 0;
            margin-top: 0;
        }

        .features-title {
            width: 96%;
            max-width: 1700px;
            margin: 0 auto 40px;
        }

            .features-title .section-title {
                justify-content: center;
            }

            .features-title .section-sub {
                text-align: center;
                margin-left: 0;
            }

        .features-container {
            width: 96%;
            max-width: 1700px;
            margin: auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-item {
            background: #fff;
            padding: 35px 25px;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: 0.3s;
            text-align: center;
        }

            .feature-item:hover {
                transform: translateY(-10px);
                box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
            }

        .feature-icon {
            font-size: 2.4rem;
            margin-bottom: 1rem;
        }

        .feature-item h3 {
            margin-bottom: 0.5rem;
            font-size: 1.05rem;
        }

        .feature-item p {
            color: var(--gray-600);
            font-size: 0.88rem;
        }

        /* ===== Testimonials ===== */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: #fff;
            padding: 2rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border-left: 4px solid var(--gold);
        }

        .testimonial-stars {
            color: var(--gold-dark);
            margin-bottom: 0.7rem;
            font-size: 0.9rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--gray-700);
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--green-dark);
        }

        /* ===== Newsletter ===== */
        .newsletter {
            max-width: 1300px;
            margin: 0 auto 4rem;
            padding: 0 2rem;
        }

        .newsletter-card {
            background: linear-gradient( 135deg, var(--green-dark), var(--green-mid) );
            border-radius: var(--radius-xl);
            padding: 2.6rem 3rem;
            color: #fff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            box-shadow: var(--shadow-lg);
        }

        .newsletter-text h3 {
            font-size: 1.4rem;
            margin-bottom: 0.4rem;
        }

        .newsletter-text p {
            opacity: 0.85;
            font-size: 0.92rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

            .newsletter-form input {
                padding: 0.8rem 1.1rem;
                border-radius: 8px;
                border: none;
                min-width: 240px;
                font-size: 0.9rem;
            }

            .newsletter-form button {
                padding: 0.8rem 1.6rem;
                border-radius: 8px;
                border: none;
                background: var(--gold);
                color: var(--green-dark);
                font-weight: 700;
                cursor: pointer;
            }

        /* ===== Contact ===== */
        .contact-card {
            background: #fff;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            padding: 3rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.9rem;
            border: 2px solid var(--gray-200);
            border-radius: var(--radius);
            margin-bottom: 1rem;
            font-family: inherit;
            font-size: 0.92rem;
        }

            .contact-form input:focus,
            .contact-form textarea:focus {
                outline: none;
                border-color: var(--green-mid);
            }

        .contact-info h3 {
            color: var(--green-dark);
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.6rem;
            color: var(--gray-700);
            font-size: 0.92rem;
        }

        .map-embed {
            margin-top: 1.2rem;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
        }

            .map-embed iframe {
                width: 100%;
                height: 100%;
                border: none;
            }

        /* ===== Footer ===== */
        footer {
            background: #0f2410;
            color: #d1d5db;
            padding: 4rem 2rem 2rem;
            margin-top: 0;
        }

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

        .footer-section h4 {
            color: var(--gold);
            margin-bottom: 1rem;
        }

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

        .footer-section li {
            margin-bottom: 0.55rem;
        }

        .footer-section a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.88rem;
        }

            .footer-section a:hover {
                color: #fff;
            }

        .footer-bottom {
            text-align: center;
            margin-top: 2.4rem;
            padding-top: 1.6rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            color: #6b7280;
            font-size: 0.85rem;
        }

        /* ===== Modal / cart ===== */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(4px);
        }

        .modal-content {
            background: #fff;
            margin: 4% auto;
            padding: 2rem;
            width: 92%;
            max-width: 560px;
            border-radius: var(--radius-xl);
            max-height: 84vh;
            overflow-y: auto;
        }

        .close {
            float: right;
            font-size: 2rem;
            cursor: pointer;
            line-height: 1;
            color: #9ca3af;
        }

            .close:hover {
                color: var(--gray-800);
            }

        .cart-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
            gap: 1rem;
        }

        .cart-row-info {
            flex: 1;
        }

        .cart-row-name {
            font-weight: 700;
            font-size: 0.92rem;
        }

        .cart-row-sub {
            font-size: 0.8rem;
            color: var(--gray-600);
            margin-top: 0.2rem;
        }

        .qty-mini {
            display: flex;
            align-items: center;
            border: 1px solid var(--gray-200);
            border-radius: 6px;
            overflow: hidden;
        }

            .qty-mini button {
                width: 28px;
                height: 28px;
                border: none;
                background: var(--gray-50);
                cursor: pointer;
                font-size: 1rem;
            }

            .qty-mini span {
                width: 30px;
                text-align: center;
                font-weight: 700;
                font-size: 0.85rem;
            }

        .cart-row-price {
            text-align: right;
            white-space: nowrap;
        }

        .remove-link {
            background: #fee2e2;
            color: var(--red);
            border: none;
            border-radius: 50px;
            padding: 0.25rem 0.8rem;
            cursor: pointer;
            font-size: 0.75rem;
            font-weight: 700;
            margin-top: 0.3rem;
        }

        .empty-cart-msg {
            text-align: center;
            color: #9ca3af;
            padding: 2rem 0;
        }

        .cart-summary-row {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            color: var(--gray-700);
        }

        .cart-total-row {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--green-dark);
            text-align: right;
            margin: 1.2rem 0;
        }

        .toast {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #059669;
            color: #fff;
            padding: 1rem 1.8rem;
            border-radius: 50px;
            z-index: 3000;
            box-shadow: var(--shadow-lg);
            font-weight: 600;
            font-size: 0.88rem;
            animation: slideUp 0.3s ease;
        }

            .toast.error {
                background: var(--red);
            }

            .toast.warning {
                background: var(--orange);
            }

        @keyframes slideUp {
            from {
                transform: translateY(80px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            left: 2rem;
            width: 46px;
            height: 46px;
            background: var(--green-mid);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            box-shadow: var(--shadow-lg);
            opacity: 0;
            transform: translateY(20px);
            transition: all var(--transition);
            z-index: 1500;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

            .back-to-top.visible {
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
            }

            .back-to-top:hover {
                background: var(--gold);
                color: var(--green-dark);
                transform: translateY(-4px);
            }

        /* Floating contact */
        .float-contact {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1500;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
            align-items: flex-end;
        }

        .float-btn {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #fff;
            text-decoration: none;
            box-shadow: var(--shadow-lg);
            transition: transform 0.2s;
        }

            .float-btn:hover {
                transform: scale(1.08);
            }

            .float-btn.phone {
                background: #16a34a;
            }

            .float-btn.zalo {
                background: #0068ff;
            }

        /* Sync indicator */
        .sync-pill {
            position: fixed;
            top: 90px;
            right: 1.5rem;
            background: #fff;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow-md);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.78rem;
            color: var(--gray-700);
            display: none;
            align-items: center;
            gap: 0.5rem;
            z-index: 1400;
        }

            .sync-pill.show {
                display: flex;
                animation: slideUp 0.25s ease;
            }

        .sync-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #27ae60;
        }

        @media (max-width: 900px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-visual {
                order: -1;
            }

            .features-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .utility-bar {
                display: none;
            }

            .header-container {
                flex-wrap: wrap;
            }

            .header-search {
                order: 3;
                max-width: 100%;
                width: 100%;
            }

            .hero h1 {
                font-size: 2.1rem;
            }

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

            .features-container {
                grid-template-columns: 1fr;
            }

            .newsletter-card {
                flex-direction: column;
                text-align: center;
            }

            .newsletter-form {
                width: 100%;
                justify-content: center;
            }
        }

        #contact {
            scroll-margin-top: 100px;
        }
    