:root {
    --ink: #0e1013;
    --ink-2: #15181d;
    --ink-3: #1f242b;
    --paper: #f5f2ec;
    --paper-2: #ece7de;
    --surface: #ffffff;
    --primary: #b91c2c;
    --primary-deep: #8f1420;
    --primary-soft: rgba(185, 28, 44, .09);
    --gold: #c9a24b;
    --gold-light: #e6cd8f;
    --gold-soft: rgba(201, 162, 75, .14);
    --green: #1f9d55;
    --text: #23252b;
    --muted: #6f7278;
    --line: rgba(14, 16, 19, .08);
    --line-light: rgba(255, 255, 255, .12);
    --shadow-sm: 0 2px 10px rgba(14, 16, 19, .06);
    --shadow-md: 0 12px 32px rgba(14, 16, 19, .10);
    --shadow-lg: 0 28px 60px rgba(14, 16, 19, .16);
    --radius: 18px;
    --radius-sm: 12px;
    --font: 'Cairo', sans-serif;
    --serif: 'Playfair Display', serif;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font);
    background: var(--paper);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ Header ============ */
header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(14, 16, 19, .88);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-light);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .28);
    transition: padding .35s var(--ease);
}

header.scrolled {
    padding: 10px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 46px;
    width: auto;
}

.logo-placeholder {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
}

.logo-text {
    margin-right: 14px;
    color: #fff;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.1;
}

.logo-text span {
    color: var(--gold-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 23px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--line-light);
    transition: background .3s ease, transform .3s var(--ease);
}

.cart-icon:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -4px;
    left: -4px;
    min-width: 21px;
    height: 21px;
    padding: 0 5px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 4px 10px rgba(185, 28, 44, .4);
}

/* ============ Nav ============ */
nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

nav ul li {
    margin-left: 28px;
}

nav ul li a {
    position: relative;
    color: rgba(255, 255, 255, .82);
    font-weight: 700;
    font-size: 16px;
    padding: 6px 0;
    transition: color .25s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    transition: width .3s var(--ease);
}

nav ul li a:hover,
nav ul li a.active {
    color: #fff;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 6px;
}

body.nav-open {
    overflow: hidden;
}

@media (max-width: 992px) {
    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 82%;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, var(--ink-2), var(--ink));
        border-left: 1px solid var(--line-light);
        transform: translateX(100%);
        transition: transform .4s var(--ease);
        z-index: 1100;
        overflow-y: auto;
        padding: 96px 30px 30px;
    }

    nav.active {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    nav ul li {
        margin: 0;
    }

    nav ul li a {
        display: block;
        padding: 14px 8px;
        font-size: 19px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    nav ul li a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* ============ Page banner ============ */
.page-banner {
    position: relative;
    padding: clamp(140px, 18vw, 200px) 0 clamp(60px, 7vw, 90px);
    text-align: center;
    color: #fff;
    overflow: hidden;
    background-image:
        linear-gradient(180deg, rgba(14, 16, 19, .62) 0%, rgba(14, 16, 19, .92) 100%),
        var(--bg, url('https://images.unsplash.com/photo-1553621042-f6e147245754?auto=format&fit=crop&w=1920&q=80'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 1px solid var(--line-light);
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 300px at 50% 0%, rgba(201, 162, 75, .18), transparent 65%),
        radial-gradient(900px 400px at 85% 110%, rgba(185, 28, 44, .22), transparent 60%);
    pointer-events: none;
}

.page-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: radial-gradient(rgba(255, 255, 255, .6) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .5);
}

.breadcrumb a {
    color: rgba(255, 255, 255, .72);
    transition: color .25s ease;
}

.breadcrumb a:hover {
    color: var(--gold-light);
}

.breadcrumb .current {
    color: var(--gold-light);
}

.breadcrumb span {
    opacity: .5;
}

.page-banner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--serif);
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.page-banner-kicker::before,
.page-banner-kicker::after {
    content: "";
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.page-banner-kicker::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.page-banner-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 6px 30px rgba(0, 0, 0, .45);
}

.page-banner-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    border-radius: 3px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

.page-banner-sub {
    max-width: 560px;
    margin: 16px auto 0;
    font-size: clamp(.95rem, 1.6vw, 1.1rem);
    color: rgba(255, 255, 255, .78);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .page-banner {
        padding-top: 132px;
    }
}

/* ============ Page header ============ */
.menu-section {
    padding: clamp(56px, 7vw, 84px) 0 clamp(70px, 8vw, 100px);
    background:
        radial-gradient(900px 400px at 50% 0%, rgba(185, 28, 44, .05), transparent 70%),
        url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230e1013' stroke-opacity='0.05' stroke-width='1'%3E%3Ccircle cx='36' cy='36' r='9'/%3E%3Ccircle cx='36' cy='36' r='18'/%3E%3Ccircle cx='36' cy='36' r='27'/%3E%3C/g%3E%3C/svg%3E"),
        var(--paper);
    position: relative;
}

.menu-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    background:
        radial-gradient(800px 260px at 50% -60px, rgba(185, 28, 44, .18), transparent 70%),
        linear-gradient(180deg, rgba(14, 16, 19, .04), transparent);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 34px;
    position: relative;
}

.section-title h2 {
    font-size: clamp(1.9rem, 4.5vw, 2.9rem);
    font-weight: 900;
    color: var(--ink);
    display: inline-block;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -14px;
    right: 50%;
    transform: translateX(50%);
    width: 72px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

/* ============ Search ============ */
.search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 42px;
    gap: 10px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar input {
    flex: 1;
    padding: 13px 20px;
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.search-bar input::placeholder {
    color: #a0a0a6;
}

.search-bar input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-soft);
}

.search-bar button {
    padding: 13px 26px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(185, 28, 44, .3);
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.search-bar button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(185, 28, 44, .4);
}

/* ============ Menu grid & cards ============ */
.menu-grid,
.box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 26px;
}

.menu-item,
.box-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    animation: cardIn .6s var(--ease) both;
}

.menu-item:nth-child(4n+2),
.box-item:nth-child(4n+2) {
    animation-delay: .07s;
}

.menu-item:nth-child(4n+3),
.box-item:nth-child(4n+3) {
    animation-delay: .14s;
}

.menu-item:nth-child(4n+4),
.box-item:nth-child(4n+4) {
    animation-delay: .21s;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item::before,
.box-item::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    z-index: 2;
    background: linear-gradient(90deg, var(--gold-light), var(--primary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}

.menu-item:hover::before,
.box-item:hover::before {
    transform: scaleX(1);
}

.menu-item:hover,
.box-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 75, .4);
}

.menu-item-image {
    height: 205px;
    overflow: hidden;
    position: relative;
}

.menu-item-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(14, 16, 19, .35));
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.menu-item:hover .menu-item-image img,
.box-item:hover .menu-item-image img {
    transform: scale(1.08);
}

.menu-item-content {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--ink);
    font-family: var(--serif);
    letter-spacing: .3px;
}

.menu-item-price {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 900;
    white-space: nowrap;
    font-feature-settings: "tnum";
}

.menu-item-description {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.item-highlight {
    color: var(--primary);
    font-weight: 700;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.item-quantity label {
    font-weight: 700;
    font-size: 14px;
    color: var(--text);
}

.item-quantity input {
    width: 64px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    text-align: center;
    font-family: var(--font);
    font-size: 15px;
    outline: none;
    transition: border-color .25s ease;
}

.item-quantity input:focus {
    border-color: var(--gold);
}

/* ============ Order buttons ============ */
.order-buttons {
    display: flex;
    gap: 10px;
}

.order-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 999px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease;
}

.order-btn i {
    font-size: 14px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, var(--green), #177a42);
    color: #fff;
    box-shadow: 0 8px 18px rgba(31, 157, 85, .3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(31, 157, 85, .4);
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 18px rgba(37, 211, 102, .3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 211, 102, .4);
}

/* ============ Box cards ============ */
.box-item {
    position: relative;
    padding-bottom: 20px;
}

.box-name {
    padding: 18px 20px 0;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--ink);
    font-family: var(--serif);
}

.box-price {
    padding: 6px 20px 0;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    font-feature-settings: "tnum";
}

.box-pieces {
    padding: 4px 20px 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
}

.box-contents {
    padding: 8px 20px 16px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.7;
    flex-grow: 1;
}

.box-item .order-buttons {
    padding: 0 20px;
}

/* ============ Discount banner ============ */
.discount-banner {
    max-width: 640px;
    margin: 0 auto 34px;
    text-align: center;
    padding: 16px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(185, 28, 44, .35);
    animation: discountGlow 2.2s ease-in-out infinite;
}

@keyframes discountGlow {
    0%, 100% { box-shadow: 0 12px 28px rgba(185, 28, 44, .35); }
    50% { box-shadow: 0 12px 40px rgba(185, 28, 44, .55); }
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, .75);
    margin-inline-start: 8px;
    font-weight: 700;
    font-size: .95em;
}

.discounted-price {
    color: #ffe28a;
    font-weight: 900;
}

.regular-price {
    color: var(--primary);
    font-weight: 900;
}

/* ============ Appetizer cards ============ */
.appetizer-section {
    padding: clamp(56px, 7vw, 84px) 0 clamp(70px, 8vw, 100px);
    background:
        radial-gradient(900px 400px at 50% 0%, rgba(185, 28, 44, .05), transparent 70%),
        url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%230e1013' stroke-opacity='0.05' stroke-width='1'%3E%3Ccircle cx='36' cy='36' r='9'/%3E%3Ccircle cx='36' cy='36' r='18'/%3E%3Ccircle cx='36' cy='36' r='27'/%3E%3C/g%3E%3C/svg%3E"),
        var(--paper);
}

.appetizer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.appetizer-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s ease, border-color .4s ease;
    display: block;
    position: relative;
    animation: cardIn .6s var(--ease) both;
}

.appetizer-card:nth-child(4n+2) {
    animation-delay: .07s;
}

.appetizer-card:nth-child(4n+3) {
    animation-delay: .14s;
}

.appetizer-card:nth-child(4n+4) {
    animation-delay: .21s;
}

.appetizer-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    border-radius: var(--radius) var(--radius) 0 0;
    background: linear-gradient(90deg, var(--gold-light), var(--primary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}

.appetizer-card:hover::before {
    transform: scaleX(1);
}

.appetizer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 75, .4);
}

.appetizer-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 26px;
    color: var(--primary);
    background: var(--primary-soft);
    border: 1px solid rgba(185, 28, 44, .18);
    transition: background .3s ease, color .3s ease, transform .4s var(--ease);
}

.appetizer-card:hover .appetizer-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}

.appetizer-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--ink);
    font-family: var(--serif);
    margin-bottom: 8px;
}

.appetizer-description {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

/* ============ Cart popup ============ */
.cart-popup {
    position: fixed;
    top: 0;
    left: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--surface);
    box-shadow: 6px 0 30px rgba(0, 0, 0, .18);
    z-index: 2000;
    transition: left .4s var(--ease);
    display: flex;
    flex-direction: column;
}

.cart-popup.active {
    left: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 16, 19, .55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    z-index: 1999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.cart-header h3 {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--ink);
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--muted);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: background .25s ease, color .25s ease, transform .3s var(--ease);
}

.close-cart:hover {
    background: var(--primary-soft);
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 12px 24px;
}

.cart-item {
    display: flex;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    gap: 14px;
}

.cart-item-image {
    width: 76px;
    height: 76px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex-grow: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 800;
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 4px;
    font-family: var(--serif);
}

.cart-item-price {
    color: var(--primary);
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 8px;
    font-feature-settings: "tnum";
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 15px;
    color: var(--text);
    transition: all .25s ease;
}

.cart-item-quantity button:hover {
    background: var(--primary-soft);
    border-color: rgba(185, 28, 44, .3);
    color: var(--primary);
}

.cart-item-quantity input {
    width: 42px;
    text-align: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 5px;
    font-family: var(--font);
    font-size: 14px;
    outline: none;
}

.cart-item-remove {
    color: #d43a3a;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    align-self: flex-start;
    padding: 4px;
    transition: transform .3s var(--ease);
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

.cart-footer {
    position: sticky;
    bottom: 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 20px 24px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .05);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 17px;
    font-weight: 900;
    color: var(--ink);
}

.cart-total span:last-child {
    color: var(--primary);
    font-feature-settings: "tnum";
}

.whatsapp-order-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #25d366, #1da851);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .35);
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.whatsapp-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, .45);
}

.empty-cart {
    text-align: center;
    padding: 60px 0;
    color: var(--muted);
}

.empty-cart i {
    font-size: 56px;
    margin-bottom: 14px;
    color: var(--line);
}

.empty-cart p {
    font-size: 16px;
    font-weight: 700;
}

/* ============ Footer ============ */
footer {
    background: var(--ink);
    color: #fff;
    padding: clamp(56px, 7vw, 80px) 0 24px;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 36px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--gold-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 34px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold-light), transparent);
}

.footer-column p {
    margin-bottom: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.contact-info i {
    color: var(--gold-light);
    font-size: 15px;
    min-width: 18px;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--line-light);
    color: #fff;
    transition: all .3s ease;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    border-color: transparent;
    transform: translateY(-4px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
    transition: color .25s ease, padding-right .25s ease;
}

.footer-links li a:hover {
    color: var(--gold-light);
    padding-right: 6px;
}

.footer-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(185, 28, 44, .35);
    transition: transform .3s var(--ease), box-shadow .3s ease;
}

.footer-download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(185, 28, 44, .45);
}

.opening-hours p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.opening-hours p span:first-child {
    color: rgba(255, 255, 255, .55);
}

.opening-hours p span:last-child {
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .42);
    font-size: 14px;
}

/* ============ Responsive ============ */
@media (max-width: 992px) {
    .menu-grid,
    .box-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cart-popup {
        left: -100%;
        max-width: 100%;
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .menu-grid,
    .box-grid {
        grid-template-columns: 1fr;
    }

    .order-buttons {
        flex-direction: column;
    }
}

/* ============ Mobile refinements ============ */
@media (max-width: 576px) {
    .page-banner {
        padding: 120px 0 48px;
    }

    .page-banner-title {
        font-size: clamp(1.7rem, 8vw, 2.4rem);
    }

    .page-banner-kicker {
        letter-spacing: 2px;
        font-size: 12px;
    }

    .page-banner-sub {
        font-size: .95rem;
    }

    .breadcrumb {
        font-size: 12px;
        gap: 7px;
    }

    .section-title {
        margin-bottom: 26px;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .search-bar {
        margin-bottom: 30px;
    }

    .menu-item-content {
        padding: 18px 16px;
    }

    .menu-item-title,
    .box-name,
    .box-price {
        font-size: 1.12rem;
    }

    .appetizer-grid {
        gap: 16px;
    }

    .appetizer-card {
        padding: 28px 18px;
    }

    .cart-header {
        padding: 18px 16px;
    }

    .cart-items {
        padding: 12px 16px;
    }

    .cart-footer {
        padding: 16px;
    }

    .cart-item-image {
        width: 64px;
        height: 64px;
    }

    .footer-content {
        gap: 28px;
    }
}

