:root {
            --primary: #A13F2E;
            --primary-dark: #7D2F20;
            --primary-light: #C4503A;
            --gold: #D4A847;
            --gold-light: #F0C870;
            --bg: #FDFAF5;
            --white: #FFFFFF;
            --text: #1A1A1A;
            --text-muted: #6B6560;
            --border: #E8E0D5;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
            --radius: 16px;
            --radius-sm: 8px;
        }
 
        * { box-sizing: border-box; margin: 0; padding: 0; }
 
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
        }
 
        /* ── HEADER ── */
        header {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }
 
        nav {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 76px;
        }
 
        .logo-container {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }
 
        .logo-img {
            height: 54px;
            width: 54px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid var(--gold);
            box-shadow: 0 0 0 3px rgba(212,168,71,0.18);
        }
 
        .logo-text-wrap { display: flex; flex-direction: column; }
 
        .logo-tag {
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
        }
 
        .logo-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.35rem;
            color: var(--primary);
            line-height: 1.1;
        }
 
        .cart-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(161,63,46,0.3);
        }
 
        .cart-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(161,63,46,0.4);
        }
 
        .cart-badge {
            background: var(--gold);
            color: var(--primary-dark);
            font-size: 0.75rem;
            font-weight: 700;
            min-width: 22px;
            height: 22px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 6px;
        }
 
        /* ── HERO ── */
        .hero {
            background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 100%), url('background.jpeg') center/cover no-repeat;
            padding: 120px 24px 100px;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
 
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 80px;
            background: linear-gradient(to top, var(--bg), transparent);
        }
 
        .hero-eyebrow {
            display: inline-block;
            background: rgba(212,168,71,0.2);
            border: 1px solid rgba(212,168,71,0.5);
            color: var(--gold-light);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 20px;
        }
 
        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            line-height: 1.15;
            max-width: 700px;
            margin: 0 auto 18px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.4);
        }
 
        .hero p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.85);
            max-width: 520px;
            margin: 0 auto 36px;
        }
 
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
 
        .hero-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
 
        .hero-stat strong {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--gold-light);
        }
 
        .hero-stat span {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
 
        /* ── SECTION TITLE ── */
        .section-header {
            text-align: center;
            padding: 70px 24px 48px;
        }
 
        .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
 
        .section-header p {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 480px;
            margin: 0 auto;
        }
 
        .divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 14px;
        }
 
        .divider::before, .divider::after {
            content: '';
            width: 50px;
            height: 1.5px;
            background: var(--gold);
            border-radius: 2px;
        }
 
        .divider-icon {
            font-size: 1.2rem;
        }
 
        /* ── PRODUCT GRID ── */
        .menu-section {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px 80px;
        }
 
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 32px;
        }
 
        .product-card {
            background: var(--white);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }
 
        .product-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
 
        .product-img-wrap {
            position: relative;
            overflow: hidden;
        }
 
        .product-img {
            width: 100%;
            height: 270px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }
 
        .product-card:hover .product-img { transform: scale(1.04); }
 
        .product-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--primary);
            color: white;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 5px 12px;
            border-radius: 50px;
        }
 
        .product-info {
            padding: 24px 24px 28px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
 
        .product-info h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.45rem;
            color: var(--primary);
            margin-bottom: 6px;
        }
 
        .product-desc {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 22px;
            line-height: 1.5;
        }
 
        .product-options-label {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
 
        .product-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
        }
 
        .btn-add {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            color: var(--text);
            border: 1.5px solid var(--border);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s ease;
            font-family: 'Inter', sans-serif;
        }
 
        .btn-add:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: translateX(3px);
        }
 
        .btn-add .btn-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
            transition: color 0.2s;
        }
 
        .btn-add:hover .btn-price { color: var(--gold-light); }
 
        .btn-add .btn-cart-icon {
            font-size: 0.85rem;
            opacity: 0;
            transition: opacity 0.2s;
        }
 
        .btn-add:hover .btn-cart-icon { opacity: 1; }
 
        /* ── TRUST BANNER ── */
        .trust-banner {
            background: var(--primary);
            color: white;
            padding: 40px 24px;
            text-align: center;
        }
 
        .trust-grid {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }
 
        .trust-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
 
        .trust-icon { font-size: 1.8rem; }
 
        .trust-item strong {
            font-size: 0.95rem;
            font-weight: 600;
        }
 
        .trust-item span {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.7);
        }
 
        /* ── FOOTER ── */
        footer {
            background: #1A1A1A;
            color: rgba(255,255,255,0.6);
            text-align: center;
            padding: 24px;
            font-size: 0.85rem;
        }
 
        footer strong { color: rgba(255,255,255,0.9); }
 
        /* ── SIDEBAR ── */
        .overlay {
            position: fixed; inset: 0;
            background: rgba(0,0,0,0.55);
            backdrop-filter: blur(2px);
            visibility: hidden; opacity: 0;
            transition: opacity 0.3s; z-index: 1000;
        }
        .overlay.active { visibility: visible; opacity: 1; }
 
        .sidebar {
            position: fixed; top: 0; right: -460px;
            width: 100%; max-width: 420px; height: 100vh;
            background: var(--white);
            z-index: 1001;
            display: flex; flex-direction: column;
            transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border-left: 1px solid var(--border);
        }
        .sidebar.active { right: 0; }
 
        .sidebar-header {
            padding: 22px 24px;
            background: var(--primary);
            color: var(--white);
            display: flex; justify-content: space-between; align-items: center;
        }
 
        .sidebar-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
        }
 
        .btn-close {
            background: rgba(255,255,255,0.15);
            border: none;
            color: var(--white);
            width: 34px; height: 34px;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background 0.2s;
        }
        .btn-close:hover { background: rgba(255,255,255,0.3); }
 
        .cart-items-container { flex: 1; overflow-y: auto; padding: 20px 24px; }
 
        .cart-item {
            display: flex; flex-direction: column;
            border-bottom: 1px solid var(--border);
            padding-bottom: 16px; margin-bottom: 16px;
        }
 
        .cart-item-title { font-weight: 600; font-size: 0.95rem; color: var(--text); }
 
        .cart-item-controls {
            display: flex; justify-content: space-between; align-items: center; margin-top: 10px;
        }
 
        .qty-controls { display: flex; align-items: center; gap: 2px; }
 
        .qty-btn {
            background: var(--bg);
            border: 1px solid var(--border);
            width: 30px; height: 30px;
            border-radius: var(--radius-sm);
            font-weight: 700; cursor: pointer; color: var(--text);
            transition: all 0.15s;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem;
        }
        .qty-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
 
        .qty-display { margin: 0 12px; font-weight: 700; font-size: 1rem; min-width: 20px; text-align: center; }
        .item-price { font-weight: 700; color: var(--primary); font-size: 1.05rem; }
 
        .cart-footer {
            padding: 20px 24px 28px;
            background: #fafaf8;
            border-top: 1px solid var(--border);
        }
 
        .btn-empty {
            width: 100%; background: transparent;
            color: var(--text-muted); border: 1px solid var(--border);
            padding: 9px; border-radius: var(--radius-sm);
            margin-bottom: 16px; cursor: pointer; font-size: 0.85rem;
            transition: all 0.2s; font-family: 'Inter', sans-serif;
        }
        .btn-empty:hover { background: #fff0f0; color: #d32f2f; border-color: #d32f2f; }
 
        .cart-total-row {
            display: flex; justify-content: space-between;
            font-size: 1.3rem; font-weight: 700; margin-bottom: 18px;
            color: var(--text);
        }
 
        .btn-whatsapp {
            width: 100%; background: #25D366; color: white;
            border: none; padding: 15px; border-radius: var(--radius-sm);
            font-size: 1rem; font-weight: 700; cursor: pointer;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            transition: background 0.3s, transform 0.2s;
            font-family: 'Inter', sans-serif;
        }
        .btn-whatsapp:hover { background: #1EBE5D; transform: translateY(-1px); }
        .btn-whatsapp:disabled { background: #a5d6a7; cursor: not-allowed; transform: none; }
 
        /* ── RESPONSIVE ── */
        @media (max-width: 640px) {
            .hero h1 { font-size: 2rem; }
            .hero-stats { gap: 24px; }
            .menu-grid { grid-template-columns: 1fr; }
            .trust-grid { gap: 28px; }
            .logo-name { font-size: 1.1rem; }
        }
