:root {
    --black: #0b0a08;
    --charcoal: #17140f;
    --charcoal-2: #1f1b14;
    --gold: #d4a337;
    --gold-bright: #f2c94c;
    --gold-deep: #a9791f;
    --amber: #e8871e;
    --cream: #f6efdf;
    --cream-dim: #cfc4a8;
    --line: rgba(212, 163, 55, 0.18);
    --red: #c0392b;
    --green: #2fae5c;

    --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', 'Poppins', 'Segoe UI', sans-serif;

    --radius-s: 8px;
    --radius-m: 14px;
    --radius-l: 24px;

    --shadow-gold: 0 8px 30px rgba(212, 163, 55, 0.15);
    --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.55);

    --header-h: 76px;
    --catnav-h: 58px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + var(--catnav-h) + 10px);
}

body {
    margin: 0;
    background: var(--black);
    color: var(--cream);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    margin: 0;
    color: var(--cream);
    letter-spacing: .01em;
}

p {
    margin: 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* subtle grain / texture */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2000;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 30px;
    border-radius: 100px;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .03em;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s ease, background .3s ease, color .3s ease;
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
    color: #1a1406;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 34px rgba(212, 163, 55, .32);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(246, 239, 223, .35);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #2fae5c, #1f8a45);
    color: #f7fff9;
    box-shadow: 0 10px 26px rgba(47, 174, 92, .28);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(47, 174, 92, .4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: .4;
    cursor: not-allowed;
    transform: none !important;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    height: var(--header-h);
    display: flex;
    align-items: center;
    background: rgba(11, 10, 8, .82);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.brand-word {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--cream);
    display: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.main-nav a {
    position: relative;
    font-size: 14px;
    letter-spacing: .04em;
    font-weight: 500;
    color: var(--cream-dim);
    padding: 6px 2px;
    transition: color .25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    transition: width .3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-bright);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lang-switch {
    display: flex;
    align-items: center;
    background: var(--charcoal);
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 3px;
    position: relative;
}

.lang-switch button {
    position: relative;
    z-index: 2;
    padding: 7px 15px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .05em;
    border-radius: 100px;
    color: var(--cream);
    opacity: .75;
    transition: color .3s ease, opacity .3s ease;
}

.lang-switch button.active {
    color: #1a1406;
    opacity: 1;
}

.lang-switch .lang-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    height: calc(100% - 6px);
    width: calc(50% - 3px);
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    border-radius: 100px;
    transition: transform .32s cubic-bezier(.2, .8, .2, 1);
    z-index: 1;
}

.lang-switch[data-lang="en"] .lang-thumb {
    transform: translateX(100%);
}

.cart-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--cream);
    transition: border-color .3s ease, color .3s ease, transform .3s ease;
}

.cart-btn:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    background: linear-gradient(135deg, var(--amber), var(--gold-deep));
    color: #1a1406;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform .3s cubic-bezier(.3, 1.6, .5, 1);
}

.cart-count.show {
    transform: scale(1);
}

.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--cream);
    position: relative;
    transition: background .2s ease;
}

.hamburger span::before,
.hamburger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 1.5px;
    background: var(--cream);
    transition: transform .3s ease, top .3s ease;
}

.hamburger span::before {
    top: -6px;
}

.hamburger span::after {
    top: 6px;
}

.hamburger.open span {
    background: transparent;
}

.hamburger.open span::before {
    transform: rotate(45deg);
    top: 0;
}

.hamburger.open span::after {
    transform: rotate(-45deg);
    top: 0;
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: rgba(11, 10, 8, .98);
    backdrop-filter: blur(10px);
    z-index: 480;
    padding: 30px 24px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    overflow-y: auto;
}

.mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 20px;
    font-family: var(--font-display);
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    color: var(--cream);
}

.mobile-nav .mobile-cta {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 90px;
    background:
        radial-gradient(ellipse 60% 55% at 80% 12%, rgba(212, 163, 55, .16), transparent 60%),
        radial-gradient(ellipse 50% 45% at 8% 90%, rgba(232, 135, 30, .10), transparent 60%),
        linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.hero-glow.g1 {
    width: 420px;
    height: 420px;
    background: rgba(212, 163, 55, .18);
    top: -140px;
    right: -100px;
}

.hero-glow.g2 {
    width: 340px;
    height: 340px;
    background: rgba(232, 135, 30, .14);
    bottom: -140px;
    left: -80px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 7px 16px 7px 8px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--gold-bright);
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(14px);
}

.hero-badge .halal-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #1a1406;
    font-weight: 800;
}

.hero h1 {
    font-size: clamp(40px, 5.4vw, 74px);
    line-height: 1.03;
    color: var(--cream);
    opacity: 0;
    transform: translateY(20px);
}

.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--gold-bright), var(--amber) 60%, var(--gold-deep));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    margin-top: 22px;
    max-width: 480px;
    font-size: 17px;
    color: var(--cream-dim);
    font-weight: 300;
    opacity: 0;
    transform: translateY(16px);
}

.hero-cta {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
}

.hero-meta {
    margin-top: 44px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(16px);
}

.hero-meta div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-meta .num {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--gold-bright);
    font-weight: 700;
}

.hero-meta .lbl {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.hero-visual {
    position: relative;
    opacity: 1;
    transform: none;
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1);
}

.hero-visual .plate {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-deep), 0 0 0 10px rgba(212, 163, 55, .08), 0 0 0 1px var(--line);
    animation: float 6s ease-in-out infinite;
}

.hero-visual .plate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border: 1px solid rgba(212, 163, 55, .28);
    border-radius: 14px;
    background: rgba(11, 10, 8, .8);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-gold);
}

.hero-visual-badge strong {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-bright);
}

.hero-visual-badge span {
    font-size: 12px;
    color: var(--cream-dim);
}

.hero-visual .ring {
    position: absolute;
    inset: -18px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 163, 55, .35);
    animation: spin 34s linear infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cream-dim);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    opacity: 0;
}

.scroll-cue .line {
    width: 1px;
    height: 34px;
    background: linear-gradient(180deg, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-cue .line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold-bright));
    animation: scrollcue 2.2s ease-in-out infinite;
}

@keyframes scrollcue {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* =========================================================
   CATEGORY NAV
   ========================================================= */
.cat-nav-wrap {
    position: sticky;
    top: var(--header-h);
    z-index: 400;
    background: rgba(15, 13, 10, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}

.cat-nav-wrap.is-stuck {
    box-shadow: 0 12px 26px rgba(0, 0, 0, .4);
}

.cat-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 12px 24px;
    max-width: 1240px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}

.cat-nav::-webkit-scrollbar {
    display: none;
}

.cat-nav button {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    border-radius: 100px;
    border: 1px solid var(--line);
    color: var(--cream-dim);
    transition: all .3s ease;
}

.cat-nav button:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
}

.cat-nav button.active {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #1a1406;
    border-color: transparent;
}

/* =========================================================
   SECTION GENERICS
   ========================================================= */
.section {
    padding: 96px 0;
    position: relative;
}

.section-alt {
    background: var(--charcoal);
}

.section-head {
    max-width: 640px;
    margin-bottom: 54px;
}

.section-head h2 {
    font-size: clamp(30px, 4vw, 44px);
    margin-top: 14px;
}

.section-head p {
    margin-top: 16px;
    color: var(--cream-dim);
    font-size: 16px;
}

.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media .frame {
    border-radius: var(--radius-l);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--line);
    aspect-ratio: 4/4.6;
}

.about-media .frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

.about-media:hover .frame img {
    transform: scale(1.05);
}

.about-media .badge-halal {
    position: absolute;
    bottom: -22px;
    right: -14px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--black);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    box-shadow: var(--shadow-deep);
}

.badge-halal strong {
    font-family: var(--font-display);
    color: var(--gold-bright);
    font-size: 20px;
}

.badge-halal span {
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cream-dim);
}

.about-copy p {
    color: var(--cream-dim);
    font-size: 16px;
    margin-top: 16px;
}

.about-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about-feature .ic {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(212, 163, 55, .18), rgba(232, 135, 30, .1));
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
}

.about-feature h4 {
    font-size: 15.5px;
    color: var(--cream);
}

.about-feature p {
    font-size: 13.5px;
    color: var(--cream-dim);
    margin-top: 3px;
}

/* =========================================================
   MENU PRODUCT GRID / CARD
   ========================================================= */
.menu-category {
    scroll-margin-top: calc(var(--header-h) + var(--catnav-h) + 20px);
}

.menu-category .section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    max-width: none;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.menu-category .section-head .txt {
    max-width: 640px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease, border-color .4s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(212, 163, 55, .4);
}

.card-media {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #14110c;
}

.card-media picture {
    display: block;
    width: 100%;
    height: 100%;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.card:hover .card-media img {
    transform: scale(1.08);
}

.card-media.no-photo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-media.no-photo .glyph {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--gold);
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .55;
    text-align: center;
    padding: 10px;
}

.card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(11, 10, 8, .75);
    backdrop-filter: blur(6px);
    border: 1px solid var(--line);
    color: var(--gold-bright);
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 100px;
}

.card-body {
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.card-body h3 {
    font-size: 18px;
    line-height: 1.25;
}

.card-body .desc {
    font-size: 12.8px;
    color: var(--cream-dim);
    min-height: 16px;
}

.card-foot {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.card-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-bright);
}

.add-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 100px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold-bright);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .02em;
    transition: background .3s ease, color .3s ease, transform .2s ease;
}

.add-btn:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
    color: #1a1406;
}

.add-btn.added {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.add-btn:active {
    transform: scale(.94);
}

/* =========================================================
   ORDER / LOCATION
   ========================================================= */
.order-section {
    background:
        radial-gradient(ellipse 60% 60% at 85% 0%, rgba(212, 163, 55, .14), transparent 60%),
        linear-gradient(180deg, var(--charcoal), var(--black));
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 60px;
    align-items: center;
}

.order-copy h2 {
    font-size: clamp(30px, 4vw, 46px);
}

.order-copy p {
    margin-top: 18px;
    color: var(--cream-dim);
    font-size: 16.5px;
    max-width: 520px;
}

.order-cta {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.info-card {
    background: var(--charcoal-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    padding: 34px;
    box-shadow: var(--shadow-deep);
}

.info-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row:first-child {
    padding-top: 0;
}

.info-row .ic {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 163, 55, .2), rgba(232, 135, 30, .1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
}

.info-row h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gold-bright);
}

.info-row p {
    margin-top: 4px;
    font-size: 15px;
    color: var(--cream);
    line-height: 1.5;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 8px;
    background: rgba(47, 174, 92, .14);
    border: 1px solid rgba(47, 174, 92, .4);
    color: #7be0a0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 5px 12px;
    border-radius: 100px;
}

.status-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #3fd571;
    box-shadow: 0 0 0 3px rgba(63, 213, 113, .25);
}

.info-card .get-directions {
    margin-top: 22px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--black);
    border-top: 1px solid var(--line);
    padding: 70px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
    gap: 44px;
}

.footer-brand img {
    height: 52px;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--cream-dim);
    font-size: 14px;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--cream-dim);
    font-size: 14.5px;
    transition: color .25s ease;
}

.footer-col a:hover {
    color: var(--gold-bright);
}

.footer-col p {
    color: var(--cream-dim);
    font-size: 14.5px;
    line-height: 1.7;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.footer-bottom {
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12.5px;
    color: var(--cream-dim);
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.fab-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 460;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #32c261, #1f8a45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 12px 30px rgba(47, 174, 92, .4);
}

.fab-whatsapp::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(47, 174, 92, .6);
    animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .8;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }
}

/* =========================================================
   CART DRAWER
   ========================================================= */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 710;
    width: min(440px, 100vw);
    background: var(--charcoal);
    border-left: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(.2, .8, .2, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
    flex-shrink: 0;
}

.cart-head h3 {
    font-size: 22px;
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
}

.cart-body {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 140px;
}

.cart-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    color: var(--cream-dim);
    padding: 40px 0;
}

.cart-empty svg {
    color: var(--gold);
    opacity: .6;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(23, 20, 15, .7);
}

.cart-item picture {
    display: block;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.cart-item img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #14110c;
}

.cart-item .ph {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    flex-shrink: 0;
    background: #14110c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 10px;
    text-align: center;
    padding: 4px;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-info h5 {
    font-size: 14.5px;
    color: var(--cream);
    font-weight: 600;
}

.cart-item-info .unit {
    font-size: 12.5px;
    color: var(--cream-dim);
    margin-top: 2px;
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 100px;
    overflow: hidden;
}

.qty-ctrl button {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
}

.qty-ctrl button:hover {
    color: var(--gold-bright);
}

.qty-ctrl span {
    min-width: 22px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.cart-item-price {
    font-weight: 700;
    color: var(--gold-bright);
    font-size: 14.5px;
}

.remove-btn {
    color: var(--cream-dim);
    font-size: 12px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s ease;
}

.remove-btn:hover {
    color: var(--red);
}

.cart-foot {
    border-top: 1px solid var(--line);
    padding: 16px 24px 24px;
    flex-shrink: 0;
    max-height: 55vh;
    overflow-y: auto;
    background: var(--charcoal-2);
}

.cart-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

#deliveryFields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-form input,
.cart-form textarea {
    width: 100%;
    background: var(--charcoal-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-s);
    padding: 11px 14px;
    color: var(--cream);
    font-family: inherit;
    font-size: 13.5px;
}

.cart-form input:focus,
.cart-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.cart-form textarea {
    resize: vertical;
    min-height: 56px;
}

.cart-totals {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: var(--cream-dim);
}

.cart-totals.total {
    font-size: 18px;
    color: var(--cream);
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    margin-top: 6px;
}

.cart-totals.total .amt {
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-size: 24px;
}

.pay-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
}

.pay-note p {
    font-size: 12.5px;
    color: var(--cream-dim);
    margin-bottom: 10px;
}

.cart-table-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--charcoal);
    background: var(--gold-bright);
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: .02em;
}

.table-banner {
    position: relative;
    z-index: 650;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold-bright);
    color: var(--charcoal);
    font-size: 13.5px;
    font-weight: 700;
    padding: 9px 16px;
    text-align: center;
}

.table-banner[hidden] {
    display: none;
}

/* Fields hidden while ordering dine-in via table QR (delivery address/area not relevant) */
.hide-for-table {
    display: none !important;
}

/* toast */
.toast {
    position: fixed;
    left: 50%;
    bottom: 96px;
    transform: translateX(-50%) translateY(20px);
    background: var(--charcoal-2);
    border: 1px solid var(--gold);
    color: var(--cream);
    padding: 13px 22px;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 600;
    box-shadow: var(--shadow-deep);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .btn-sm {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero {
        text-align: center;
        padding: 44px 0 72px;
    }

    .hero-cta,
    .hero-meta {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 640px;
    }

    .hero-visual {
        order: -1;
        max-width: 300px;
        margin: 0 auto 10px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .order-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --header-h: 64px;
        --catnav-h: 52px;
    }

    .container {
        padding: 0 16px;
    }

    .brand img {
        height: 40px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .product-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-body h3 {
        font-size: 15.5px;
    }

    .card-price {
        font-size: 17px;
    }

    .add-btn {
        padding: 7px 12px;
        font-size: 11px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .section {
        padding: 64px 0;
    }

    .cart-drawer {
        width: 100vw;
    }

    .cart-head,
    .cart-body,
    .cart-foot {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cart-item {
        padding: 12px;
    }

    .cart-form input,
    .cart-form textarea {
        font-size: 16px;
    }

    .fab-whatsapp {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .hero {
        padding: 40px 0 70px;
        text-align: center;
    }

    .hero-cta,
    .hero-meta {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual-badge {
        left: 12px;
        bottom: 12px;
        padding: 8px 10px;
    }
}

@media (max-width:420px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 2px;
}