/* =====================================================
   SÜTLÜCE KOKOREÇ — Mobile Menu UI
   Brand: #FFDA00 (yellow), #D71921 (red)
   ===================================================== */

:root {
    --yellow: #FFDA00;
    --yellow-soft: #FFF4B0;
    --red: #D71921;
    --red-deep: #A30F17;
    --ink: #131211;
    --ink-2: #2A2825;
    --muted: #6B655E;
    --line: #EDE8DF;
    --cream: #F7F2E7;
    --paper: #FBF8F1;
    --white: #FFFFFF;

    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;

    --shadow-sm: 0 1px 0 rgba(19,18,17,.04), 0 2px 6px rgba(19,18,17,.04);
    --shadow: 0 6px 24px rgba(19,18,17,.06);

    --container: 480px;
    --pad: 20px;

    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }

main { max-width: var(--container); margin: 0 auto; padding-bottom: 80px; }

.u-red { color: var(--red); }
.u-yellow { color: var(--yellow); }

/* =====================================================
   HEADER
   ===================================================== */

.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    max-width: var(--container);
    margin: 0 auto;
    transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled {
    background: rgba(251,248,241,.92);
    border-bottom-color: var(--line);
    backdrop-filter: saturate(150%) blur(10px);
    -webkit-backdrop-filter: saturate(150%) blur(10px);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px var(--pad);
    min-height: 84px;
}

.icon-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: transform .15s ease, background .15s ease;
}
.icon-btn:active { transform: scale(.94); background: var(--cream); }

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
}
.brand-logo {
    height: 60px;
    width: auto;
    display: block;
}
.foot-logo {
    height: 72px;
}

/* =====================================================
   HERO — Title + product card
   ===================================================== */

.hero {
    position: relative;
    padding: 28px var(--pad) 24px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 18px;
    align-items: start;
}

.hero-text {
    padding-top: 4px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--cream);
    border: 1px solid var(--line);
    color: var(--ink-2);
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 16px;
    white-space: nowrap;
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(215,25,33,.18);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(215,25,33,.2); }
    50% { box-shadow: 0 0 0 6px rgba(215,25,33,0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(34px, 9.5vw, 46px);
    line-height: .95;
    letter-spacing: -.035em;
    color: var(--ink);
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 22ch;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .15s ease, background .15s ease;
}
.btn:active { transform: scale(.97); }

.btn-primary {
    background: var(--ink);
    color: var(--white);
    padding-right: 16px;
}
.btn-primary:active { background: var(--ink-2); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--ink);
}

.hero-cta {
    padding: 12px 14px 12px 20px;
    font-size: 14px;
}

/* Product card on hero right */
.hero-product {
    position: relative;
    color: var(--white);
    border-radius: 22px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
    overflow: hidden;
    transform: rotate(1.5deg);
    box-shadow: 0 18px 40px -16px rgba(215,25,33,.5);
    transition: transform .2s ease;
    background-image: url('../img/hero-kokorec.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-product:active { transform: rotate(1.5deg) scale(.97); }

.hero-product::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(0,0,0,.65) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-product-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 4;
}
.hp-badge {
    background: var(--yellow);
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 4px 7px;
    border-radius: 99px;
    line-height: 1;
}
.hp-rank {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.02em;
    opacity: .7;
}

.hero-product-visual {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
}

.hp-steam {
    position: absolute;
    width: 8px;
    border-radius: 99px;
    background: rgba(255,255,255,.35);
    bottom: 12px;
    animation: steam 2.6s ease-in-out infinite;
}
.hp-steam.s1 { left: 35%; height: 32px; animation-delay: 0s; }
.hp-steam.s2 { left: 50%; height: 40px; animation-delay: .6s; }
.hp-steam.s3 { left: 62%; height: 28px; animation-delay: 1.2s; }
@keyframes steam {
    0% { transform: translateY(20px) scaleX(1); opacity: 0; }
    35% { opacity: .55; }
    100% { transform: translateY(-30px) scaleX(.4); opacity: 0; }
}

.hero-product-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    position: relative;
    z-index: 4;
    margin-top: auto;
}
.hp-cat {
    display: block;
    font-size: 10px;
    color: rgba(255,255,255,.7);
    letter-spacing: .02em;
    margin-bottom: 2px;
}
.hp-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.1;
}
.hp-price-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.hp-price {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
}
.hp-add {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =====================================================
   SECTION
   ===================================================== */

.section {
    padding: 28px var(--pad) 4px;
}
.section-tight { padding-top: 8px; }

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
    padding: 0 2px;
}

.eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 4px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.025em;
    color: var(--ink);
    line-height: 1.05;
}

.section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-2);
    padding: 6px 0;
}

/* =====================================================
   CAMPAIGNS
   ===================================================== */

.campaign-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--pad);
    padding: 4px var(--pad) 20px;
    margin: 0 calc(var(--pad) * -1);
    scrollbar-width: none;
}
.campaign-rail::-webkit-scrollbar { display: none; }

.campaign-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    padding: 20px 20px 18px;
    border-radius: var(--radius);
    position: relative;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
    box-shadow: 0 10px 24px -14px rgba(19,18,17,.5);
}

/* Photo darken layer (always present) */
.campaign-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(19,18,17,.25);
    z-index: 1;
}

/* Tinted gradient overlay per theme */
.campaign-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.campaign-card > * { position: relative; z-index: 2; }

.camp-red { color: var(--white); }
.camp-red::after { background: linear-gradient(180deg, rgba(215,25,33,.55) 0%, rgba(163,15,23,.85) 100%); }

.camp-yellow { color: var(--ink); }
.camp-yellow::after { background: linear-gradient(180deg, rgba(255,218,0,.7) 0%, rgba(255,200,0,.92) 100%); }

.camp-cream { color: var(--white); }
.camp-cream::after { background: linear-gradient(180deg, rgba(19,18,17,.2) 0%, rgba(19,18,17,.75) 100%); }

.camp-dark { color: var(--white); }
.camp-dark::after { background: linear-gradient(180deg, rgba(19,18,17,.4) 0%, rgba(19,18,17,.92) 100%); }

.camp-badge {
    display: inline-flex;
    align-self: flex-start;
    background: var(--white);
    color: var(--red);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 14px;
}
.camp-badge.dark { background: var(--ink); color: var(--yellow); }
.camp-badge.light { background: var(--yellow); color: var(--ink); }

.campaign-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin-bottom: 8px;
}

.campaign-card p {
    font-size: 13px;
    line-height: 1.45;
    opacity: .9;
    margin-bottom: auto;
    padding-bottom: 14px;
}

.camp-foot {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.camp-price {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.02em;
}
.camp-price.dark { color: var(--ink); }
.camp-price.light { color: var(--yellow); }
.camp-cream .camp-price.dark { color: var(--white); }
.camp-cream .camp-badge.dark { background: var(--white); color: var(--ink); }
.camp-old {
    font-size: 13px;
    opacity: .65;
    text-decoration: line-through;
}
.camp-tag {
    font-size: 11px;
    font-weight: 600;
    background: rgba(255,255,255,.2);
    padding: 3px 8px;
    border-radius: 99px;
}
.camp-yellow .camp-tag {
    background: rgba(19,18,17,.12);
}
.camp-cream .camp-tag {
    background: rgba(255,255,255,.2);
    color: var(--white);
}
.camp-tag.light {
    background: rgba(255,218,0,.18);
    color: var(--yellow);
}

/* =====================================================
   CATEGORIES
   ===================================================== */

.cat-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px var(--pad) 16px;
    margin: 0 calc(var(--pad) * -1);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.cat-rail::-webkit-scrollbar { display: none; }

.cat-story {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform .15s ease;
}
.cat-story:active { transform: scale(.93); }

.cat-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: var(--cream);
    border: 3px solid var(--line);
    box-shadow: 0 2px 8px rgba(19,18,17,.10);
    transition: border-color .15s ease;
}

.cat-story.active .cat-avatar {
    border-color: transparent;
    box-shadow: 0 0 0 3px var(--red), 0 2px 8px rgba(19,18,17,.10);
}

.cat-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .01em;
    text-align: center;
    max-width: 72px;
    line-height: 1.25;
}

.cat-story.active .cat-name { color: var(--red); }

/* =====================================================
   PRODUCTS
   ===================================================== */

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding-bottom: 16px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease;
}
.product-card:active { transform: scale(.98); }

.product-visual {
    aspect-ratio: 1.1 / 1;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: hidden;
    background-color: var(--ink);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}
.product-visual[style*="background-image"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19,18,17,.08) 0%, rgba(19,18,17,.55) 100%);
    z-index: 1;
}
.product-visual > * { z-index: 2; position: relative; }

.visual-red { background-color: var(--red); }
.visual-yellow { background-color: var(--yellow); }
.visual-cream { background-color: var(--cream); border-bottom: 1px solid var(--line); }
.visual-dark { background-color: var(--ink); }

.product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--white);
    color: var(--red);
    padding: 3px 9px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}
.product-badge.dark { background: var(--ink); color: var(--yellow); }
.product-badge.light { background: var(--yellow); color: var(--ink); }

.product-info {
    padding: 12px 14px 14px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 4px;
}
.rating { color: var(--ink); font-weight: 700; }
.dot-sep {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--muted);
}

.product-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.15;
}

.product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-price {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.01em;
}

.add-btn {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}
.add-btn:active { transform: scale(.9); background: var(--red); }

/* =====================================================
   ORDER PROVIDERS
   ===================================================== */

.order-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-bottom: 8px;
}

.order-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border-radius: 18px;
    padding: 20px 8px 16px;
    color: var(--ink);
    text-decoration: none;
    transition: transform .15s ease;
    overflow: hidden;
}
.order-card:active { transform: scale(.94); }

.order-ys    { background: #FFF0F4; }
.order-getir { background: #F2EFFC; }
.order-migros{ background: #FFF5E6; }
.order-uber  { background: #F0F0F0; }

.order-logo-wrap {
    margin-bottom: 14px;
}
.order-svg {
    width: 48px; height: 48px;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.order-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 100%;
    text-align: center;
}

.order-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.order-eta {
    font-size: 10px;
    color: var(--muted);
    line-height: 1;
}

.order-arrow { display: none; }

/* =====================================================
   CTA BLOCKS (WhatsApp + Instagram)
   ===================================================== */

.cta-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
}

.cta-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 18px;
    border-radius: 20px;
    color: var(--white);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .15s ease;
}
.cta-block:active { transform: scale(.97); }

.cta-wa {
    background: #1BA84A;
}
.cta-wa::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(255,255,255,.15) 0%, transparent 65%);
    pointer-events: none;
}

.cta-ig {
    background: linear-gradient(135deg, #833AB4 0%, #C13584 40%, #E1306C 70%, #F77737 100%);
}
.cta-ig::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 90% 50%, rgba(255,255,255,.15) 0%, transparent 65%);
    pointer-events: none;
}

.cta-pill-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(4px);
}

.cta-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.cta-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.cta-sub {
    font-size: 11px;
    opacity: .85;
    line-height: 1.3;
}

.cta-badge {
    flex-shrink: 0;
    background: rgba(255,255,255,.25);
    color: white;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 4px 10px;
    border-radius: 99px;
    backdrop-filter: blur(4px);
}
.cta-badge-ig { background: rgba(255,255,255,.3); }

/* =====================================================
   STORY
   ===================================================== */

.story {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin: 16px 0 24px;
}

.story .eyebrow {
    color: var(--red);
    margin-bottom: 12px;
}

.story-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.025em;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 14px;
}

.story p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-2);
    margin-bottom: 18px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 2px;
}
.link-arrow span { transition: transform .2s ease; }
.link-arrow:active span { transform: translateX(4px); }

/* =====================================================
   FOOTER — Dev marka tipo
   ===================================================== */

.site-footer {
    background: var(--ink);
    color: var(--white);
    max-width: var(--container);
    margin: 24px auto 0;
    padding: 40px 24px 0;
    border-radius: 28px 28px 0 0;
    position: relative;
    overflow: hidden;
}

.ft-intro {
    margin-bottom: 28px;
}
.ft-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 18px;
}
.ft-eyebrow-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--yellow);
}

.ft-headline {
    font-family: var(--font-display);
    font-size: clamp(30px, 8vw, 38px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.02;
    color: var(--white);
    margin-bottom: 14px;
}

.ft-lede {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,.55);
    max-width: 36ch;
}

/* CTA row */
.ft-cta-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 28px;
}
.ft-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 6px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    transition: all .15s ease;
}
.ft-cta:active { transform: scale(.96); background: rgba(255,255,255,.12); }
.ft-cta-wa svg { color: #25D366; }
.ft-cta-ig svg { color: #E1306C; }
.ft-cta-call svg { color: var(--yellow); }

/* Links columns */
.ft-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 20px;
}
.ft-col { display: flex; flex-direction: column; }
.ft-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 14px;
}
.ft-col a {
    font-size: 14px;
    color: rgba(255,255,255,.85);
    padding: 6px 0;
    transition: color .15s ease, padding .15s ease;
}
.ft-col a:active { color: var(--yellow); }

/* Meta */
.ft-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.ft-meta-row {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: rgba(255,255,255,.65);
}
.ft-meta-row svg { color: var(--red); flex-shrink: 0; opacity: .85; }

/* Wordmark */
.ft-wordmark {
    position: relative;
    margin: 0 -24px;
    overflow: hidden;
    user-select: none;
    pointer-events: none;
    line-height: .8;
}
.ft-wordmark span {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(80px, 30vw, 150px);
    letter-spacing: -.06em;
    line-height: .8;
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(255,255,255,.18);
    text-stroke: 1.2px rgba(255,255,255,.18);
    text-align: center;
    transform: translateY(18%);
    padding-bottom: 4px;
}

/* Bottom strip */
.ft-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255,255,255,.4);
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    position: relative;
    z-index: 2;
    background: var(--ink);
}
.ft-bottom a { color: rgba(255,255,255,.55); }
.ft-bottom a:active { color: var(--yellow); }
.ft-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
}
.ft-bottom-spacer { flex: 1; }
.ft-mark { color: var(--yellow); font-weight: 600; }

/* =====================================================
   FLOATING ORDER BAR
   ===================================================== */

.float-bar {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: calc(100% - 32px);
    max-width: calc(var(--container) - 32px);
    pointer-events: none;
}

.float-action {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 12px 32px rgba(215,25,33,.35), 0 4px 8px rgba(19,18,17,.1);
    transition: transform .15s ease, background .15s ease;
}
.float-action:active {
    transform: scale(.97);
    background: var(--red-deep);
}
.float-arrow {
    margin-left: auto;
    background: rgba(255,255,255,.18);
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* =====================================================
   MENU BOTTOM SHEET
   ===================================================== */

.sheet {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
}
.sheet[aria-hidden="false"] { pointer-events: auto; }

.sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(19,18,17,.55);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    opacity: 0;
    transition: opacity .55s ease, backdrop-filter .55s ease, -webkit-backdrop-filter .55s ease;
}
.sheet[aria-hidden="false"] .sheet-backdrop {
    opacity: 1;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.sheet-panel {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 100%);
    width: 100%;
    max-width: var(--container);
    height: 88dvh;
    max-height: 88dvh;
    background: var(--paper);
    border-radius: 28px 28px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -20px 60px rgba(0,0,0,.25);
    opacity: 0;
    transition:
        transform .65s cubic-bezier(.16,1,.3,1),
        opacity .35s ease-out .05s;
    will-change: transform, opacity;
}
.sheet[aria-hidden="false"] .sheet-panel {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* Staggered content entrance */
.sheet-panel > * {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity .5s ease-out,
        transform .55s cubic-bezier(.22,1,.36,1);
}
.sheet[aria-hidden="false"] .sheet-panel > * {
    opacity: 1;
    transform: translateY(0);
}
.sheet[aria-hidden="false"] .sheet-head      { transition-delay: .18s; }
.sheet[aria-hidden="false"] .sheet-search    { transition-delay: .24s; }
.sheet[aria-hidden="false"] .sheet-scroll    { transition-delay: .30s; }
.sheet[aria-hidden="false"] .sheet-foot      { transition-delay: .36s; }

/* Section-level stagger inside scroll */
.sheet-scroll .sheet-section {
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity .45s ease-out,
        transform .5s cubic-bezier(.22,1,.36,1);
}
.sheet[aria-hidden="false"] .sheet-scroll .sheet-section { opacity: 1; transform: none; }
.sheet[aria-hidden="false"] .sheet-scroll .sheet-section:nth-child(1) { transition-delay: .38s; }
.sheet[aria-hidden="false"] .sheet-scroll .sheet-section:nth-child(2) { transition-delay: .44s; }
.sheet[aria-hidden="false"] .sheet-scroll .sheet-section:nth-child(3) { transition-delay: .50s; }
.sheet[aria-hidden="false"] .sheet-scroll .sheet-section:nth-child(4) { transition-delay: .56s; }

.sheet-handle {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 5px;
    border-radius: 999px;
    background: rgba(19,18,17,.18);
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 5;
}

.sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 20px 6px;
    flex-shrink: 0;
}
.sheet-logo {
    height: 44px;
    width: auto;
}
.sheet-close {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease;
}
.sheet-close:active { transform: scale(.92); background: var(--cream); }

.sheet-search {
    margin: 14px 20px 4px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 10px;
    transition: border-color .15s ease, box-shadow .15s ease;
    flex-shrink: 0;
}
.sheet-search:focus-within {
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(19,18,17,.06);
}
.search-icon { color: var(--muted); flex-shrink: 0; }
.sheet-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    outline: none;
}
.sheet-search input::placeholder { color: var(--muted); }
.search-kbd {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 3px 6px;
    letter-spacing: .04em;
    flex-shrink: 0;
}

.sheet-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 18px 20px 12px;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}
.sheet-scroll::-webkit-scrollbar { width: 0; }

.sheet-section {
    margin-bottom: 22px;
}
.sheet-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    padding-left: 4px;
}

/* Categories grid */
.sheet-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.sheet-cat {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    color: var(--ink);
    transition: all .15s ease;
}
.sheet-cat:active {
    transform: scale(.96);
    background: var(--cream);
}
.sc-num {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    color: var(--ink);
    background: var(--yellow);
    padding: 2px 6px;
    border-radius: 6px;
    line-height: 1.3;
}
.sc-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.1;
}

/* Nav links */
.sheet-nav {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}
.sheet-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    transition: background .15s ease;
    position: relative;
}
.sheet-link:last-child { border-bottom: none; }
.sheet-link:active { background: var(--cream); }

.sl-mark {
    width: 6px;
    height: 32px;
    border-radius: 99px;
    background: var(--line);
    flex-shrink: 0;
    transition: background .15s ease;
}
.sheet-link.is-active .sl-mark { background: var(--red); }
.sheet-link.is-active strong { color: var(--red); }

.sl-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    min-width: 0;
}
.sl-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
}
.sl-text small {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.2;
}

.sl-badge {
    background: var(--red);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 3px 7px;
    border-radius: 99px;
    line-height: 1;
}

.sheet-link > svg:last-child {
    color: var(--muted);
    flex-shrink: 0;
}

/* Providers */
.sheet-providers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.sp-chip {
    aspect-ratio: 1;
    border-radius: 14px;
    background: var(--c);
    color: var(--t, white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -.02em;
    transition: transform .15s ease;
}
.sp-chip:active { transform: scale(.94); }

/* Social */
.sheet-social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.ss-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: 14px;
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    transition: transform .15s ease;
}
.ss-btn:active { transform: scale(.96); }
.ss-ig { background: #E1306C; }
.ss-tt { background: var(--ink); }
.ss-fb { background: #1877F2; }

/* Foot sticky */
.sheet-foot {
    flex-shrink: 0;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
    display: flex;
    gap: 8px;
}
.sheet-foot-btn {
    height: 52px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: transform .15s ease, background .15s ease;
}
.sheet-foot-btn:active { transform: scale(.97); }
.sf-wa {
    width: 52px;
    background: #25D366;
    color: white;
    flex-shrink: 0;
}
.sf-primary {
    flex: 1;
    background: var(--red);
    color: var(--white);
    padding: 0 22px;
    box-shadow: 0 8px 22px rgba(215,25,33,.32);
}
.sf-primary:active { background: var(--red-deep); }

/* When sheet open, lock body */
body.sheet-open { overflow: hidden; }

/* =====================================================
   SCROLL & MISC
   ===================================================== */

@media (min-width: 520px) {
    body { background: #EFEAE0; }
    main, .site-header, .site-footer {
        box-shadow: 0 0 60px rgba(0,0,0,.06);
    }
    .site-header { border-radius: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }
}

/* =====================================================
   INNER PAGE SHARED UTILITIES
   ===================================================== */

/* Inner header variant (no hamburger, back button) */
.site-header--inner .header-top {
    justify-content: space-between;
}
.header-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Page hero — inner page title area */
.page-hero {
    padding: 28px var(--pad) 24px;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 8vw, 40px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 8px;
    margin-top: 6px;
}
.page-hero-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Back button — overlaid on hero images */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    transition: transform .15s ease;
}
.back-btn:active { transform: scale(.93); }

/* Float bar badge */
.float-badge {
    background: var(--white);
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    margin-left: -4px;
}

/* =====================================================
   CATEGORIES PAGE — Full-width category cards
   ===================================================== */

.cat-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 24px;
}

.cat-card-full {
    position: relative;
    height: 140px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: transform .15s ease;
    isolation: isolate;
}
.cat-card-full:active { transform: scale(.99); }

.cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    transition: transform .3s ease;
}
.cat-card-full:active .cat-card-bg { transform: scale(1.02); }

/* Dark gradient overlay */
.cat-card-full::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19,18,17,.08) 0%, rgba(19,18,17,.72) 100%);
    z-index: 1;
}

.cat-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 20px;
    color: var(--white);
}

.cat-card-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.05;
    margin-bottom: 3px;
}

.cat-card-count {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    font-weight: 500;
}

.cat-card-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s ease;
}
.cat-card-full:active .cat-card-arrow { background: rgba(255,255,255,.35); }

/* =====================================================
   CATEGORY DETAIL PAGE
   ===================================================== */

.cat-detail-hero {
    position: relative;
    height: 160px;
    overflow: hidden;
    isolation: isolate;
}

.cat-detail-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
}
.cat-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19,18,17,.1) 0%, rgba(19,18,17,.75) 100%);
    z-index: 1;
}
.cat-detail-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 0 var(--pad) 18px;
    color: var(--white);
}
.cat-detail-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.cat-detail-count {
    font-size: 13px;
    color: rgba(255,255,255,.8);
}

/* Product rows (horizontal cards for list) */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 24px;
}

.product-row {
    display: flex;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    text-decoration: none;
    color: var(--ink);
    transition: transform .15s ease;
    align-items: flex-start;
}
.product-row:active { transform: scale(.99); }

.product-row-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    flex-shrink: 0;
}

.product-row-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-row-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    color: var(--muted);
}

.product-row-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--ink);
    line-height: 1.15;
}

.product-row-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
}

/* =====================================================
   PRODUCT DETAIL PAGE
   ===================================================== */

.product-page {
    background: var(--white);
}
.product-page main { background: var(--white); }

.product-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--ink);
}
.product-hero-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.product-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19,18,17,.2) 0%, rgba(19,18,17,0) 60%);
    pointer-events: none;
}

.product-hero-badges {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 5;
}
.product-hero-badge {
    background: var(--yellow);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    padding: 5px 12px;
    border-radius: 99px;
}

.product-main {
    max-width: var(--container);
    margin: 0 auto;
    padding-bottom: 0;
}

.product-detail-head {
    padding: 20px var(--pad) 16px;
    border-bottom: 1px solid var(--line);
}

.product-detail-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.product-cat-badge {
    background: var(--cream);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 99px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
}

.product-weight { color: var(--muted); }

.product-detail-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 10px;
}

.product-detail-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-detail-price {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -.02em;
}

/* =====================================================
   TABS — Product page & Auth page
   ===================================================== */

.tab-bar {
    display: flex;
    padding: 0 var(--pad);
    border-bottom: 1.5px solid var(--line);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 10;
}

.tab-btn {
    flex: 1;
    padding: 14px 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    border: none;
    background: transparent;
    cursor: pointer;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1.5px;
    transition: color .15s ease, border-color .15s ease;
    font-family: inherit;
    white-space: nowrap;
}
.tab-btn.active {
    color: var(--ink);
    border-bottom-color: var(--red);
}
.tab-btn:active { opacity: .7; }

.tab-panel {
    display: none;
    padding: 0 var(--pad);
}
.tab-panel.active { display: block; }

.tab-content-inner {
    padding: 20px 0 24px;
}

/* Auth page tabs */
.tab-bar--auth {
    padding: 0;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--cream);
    position: static;
}
.tab-bar--auth .tab-btn {
    border-bottom: none;
    margin-bottom: 0;
    padding: 12px 8px;
    border-radius: 11px;
}
.tab-bar--auth .tab-btn.active {
    background: var(--white);
    color: var(--ink);
    border-bottom: none;
    box-shadow: var(--shadow-sm);
}

/* =====================================================
   PRODUCT DETAIL — Tab content
   ===================================================== */

.product-detail-desc {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: 18px;
}

.detail-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}
.detail-bullets li {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.45;
    padding: 12px 14px;
    background: var(--cream);
    border-radius: 12px;
    border: 1px solid var(--line);
}
.detail-bullets li::before {
    content: '—';
    color: var(--red);
    font-weight: 700;
    flex-shrink: 0;
}

/* Nutrition */
.nutrition-header {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

.nutrition-list {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.nutrition-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
}
.nutrition-row:last-child { border-bottom: none; }
.nutrition-row--highlight {
    background: var(--cream);
}

.nutrition-label {
    font-size: 14px;
    color: var(--ink);
    font-weight: 500;
}
.nutrition-value {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}
.nutrition-row--highlight .nutrition-value { color: var(--red); }

/* Allergens */
.allergen-note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.allergen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.allergen-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1.5px solid;
    font-size: 13px;
    font-weight: 600;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.allergen-chip--var {
    background: #FFF0F1;
    border-color: #F8C2C4;
    color: #C0101B;
}
.allergen-chip--yok {
    background: #F0FAF3;
    border-color: #B5E5C2;
    color: #1A8C3A;
}
.allergen-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
}
.allergen-chip--var .allergen-icon {
    background: var(--red);
    color: var(--white);
}
.allergen-chip--yok .allergen-icon {
    background: #1A8C3A;
    color: var(--white);
}
.allergen-chip small {
    font-size: 10px;
    font-weight: 600;
    opacity: .75;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* =====================================================
   PRODUCT ACTION BAR (fixed bottom)
   ===================================================== */

.product-action-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container);
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 50;
    box-shadow: 0 -8px 24px rgba(19,18,17,.06);
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--cream);
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    flex-shrink: 0;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background .15s ease;
    line-height: 1;
}
.qty-btn:active { background: var(--white); }

.qty-val {
    width: 28px;
    text-align: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}

.product-add-btn {
    flex: 1;
    height: 50px;
    border-radius: 999px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}
.product-add-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    background: rgba(255,255,255,.15);
    padding: 4px 10px;
    border-radius: 99px;
}

/* Btn full width */
.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    border-radius: 14px;
}

/* =====================================================
   AUTH / LOGIN PAGE
   ===================================================== */

.auth-page {
    min-height: 100dvh;
    background: var(--paper);
    display: flex;
    justify-content: center;
}

.auth-wrap {
    width: 100%;
    max-width: var(--container);
    padding: 40px var(--pad) 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
}

.auth-logo {
    height: 64px;
    width: auto;
}

.auth-tagline {
    font-size: 14px;
    color: var(--muted);
    text-align: center;
}

.auth-panel {
    display: none;
}
.auth-panel.active { display: block; }

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Form elements */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
    -webkit-appearance: none;
    appearance: none;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 4px rgba(19,18,17,.06);
}

.form-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.form-input-wrap .form-input { width: 100%; }
.form-prefix {
    position: absolute;
    left: 14px;
    font-size: 14px;
    color: var(--ink-2);
    pointer-events: none;
    z-index: 1;
    font-weight: 500;
}
.form-input--with-prefix {
    padding-left: 72px;
}
.form-eye-btn {
    position: absolute;
    right: 12px;
    color: var(--muted);
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.form-forgot {
    font-size: 12px;
    color: var(--muted);
    text-align: right;
    display: block;
    margin-top: 2px;
}
.form-forgot:hover { color: var(--ink); }

.form-select {
    cursor: pointer;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%236B655E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55;
}

.form-check-group { gap: 0; }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.45;
    cursor: pointer;
}
.form-checkbox {
    width: 18px;
    height: 18px;
    border: 2px solid var(--line);
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: var(--red);
}
.form-link {
    color: var(--red);
    text-decoration: underline;
}

/* Social login */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    margin: 4px 0;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--line);
}

.social-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    font-family: inherit;
    transition: background .15s ease, transform .15s ease;
    width: 100%;
}
.social-btn:active { background: var(--cream); transform: scale(.98); }

/* Auth footer */
.auth-foot {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}
.auth-foot-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    transition: color .15s ease;
}
.auth-foot-link:hover { color: var(--ink); }

/* =====================================================
   DEMO BANNER
   ===================================================== */

.demo-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFBE6;
    border: 1.5px solid #F5D800;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #6B5B00;
}
.demo-banner svg { flex-shrink: 0; color: #B8960A; }

/* Demo toast */
.demo-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 99px;
    z-index: 999;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 8px 24px rgba(19,18,17,.25);
}
.demo-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */

.contact-card {
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

.contact-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon-wrap--red {
    background: #FDEEED;
    color: var(--red);
}
.contact-icon-wrap--yellow {
    background: #FFF8D6;
    color: #B8960A;
}

.contact-card-title {
    display: block;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.01em;
}
.contact-card-sub {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 1px;
}

.contact-address {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 4px;
}

/* Map placeholder */
.map-placeholder {
    height: 160px;
    border-radius: 12px;
    background: #EDF2F7;
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    border: 1px solid var(--line);
}

.map-grid {
    position: absolute;
    inset: 0;
}
.map-line {
    position: absolute;
    background: rgba(0,0,0,.06);
}
.map-line--h {
    left: 0; right: 0;
    height: 1px;
}
.map-line--v {
    top: 0; bottom: 0;
    width: 1px;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.map-pin-dot {
    width: 18px;
    height: 18px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(215,25,33,.25), 0 4px 12px rgba(215,25,33,.35);
}
.map-pin-label {
    background: var(--white);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 99px;
    box-shadow: 0 2px 8px rgba(19,18,17,.12);
    white-space: nowrap;
}

.map-open-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--white);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(19,18,17,.12);
    text-decoration: none;
    transition: background .15s ease;
}
.map-open-btn:active { background: var(--cream); }

/* Contact action buttons */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.contact-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 6px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: transform .15s ease, opacity .15s ease;
}
.contact-action-btn:active { transform: scale(.94); }

.contact-action-btn--call {
    background: #E8F3FF;
    color: #1464B8;
}
.contact-action-btn--wa {
    background: #E8F9F0;
    color: #1A7A3C;
}
.contact-action-btn--mail {
    background: var(--cream);
    color: var(--ink-2);
}

/* Opening hours */
.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row--highlight { background: none; }
.hours-row--highlight .hours-day { font-weight: 700; color: var(--ink); }
.hours-day { color: var(--ink-2); }
.hours-time { font-weight: 600; color: var(--ink); font-family: var(--font-display); letter-spacing: -.01em; }

.hours-open {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #1A7A3C;
    font-size: 12px;
    font-weight: 700;
}
.hours-open::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25D366;
}
.hours-closed {
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =====================================================
   DEMO NOT AVAILABLE PAGE
   ===================================================== */

.demo-page {
    min-height: 100dvh;
    background: var(--paper);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.demo-wrap {
    width: 100%;
    max-width: var(--container);
    padding: 60px var(--pad) 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.demo-illustration {
    margin-bottom: 8px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.demo-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--ink);
    line-height: 1.15;
    max-width: 28ch;
}

.demo-sub {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    max-width: 32ch;
    margin-top: -6px;
}

.demo-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
}

.demo-available {
    width: 100%;
    text-align: left;
    margin-top: 8px;
}
.demo-available-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    padding-left: 4px;
}
.demo-pages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.demo-pages-list li {
    border-bottom: 1px solid var(--line);
}
.demo-pages-list li:last-child { border-bottom: none; }

.demo-page-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--ink);
    transition: background .15s ease;
}
.demo-page-link:active { background: var(--cream); }

.demo-page-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--cream);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    flex-shrink: 0;
}

.demo-page-link div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.demo-page-link strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: block;
}
.demo-page-link small {
    font-size: 11px;
    color: var(--muted);
    display: block;
}
.demo-page-link > svg:last-child { color: var(--muted); flex-shrink: 0; }

.demo-brand {
    margin-top: 16px;
    opacity: .6;
    transition: opacity .15s ease;
}
.demo-brand:hover { opacity: .8; }

/* =====================================================
   QR MENU — order action buttons (WhatsApp / call)
   ===================================================== */
.float-action--wa {
    background: #25D366;
    box-shadow: 0 12px 32px rgba(37,211,102,.38), 0 4px 8px rgba(19,18,17,.1);
}
.product-call-btn {
    flex-shrink: 0;
    height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cream);
    border: 1.5px solid var(--line);
    color: var(--ink);
    font-weight: 700;
    font-size: 15px;
    transition: transform .15s ease, background .15s ease;
}
.product-call-btn:active { transform: scale(.97); }
.product-wa-btn {
    flex: 1;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    transition: transform .15s ease, background .15s ease;
}
.product-wa-btn:active { transform: scale(.97); }

/* =====================================================
   PRODUCT SIZE / PORTION VARIANTS (Porsiyonlar)
   ===================================================== */
.product-sizes {
    margin: 0 var(--pad) 8px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 6px 16px 10px;
}
.product-sizes-title {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 10px 0 6px;
}
.product-size-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}
.product-size-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}
.product-size-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
}
