
        :root {
            --brown: #4e342e;
            --accent: #d4a373;
            --cream: #fefae0;
            --white: #ffffff;
            --dark: #2d2019;
            --light-brown: #8d6e63;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--cream);
            color: var(--brown);
            overflow-x: hidden;
        }

        /* HEADER */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--dark);
        }

        .logo span {
            color: var(--accent);
        }

        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .cart-status {
            background: var(--accent);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(212, 163, 115, 0.3);
        }

        .cart-status:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
        }

        .location-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--brown);
            font-size: 0.9rem;
        }

        /* HERO */
        .hero {
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), 
                        url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1920&q=80') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(212, 163, 115, 0.2), transparent);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            margin-bottom: 20px;
            font-weight: 900;
            line-height: 1.2;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .hero-btn {
            background: var(--accent);
            color: white;
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: 0.3s;
            box-shadow: 0 5px 20px rgba(212, 163, 115, 0.4);
        }

        .hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 163, 115, 0.6);
        }

        /* FEATURES BAR */
        .features-bar {
            background: var(--white);
            padding: 30px 8%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .feature-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .feature-icon {
            font-size: 2.5rem;
        }

        .feature-item h3 {
            font-size: 1rem;
            color: var(--dark);
        }

        .feature-item p {
            font-size: 0.9rem;
            color: var(--light-brown);
        }

        /* CONTAINER */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* TABS */
        .tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 35px;
            border: 2px solid var(--brown);
            background: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            transition: 0.3s;
            color: var(--brown);
        }

        .tab-btn.active {
            background: var(--brown);
            color: white;
            box-shadow: 0 5px 15px rgba(78, 52, 46, 0.3);
        }

        .tab-btn:hover {
            transform: translateY(-2px);
        }

        /* MENU GRID */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .menu-item {
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            position: relative;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .menu-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-color: var(--accent);
        }

        .item-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            box-shadow: 0 3px 10px rgba(212, 163, 115, 0.3);
        }

        .item-img {
            font-size: 4.5rem;
            margin-bottom: 20px;
            filter: drop-shadow(0 5px 10px rgba(0,0,0,0.1));
        }

        .menu-item h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .menu-item p {
            color: var(--light-brown);
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .item-details {
            margin: 20px 0;
        }

        .milk-select,
        .size-select {
            width: 100%;
            padding: 12px;
            border-radius: 12px;
            border: 2px solid #e0e0e0;
            outline: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.95rem;
            background: var(--cream);
            transition: 0.3s;
            margin-bottom: 10px;
        }

        .milk-select:focus,
        .size-select:focus {
            border-color: var(--accent);
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #f0f0f0;
        }

        .price {
            font-weight: 700;
            font-size: 1.6rem;
            color: var(--accent);
        }

        .add-to-cart {
            background: var(--brown);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 15px;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
            font-family: 'Montserrat', sans-serif;
        }

        .add-to-cart:hover {
            background: var(--dark);
            transform: scale(1.05);
        }

        .add-to-cart:active {
            transform: scale(0.95);
        }

        /* CART MODAL */
        .cart-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .cart-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            position: relative;
        }

        .cart-close {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 2rem;
            cursor: pointer;
            color: var(--brown);
        }

        .cart-items {
            margin: 30px 0;
            max-height: 400px;
            overflow-y: auto;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .cart-total {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent);
            text-align: right;
            margin-top: 20px;
        }

        .checkout-btn {
            width: 100%;
            padding: 15px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: 0.3s;
        }

        .checkout-btn:hover {
            background: var(--brown);
        }

        /* TESTIMONIALS */
        .testimonials {
            background: var(--white);
            padding: 80px 8%;
            text-align: center;
        }

        .testimonials h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--dark);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--cream);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .testimonial-stars {
            color: var(--accent);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            color: var(--light-brown);
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--dark);
        }

        /* FOOTER */
        .footer {
            background: var(--dark);
            color: white;
            padding: 60px 8% 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }

        .footer ul {
            list-style: none;
        }

        .footer ul li {
            margin-bottom: 10px;
            opacity: 0.8;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }

        /* ANIMATIONS */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .menu-item {
            animation: fadeIn 0.5s ease;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .header {
                padding: 15px 5%;
            }

            .features-bar {
                grid-template-columns: 1fr;
                padding: 20px 5%;
            }

            .menu-grid {
                grid-template-columns: 1fr;
            }

            .tabs {
                flex-direction: column;
                gap: 10px;
            }

            .tab-btn {
                width: 100%;
            }
        }
  