:root {
    --bg: #0f1f1c;
    --card: #142724;
    --text: #f7f4ef;
    --muted: #c8c0b5;
    --accent: #c79b5f;
    --accent-light: rgba(199, 155, 95, 0.25);
}

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

body {
    font-family: "El Messiri", sans-serif;
    background: radial-gradient(circle at top, #1a2f2a 0%, var(--bg) 55%, #0a1412 100%);
    color: var(--text);
    line-height: 1.7;
}

.page {
    min-height: 100vh;
    padding: 0 5vw 4rem;
}

.hero {
    margin: 0 -5vw 2.5rem;
    padding: 4rem 5vw 3rem;
    background: linear-gradient(120deg, rgba(13, 26, 23, 0.92), rgba(25, 42, 38, 0.85)),
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?q=80&w=1600&auto=format&fit=crop") center/cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__content {
    max-width: 600px;
}

.hero {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero__logo-wrap {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.hero__logo {
    width: 120px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
    background: rgba(255,255,255,0.02);
    padding: 6px;
}

.hero__eyebrow {
    color: var(--accent);
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.hero__title {
    font-family: "Marhey", cursive;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    margin: 0.4rem 0 0.5rem;
}

.hero__subtitle {
    color: var(--muted);
    font-size: 1.1rem;
}

.menu {
    display: grid;
    gap: 2.5rem;
}

.menu-section {
    background: rgba(18, 33, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

.section-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.card__image {
    height: 150px;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
}

.card__content {
    padding: 1rem 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.card__title {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: baseline;
}

.card__title h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.price {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

.card__desc {
    color: var(--muted);
    font-size: 0.95rem;
}

.card__actions {
    margin-top: 0.6rem;
}

.btn-add {
    background: linear-gradient(90deg, var(--accent), #b7844f);
    color: #0b0a08;
    border: none;
    padding: 0.45rem 0.8rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.btn-add:hover { transform: translateY(-2px); }

/* Cart UI */
.cart-toggle {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    background: var(--accent);
    color: #06100f;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    z-index: 60;
    cursor: pointer;
    font-weight: 700;
}

.cart-bubble { background: rgba(0,0,0,0.08); padding: 0.15rem 0.5rem; border-radius: 999px; margin-left: 8px; }

.cart-drawer {
    position: fixed;
    left: 1.25rem;
    bottom: 5.5rem;
    width: 320px;
    max-height: 70vh;
    overflow: auto;
    background: rgba(15,31,28,0.98);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 0.9rem;
    box-shadow: 0 18px 40px rgba(0,0,0,0.5);
    z-index: 60;
}

.cart-item { display: flex; justify-content: space-between; gap: 0.6rem; padding: 0.6rem 0; border-bottom: 1px dashed rgba(255,255,255,0.03); }
.cart-item strong { font-size: 0.98rem; }
.cart-controls { display:flex; gap:0.4rem; align-items:center }
.cart-controls button { background:transparent; color:var(--accent); border:1px solid rgba(199,155,95,0.18); padding:0.18rem 0.4rem; border-radius:6px; cursor:pointer }
.cart-footer { margin-top:0.6rem; display:flex; justify-content:space-between; align-items:center }
.cart-actions button { background:var(--accent); border:none; padding:0.45rem 0.8rem; border-radius:8px; cursor:pointer }

.footer {
    margin-top: 3rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .menu-section {
        padding: 1.5rem;
    }

    .card__image {
        height: 130px;
    }
}
