/* =====================================================
   BEF HAMBURGER — Modernize Y2K / Pop UI
   Brand: #FF3FA4 (hot pink), #FFE93B (lemon), #00D9A3 (mint), #2563EB (electric)
   ===================================================== */

:root {
    --hot: #FF3FA4;
    --hot-deep: #C92F7F;
    --blue: #2563EB;
    --lemon: #FFE93B;
    --mint: #00D9A3;
    --ink: #0B0B1F;
    --ink-2: #2A2440;
    --muted: #6B6585;
    --line: #F0E2D4;
    --cream: #FFEAD4;
    --paper: #FFF7F2;
    --white: #FFFFFF;

    /* Legacy aliases — keep old class names working */
    --red: var(--hot);
    --red-deep: var(--hot-deep);
    --yellow: var(--lemon);
    --yellow-soft: #FFF6B0;

    --radius-sm: 14px;
    --radius: 22px;
    --radius-lg: 32px;

    --shadow-sm: 0 2px 0 rgba(11,11,31,.06), 0 4px 12px rgba(11,11,31,.05);
    --shadow: 0 8px 28px rgba(255,63,164,.12);
    --shadow-pop: 0 12px 36px rgba(255,63,164,.25);

    --gradient-hero: linear-gradient(135deg, #FF3FA4 0%, #FFE93B 50%, #00D9A3 100%);
    --gradient-pink-yellow: linear-gradient(135deg, #FF3FA4, #FFE93B);
    --gradient-blue-mint: linear-gradient(135deg, #2563EB, #00D9A3);
    --gradient-iridescent: linear-gradient(135deg, #FF3FA4 0%, #FFE93B 30%, #00D9A3 60%, #2563EB 100%);

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

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

[data-lucide], i[data-lucide] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
[data-lucide] svg, i[data-lucide] svg { display: block; }

/* Fix tight TL symbol kerning in display font */
.hp-price,
.product-price,
.camp-price,
.product-detail-price,
.hero-v2-card-price > span:first-child,
.add-btn-price,
.cart-total-amount {
    letter-spacing: .04em;
    font-feature-settings: "tnum" 1;
}

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

html { -webkit-text-size-adjust: 100%; background: var(--paper); }

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: 0; }
body.has-floatbar main { padding-bottom: 80px; }

.u-red { color: var(--hot); }
.u-yellow { color: var(--lemon); }
.u-mint { color: var(--mint); }
.u-blue { color: var(--blue); }

/* Y2K decoration utilities */
.sticker {
    display: inline-block;
    transform: rotate(-3deg);
    background: var(--lemon);
    color: var(--ink);
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: .02em;
    box-shadow: 2px 2px 0 var(--ink);
}
.starburst {
    color: var(--hot);
    font-size: 1.2em;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.chrome-text {
    background: var(--gradient-iridescent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

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

.site-header {
    position: sticky; top: 0; z-index: 100;
    max-width: var(--container);
    margin: 0 auto;
    background: var(--ink);
    border-bottom: 3px solid var(--ink);
    transition: background .2s ease;
}
.site-header::before {
    content: '';
    display: block;
    height: 6px;
    background: var(--gradient-iridescent);
    background-size: 200% 100%;
    animation: hd-stripe 12s linear infinite;
}
@keyframes hd-stripe {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.site-header.is-scrolled {
    background: var(--ink);
    box-shadow: 0 6px 0 -3px rgba(255,63,164,.18);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px var(--pad);
    min-height: 76px;
    background: var(--ink);
    color: var(--white);
}

.icon-btn {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: var(--ink-2);
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform .15s ease, background .15s ease, color .15s ease;
    flex-shrink: 0;
}
.icon-btn:active { transform: translate(1px, 1px) scale(.96); background: var(--lemon); color: var(--ink); border-color: var(--ink); }

#menuToggle {
    background: var(--lemon);
    color: var(--ink);
    border-color: var(--ink);
    box-shadow: 2px 2px 0 var(--hot);
}
#menuToggle:active { box-shadow: 0 0 0 var(--hot); transform: translate(2px, 2px); }

.brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 0;
    padding: 4px 12px;
    background: var(--white);
    border-radius: 14px;
    border: 2px solid var(--white);
    box-shadow: 2px 2px 0 var(--hot);
}
.brand:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--hot); }
.brand-logo {
    height: 44px;
    width: auto;
    display: block;
}
.foot-logo {
    height: 72px;
}

/* =====================================================
   HERO V2 — Stacked + marquee strip
   ===================================================== */

.hero-v2 {
    position: relative;
    padding: 24px var(--pad) 0;
}

/* Hero auto-slider */
.hero-slider {
    position: relative;
    margin: 4px 0 16px;
}
.hero-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 460px;
}
.hero-slider-track .hero-v2-card {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: translateX(24px) scale(.97);
    transition: opacity .55s ease, transform .55s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}
.hero-slider-track .hero-v2-card.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}
.hero-dot {
    width: 22px;
    height: 6px;
    border-radius: 99px;
    background: var(--white);
    border: 1.5px solid var(--ink);
    padding: 0;
    transition: background .25s ease, width .25s ease;
}
.hero-dot.is-active {
    background: var(--hot);
    width: 32px;
    box-shadow: 1px 1px 0 var(--ink);
}

/* Product card — full width, gradient frame */
.hero-v2-card {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 24px 0 16px;
    padding: 6px;
    border-radius: 26px;
    background: var(--gradient-iridescent);
    background-size: 200% 100%;
    animation: hd-stripe 16s linear infinite;
    border: 2.5px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}
.hero-v2-card:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }
.hero-slider-track .hero-v2-card:active { transform: translateX(0) scale(.98); }

.hero-v2-card-img {
    flex: 1;
    min-height: 200px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    position: relative;
    overflow: hidden;
}
.hero-v2-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(11,11,31,.45) 100%);
}

.hero-v2-card-corner {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px 5px 8px;
    background: var(--ink);
    color: var(--lemon);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    border: 2px solid var(--white);
    box-shadow: 2px 2px 0 var(--white);
}
.hero-v2-card-corner i { color: var(--hot); }

.hero-v2-card-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px 12px;
    background: var(--white);
    border-radius: 0 0 20px 20px;
    margin: -2px;
}
.hero-v2-card-cat {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.hero-v2-card-name {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -.01em;
}
.hero-v2-card-price {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 22px;
    color: var(--ink);
    flex-shrink: 0;
}
.hero-v2-card-add {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--hot);
    color: var(--white);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Marquee strip */
.hero-v2-marquee {
    margin: 8px calc(var(--pad) * -1) 0;
    background: var(--ink);
    color: var(--lemon);
    overflow: hidden;
    border-top: 2.5px solid var(--ink);
    border-bottom: 2.5px solid var(--ink);
    padding: 10px 0;
}
.hero-v2-marquee-track {
    display: flex;
    width: max-content;
    animation: hd-marquee 165s linear infinite;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .04em;
    white-space: nowrap;
}
.hero-v2-marquee-track span { padding-right: 36px; }
@keyframes hd-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =====================================================
   HERO — Title + product card (LEGACY)
   ===================================================== */

.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(--lemon);
    border: 2px solid var(--ink);
    color: var(--ink);
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
    margin-bottom: 16px;
    white-space: nowrap;
    transform: rotate(-2deg);
    box-shadow: 2px 2px 0 var(--ink);
}
.hero-eyebrow .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--hot);
    box-shadow: 0 0 0 3px rgba(255,63,164,.25);
    animation: pulse 2.8s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255,63,164,.25); }
    50% { box-shadow: 0 0 0 6px rgba(255,63,164,0); }
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(38px, 11vw, 52px);
    line-height: .95;
    letter-spacing: -.015em;
    color: var(--ink);
    margin-bottom: 14px;
    text-transform: none;
}

.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: 700;
    font-size: 15px;
    transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
    position: relative;
}
.btn:active { transform: scale(.97); }

.btn-primary {
    background: var(--ink);
    color: var(--white);
    padding-right: 16px;
    box-shadow: 0 6px 0 var(--hot-deep), 0 8px 20px rgba(255,63,164,.28);
}
.btn-primary:active {
    background: var(--ink-2);
    transform: translateY(2px) scale(.98);
    box-shadow: 0 3px 0 var(--hot-deep), 0 4px 12px rgba(255,63,164,.22);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 2px 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: 28px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 280px;
    overflow: hidden;
    transform: rotate(1.5deg);
    box-shadow: 0 18px 40px -8px rgba(255,63,164,.55), 0 0 0 3px var(--ink);
    transition: transform .2s ease;
    background-image: url('../img/urunler/bef-classic.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--hot);
}
.hero-product:active { transform: rotate(1.5deg) scale(.97); }

.hero-product::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,63,164,.18) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 55%, rgba(11,11,31,.7) 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(--lemon);
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 5px 9px;
    border-radius: 99px;
    line-height: 1;
    transform: rotate(-3deg);
    box-shadow: 1px 1px 0 var(--ink);
    border: 1.5px solid var(--ink);
}
.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 3.8s 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: 400;
    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(--hot);
    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: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hot);
    margin-bottom: 4px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -.01em;
    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;
    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-lg);
    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 14px 30px -14px rgba(255,63,164,.45), 0 0 0 2px var(--ink);
}

/* Photo darken layer (always present) */
.campaign-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11,11,31,.18);
    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; }

/* New Y2K theme variants */
.camp-hot { color: var(--white); }
.camp-hot::after { background: linear-gradient(180deg, rgba(255,63,164,.55) 0%, rgba(201,47,127,.92) 100%); }

.camp-lemon { color: var(--ink); }
.camp-lemon::after { background: linear-gradient(180deg, rgba(255,233,59,.65) 0%, rgba(255,200,0,.92) 100%); }

.camp-mint { color: var(--ink); }
.camp-mint::after { background: linear-gradient(180deg, rgba(0,217,163,.5) 0%, rgba(0,170,130,.92) 100%); }

.camp-blue { color: var(--white); }
.camp-blue::after { background: linear-gradient(180deg, rgba(37,99,235,.55) 0%, rgba(23,60,160,.92) 100%); }

/* Legacy aliases — old class names continue to work, mapped to new palette */
.camp-red { color: var(--white); }
.camp-red::after { background: linear-gradient(180deg, rgba(255,63,164,.55) 0%, rgba(201,47,127,.92) 100%); }

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

.camp-cream { color: var(--white); }
.camp-cream::after { background: linear-gradient(180deg, rgba(11,11,31,.25) 0%, rgba(11,11,31,.78) 100%); }

.camp-dark { color: var(--white); }
.camp-dark::after { background: linear-gradient(180deg, rgba(11,11,31,.45) 0%, rgba(11,11,31,.95) 100%); }

.camp-badge {
    display: inline-flex;
    align-self: flex-start;
    background: var(--white);
    color: var(--hot);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 14px;
    transform: rotate(-3deg);
    box-shadow: 2px 2px 0 var(--ink);
    border: 1.5px solid var(--ink);
}
.camp-badge.dark { background: var(--ink); color: var(--lemon); }
.camp-badge.light { background: var(--lemon); color: var(--ink); }
.camp-mint .camp-badge { color: var(--ink-2); }
.camp-mint .camp-badge.dark { background: var(--ink); color: var(--mint); }

.campaign-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    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: 26px;
    font-weight: 400;
    letter-spacing: -.005em;
}
.camp-price.dark { color: var(--ink); }
.camp-price.light { color: var(--lemon); }
.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,
.camp-lemon .camp-tag,
.camp-mint .camp-tag {
    background: rgba(11,11,31,.12);
}
.camp-cream .camp-tag {
    background: rgba(255,255,255,.2);
    color: var(--white);
}
.camp-tag.light {
    background: rgba(255,233,59,.22);
    color: var(--lemon);
}

/* =====================================================
   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: 76px;
    height: 76px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-color: var(--cream);
    border: 2.5px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    transition: transform .15s ease, box-shadow .15s ease;
}

.cat-story:active .cat-avatar {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--ink);
}

.cat-story.active .cat-avatar {
    border-color: var(--ink);
    background-color: var(--lemon);
    box-shadow: 3px 3px 0 var(--hot);
}

.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(--hot); font-weight: 700; }

/* =====================================================
   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-lg);
    border: 2px solid var(--ink);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, box-shadow .2s ease;
    box-shadow: 4px 4px 0 var(--ink);
}
.product-card:active {
    transform: translate(2px, 2px) scale(.98);
    box-shadow: 2px 2px 0 var(--ink);
}

.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(255,63,164,.05) 0%, rgba(11,11,31,.45) 100%);
    z-index: 1;
}
.product-visual > * { z-index: 2; position: relative; }

.visual-red { background-color: var(--hot); }
.visual-yellow { background-color: var(--lemon); }
.visual-mint { background-color: var(--mint); }
.visual-blue { background-color: var(--blue); }
.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(--hot);
    padding: 4px 11px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    transform: rotate(-3deg);
    box-shadow: 2px 2px 0 var(--ink);
    border: 1.5px solid var(--ink);
}
.product-badge.dark { background: var(--ink); color: var(--lemon); }
.product-badge.light { background: var(--lemon); 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: 400;
    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(--hot); }

/* =====================================================
   ORDER PROVIDERS — Horizontal swiper strip
   ===================================================== */

.order-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 4px 18px;
    margin: 0 calc(var(--pad) * -1);
    padding-left: var(--pad);
    padding-right: var(--pad);
}
.order-grid::-webkit-scrollbar { display: none; }

.order-card {
    flex: 0 0 140px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    border-radius: 22px;
    padding: 14px;
    min-height: 150px;
    color: var(--ink);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
    border: 2.5px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    position: relative;
    overflow: hidden;
}
.order-card:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--ink);
}

.order-ys    { background: #FFEDF4; }
.order-getir { background: #EFEAFF; }
.order-migros{ background: #FFF3E0; }
.order-uber  { background: #E8F5EE; }

.order-ys::after,
.order-getir::after,
.order-migros::after,
.order-uber::after {
    content: '';
    position: absolute;
    top: -20px; right: -20px;
    width: 70px; height: 70px;
    border-radius: 50%;
    opacity: .25;
}
.order-ys::after    { background: #FA0050; }
.order-getir::after { background: #5D3EBC; }
.order-migros::after{ background: #F39200; }
.order-uber::after  { background: #06C167; }

.order-logo-wrap {
    position: relative;
    z-index: 2;
    margin: 0;
}
.order-svg {
    width: 44px; height: 44px;
    display: block;
    border-radius: 12px;
    border: 2px solid var(--ink);
}
.order-mark,
.order-logo-svg {
    display: block;
    width: 50px; height: 50px;
    border-radius: 14px;
    border: 2px solid var(--ink);
    background: var(--white);
    box-shadow: 2px 2px 0 var(--ink);
    padding: 6px;
    object-fit: contain;
}

.order-info {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.order-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -.005em;
}

.order-eta {
    font-size: 10px;
    color: var(--ink-2);
    font-weight: 700;
    line-height: 1;
    background: var(--white);
    padding: 4px 8px;
    border-radius: 99px;
    border: 1.5px solid var(--ink);
    align-self: flex-start;
}

.order-arrow { display: none; }

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

.cta-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 16px;
}

.cta-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 14px 14px;
    border-radius: 22px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
    border: 2.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    min-height: 160px;
}
.cta-block:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--ink);
}

.cta-wa {
    background: linear-gradient(165deg, #5DF59A 0%, #1BA84A 100%);
    color: var(--ink);
}
.cta-wa::before {
    content: '✦';
    position: absolute;
    top: 10px; right: 12px;
    font-size: 26px;
    color: var(--ink);
    opacity: .25;
    transform: rotate(15deg);
}

.cta-ig {
    background: linear-gradient(165deg, #FFE93B 0%, #FF3FA4 60%, #833AB4 100%);
    color: var(--ink);
}
.cta-ig::before {
    content: '★';
    position: absolute;
    top: 10px; right: 12px;
    font-size: 28px;
    color: var(--white);
    opacity: .5;
    transform: rotate(-15deg);
}

.cta-pill-icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    background: var(--white);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
}
.cta-ig .cta-pill-icon { background: var(--ink); color: var(--white); }

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

.cta-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -.005em;
    line-height: 1;
    color: var(--ink);
}

.cta-sub {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ink-2);
    line-height: 1.3;
    opacity: .85;
}

.cta-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--ink);
    color: var(--lemon);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 4px 8px;
    border-radius: 99px;
    border: 1.5px solid var(--ink);
}
.cta-badge-ig {
    background: var(--white);
    color: var(--ink);
}

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

.story {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin: 16px 0 24px;
    border: 2px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    position: relative;
    overflow: hidden;
}
.story::before {
    content: '✦';
    position: absolute;
    top: 18px; right: 20px;
    color: var(--hot);
    font-size: 32px;
    line-height: 1;
    transform: rotate(15deg);
}

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

.story-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: -.005em;
    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: 700;
    color: var(--ink);
    border-bottom: 2px solid var(--hot);
    padding-bottom: 2px;
}
.link-arrow span { transition: transform .2s ease; }
.link-arrow:active span { transform: translateX(4px); }

/* =====================================================
   FOOTER — Pop confetti
   ===================================================== */

.site-footer {
    max-width: var(--container);
    margin: 40px auto 0;
    position: relative;
    color: var(--ink);
    background: transparent;
}

/* Sliding wordmark band — full bleed iridescent stripe */
.ft-wordmark-band {
    background: var(--gradient-iridescent);
    background-size: 200% 100%;
    animation: hd-stripe 22s linear infinite;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    user-select: none;
    pointer-events: none;
}
.ft-wordmark-band .ft-wm-1,
.ft-wordmark-band .ft-wm-2 {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 64px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -.03em;
    margin-right: 28px;
}
.ft-wordmark-band .ft-wm-2 {
    color: var(--white);
    -webkit-text-stroke: 1.5px var(--ink);
}
.ft-wordmark-band {
    white-space: nowrap;
}

.ft-body {
    background: var(--cream);
    padding: 32px var(--pad) 28px;
    border-bottom: 3px solid var(--ink);
}

.ft-hero {
    text-align: center;
    margin-bottom: 24px;
}
.ft-sticker {
    display: inline-block;
    background: var(--hot);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 99px;
    border: 2px solid var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 14px;
    transform: rotate(-2deg);
    box-shadow: 2px 2px 0 var(--ink);
}
.ft-headline {
    font-family: var(--font-display);
    font-size: clamp(34px, 10vw, 44px);
    font-weight: 400;
    letter-spacing: -.005em;
    line-height: .95;
    color: var(--ink);
    margin-bottom: 10px;
}
.ft-lede {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-2);
    max-width: 32ch;
    margin: 0 auto;
}

/* Big bubble CTAs */
.ft-bubbles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.ft-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 6px 12px;
    border-radius: 18px;
    border: 2.5px solid var(--ink);
    background: var(--white);
    color: var(--ink);
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 3px 3px 0 var(--ink);
}
.ft-bubble:active {
    transform: translate(3px, 3px);
    box-shadow: 0 0 0 var(--ink);
}
.ft-bubble-emoji {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid var(--ink);
}
.ft-bubble-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}
.ft-b-wa .ft-bubble-emoji { background: #25D366; color: var(--white); }
.ft-b-ig .ft-bubble-emoji { background: var(--gradient-iridescent); color: var(--white); }
.ft-b-call .ft-bubble-emoji { background: var(--lemon); color: var(--ink); }

/* Info card */
.ft-info-card {
    background: var(--white);
    border: 2.5px solid var(--ink);
    border-radius: 18px;
    padding: 4px 14px;
    margin-bottom: 22px;
    box-shadow: 3px 3px 0 var(--ink);
}
.ft-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--ink);
}
.ft-info-row + .ft-info-row {
    border-top: 1.5px dashed var(--line);
}
.ft-info-icon {
    width: 32px; height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 2px solid var(--ink);
    flex-shrink: 0;
    font-size: 14px;
}
.ft-i-mail { background: var(--lemon); color: var(--ink); }
.ft-i-pin  { background: var(--hot); color: var(--white); }
.ft-info-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    min-width: 0;
}
.ft-info-text small {
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
    margin-bottom: 2px;
}
.ft-info-text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Link columns */
.ft-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 2.5px dashed var(--ink);
    border-bottom: 2.5px dashed var(--ink);
}
.ft-col { display: flex; flex-direction: column; gap: 2px; }
.ft-col-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -.005em;
    color: var(--ink);
    margin-bottom: 10px;
}
.ft-col a {
    font-size: 13px;
    color: var(--ink-2);
    padding: 5px 0;
    font-weight: 500;
    transition: color .15s ease, transform .15s ease;
    border-radius: 4px;
}
.ft-col a:active { color: var(--hot); transform: translateX(3px); }

/* Bottom strip */
.ft-bottom {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
}
.ft-bottom a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.ft-bottom a:active { color: var(--hot); }
.ft-bottom-spacer { flex: 1; }

/* =====================================================
   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(--gradient-pink-yellow);
    color: var(--white);
    padding: 16px 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 12px 32px rgba(255,63,164,.45), 0 0 0 2px var(--ink);
    transition: transform .15s ease, box-shadow .2s ease;
    text-shadow: 0 1px 0 rgba(11,11,31,.2);
}
.float-action:active {
    transform: scale(.97);
    box-shadow: 0 6px 18px rgba(255,63,164,.35), 0 0 0 2px var(--ink);
}
.float-arrow {
    margin-left: auto;
    background: rgba(11,11,31,.2);
    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(11,11,31,.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(11,11,31,.22);
    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(--hot);
    box-shadow: 0 0 0 4px rgba(255,63,164,.14);
}
.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: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hot);
    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: 400;
    color: var(--ink);
    background: var(--lemon);
    padding: 3px 7px;
    border-radius: 6px;
    line-height: 1.3;
    border: 1.5px solid var(--ink);
}
.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(--hot); }
.sheet-link.is-active strong { color: var(--hot); }

.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(--lemon);
    color: var(--ink);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 4px 8px;
    border-radius: 99px;
    line-height: 1;
    transform: rotate(-3deg);
    border: 1.5px solid var(--ink);
    box-shadow: 1px 1px 0 var(--ink);
}

.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(--white);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
}
.sp-chip:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }

/* 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, .ss-tt, .ss-fb { background: var(--white); color: var(--ink); }
.sheet-social .ss-btn { border: 1.5px solid var(--ink); box-shadow: 2px 2px 0 var(--ink); }
.sheet-social .ss-btn:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }

/* 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(--gradient-pink-yellow);
    color: var(--white);
    padding: 0 22px;
    box-shadow: 0 8px 22px rgba(255,63,164,.4), 0 0 0 2px var(--ink);
    text-shadow: 0 1px 0 rgba(11,11,31,.18);
}
.sf-primary:active { filter: brightness(.95); }

/* 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: 400;
    letter-spacing: -.01em;
    color: var(--white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.site-header--inner .back-btn-header {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
    box-shadow: 2px 2px 0 var(--hot);
}

/* Page hero — inner page title area */
.page-hero {
    padding: 28px var(--pad) 24px;
    position: relative;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 10vw, 44px);
    font-weight: 400;
    letter-spacing: -.01em;
    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(--hot);
    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;
    border: 1.5px solid var(--ink);
}

/* =====================================================
   CATEGORIES PAGE — Mosaic grid
   ===================================================== */

.cat-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-bottom: 28px;
}
.cat-mosaic .cat-tile:nth-child(7n+1),
.cat-mosaic .cat-tile:nth-child(7n+6) {
    grid-column: span 2;
}

.cat-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    border: 2.5px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    transition: transform .15s ease, box-shadow .15s ease;
    isolation: isolate;
}
.cat-tile:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--ink);
}

.cat-mosaic .cat-tile:nth-child(7n+1),
.cat-mosaic .cat-tile:nth-child(7n+6) {
    aspect-ratio: 21 / 10;
}

/* Tone backgrounds */
.cat-tile.tone-hot    { background: var(--hot); color: var(--white); }
.cat-tile.tone-lemon  { background: var(--lemon); color: var(--ink); }
.cat-tile.tone-mint   { background: var(--mint); color: var(--ink); }
.cat-tile.tone-blue   { background: var(--blue); color: var(--white); }
.cat-tile.tone-cream  { background: var(--cream); color: var(--ink); }
.cat-tile.tone-pink   { background: #FFD1E8; color: var(--ink); }
.cat-tile.tone-ink    { background: var(--ink); color: var(--lemon); }

.cat-tile-img {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 65%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    border-bottom: 2.5px solid var(--ink);
    transition: transform .35s ease;
}
.cat-tile:active .cat-tile-img { transform: scale(1.04); }

.cat-tile-count {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px; height: 36px;
    padding: 0 10px;
    background: var(--white);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 99px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
    transform: rotate(8deg);
    box-shadow: 2px 2px 0 var(--ink);
}
.cat-tile-count::after {
    content: ' çeşit';
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .04em;
    margin-left: 4px;
    color: var(--muted);
    text-transform: uppercase;
}

.cat-tile-foot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    background: inherit;
    margin-top: auto;
}
.cat-tile-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    letter-spacing: -.005em;
    color: inherit;
}
.cat-tile-arrow {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--ink);
}
.cat-tile.tone-ink .cat-tile-arrow {
    background: var(--lemon);
    color: var(--ink);
}

/* Wide tiles — larger title, side-by-side image and text */
.cat-mosaic .cat-tile:nth-child(7n+1) .cat-tile-img,
.cat-mosaic .cat-tile:nth-child(7n+6) .cat-tile-img {
    top: 0; bottom: 0; right: auto;
    width: 50%;
    height: 100%;
    border-right: 2.5px solid var(--ink);
    border-bottom: none;
}
.cat-mosaic .cat-tile:nth-child(7n+1) .cat-tile-foot,
.cat-mosaic .cat-tile:nth-child(7n+6) .cat-tile-foot {
    margin-left: 50%;
    padding: 16px 16px;
    border-left: 0;
    height: 100%;
}
.cat-mosaic .cat-tile:nth-child(7n+1) .cat-tile-name,
.cat-mosaic .cat-tile:nth-child(7n+6) .cat-tile-name {
    font-size: 26px;
}

/* =====================================================
   PRODUCT DETAIL — v2 (pop)
   ===================================================== */

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

.prod-hero-v2 {
    padding: 16px var(--pad) 4px;
}
.prod-hero-v2-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 26px;
    border: 2.5px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    overflow: hidden;
    background: var(--lemon);
    isolation: isolate;
}
.prod-hero-v2-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.prod-hero-v2-back,
.prod-hero-v2-fav {
    position: absolute;
    top: 14px;
    z-index: 3;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease;
}
.prod-hero-v2-back { left: 14px; }
.prod-hero-v2-fav  { right: 14px; }
.prod-hero-v2-back:active,
.prod-hero-v2-fav:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }

.prod-hero-v2-sticker {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    background: var(--hot);
    color: var(--white);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    border-radius: 99px;
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    transform: rotate(-4deg);
}

.prod-head-v2 {
    padding: 18px var(--pad) 12px;
}
.prod-head-v2-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.prod-cat-pill,
.prod-rating-pill,
.prod-weight-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 99px;
    border: 1.5px solid var(--ink);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}
.prod-cat-pill    { background: var(--ink); color: var(--lemon); padding: 5px 12px; }
.prod-rating-pill { background: var(--lemon); color: var(--ink); }
.prod-weight-pill { background: var(--white); color: var(--ink); }

.prod-name-v2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1;
    letter-spacing: -.01em;
    color: var(--ink);
    margin-bottom: 8px;
}
.prod-short-v2 {
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-2);
}

/* Tabs */
.tab-bar-v2 {
    display: flex;
    gap: 8px;
    padding: 4px var(--pad) 16px;
    overflow-x: auto;
    scrollbar-width: none;
}
.tab-bar-v2::-webkit-scrollbar { display: none; }

.tab-btn-v2 {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
}
.tab-btn-v2:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.tab-btn-v2.active {
    background: var(--hot);
    color: var(--white);
}

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

/* Detail panel */
.prod-desc-v2 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-2);
    margin-bottom: 18px;
}
.prod-info-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.prod-info-block {
    display: flex;
    gap: 12px;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: 16px;
    padding: 12px 14px;
    box-shadow: 3px 3px 0 var(--ink);
}
.prod-info-icon {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: var(--lemon);
    border: 1.5px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    flex-shrink: 0;
}
.prod-info-block strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 14px;
    color: var(--ink);
    letter-spacing: -.005em;
    margin-bottom: 2px;
}
.prod-info-block p {
    font-size: 12.5px;
    color: var(--ink-2);
    line-height: 1.45;
}

/* Nutrition grid */
.nut-note-v2 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}
.nut-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.nut-card {
    position: relative;
    padding: 14px;
    border-radius: 16px;
    border: 2px solid var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
    color: var(--ink);
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.nut-card.nut-hot    { background: #FFD1E8; }
.nut-card.nut-lemon  { background: var(--lemon); }
.nut-card.nut-mint   { background: #B4F4DA; }
.nut-card.nut-blue   { background: #D6E4FF; }
.nut-card.nut-cream  { background: var(--cream); }
.nut-card.nut-pink   { background: #FFC0DA; }

.nut-card-icon {
    width: 30px; height: 30px;
    border-radius: 10px;
    background: var(--white);
    border: 1.5px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    margin-bottom: 10px;
    align-self: flex-start;
}
.nut-card-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink-2);
    letter-spacing: .03em;
    text-transform: uppercase;
}
.nut-card-value {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.1;
    color: var(--ink);
    margin-top: 2px;
    letter-spacing: -.005em;
}

/* Allergens */
.allerg-note-v2 {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    background: var(--lemon);
    border: 2px solid var(--ink);
    border-radius: 14px;
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
}
.allerg-note-v2 i { margin-top: 1px; flex-shrink: 0; }

.allerg-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding-bottom: 12px;
}
.allerg-chip-v2 {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 14px;
    border: 2px solid var(--ink);
    background: var(--white);
    box-shadow: 2px 2px 0 var(--ink);
}
.allerg-chip-dot {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ink);
}
.allerg-chip-v2.is-var .allerg-chip-dot { background: var(--hot); color: var(--white); }
.allerg-chip-v2.is-yok .allerg-chip-dot { background: var(--mint); color: var(--ink); }
.allerg-chip-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.allerg-chip-text strong {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 13px;
    color: var(--ink);
}
.allerg-chip-text small {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted);
    text-transform: lowercase;
}

/* Action bar */
.prod-action-v2 {
    position: fixed;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: calc(var(--container) - 24px);
    z-index: 60;
    display: flex;
    gap: 10px;
    background: var(--white);
    border: 2.5px solid var(--ink);
    border-radius: 22px;
    padding: 8px;
    box-shadow: 4px 4px 0 var(--ink);
}
.qty-v2 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    background: var(--lemon);
}
.qty-v2-btn {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.qty-v2-btn:active { background: var(--hot); color: var(--white); }
.qty-v2-val {
    min-width: 24px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 15px;
    color: var(--ink);
}

.prod-add-v2 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    background: var(--ink);
    color: var(--white);
    border-radius: 14px;
    border: 2px solid var(--ink);
    font-weight: 700;
    transition: background .2s ease;
}
.prod-add-v2:active { background: var(--ink-2); }
.prod-add-v2.is-success { background: var(--mint); color: var(--ink); }
.prod-add-v2-lbl {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -.005em;
}
.prod-add-v2-price {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 16px;
    background: var(--hot);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 99px;
    border: 1.5px solid var(--white);
    letter-spacing: .04em;
}

/* =====================================================
   CATEGORY DETAIL — v2 (pop tile list)
   ===================================================== */

.cat-hero-v2 {
    padding: 18px var(--pad) 6px;
}
.cat-hero-v2-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2.5px solid var(--ink);
    box-shadow: 5px 5px 0 var(--ink);
    background: var(--lemon);
    isolation: isolate;
}
.cat-hero-v2-img {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: var(--ink);
    border-bottom: 2.5px solid var(--ink);
    position: relative;
}
.cat-hero-v2-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11,11,31,.18) 100%);
}
.cat-hero-v2-body {
    padding: 16px 18px 18px;
    background: var(--lemon);
    color: var(--ink);
}
.cat-hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--ink);
    color: var(--lemon);
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    box-shadow: 2px 2px 0 var(--hot);
}
.cat-hero-v2-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1;
    letter-spacing: -.01em;
    color: var(--ink);
    margin-bottom: 6px;
}
.cat-hero-v2-tagline {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.4;
    max-width: 32ch;
}

/* Product tiles */
.prod-list-v2 {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-bottom: 24px;
}

.prod-tile {
    display: flex;
    gap: 12px;
    align-items: stretch;
    background: var(--white);
    border: 2.5px solid var(--ink);
    border-radius: 22px;
    padding: 10px;
    text-decoration: none;
    color: var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform .15s ease, box-shadow .15s ease;
}
.prod-tile:active {
    transform: translate(4px, 4px);
    box-shadow: 0 0 0 var(--ink);
}

.prod-tile-img-wrap {
    position: relative;
    flex-shrink: 0;
    width: 110px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--ink);
    isolation: isolate;
}
.prod-tile-img-wrap.tile-hot    { background: var(--hot); }
.prod-tile-img-wrap.tile-lemon  { background: var(--lemon); }
.prod-tile-img-wrap.tile-mint   { background: var(--mint); }
.prod-tile-img-wrap.tile-blue   { background: var(--blue); }
.prod-tile-img-wrap.tile-cream  { background: var(--cream); }
.prod-tile-img-wrap.tile-pink   { background: #FFD1E8; }

.prod-tile-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.prod-tile-sticker {
    position: absolute;
    top: 6px; left: 6px;
    z-index: 2;
    background: var(--ink);
    color: var(--lemon);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 3px 7px;
    border-radius: 99px;
    border: 1.5px solid var(--white);
    transform: rotate(-4deg);
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.prod-tile-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 4px 4px 4px 0;
}

.prod-tile-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.prod-tile-star {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--lemon);
    color: var(--ink);
    padding: 2px 7px;
    border-radius: 99px;
    border: 1.5px solid var(--ink);
    font-size: 10px;
    font-weight: 800;
}
.prod-tile-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--ink);
    opacity: .35;
}
.prod-tile-weight {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
}

.prod-tile-name {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.05;
    letter-spacing: -.01em;
    color: var(--ink);
    margin-bottom: 4px;
}

.prod-tile-desc {
    font-size: 11.5px;
    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: 8px;
}

.prod-tile-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.prod-tile-price {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: .04em;
}
.prod-tile-add {
    width: 34px; height: 34px;
    border-radius: 11px;
    background: var(--hot);
    color: var(--white);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, box-shadow .15s ease;
}
.prod-tile-add:active {
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 var(--ink);
}

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: var(--muted);
}
.empty-state i { color: var(--hot); margin-bottom: 12px; }
.empty-state p {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--ink);
}

/* =====================================================
   CATEGORY DETAIL PAGE (LEGACY)
   ===================================================== */

.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(255,63,164,.12) 0%, rgba(11,11,31,.78) 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: 32px;
    font-weight: 400;
    letter-spacing: -.01em;
    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: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: 14px;
    text-decoration: none;
    color: var(--ink);
    transition: transform .15s ease, box-shadow .2s ease;
    align-items: flex-start;
    box-shadow: 3px 3px 0 var(--ink);
}
.product-row:active {
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0 var(--ink);
}

.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: 400;
    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(255,63,164,.12) 0%, rgba(0,0,0,0) 50%, rgba(11,11,31,.25) 100%);
    pointer-events: none;
}

.product-hero-badges {
    position: absolute;
    bottom: 16px;
    left: 20px;
    z-index: 5;
}
.product-hero-badge {
    background: var(--lemon);
    color: var(--ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    padding: 6px 14px;
    border-radius: 99px;
    transform: rotate(-3deg);
    border: 2px solid var(--ink);
    box-shadow: 2px 2px 0 var(--ink);
}

.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: 32px;
    font-weight: 400;
    letter-spacing: -.01em;
    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: 30px;
    font-weight: 400;
    color: var(--hot);
    letter-spacing: -.005em;
}

/* =====================================================
   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(--hot);
}
.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(--hot);
    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: 400;
    color: var(--ink);
}
.nutrition-row--highlight .nutrition-value { color: var(--hot); }

/* 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: #FFE6F2;
    border-color: var(--hot);
    color: var(--hot-deep);
}
.allergen-chip--yok {
    background: #E0FBF2;
    border-color: var(--mint);
    color: #008060;
}
.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(--hot);
    color: var(--white);
}
.allergen-chip--yok .allergen-icon {
    background: var(--mint);
    color: var(--ink);
}
.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(11,11,31,.08);
}

.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: 400;
    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(--hot);
    box-shadow: 0 0 0 4px rgba(255,63,164,.15);
}

.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(--hot);
}
.form-link {
    color: var(--hot);
    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-svg { width: 20px; height: 20px; display: block; }
.cta-pill-svg { width: 26px; height: 26px; display: block; border-radius: 6px; }
.ft-bubble-svg { width: 22px; height: 22px; display: block; }
.map-open-svg { width: 16px; height: 16px; display: block; }
.sp-chip-svg { width: 100%; height: 100%; display: block; padding: 6px; object-fit: contain; }
.ss-btn-svg { width: 18px; height: 18px; display: block; flex-shrink: 0; border-radius: 4px; }
.sf-wa-svg { width: 22px; height: 22px; display: block; }

.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(--lemon); 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: var(--lemon);
    border: 2px solid var(--ink);
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    box-shadow: 3px 3px 0 var(--ink);
}
.demo-banner svg { flex-shrink: 0; color: var(--ink); }

/* 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(11,11,31,.3);
}
.demo-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

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

.contact-card {
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 4px 4px 0 var(--ink);
}

.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: #FFE6F2;
    color: var(--hot);
}
.contact-icon-wrap--yellow {
    background: var(--lemon);
    color: var(--ink);
}

.contact-card-title {
    display: block;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 400;
    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(--hot);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px rgba(255,63,164,.28), 0 4px 12px rgba(255,63,164,.4);
}
.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(11,11,31,.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(11,11,31,.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: #DDE7FF;
    color: var(--blue);
    border: 2px solid var(--ink);
}
.contact-action-btn--wa {
    background: #E0FBF2;
    color: #008060;
    border: 2px solid var(--ink);
}
.contact-action-btn--mail {
    background: var(--lemon);
    color: var(--ink);
    border: 2px solid var(--ink);
}

/* 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: #008060;
    font-size: 12px;
    font-weight: 700;
}
.hours-open::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--mint);
}
.hours-closed {
    color: var(--hot);
    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 4.8s ease-in-out infinite;
}

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

.demo-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -.005em;
    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: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--hot);
    margin-bottom: 12px;
    padding-left: 4px;
}
.demo-pages-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 4px 4px 0 var(--ink);
}
.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: 1.5px solid var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hot);
    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; }
