/* ==========================================================================
   Ada Fast Food — Tasarım Sistemi (Poppins)
   Yüklenen prototip tasarımının birebir uyarlaması.
   ========================================================================== */

:root {
    --ink: #1D293D;
    --ink-soft: #45556C;
    --muted: #62748E;
    --muted-2: #94A3B8;

    --accent: #FF6900;
    --accent-600: #E85D00;
    --soft: #FFF3EB;
    --soft-2: #FFF8F3;
    --badge-bg: #FFE3CE;
    --badge-fg: #E85D00;

    --yellow: #FCC800;
    --green: #00C950;
    --danger: #FB2C36;

    --line: #F1F5F9;
    --line-2: #E2E8F0;
    --dark: #1D293D;
    --dark-2: #31415A;
    --topbar-text: #CAD5E2;
    --foot-text: #94A3B8;

    --r-card: 20px;
    --r-lg: 26px;
    --r-xl: 32px;
    --r-btn: 14px;
    --r-btn-sm: 12px;
    --r-pill: 999px;
    --r-icon: 13px;

    --sh-card: 0 10px 30px rgba(29,41,61,.06);
    --sh-hover: 0 22px 44px rgba(29,41,61,.12);
    --sh-soft: 0 14px 34px rgba(29,41,61,.07);
    --sh-btn: 0 8px 18px rgba(255,105,0,.28);
    --sh-btn-lg: 0 12px 24px rgba(255,105,0,.32);

    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-600); }
svg { display: block; }
h1, h2, h3 { margin: 0; }
button { font-family: inherit; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@keyframes adaFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes adaPop { 0% { transform: scale(.9); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes adaSlideUp { 0% { transform: translateY(16px); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ===================== ANNOUNCEMENT BAR ===================== */
.abar { background: var(--dark); color: var(--topbar-text); font-size: 12.5px; font-weight: 500; padding: 8px 0; }
.abar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.abar-left { display: flex; align-items: center; gap: 18px; }
.abar-right { display: flex; align-items: center; gap: 18px; }
.abar-dot { color: var(--yellow); }
.abar-free { color: var(--yellow); }

/* ===================== NAV ===================== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; background: none; border: none; cursor: pointer; padding: 0; }
.brand-badge { width: 42px; height: 42px; border-radius: var(--r-icon); background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 20px; box-shadow: 0 6px 16px rgba(255,105,0,.32); }
.brand-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.brand-name { font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing: -.5px; }
.brand-sub { font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { background: none; border: none; cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--ink); padding: 9px 14px; border-radius: 10px; transition: background .15s, color .15s; }
.nav-link:hover, .nav-link.is-active { background: var(--soft); color: var(--accent-600); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.cart-btn { position: relative; background: var(--soft); border: none; cursor: pointer; width: 46px; height: 46px; border-radius: var(--r-icon); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.cart-count { position: absolute; top: -5px; right: -5px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; min-width: 20px; height: 20px; border-radius: 10px; display: flex; align-items: center; justify-content: center; padding: 0 5px; border: 2px solid #fff; }
.btn-order { background: var(--accent); color: #fff; border: none; cursor: pointer; font-size: 14.5px; font-weight: 600; padding: 12px 22px; border-radius: var(--r-btn-sm); box-shadow: var(--sh-btn); transition: background .15s; }
.btn-order:hover { background: var(--accent-600); color: #fff; }

/* ===================== BUTTONS ===================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; font-weight: 600; transition: background .15s, box-shadow .15s, transform .12s; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--accent); color: #fff; font-size: 15px; padding: 14px 26px; border-radius: var(--r-btn); box-shadow: var(--sh-btn-lg); }
.btn-primary:hover { background: var(--accent-600); color: #fff; }
.btn-block { width: 100%; }
.btn-soft { background: var(--soft); color: var(--accent-600); font-size: 14.5px; padding: 12px 20px; border-radius: var(--r-btn-sm); }
.btn-soft:hover { color: var(--accent-600); }
.link-back { background: none; border: none; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; padding: 0; }
.link-back:hover { color: var(--accent); }

/* ===================== HERO ===================== */
.hero { background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); position: relative; overflow: hidden; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 64px 24px 80px; display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; }
.hero-copy { animation: adaSlideUp .6s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--badge-bg); color: var(--badge-fg); font-size: 13px; font-weight: 600; padding: 7px 15px; border-radius: var(--r-pill); }
.hero-title { font-size: 56px; line-height: 1.08; font-weight: 700; letter-spacing: -1.5px; margin: 20px 0 0; color: var(--ink); }
.hero-title span { color: var(--accent); }
.hero-sub { font-size: 16.5px; line-height: 1.65; color: var(--muted); margin: 20px 0 0; max-width: 440px; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.hero-secondary { display: inline-flex; align-items: center; gap: 10px; background: none; border: none; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--ink); }
.hero-play { width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.08); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.hero-avatars { display: flex; }
.hero-av { width: 38px; height: 38px; border-radius: 50%; border: 2px solid #fff; }
.hero-av + .hero-av { margin-left: -12px; }
.hero-proof-t { font-size: 14px; font-weight: 600; color: var(--ink); }
.hero-proof-d { font-size: 13px; color: var(--muted); }
.hero-media { position: relative; animation: adaFloat 6s ease-in-out infinite; }
.hero-card { width: 100%; aspect-ratio: 1/1; border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 30px 60px rgba(29,41,61,.18); position: relative; background: var(--soft); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.hero-float { position: absolute; background: #fff; border-radius: 16px; padding: 12px 16px; box-shadow: 0 16px 34px rgba(0,0,0,.12); }
.hero-float-1 { bottom: 26px; left: -24px; display: flex; align-items: center; gap: 11px; animation: adaPop .5s .3s ease both; }
.hero-float-2 { top: 24px; right: -16px; animation: adaPop .5s .5s ease both; }
.hero-float-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--soft); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.hero-dot-dark { position: absolute; top: 70px; right: 44%; width: 16px; height: 16px; background: var(--ink); transform: rotate(45deg); }
.hero-dot-orange { position: absolute; bottom: 120px; right: 8%; width: 22px; height: 22px; background: var(--accent); border-radius: 5px; transform: rotate(20deg); opacity: .5; }

/* ===================== FULFILLMENT STRIP ===================== */
.fulfil { max-width: 1200px; margin: 0 auto; padding: 8px 24px; transform: translateY(-40px); }
.fulfil-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fulfil-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px 24px; box-shadow: var(--sh-soft); display: flex; align-items: center; gap: 16px; }
.fulfil-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.fulfil-t { font-size: 16px; font-weight: 600; }
.fulfil-d { font-size: 13px; color: var(--muted); }

/* ===================== SECTION HEADERS ===================== */
.sec { max-width: 1200px; margin: 0 auto; padding: 32px 24px 72px; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.sec-center { text-align: center; margin-bottom: 34px; }
.eyebrow { display: inline-block; background: var(--badge-bg); color: var(--badge-fg); font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: var(--r-pill); }
.sec-title { font-size: 36px; font-weight: 700; letter-spacing: -1px; margin: 14px 0 0; }

/* ===================== PRODUCT CARDS ===================== */
.pgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; cursor: pointer; box-shadow: var(--sh-card); transition: transform .18s, box-shadow .18s; display: block; color: inherit; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--sh-hover); color: inherit; }
.pcard-media { position: relative; height: 170px; background: var(--soft); }
.pcard-media img { width: 100%; height: 100%; object-fit: cover; }
.pcard-media-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: .55; }
.pcard-badge { position: absolute; top: 12px; left: 12px; background: var(--accent); color: #fff; font-size: 11.5px; font-weight: 600; padding: 5px 11px; border-radius: var(--r-pill); }
.pcard-body { padding: 16px 18px 18px; }
.pcard-cat { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: .3px; }
.pcard-name { font-size: 17px; font-weight: 600; margin-top: 3px; }
.pcard-desc { font-size: 13px; color: var(--muted); margin-top: 5px; line-height: 1.5; min-height: 38px; }
.pcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.pcard-price { font-size: 19px; font-weight: 700; color: var(--ink); }
.pcard-add { background: var(--accent); color: #fff; border: none; cursor: pointer; width: 40px; height: 40px; border-radius: 12px; font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; padding: 0; transition: background .15s; }
.pcard-add:hover { background: var(--accent-600); }
.pcard-add-form { margin: 0; }

/* ===================== ABOUT ===================== */
.about { background: var(--soft-2); }
.about-inner { max-width: 1200px; margin: 0 auto; padding: 72px 24px; display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.about-media { border-radius: 28px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 50px rgba(29,41,61,.14); background: var(--soft); position: relative; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: .5; }
.about-title { font-size: 34px; font-weight: 700; letter-spacing: -1px; margin: 14px 0 0; line-height: 1.2; }
.about-body { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 18px 0 0; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.feat { display: flex; align-items: center; gap: 12px; }
.feat-ic { color: var(--accent); display: inline-flex; flex-shrink: 0; }
.feat-t { font-weight: 600; }
.feat-d { font-size: 13px; color: var(--muted); }

/* ===================== CAMPAIGNS ===================== */
.camp-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; }
.camp-main { background: var(--dark); border-radius: var(--r-lg); padding: 44px; color: #fff; position: relative; overflow: hidden; }
.camp-ghost { position: absolute; right: -16px; bottom: -24px; opacity: .09; color: #fff; }
.camp-kicker { color: var(--yellow); font-weight: 600; font-size: 14px; }
.camp-h { font-size: 30px; font-weight: 700; margin: 12px 0 0; line-height: 1.15; max-width: 340px; }
.camp-body { color: var(--topbar-text); font-size: 15px; margin: 14px 0 0; max-width: 360px; line-height: 1.6; }
.camp-price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 22px; }
.camp-price { font-size: 38px; font-weight: 700; color: var(--yellow); }
.camp-old { font-size: 20px; color: var(--muted-2); text-decoration: line-through; }
.camp-side { display: flex; flex-direction: column; gap: 22px; }
.camp-s1 { flex: 1; background: var(--accent); border-radius: var(--r-lg); padding: 30px; color: #fff; position: relative; overflow: hidden; }
.camp-s2 { flex: 1; background: var(--soft); border-radius: var(--r-lg); padding: 30px; position: relative; overflow: hidden; }
.camp-tag { position: absolute; right: 14px; top: 14px; background: rgba(255,255,255,.2); border-radius: 12px; padding: 6px 12px; font-weight: 700; font-size: 13px; }
.camp-s-h { font-size: 22px; font-weight: 700; margin: 10px 0 0; }
.camp-s1 .camp-s-b { font-size: 14px; margin: 8px 0 0; opacity: .92; line-height: 1.5; }
.camp-s2 .camp-s-h { color: var(--ink); }
.camp-s2 .camp-s-b { font-size: 14px; margin: 8px 0 0; color: var(--muted); line-height: 1.5; }
.camp-s2 .feat-ic { color: var(--accent); }

/* ===================== REVIEWS ===================== */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; box-shadow: var(--sh-card); }
.rev-stars { color: var(--yellow); font-size: 16px; letter-spacing: 1px; }
.rev-text { font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 14px 0 22px; }
.rev-author { display: flex; align-items: center; gap: 12px; }
.rev-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; }
.rev-name { font-weight: 600; font-size: 14.5px; }
.rev-tag { font-size: 12.5px; color: var(--muted); }

/* ===================== CONTACT ===================== */
.contact { background: var(--soft-2); }
.contact-inner { max-width: 1200px; margin: 0 auto; padding: 72px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.contact-title { font-size: 34px; font-weight: 700; letter-spacing: -1px; margin: 14px 0 0; }
.contact-list { margin-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; }
.contact-ic { width: 46px; height: 46px; border-radius: var(--r-icon); background: var(--soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-weight: 600; }
.contact-val { font-size: 14px; color: var(--muted); line-height: 1.55; }
.contact-media { border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 24px 50px rgba(29,41,61,.12); position: relative; background: var(--line-2); }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-media-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--muted); }

/* ===================== FOOTER ===================== */
.foot { background: var(--dark); color: var(--topbar-text); margin-top: auto; }
.foot-inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.foot-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.foot-brand-badge { width: 42px; height: 42px; border-radius: var(--r-icon); background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 20px; }
.foot-brand-name { font-size: 20px; font-weight: 700; color: #fff; }
.foot-about { font-size: 14px; line-height: 1.65; color: var(--foot-text); max-width: 280px; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-soc { width: 38px; height: 38px; border-radius: 11px; background: var(--dark-2); color: var(--topbar-text); display: flex; align-items: center; justify-content: center; }
.foot-soc:hover { color: #fff; }
.foot-head { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.foot-links { display: flex; flex-direction: column; gap: 11px; font-size: 14px; }
.foot-link { background: none; border: none; color: var(--foot-text); cursor: pointer; text-align: left; padding: 0; font-size: 14px; }
.foot-link:hover { color: #fff; }
.foot-contact { font-size: 14px; color: var(--foot-text); line-height: 1.7; }
.foot-bottom { border-top: 1px solid var(--dark-2); }
.foot-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13px; color: #64748B; }

/* ===================== MENU PAGE ===================== */
.menu-head { text-align: center; margin-bottom: 14px; }
.menu-title { font-size: 40px; font-weight: 700; letter-spacing: -1.2px; margin: 12px 0 0; }
.menu-sub { color: var(--muted); font-size: 15.5px; margin: 10px 0 0; }
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 30px 0 34px; }
.menu-tab { border: 1px solid var(--line-2); background: #fff; color: var(--ink-soft); cursor: pointer; font-size: 14px; font-weight: 600; padding: 10px 20px; border-radius: var(--r-pill); transition: all .15s; }
.menu-tab:hover { border-color: var(--accent); color: var(--accent-600); }
.menu-tab.is-active { border-color: var(--accent); background: var(--accent); color: #fff; }

/* ===================== PRODUCT DETAIL ===================== */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; margin-top: 22px; }
.detail-media { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 1/1; box-shadow: 0 24px 50px rgba(29,41,61,.14); background: var(--soft); position: relative; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-media-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: .5; }
.detail-cat { display: inline-block; background: var(--soft); color: var(--accent); font-size: 13px; font-weight: 600; padding: 5px 14px; border-radius: var(--r-pill); }
.detail-title { font-size: 38px; font-weight: 700; letter-spacing: -1px; margin: 14px 0 0; }
.detail-rating { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.detail-rating .rev-stars { font-size: 16px; }
.detail-rating span { font-size: 13.5px; color: var(--muted); }
.detail-desc { font-size: 16px; line-height: 1.7; color: var(--muted); margin: 20px 0 0; }
.detail-price { font-size: 34px; font-weight: 700; color: var(--ink); margin: 24px 0 22px; }
.detail-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.stepper { display: flex; align-items: center; gap: 2px; background: var(--line); border-radius: var(--r-btn); padding: 5px; }
.stepper button { width: 42px; height: 42px; border: none; background: #fff; border-radius: 11px; cursor: pointer; font-size: 22px; font-weight: 600; color: var(--ink); }
.stepper .qval { min-width: 44px; text-align: center; font-size: 17px; font-weight: 700; }
.detail-add { flex: 1; min-width: 200px; background: var(--accent); color: #fff; border: none; cursor: pointer; font-size: 16px; font-weight: 600; padding: 16px; border-radius: var(--r-btn); box-shadow: var(--sh-btn-lg); }
.detail-add:hover { background: var(--accent-600); }
.detail-meta { display: flex; gap: 22px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.detail-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-soft); }
.detail-meta-item svg { color: var(--accent); }

/* ===================== CART ===================== */
.page-title { font-size: 34px; font-weight: 700; letter-spacing: -1px; margin: 0 0 24px; }
.cart-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: start; }
.cart-lines { display: flex; flex-direction: column; gap: 14px; }
.cline { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px; box-shadow: 0 8px 22px rgba(29,41,61,.05); }
.cline-thumb { width: 72px; height: 72px; border-radius: 14px; overflow: hidden; flex-shrink: 0; background: var(--soft); position: relative; }
.cline-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cline-thumb-ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--accent); opacity: .55; }
.cline-info { flex: 1; min-width: 0; }
.cline-name { font-size: 16px; font-weight: 600; }
.cline-price { font-size: 13px; color: var(--muted); }
.stepper-sm { display: flex; align-items: center; gap: 2px; background: var(--line); border-radius: 11px; padding: 4px; }
.stepper-sm button { width: 32px; height: 32px; border: none; background: #fff; border-radius: 9px; cursor: pointer; font-size: 18px; font-weight: 600; padding: 0; }
.stepper-sm .qval { min-width: 32px; text-align: center; font-weight: 700; font-size: 15px; }
.cline-total { min-width: 82px; text-align: right; font-size: 16px; font-weight: 700; }
.cline-remove { background: none; border: none; cursor: pointer; color: var(--muted-2); font-size: 20px; padding: 4px; line-height: 1; }
.cline-remove:hover { color: var(--danger); }
.cart-inline-form { margin: 0; display: flex; }

.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; box-shadow: var(--sh-soft); position: sticky; top: 100px; }
.summary-label { font-size: 14px; font-weight: 600; color: var(--ink-soft); margin-bottom: 12px; }
.fulfil-select { display: flex; gap: 8px; margin-bottom: 22px; }
.fulfil-opt { flex: 1; border: 1px solid var(--line-2); background: #fff; color: var(--ink-soft); cursor: pointer; border-radius: var(--r-icon); padding: 12px 6px; font-size: 12.5px; font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.fulfil-opt:hover { border-color: var(--accent); }
.fulfil-opt.is-active { border-color: var(--accent); background: var(--soft); color: var(--accent-600); }
.fulfil-opt svg { width: 22px; height: 22px; }
.sum-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted); margin-bottom: 11px; }
.sum-row strong { font-weight: 600; color: var(--ink); }
.sum-divider { padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px dashed var(--line-2); }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.sum-total-label { font-size: 16px; font-weight: 600; }
.sum-total-val { font-size: 26px; font-weight: 700; color: var(--accent); }

.empty-cart { text-align: center; padding: 70px 20px; background: var(--soft-2); border-radius: 24px; }
.empty-cart-ic { color: var(--accent); display: flex; justify-content: center; }
.empty-cart h3 { font-size: 22px; font-weight: 600; margin: 16px 0 6px; }
.empty-cart p { color: var(--muted); margin: 0 0 24px; }

/* ===================== CHECKOUT ===================== */
.checkout-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 24px; }
.fsec { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; box-shadow: 0 10px 28px rgba(29,41,61,.05); }
.fsec-title { font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.fld { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.fld input, .fld textarea, .fld select { border: 1px solid var(--line-2); border-radius: var(--r-btn-sm); padding: 13px 14px; font-size: 14.5px; outline: none; font-family: inherit; transition: border-color .15s; }
.fld input:focus, .fld textarea:focus, .fld select:focus { border-color: var(--accent); }
.fld textarea { resize: vertical; }
.fld-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fld + .fld { margin-top: 14px; }
.fld-error { color: var(--danger); font-size: 12px; font-weight: 500; }
.pay-opt { display: flex; align-items: center; gap: 13px; border: 1px solid var(--line-2); background: #fff; cursor: pointer; border-radius: var(--r-icon); padding: 15px 16px; font-size: 14.5px; font-weight: 600; color: var(--ink); text-align: left; width: 100%; }
.pay-opt.is-active { border-color: var(--accent); background: var(--soft); }
.pay-opt .pay-ic { color: var(--accent); display: inline-flex; }
.pay-opt .pay-lbl { flex: 1; }
.pay-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-2); display: flex; align-items: center; justify-content: center; }
.pay-opt.is-active .pay-dot { border-color: var(--accent); }
.pay-dot span { width: 10px; height: 10px; border-radius: 50%; background: transparent; }
.pay-opt.is-active .pay-dot span { background: var(--accent); }
.pay-list { display: flex; flex-direction: column; gap: 10px; }
.co-note { font-size: 12px; color: var(--muted-2); text-align: center; margin: 12px 0 0; }
.co-sum-lines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px dashed var(--line-2); }
.co-sum-line { display: flex; justify-content: space-between; font-size: 14px; }
.co-sum-line span:first-child { color: var(--ink-soft); }
.co-sum-line span:last-child { font-weight: 600; }

/* ===================== CONFIRM ===================== */
.confirm { max-width: 620px; margin: 0 auto; padding: 70px 24px 90px; text-align: center; }
.confirm-check { width: 96px; height: 96px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto; animation: adaPop .5s ease both; box-shadow: 0 16px 34px rgba(0,201,80,.32); color: #fff; }
.confirm-title { font-size: 34px; font-weight: 700; letter-spacing: -1px; margin: 26px 0 0; }
.confirm-body { font-size: 16px; color: var(--muted); margin: 12px 0 0; line-height: 1.6; }
.confirm-box { background: var(--soft-2); border-radius: var(--r-card); padding: 26px; margin-top: 30px; text-align: left; }
.confirm-row { display: flex; justify-content: space-between; margin-bottom: 10px; }
.confirm-row span:first-child { color: var(--muted); font-size: 14px; }
.confirm-row span:last-child { font-weight: 600; }
.confirm-row.is-total { padding-top: 12px; border-top: 1px dashed var(--line-2); margin-bottom: 0; }
.confirm-row.is-total span:last-child { font-weight: 700; color: var(--accent); font-size: 19px; }

/* ===================== ALERT ===================== */
.alert { padding: 13px 16px; border-radius: 12px; font-size: 14px; font-weight: 500; margin-bottom: 20px; }
.alert-error { background: #FDEAEA; color: #DC2626; border: 1px solid #F6CFCF; }
.flash-wrap { max-width: 1200px; margin: 0 auto; padding: 16px 24px 0; }

/* ===================== SHARED PAGE PADDING ===================== */
.pagepad { padding: 40px 0 72px; }

/* ==========================================================================
   ADMIN — korunmuş stiller
   ========================================================================== */
.admin-auth { min-height: 100vh; display: grid; place-items: center; background: linear-gradient(160deg, var(--soft), #fff 55%); padding: 24px; }
.auth-card { width: 100%; max-width: 380px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: 0 24px 60px rgba(29,41,61,.14); }
.auth-head { display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 26px; text-align: center; }
.auth-head h1 { font-size: 21px; }
.brand-mark { display: inline-grid; place-items: center; width: 42px; height: 42px; background: var(--accent); color: #fff; font-weight: 700; font-size: 20px; border-radius: var(--r-icon); }
.auth-card form { display: flex; flex-direction: column; gap: 16px; }

.admin { background: #FBFAF9; }
.admin-shell { display: grid; grid-template-columns: 244px 1fr; min-height: 100vh; }
.sidebar { background: #fff; border-right: 1px solid var(--line); padding: 22px 16px; display: flex; flex-direction: column; position: sticky; top: 0; height: 100vh; }
.sidebar-brand { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 15.5px; padding: 6px 8px 20px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.nav-item { padding: 10px 13px; border-radius: 11px; font-size: 14.5px; font-weight: 550; color: var(--ink-soft); transition: background .15s, color .15s; }
.nav-item:hover { background: var(--soft); color: var(--ink); }
.nav-item.is-active { background: var(--soft); color: var(--accent-600); font-weight: 600; }
.sidebar-foot { border-top: 1px solid var(--line); padding-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.sidebar-user { font-size: 13px; color: var(--muted); padding-inline: 4px; }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line-2); border-radius: var(--r-pill); font-weight: 600; font-size: 13px; padding: 8px 14px; cursor: pointer; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-600); }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.admin-main { padding: 32px 36px; min-width: 0; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.admin-head h1 { font-size: 25px; letter-spacing: -.5px; }
.admin-head .muted { font-size: 13px; margin-top: 2px; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 20px; box-shadow: var(--sh-card); display: flex; flex-direction: column; gap: 6px; }
.stat-label { font-size: 13px; color: var(--muted); font-weight: 540; }
.stat-value { font-size: 27px; font-weight: 700; letter-spacing: -1px; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px; box-shadow: var(--sh-card); margin-bottom: 22px; }
.panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.panel-head h2 { font-size: 16px; font-weight: 600; }
.link { color: var(--accent-600); font-weight: 600; font-size: 14px; }
.link-danger { color: var(--danger); background: none; border: none; font: inherit; font-weight: 600; font-size: 14px; padding: 0; cursor: pointer; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 10px 12px; border-bottom: 1px solid var(--line); }
.table td { padding: 13px 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover { background: #FDFBF8; }
.table tfoot td { padding: 13px 12px; border-top: 2px solid var(--line); }
.text-right { text-align: right; }
.muted { color: var(--muted); }
.cell-thumb { width: 52px; }
.cell-actions { display: flex; gap: 14px; align-items: center; white-space: nowrap; }
.inline-form { display: inline; }
.thumb { width: 42px; height: 42px; border-radius: 9px; object-fit: cover; background: var(--soft); }
.thumb-empty { display: grid; place-items: center; font-weight: 700; color: var(--accent); }
.thumb-lg { width: 74px; height: 74px; border-radius: 11px; }
.current-image { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: var(--r-pill); font-size: 12px; font-weight: 620; white-space: nowrap; }
.badge-amber { background: #FEF4E2; color: #B7791F; }
.badge-blue { background: #E8F0FE; color: #2563EB; }
.badge-violet { background: #F1E9FE; color: #7C3AED; }
.badge-cyan { background: #E0F4F8; color: #0E7490; }
.badge-green { background: #E6F4EA; color: #15803D; }
.badge-red { background: #FDEAEA; color: #DC2626; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip { padding: 7px 15px; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line-2); font-size: 13.5px; font-weight: 550; color: var(--ink-soft); }
.chip:hover { border-color: var(--accent); color: var(--accent-600); }
.chip.is-active { background: var(--dark); border-color: var(--dark); color: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 580; color: var(--ink-soft); }
.field input, .field textarea, .field select { width: 100%; padding: 11px 13px; border: 1px solid var(--line-2); border-radius: 11px; font: inherit; font-size: 15px; background: #fff; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 72px; }
.field-error { color: var(--danger); font-size: 12.5px; }
.optional { color: var(--muted); font-weight: 400; }
.field-full { grid-column: 1 / -1; }
.form-actions { display: flex; gap: 12px; }
.stack-form { display: flex; flex-direction: column; gap: 16px; }
.checkbox { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink-soft); cursor: pointer; font-weight: 500; }
.checkbox input { width: 17px; height: 17px; accent-color: var(--accent); }
.checkbox-sm { font-size: 13px; }
.two-col { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; align-items: start; }
.inline-edit { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mini-input { width: 62px; padding: 8px 10px; border: 1px solid var(--line-2); border-radius: 9px; font: inherit; font-size: 14px; text-align: center; }
.mini-num { width: 64px; }
.detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: start; }
.detail-side { display: flex; flex-direction: column; gap: 22px; }
.detail-side .panel { margin-bottom: 0; }
.info-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; font-size: 14px; }
.info-list dt { color: var(--muted); font-weight: 540; }
.info-list dd { color: var(--ink); }
.empty { color: var(--muted); padding: 28px 0; text-align: center; }
.alert-success { background: #E6F4EA; color: #15803D; border: 1px solid #C6E6CF; }
.page-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 28px; }
.page-head h1 { font-size: 28px; letter-spacing: -.5px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-media { order: -1; max-width: 440px; }
    .hero-title { font-size: 44px; }
    .fulfil-grid { grid-template-columns: 1fr; }
    .pgrid { grid-template-columns: repeat(2, 1fr); }
    .about-inner, .contact-inner, .camp-grid, .detail-grid, .cart-grid, .checkout-grid { grid-template-columns: 1fr; }
    .about-media, .contact-media { order: -1; }
    .summary, .co-sticky { position: static; }
    .foot-inner { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .admin-shell { grid-template-columns: 1fr; }
    .sidebar { position: static; height: auto; flex-direction: row; align-items: center; flex-wrap: wrap; gap: 10px; padding: 14px 18px; }
    .sidebar-brand { padding: 0; }
    .sidebar-nav { flex-direction: row; flex-wrap: wrap; flex: 1; justify-content: center; }
    .sidebar-foot { border-top: none; padding-top: 0; flex-direction: row; }
    .admin-main { padding: 22px 18px; }
}
@media (max-width: 620px) {
    .wrap, .wrap-narrow { padding: 0 16px; }
    .hero-title { font-size: 36px; letter-spacing: -1px; }
    .pgrid { grid-template-columns: 1fr; }
    .about-feats, .fld-grid, .form-grid { grid-template-columns: 1fr; }
    .foot-inner { grid-template-columns: 1fr; }
    .abar-left { display: none; }
    .cline { flex-wrap: wrap; }
    .cline-total { min-width: auto; }
    .sec-title, .menu-title { font-size: 30px; }
    .cell-actions { flex-direction: column; gap: 6px; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
    html { scroll-behavior: auto; }
}

/* Ürün kartı: tüm kart tıklanabilir (detay), + butonu ayrı */
.pcard { position: relative; }
.pcard-link { position: absolute; inset: 0; z-index: 1; }
.pcard-media, .pcard-body { position: relative; }
.pcard-foot { position: relative; z-index: 2; }

/* Çıpa kaydırma ofseti (yapışkan başlık) */
html { scroll-behavior: smooth; }
#ada-about, #ada-campaigns, #ada-reviews, #ada-contact { scroll-margin-top: 88px; }

/* ===================== ADMIN: teslimat bölgeleri ağacı ===================== */
.zone-city { padding-bottom: 18px; }
.zone-city-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.zone-city-title, .zone-district-title { display: flex; align-items: center; gap: 10px; }
.zone-name { font-size: 16px; font-weight: 600; }
.zone-actions { display: flex; align-items: center; gap: 10px; }
.zone-districts { display: flex; flex-direction: column; gap: 14px; padding-left: 6px; }
.zone-district { background: #FBFAF9; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.zone-district-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.zone-district-title .zone-name { font-size: 14.5px; }
.zone-nb-list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.zone-nb { display: inline-flex; align-items: center; background: var(--green-bg, #E6F4EA); border: 1px solid #C6E6CF; border-radius: var(--r-pill); overflow: hidden; }
.zone-nb.is-off { background: #F1F5F9; border-color: var(--line-2); opacity: .8; }
.zone-nb-toggle { background: none; border: none; cursor: pointer; font-size: 13px; font-weight: 600; color: #15803D; padding: 6px 4px 6px 13px; }
.zone-nb.is-off .zone-nb-toggle { color: var(--muted); text-decoration: line-through; }
.zone-nb-x { background: none; border: none; cursor: pointer; color: var(--muted-2); font-size: 16px; line-height: 1; padding: 4px 10px 4px 6px; }
.zone-nb-x:hover { color: var(--danger); }
.zone-add-nb { display: inline-flex; align-items: center; gap: 6px; margin: 0; }
.zone-add-district { margin-top: 4px; }

/* ===================== MÜŞTERİ: mahalle / teslimat çubuğu ===================== */
.zonebar { background: var(--soft-2); border-bottom: 1px solid var(--line); }
.zonebar-inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.zonebar-ic { width: 40px; height: 40px; border-radius: 12px; background: var(--soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zonebar-lead { font-size: 14px; font-weight: 600; color: var(--ink); }
.zonebar-lead small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; margin-top: 1px; }
.zonebar-form { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 0; flex: 1; justify-content: flex-end; }
.zone-select { border: 1px solid var(--line-2); background: #fff; border-radius: var(--r-btn-sm); padding: 10px 12px; font-size: 14px; font-family: inherit; color: var(--ink); outline: none; min-width: 150px; }
.zone-select:focus { border-color: var(--accent); }
.zone-select:disabled { opacity: .55; }
.zonebar-btn { background: var(--accent); color: #fff; border: none; cursor: pointer; font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: var(--r-btn-sm); }
.zonebar-btn:hover { background: var(--accent-600); }
.zonebar-btn:disabled { opacity: .5; cursor: default; }
.zone-set { display: flex; align-items: center; gap: 10px; flex: 1; justify-content: flex-end; flex-wrap: wrap; }
.zone-set-badge { display: inline-flex; align-items: center; gap: 8px; background: #E6F4EA; color: #15803D; border: 1px solid #C6E6CF; border-radius: var(--r-pill); padding: 8px 15px; font-size: 13.5px; font-weight: 600; }
.zone-change { background: none; border: 1px solid var(--line-2); border-radius: var(--r-pill); cursor: pointer; font-size: 13px; font-weight: 600; color: var(--ink-soft); padding: 8px 14px; }
.zone-change:hover { border-color: var(--accent); color: var(--accent-600); }
.zonebar-none { font-size: 13.5px; color: var(--muted); }
@media (max-width: 620px) {
    .zonebar-form, .zone-set { justify-content: flex-start; }
    .zone-select { min-width: 0; flex: 1; }
}

/* Ödeme sayfası: seçili teslimat bölgesi satırı */
.zone-inline { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 500; color: var(--ink-soft); background: var(--soft-2); border: 1px solid var(--line); border-radius: 10px; padding: 8px 12px; }
.zone-inline svg { color: var(--accent); }
.zone-inline a { font-weight: 600; }
.zone-inline.is-warn { background: #FFF4E5; border-color: #FFE3CE; color: var(--badge-fg); }

/* ===================== NAV KONUM PILL'İ ===================== */
.zone-pill { display: inline-flex; align-items: center; gap: 7px; background: var(--soft); border: 1px solid transparent; color: var(--ink); cursor: pointer; font-size: 13.5px; font-weight: 600; padding: 9px 14px; border-radius: var(--r-pill); transition: border-color .15s, background .15s; max-width: 210px; }
.zone-pill svg { color: var(--accent); flex: none; }
.zone-pill:hover { border-color: var(--accent); }
.zone-pill.has-zone { background: #E6F4EA; }
.zone-pill.has-zone svg { color: #15803D; }
.zone-pill-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.zone-pill-caret { font-size: 10px; color: var(--muted); }

/* ===================== KONUM MODALI ===================== */
.zone-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.zone-modal.is-open { display: block; }
.zone-modal-backdrop { position: absolute; inset: 0; background: rgba(23, 21, 16, .5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); animation: zoneFade .2s ease; }
.zone-modal-card {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: min(520px, calc(100vw - 32px)); max-height: min(78vh, 640px);
    background: #fff; border-radius: 24px; box-shadow: 0 40px 90px rgba(23,21,16,.35);
    display: flex; flex-direction: column; overflow: hidden; animation: zonePop .22s var(--ease, ease);
}
@keyframes zoneFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes zonePop { from { opacity: 0; transform: translate(-50%, -46%) scale(.97); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
.zone-modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 24px 24px 16px; }
.zone-modal-title { font-size: 20px; font-weight: 700; letter-spacing: -.4px; }
.zone-modal-sub { font-size: 13.5px; color: var(--muted); margin-top: 4px; line-height: 1.45; }
.zone-modal-x { flex: none; width: 36px; height: 36px; border: none; background: var(--line); color: var(--ink-soft); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.zone-modal-x:hover { background: var(--line-2); }
.zone-current { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 24px 16px; }
.zone-search { display: flex; align-items: center; gap: 10px; margin: 0 24px; padding: 0 14px; background: var(--soft-2); border: 1px solid var(--line-2); border-radius: var(--r-btn); }
.zone-search svg { color: var(--accent); flex: none; }
.zone-search input { flex: 1; border: none; background: none; outline: none; font-family: inherit; font-size: 15px; padding: 14px 0; color: var(--ink); }
.zone-list { margin-top: 8px; padding: 8px 12px 16px; overflow-y: auto; }
.zone-item { margin: 0; }
.zone-item button { width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 1px; background: none; border: none; cursor: pointer; text-align: left; padding: 12px; border-radius: 12px; transition: background .12s; }
.zone-item button:hover { background: var(--soft); }
.zone-item[data-current="1"] button { background: #E6F4EA; }
.zone-item-nb { font-size: 15px; font-weight: 600; color: var(--ink); }
.zone-item-meta { font-size: 12.5px; color: var(--muted); }
.zone-noresult { display: none; padding: 22px 12px; text-align: center; color: var(--muted); font-size: 14px; line-height: 1.5; }
.zone-inline-link { background: none; border: none; padding: 0; cursor: pointer; font: inherit; font-weight: 600; color: var(--accent); }
.zone-inline-link:hover { color: var(--accent-600); }

@media (max-width: 560px) {
    .zone-pill-text { max-width: 92px; }
    .zone-modal-card { left: 0; right: 0; bottom: 0; top: auto; transform: none; width: 100%; max-height: 86vh; border-radius: 24px 24px 0 0; animation: zoneSheet .24s var(--ease, ease); }
    @keyframes zoneSheet { from { transform: translateY(100%); } to { transform: translateY(0); } }
}

/* ===================== ADMIN: ayarlar + toplu işlem + mahalle tablosu ===================== */
.settings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; align-items: end; }
.settings-grid .field small { font-weight: 400; }
.zone-bulkbar { position: sticky; top: 0; z-index: 20; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 16px; box-shadow: var(--sh-card); margin-bottom: 18px; }
.zone-selectall { font-weight: 600; }
.zone-bulk-count { font-size: 13px; color: var(--muted); font-weight: 600; }
.zone-bulk-spacer { flex: 1 1 12px; }
.zone-bulk-fee { display: inline-flex; align-items: center; gap: 6px; }
.zone-del { color: var(--danger); }
.zone-del:hover { border-color: var(--danger); color: var(--danger); }
.zone-nb-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 10px; }
.zone-nb-table th { text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 600; padding: 6px 10px; border-bottom: 1px solid var(--line); }
.zone-nb-table td { padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.zone-nb-table tbody tr:last-child td { border-bottom: none; }
.zone-nb-table .w-check { width: 34px; }
.fee-cell { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); }
@media (max-width: 700px) { .zone-district { overflow-x: auto; } .zone-nb-table { min-width: 460px; } }

/* ===================== ADMIN DASHBOARD ===================== */
.dash-alert { display: flex; align-items: center; gap: 10px; background: #FFF4E5; border: 1px solid #FFE3CE; color: var(--badge-fg); border-radius: 14px; padding: 14px 18px; font-size: 14.5px; margin-bottom: 22px; font-weight: 500; transition: border-color .15s; }
.dash-alert:hover { border-color: var(--accent); color: var(--badge-fg); }
.dash-alert strong { font-weight: 700; }
.dash-alert-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(255,105,0,.15); flex: none; }
.dash-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; align-items: start; margin-bottom: 22px; }
.dash-cols .panel { margin-bottom: 0; }
.chart { display: flex; align-items: flex-end; gap: 10px; height: 200px; padding-top: 20px; }
.chart-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; }
.chart-bar-wrap { flex: 1; width: 100%; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 6px; }
.chart-val { font-size: 10.5px; color: var(--muted); font-weight: 600; white-space: nowrap; }
.chart-bar { width: 100%; max-width: 46px; background: linear-gradient(180deg, #ff8a33, var(--accent)); border-radius: 8px 8px 4px 4px; min-height: 2px; }
.chart-bar.is-empty { background: var(--line-2); }
.chart-label { font-size: 12px; color: var(--muted); font-weight: 600; }
.status-list { display: flex; flex-direction: column; gap: 4px; }
.status-item { display: flex; align-items: center; justify-content: space-between; padding: 9px 10px; border-radius: 10px; transition: background .12s; }
.status-item:hover { background: var(--soft-2); }
.status-item b { font-size: 16px; font-weight: 700; color: var(--ink); }

/* ===================== ADMIN: ayar switch satırı ===================== */
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.switch-row > span { display: flex; flex-direction: column; gap: 2px; }
.switch-row input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--accent); cursor: pointer; flex: none; }

/* ===================== STOREFRONT: kapalı bandı + min uyarısı ===================== */
.closed-bar { background: #FDEAEA; color: #B42318; border-bottom: 1px solid #F6CFCF; text-align: center; font-size: 14px; padding: 10px 16px; font-weight: 500; }
.closed-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #DC2626; margin-right: 4px; vertical-align: middle; }
.co-min-warn { background: #FFF4E5; border: 1px solid #FFE3CE; color: var(--badge-fg); border-radius: 12px; padding: 10px 12px; font-size: 13px; font-weight: 500; margin-bottom: 12px; }

@media (max-width: 900px) { .dash-cols { grid-template-columns: 1fr; } }
