  :root {
            --moss: #1B3022;
            --blush: #F4DAD3;
            --rose: #C38D9E;
            --gold: #D4AF37;
            --cream: #FFF9F5;
            --white: #ffffff;
            --glass: rgba(255, 255, 255, 0.15);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--cream);
            color: var(--moss);
            line-height: 1.6;
            opacity: 0;
            transition: opacity 0.8s ease-in;
        }

        body.loaded { opacity: 1; }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── BREADCRUMB ── */
        .breadcrumb {
            background: var(--white);
            border-bottom: 1px solid #f0f0f0;
            padding: 12px 5%;
            font-size: 0.8rem;
            color: var(--moss);
            opacity: 0.7;
        }
        .breadcrumb a { color: var(--rose); text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { margin: 0 6px; }

        /* ── HERO ── */
        .hero {
            height: 85vh;
            background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
                        url('https://images.unsplash.com/photo-1526047932273-341f2a7631f9?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 50px 40px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            max-width: 800px;
            animation: fadeIn 1.2s ease-out forwards;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--blush);
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            color: var(--white);
            margin-bottom: 10px;
            line-height: 1.15;
        }

        .hero-description {
            font-size: 1.05rem;
            color: var(--white);
            max-width: 580px;
            margin: 0 auto 30px;
            font-weight: 300;
            opacity: 0.9;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-primary, .cta-secondary {
            padding: 14px 30px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            border-radius: 4px;
        }
        .cta-primary { background: var(--gold); color: white; }
        .cta-secondary { background: transparent; color: white; border: 1px solid white; }
        .cta-primary:hover { background: var(--white); color: var(--moss); }
        .cta-secondary:hover { background: var(--white); color: var(--moss); }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        /* ── DELIVERY INFO STRIP ── */
        .delivery-strip {
            background: var(--moss);
            color: var(--white);
            padding: 28px 5%;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .strip-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.88rem;
            min-width: 180px;
        }

        .strip-item i { color: var(--gold); font-size: 1.2rem; }

        .strip-item strong {
            display: block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--blush);
            margin-bottom: 2px;
        }

        /* ── SECTION HEADER ── */
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; }
        .section-header .divider { width: 60px; height: 3px; background: var(--gold); margin: 15px auto; }

        /* ── INTRO / ABOUT SECTION ── */
        .intro-section { padding: 80px 5%; background: var(--white); }

        .intro-container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .intro-image { flex: 1; position: relative; }

        .intro-image img {
            width: 100%;
            height: 460px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 20px 20px 0px var(--blush);
        }

        .intro-text { flex: 1; }

        .intro-text .label {
            color: var(--rose);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 0.8rem;
        }

        .intro-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.6rem;
            margin: 15px 0 20px;
            line-height: 1.2;
        }

        .intro-text p {
            margin-bottom: 18px;
            font-size: 0.98rem;
            opacity: 0.8;
            line-height: 1.8;
        }

        /* ── PRODUCTS ── */
        .featured-products { padding: 80px 5%; background: var(--cream); }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            transition: 0.4s;
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }

        .product-image-container { width: 100%; height: 280px; overflow: hidden; }
        .product-image { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .product-card:hover .product-image { transform: scale(1.05); }

        .product-info {
            padding: 20px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            font-size: 0.7rem;
            text-transform: uppercase;
            color: var(--rose);
            letter-spacing: 2px;
            font-weight: 600;
            margin-bottom: 8px;
            display: block;
        }

        .product-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: var(--moss);
            margin-bottom: 10px;
            min-height: 3rem;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-price {
            font-size: 1.05rem;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 15px;
            margin-top: auto;
        }

        .order-btn {
            display: block;
            width: 100%;
            padding: 12px;
            background: var(--moss);
            color: white;
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            border-radius: 4px;
        }
        .order-btn:hover { background: var(--rose); }

        /* ── WHY ORDER SECTION ── */
        .why-section { padding: 80px 5%; background: var(--white); }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .why-card {
            background: var(--cream);
            border-radius: 15px;
            padding: 35px 30px;
            text-align: center;
            transition: 0.3s;
        }

        .why-card:hover { transform: translateY(-8px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }

        .why-icon {
            width: 60px;
            height: 60px;
            background: var(--moss);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .why-icon i { color: var(--gold); font-size: 1.4rem; }

        .why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 12px; }
        .why-card p { font-size: 0.9rem; opacity: 0.75; line-height: 1.7; }

        /* ── CTA BANNER ── */
        .cta-banner {
            padding: 70px 5%;
            background: linear-gradient(rgba(27,48,34,0.88), rgba(27,48,34,0.88)),
                        url('assets/images/DeliveryCar1.webp');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }

        .cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; margin-bottom: 15px; }

        .cta-banner p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 35px;
            font-weight: 300;
            line-height: 1.8;
        }

        .cta-banner .btn-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

        .btn-outline-white {
            padding: 14px 30px;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: 0.3s;
            border-radius: 4px;
            border: 1px solid white;
            color: white;
        }
        .btn-outline-white:hover { background: white; color: var(--moss); }

        /* ── FAQ ── */
        .faq-section { padding: 80px 5%; background: var(--cream); }

        .faq-container { max-width: 860px; margin: 0 auto; }

        .faq-item {
            background: var(--white);
            border-radius: 10px;
            margin-bottom: 16px;
            border: 1px solid #f0f0f0;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.06); }

        .faq-item summary {
            font-weight: 600;
            cursor: pointer;
            font-size: 1rem;
            padding: 22px 28px;
            color: var(--moss);
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after {
            content: '+';
            font-size: 1.4rem;
            color: var(--gold);
            font-weight: 300;
            flex-shrink: 0;
            transition: transform 0.3s;
        }
        .faq-item[open] summary::after { transform: rotate(45deg); }

        .faq-answer {
            padding: 16px 28px 22px;
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.8;
            border-top: 1px solid #f5f5f5;
        }

        /* ── TESTIMONIALS ── */
        .testimonials { background: var(--white); padding: 80px 5%; text-align: center; }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1100px;
            margin: 50px auto 0;
        }

        .testimonial-card { background: var(--cream); padding: 35px; border-radius: 15px; transition: 0.3s; }
        .testimonial-card:hover { transform: translateY(-8px); }
        .stars { color: var(--gold); margin-bottom: 15px; font-size: 0.9rem; }
        .testimonial-card p { font-style: italic; font-size: 0.92rem; margin-bottom: 18px; color: var(--moss); line-height: 1.7; }
        .client-name { font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; color: var(--rose); }

        /* ── INTERNAL LINKS ── */
        .nearby-section { padding: 60px 5%; background: var(--cream); }

        .nearby-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            max-width: 900px;
            margin: 30px auto 0;
        }

        .nearby-link {
            background: var(--white);
            border: 1px solid #e8e8e8;
            border-radius: 8px;
            padding: 12px 22px;
            text-decoration: none;
            color: var(--moss);
            font-size: 0.85rem;
            font-weight: 600;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nearby-link:hover { background: var(--moss); color: var(--white); border-color: var(--moss); }
        .nearby-link i { color: var(--gold); font-size: 0.8rem; }
        .nearby-link:hover i { color: var(--blush); }

        /* ── MAP / LOCATION ── */
        .location-section {
            padding: 60px 5%;
            background: var(--moss);
            color: var(--white);
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .location-info { flex: 1; min-width: 280px; }
        .location-info h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 15px; }
        .location-info p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 12px; line-height: 1.7; }

        .location-map {
            flex: 1;
            min-width: 300px;
            height: 380px;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--gold);
        }

        .location-map iframe { width: 100%; height: 100%; border: 0; }

        /* ── RESPONSIVE ── */
        @media (max-width: 1024px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .why-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .intro-container { flex-direction: column; text-align: center; }
            .intro-image img { box-shadow: 10px 10px 0px var(--blush); }
            .section-header h2 { font-size: 2rem; }
            .cta-banner h2 { font-size: 2rem; }
        }

        @media (max-width: 600px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .product-image-container { height: 180px; }
            .product-info { padding: 12px 8px; }
            .product-info h3 { font-size: 0.95rem; }
            .order-btn { font-size: 0.65rem; padding: 10px 5px; }
            .why-grid { grid-template-columns: 1fr; }
            .hero-content { padding: 35px 20px; }
            .delivery-strip { flex-direction: column; }
            .faq-item summary { font-size: 0.9rem; padding: 18px; }
            .faq-answer { padding: 14px 18px 18px; }
        }