/* ============================================================
   QR Menü - Yeni Tasarım (dikey / mobil öncelikli)
   Mr. Chef teması
   ============================================================ */

:root {
    --brand:        #1a3b6d;   /* lacivert */
    --brand-dark:   #12294d;
    --brand-2:      #24487d;
    --accent:       #1a3b6d;   /* fiyat lacivert */
    --pop:          #f39c12;   /* Popüler */
    --chef:         #1a3b6d;   /* Şef Önerisi */
    --new:          #4a7bbf;   /* Yeni */
    --ink:          #1f2a24;
    --muted:        #808893;
    --line:         #eef1ef;
    --card:         #ffffff;
    --radius:       18px;
    --shadow:       0 10px 30px rgba(0,0,0,.10);
    --maxw:         480px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
    margin: 0; padding: 0;
    font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif;
    color: var(--ink);
    background: #0e1512;
}

/* Dikey telefon çerçevesi: masaüstünde ortalanmış kolon */
.app-shell {
    position: relative;
    width: 100%;
    max-width: var(--maxw);
    min-height: 100vh;
    margin: 0 auto;
    background: #ffffff;
    overflow-x: clip; /* yatay taşmayı keser ama position:sticky'yi BOZMAZ (hidden bozuyordu) */
    box-shadow: 0 0 60px rgba(0,0,0,.35);
}

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

/* ===================== ANA SAYFA ===================== */
.home {
    position: relative;
    min-height: 100vh;
    color: #fff;
    padding-bottom: 74px; /* alt bar payı */
    background: transparent; /* arka planı sabit video kaplar */
}

/* Video TÜM ekranı sabit olarak kaplar; kategoriler üstünde kayar */
.video-bg {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--maxw);
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}
.video-bg video,
.video-bg iframe,
.video-bg img {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border: 0;
}
/* Video yoksa görülen yedek arka plan */
.video-bg::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(120% 90% at 50% 20%, #35604f 0%, #1c2c25 55%, #14201b 100%);
    z-index: -1;
}
/* Metin okunabilirliği için çok hafif karartma (video net görünür) */
.video-bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.05) 35%, rgba(0,0,0,.15) 70%, rgba(0,0,0,.35) 100%);
}

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

/* Logo: üst bölümde, ekran ortasından biraz yukarıda */
.home-logo {
    height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.home-logo img { max-height: 120px; width: auto; filter: drop-shadow(0 6px 18px rgba(0,0,0,.45)); }
.home-logo .txt-logo { font-size: 2.4rem; font-weight: 700; text-shadow: 0 4px 16px rgba(0,0,0,.5); }
.hero-subtitle { text-align:center; opacity:.9; margin-top:-14px; padding:0 24px 10px; font-size:.95rem; }

/* Kategori grid: alt yarıdan başlar, aşağı doğru scroll ile devam */
.cat-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 6px 16px 24px;
}
.cat-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 118px;
    padding: 18px 10px;
    border-radius: 16px;
    background: rgba(15,20,17,.15);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    color: #fff;
    text-align: center;
    transition: transform .15s ease, background .2s ease;
}
.cat-tile:active { transform: scale(.97); }
.cat-tile:hover { background: rgba(15,20,17,.28); }
.cat-tile .cat-ico { font-size: 1.9rem; opacity: .95; }
.cat-tile .cat-ico img { height: 42px; width: auto; margin: 0 auto; filter: brightness(0) invert(1); opacity:.95; }
.cat-tile .cat-label {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===================== ALT BAR ===================== */
.bottom-bar {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: var(--maxw);
    height: 52px;
    background: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 40;
}
/* Beyaz zemin + ortada yumuşak oyuk (button'ın oturduğu cradle) */
.bottom-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    -webkit-mask: radial-gradient(circle 30px at 50% 2px, transparent 0 29.5px, #000 31px);
    mask: radial-gradient(circle 30px at 50% 2px, transparent 0 29.5px, #000 31px);
    filter: drop-shadow(0 -2px 7px rgba(0,0,0,.05));
    z-index: -1;
}
.bottom-bar .bb-left,
.bottom-bar .bb-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.bottom-bar .bb-btn {
    background: none; border: 0;
    color: #1a3b6d;
    font-size: 1.15rem;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 6px;
    cursor: pointer;
    transition: color .2s ease, transform .15s ease;
}
.bottom-bar .bb-btn:hover { color: var(--brand); }
.bottom-bar .bb-btn:active { transform: scale(.85); }
/* Giriş animasyonu */
.bottom-bar .bb-btn i { animation: bbFade .5s ease both; }
.bottom-bar .bb-left .bb-btn:nth-child(2) i { animation-delay: .09s; }
@keyframes bbFade { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
/* Arama ikonuna hafif nabız */
.bottom-bar .bb-search i {
    animation: bbFade .5s ease both, bbPulse 2.6s ease-in-out 1.2s infinite;
}
@keyframes bbPulse { 0%, 100% { transform: none; } 50% { transform: scale(1.15); } }
.bottom-bar .bb-btn small { font-size: .6rem; color: var(--muted); }

/* Ortadaki MENU düğmesi */
.menu-fab {
    position: absolute;
    left: 50%;
    top: -23px;
    transform: translateX(-50%);
    width: 50px; height: 50px;
    border-radius: 50%;
    background: #1a3b6d;
    color: #fff;
    border: 0;
    box-shadow: 0 5px 14px rgba(26,59,109,.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.02rem;
}
.menu-fab-label {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    bottom: 6px;
    font-size: .6rem; letter-spacing: 1px; color: #3a4a44;
    font-weight: 700;
}

/* Dil seçici */
.lang-wrap { position: relative; }
.lang-toggle {
    background: none; border: 0; color: #7a857f;
    font-weight: 500; font-size: .92rem;
    display: flex; align-items: center; gap: 6px;
}
.lang-menu {
    position: absolute;
    right: 0; bottom: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-width: 150px;
    display: none;
}
.lang-menu.open { display: block; }
.lang-menu a { display: block; padding: 12px 16px; font-size: .9rem; }
.lang-menu a.active, .lang-menu a:hover { background: #f2f6f4; color: var(--brand); }

/* ===================== DRAWER (yan menü) ===================== */
.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(12,20,16,0);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    visibility: hidden;
    transition: background .5s ease, backdrop-filter .5s ease, visibility 0s linear .5s;
    z-index: 50;
}
.drawer-overlay.open {
    background: rgba(18,34,28,.48);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    visibility: visible;
    transition: background .5s ease, backdrop-filter .5s ease, visibility 0s;
}

.drawer {
    position: fixed;
    top: 0;
    left: 0;                         /* ekranın sol kenarından (referans gibi) */
    width: min(86vw, 320px);
    height: 100vh;
    background: #fff;
    z-index: 60;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    visibility: hidden;
    /* yumuşak, akıcı kayma — tek parça, temiz */
    transition: transform .5s cubic-bezier(.25, .8, .25, 1), visibility 0s linear .5s;
    box-shadow: 12px 0 40px rgba(0,0,0,.18);
    will-change: transform;
}
.drawer.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .5s cubic-bezier(.25, .8, .25, 1), visibility 0s;
}

@media (prefers-reduced-motion: reduce) {
    .drawer, .drawer-overlay { transition-duration: .12s; }
}

.drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--line);
}
.drawer-head img { max-height: 40px; width: auto; }
.drawer-head .txt-logo { font-weight: 700; color: var(--brand); }
.drawer-close {
    width: 38px; height: 38px; border-radius: 50%;
    background: #f1f3f2; border: 0; color: #55605a; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
}

.drawer-cats { flex: 1; overflow-y: auto; padding: 6px 0; }
.drawer-cat {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}
.drawer-cat .dc-ico { color: var(--brand); font-size: 1.15rem; width: 26px; text-align: center; }
.drawer-cat .dc-ico img { height: 24px; width:auto; }
.drawer-cat .dc-name { flex: 1; font-weight: 600; }
.drawer-cat .dc-arrow { color: #c3ccc7; }

.drawer-featured { border-top: 1px solid var(--line); padding: 14px 0 18px; }
.drawer-featured h4 {
    margin: 0 0 10px; padding: 0 20px;
    font-size: .72rem; letter-spacing: 1px; color: var(--muted); text-transform: uppercase;
}
.df-scroll { display: flex; gap: 12px; overflow-x: auto; padding: 0 20px 6px; scrollbar-width: none; }
.df-scroll::-webkit-scrollbar { display: none; }
.df-card { flex: 0 0 auto; width: 130px; }
.df-card .df-img { width: 130px; height: 84px; border-radius: 12px; object-fit: cover; background:#eee; }
.df-card .df-name { font-size: .8rem; font-weight: 600; margin-top: 6px; line-height: 1.2; }
.df-card .df-price { font-size: .8rem; color: var(--accent); font-weight: 700; }

/* ===================== KATEGORİ SAYFASI ===================== */
html { scroll-behavior: smooth; }
.cat-page { min-height: 100vh; padding-bottom: 74px; background:#fff; }
/* Her kategori bölümü; sticky üst bar + sekme yüksekliği kadar hizalama payı */
.cat-section { scroll-margin-top: 112px; }
.cat-section + .cat-section .cat-hero { margin-top: 4px; }

.cat-topbar {
    position: sticky; top: 0; z-index: 30;
    background: #1a3b6d;
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    height: 60px;
    padding: 0 14px;
}
.cat-topbar img { max-height: 40px; width: auto; }
.cat-topbar .txt-logo { font-weight: 700; }
.cat-topbar .ct-back {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 1.2rem; background: none; border: 0;
    display: flex; align-items: center; justify-content: center;
}
.cat-topbar .ct-logo { display: inline-flex; align-items: center; }

/* Yatay sekmeler */
.cat-tabs {
    position: sticky; top: 60px; z-index: 29;
    display: flex; gap: 8px;
    background: #1a3b6d;
    padding: 0 12px 12px;
    overflow-x: auto;
    scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
    flex: 0 0 auto;
    padding: 9px 16px;
    border-radius: 20px;
    font-size: .86rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    background: transparent;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
}
.cat-tab.active { background: #fff; color: #1a3b6d; }

/* Hero */
.cat-hero {
    position: relative;
    height: 210px;
    display: flex; align-items: flex-end;
    color: #fff;
    overflow: hidden;
}
.cat-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-hero::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.75) 100%);
}
.cat-hero .ch-text { position: relative; z-index: 1; padding: 20px; }
.cat-hero .ch-title { font-size: 1.55rem; font-weight: 700; margin: 0; line-height: 1.1; }
.cat-hero .ch-sub { margin: 5px 0 3px; font-size: .8rem; opacity: .92; line-height: 1.35; }
.cat-hero .ch-count { font-size: .72rem; opacity: .8; }

/* Ürün listesi */
.products { padding: 16px 14px 10px; display: flex; flex-direction: column; gap: 14px; }
.product-card {
    display: flex; gap: 12px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
    padding: 12px;
    position: relative;
}
.product-card .pc-thumb {
    flex: 0 0 74px;
    width: 74px; height: 74px;
    border-radius: 12px; object-fit: cover; background:#eef1ef;
}
.product-card .pc-body { flex: 1; min-width: 0; }
.pc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.pc-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 4px; }
.badge-pill {
    font-size: .64rem; font-weight: 700; letter-spacing: .3px;
    padding: 3px 9px; border-radius: 20px; color: #fff; text-transform: none;
}
.badge-pop  { background: var(--pop); }
.badge-chef { background: var(--chef); }
.badge-new  { background: var(--new); }

.pc-name { font-size: 1rem; font-weight: 700; margin: 2px 0; line-height: 1.15; }
.pc-price { color: var(--accent); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.pc-price .old { color: #b5beb9; text-decoration: line-through; font-weight: 500; font-size: .8rem; margin-right: 5px; }
.pc-desc { font-size: .82rem; color: #6d776f; font-style: italic; margin: 2px 0 8px; line-height: 1.35; }

/* Kalori solda, alerjenler sağda (referans gibi iki uca yaslı) */
.pc-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pc-meta-left { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.kcal-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: #e9eef7; color: #1a3b6d;
    border: 1px solid #d2ddef;
    font-size: .7rem; font-weight: 600;
    padding: 3px 10px; border-radius: 20px;
}
.allergens { display: flex; gap: 5px; }
.allergen {
    width: 22px; height: 22px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .62rem; color: #fff;
    background: #b0b8b4;
}
.al-gluten { background:#c9922e; } .al-milk { background:#4a90d9; }
.al-egg { background:#e0a52b; } .al-nut { background:#8d6e63; }
.al-fish { background:#2aa3c4; } .al-shell { background:#e07a5f; }
.al-soy { background:#6aa84f; } .al-sesame { background:#a68a64; }
.al-mustard { background:#d4a017; } .al-generic { background:#b0b8b4; }

.diet-tags { display:flex; gap:5px; }
.diet-tag { font-size:.62rem; color:#1a3b6d; background:#e9eef7; border-radius:20px; padding:2px 8px; font-weight:600; }

.no-items { text-align: center; color: var(--muted); padding: 50px 20px; }

/* ===================== ÜRÜN DETAY ===================== */
.pd-page { min-height: 100vh; padding-bottom: 74px; background: #f4f6f9; }

.pd-topbar {
    position: sticky; top: 0; z-index: 30;
    background: #1a3b6d; color: #fff;
    display: flex; align-items: center; justify-content: center;
    height: 60px; padding: 0 14px;
}
.pd-topbar img { max-height: 40px; width: auto; }
.pd-topbar .txt-logo { font-weight: 700; }
.pd-topbar .pd-back {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: #fff; font-size: 1.2rem; background: none; border: 0;
    display: flex; align-items: center; justify-content: center;
}

.pd-hero { width: 100%; height: 60vh; max-height: 520px; background:#e9ecef; }
.pd-hero img { width: 100%; height: 100%; object-fit: cover; display:block; }

/* Görselin üstüne binen yuvarlak kart */
.pd-card {
    position: relative; z-index: 2;
    margin-top: -28px;
    background: #fff;
    border-radius: 26px 26px 0 0;
    padding: 22px 20px 20px;
    box-shadow: 0 -8px 24px rgba(0,0,0,.06);
}
.pd-crumb { font-size: .8rem; color: var(--muted); margin-bottom: 10px; }
.pd-crumb .sep { margin: 0 5px; }
.pd-crumb .cur { color: var(--brand); font-weight: 600; }

.pd-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.pd-title { font-size: 1.5rem; font-weight: 700; margin: 0; line-height: 1.15; }
.pd-price-pill {
    flex: 0 0 auto;
    background: #1a3b6d; color: #fff;
    font-weight: 700; font-size: 1rem;
    padding: 9px 16px; border-radius: 12px;
    box-shadow: 0 4px 12px rgba(26,59,109,.28);
}
.pd-price-pill .old { display:block; font-size:.72rem; font-weight:500; opacity:.7; text-decoration: line-through; }

.pd-badges { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 0; }
.pd-badges .badge-pill { font-size:.72rem; padding: 5px 12px; }
.pd-badges .badge-pop  { background:#fdf0dd; color:#e08a12; }
.pd-badges .badge-chef { background:#e9eef7; color:#1a3b6d; }
.pd-badges .badge-new  { background:#e8f1fb; color:#3a6ea5; }

.pd-desc { color: #5b6470; line-height: 1.6; margin: 14px 0 0; font-size:.95rem; }

.pd-meta {
    display: flex; align-items: center; gap: 22px;
    margin: 16px 0; padding: 14px 0;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    color: var(--muted); font-size: .88rem;
}
.pd-meta span { display: inline-flex; align-items: center; gap: 8px; }
.pd-meta i { font-size: .95rem; opacity:.8; }

.pd-sec-label { font-size:.72rem; letter-spacing:1px; color:var(--muted); text-transform:uppercase; margin: 4px 0 10px; }
.pd-alg-chips { display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 6px; }
.pd-alg-chip {
    display:inline-flex; align-items:center; gap:8px;
    background:#f2f4f7; border-radius:20px; padding:5px 12px 5px 5px;
    font-size:.82rem; font-weight:600; color:#4a5563;
}
.pd-alg-chip .alg-ico {
    width:24px; height:24px; border-radius:50%; color:#fff;
    display:inline-flex; align-items:center; justify-content:center; font-size:.62rem;
}

.pd-ingredients { margin-top: 16px; }
.pd-ingredients .pd-sec-label { margin-bottom: 6px; }
.pd-ingredients p { margin:0; color:#5b6470; font-size:.9rem; line-height:1.55; }

.pd-variations { list-style: none; padding: 0; margin: 14px 0 0; }
.pd-variations li {
    display: flex; justify-content: space-between; padding: 12px 14px;
    border: 1px solid var(--line); border-radius: 12px; margin-bottom: 8px;
}
.pd-variations li.default { border-color: var(--brand); background: #eef2f8; }
.pd-variations .v-price { color: var(--accent); font-weight: 700; }

/* İlginizi Çekebilir */
.pd-related { padding: 20px 0 8px; }
.pd-related h3 { font-size: 1rem; font-weight: 700; margin: 0 0 12px; padding: 0 20px; color: var(--ink); }
.pd-related-scroll { display:flex; gap:14px; overflow-x:auto; padding: 0 20px 12px; scrollbar-width:thin; scrollbar-color: rgba(0,0,0,.18) transparent; -webkit-overflow-scrolling:touch; }
/* Flex scroll kaplarında sağ padding son elemandan sonra uygulanmaz; boşluğu spacer ile ver */
.pd-related-scroll::after { content:""; flex:0 0 8px; }
.pd-related-scroll::-webkit-scrollbar { height:6px; }
.pd-related-scroll::-webkit-scrollbar-track { background:transparent; }
.pd-related-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,.18); border-radius:3px; }
.pd-rel-card { flex:0 0 auto; width:150px; }
.pd-rel-card img { width:150px; height:110px; border-radius:14px; object-fit:cover; background:#e9ecef; }
.pd-rel-name { font-size:.85rem; font-weight:600; margin-top:8px; line-height:1.2; color:var(--ink); }
.pd-rel-price { font-size:.85rem; color:var(--accent); font-weight:700; margin-top:2px; }

/* ===================== İLETİŞİM / BİLGİ KARTI ===================== */
.info-sheet {
    position: fixed;
    left: 50%; bottom: 0;
    width: 100%; max-width: var(--maxw);
    transform: translateX(-50%) translateY(110%);
    z-index: 65;
    background: #fff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -12px 40px rgba(0,0,0,.18);
    max-height: 92vh;
    display: flex; flex-direction: column;
    transition: transform .42s cubic-bezier(.25,.8,.25,1);
    visibility: hidden;
}
.info-sheet.open { transform: translateX(-50%) translateY(0); visibility: visible; }
.info-handle { width: 44px; height: 4px; border-radius: 4px; background: #e2e6e4; margin: 8px auto 0; flex: 0 0 auto; }
.info-topbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 20px 12px; flex: 0 0 auto; }
.info-title { font-size: 1.5rem; font-weight: 700; margin: 0; color: var(--ink); }
.info-close { width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; border: 0; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.info-scroll { flex: 0 1 auto; overflow-y: auto; padding: 4px 20px 18px; }
.info-brand { text-align: center; padding: 6px 0 12px; }
.info-brand img { max-height: 78px; width: auto; display: inline-block; }

/* Bölüm başlığı (iki yanı çizgili) */
.info-sec-label {
    display: flex; align-items: center; gap: 12px; justify-content: center; text-align: center;
    font-size: .72rem; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase;
    margin: 18px 0 12px;
}
.info-sec-label::before, .info-sec-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* Sosyal kart grid */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.social-card { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px; min-width: 0; }
.social-card:active { background: #f7f9f8; }
.sc-ico { width: 40px; height: 40px; border-radius: 12px; flex: 0 0 auto; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.sc-ig  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sc-fb  { background: #1877f2; }
.sc-ta  { background: #34e0a1; }
.sc-gm  { background: #4285f4; }
.sc-yt  { background: #ff0000; }
.sc-web { background: var(--brand); }
.sc-body { display: flex; flex-direction: column; min-width: 0; }
.sc-name { font-weight: 700; font-size: .9rem; color: var(--ink); }
.sc-sub { font-size: .75rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Survey CTA'nın kullandığı ortak parçalar */
.info-ico { width: 40px; height: 40px; border-radius: 12px; flex: 0 0 auto; background: #eef1ef; color: #55605a; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.info-row-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.info-label { font-size: .78rem; color: var(--muted); }
.info-val { font-size: .95rem; font-weight: 700; color: var(--ink); }
.info-arrow { color: #c3ccc7; font-size: .85rem; }

/* Çalışma saatleri */
.hours-block { }
.hours-row { display: flex; justify-content: space-between; padding: 12px 2px; border-bottom: 1px solid var(--line); font-size: .92rem; color: var(--ink); }
.hours-row:last-child { border-bottom: 0; }
.hours-val { color: var(--muted); }

/* Adres */
.addr-block { margin-top: 16px; }
.addr-row { display: flex; gap: 12px; }
.addr-ico { width: 40px; height: 40px; border-radius: 12px; background: #f2f4f7; color: var(--brand); flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.addr-body { flex: 1; min-width: 0; }
.addr-head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.addr-title { font-weight: 700; color: var(--ink); }
.addr-dir { font-size: .8rem; color: var(--brand); white-space: nowrap; }
.addr-text { font-size: .9rem; color: #5b6470; margin-top: 2px; line-height: 1.45; }
.addr-phone { display: block; font-weight: 700; font-size: 1.1rem; color: var(--ink); margin-top: 14px; text-align: center; }

/* Alt: isim + açıklama */
.info-footer { text-align: center; margin-top: 12px; padding-bottom: 4px; }
.info-fdesc { font-size: .85rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ===================== MEMNUNİYET ANKETİ ===================== */
.info-survey-cta {
    width: 100%; text-align: inherit;
    display: flex; align-items: center; gap: 14px;
    background: #f3f6f4; border: 1px solid var(--line); border-radius: 14px;
    padding: 12px 14px; margin: 14px 0 4px; cursor: pointer;
}
.info-survey-cta:active { background: #eef2ef; }
.info-survey-cta .info-ico { background: var(--brand); color:#fff; }
.info-survey-cta .info-val { font-weight: 700; }

.survey-overlay {
    position: fixed; top: 0; bottom: 0; left: 50%;
    width: 100%; max-width: var(--maxw); transform: translateX(-50%);
    z-index: 75; background: #f4f6f9;
    display: none; flex-direction: column;
}
.survey-overlay.open { display: flex; }
.survey-overlay .sv-head {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px; background:#fff; border-bottom: 1px solid var(--line);
    position: sticky; top: 0;
}
.survey-overlay .sv-head .so-close {
    background:none; border:0; font-size:1.15rem; color:#4a5a53;
    width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
}
.sv-title { font-size: 1.15rem; font-weight: 700; margin: 0; }
.sv-body { flex:1; overflow-y:auto; padding: 16px; display:flex; flex-direction:column; gap: 14px; }
.sv-card {
    background:#fff; border-radius: 16px; padding: 18px 16px;
    box-shadow: 0 4px 14px rgba(0,0,0,.05); text-align:center;
}
.sv-q { font-weight: 600; font-size: .98rem; margin-bottom: 14px; color: var(--ink); }
.sv-req { color: #e74c3c; }
.sv-ratings { display:flex; justify-content:center; gap: 12px; }
.sv-ratings.sv-missing { animation: svShake .3s; }
@keyframes svShake { 25%{transform:translateX(-4px);} 75%{transform:translateX(4px);} }
.sv-dot {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid #ccc; background:#fff; color:#333;
    font-weight: 700; font-size: 1rem; cursor: pointer;
    transition: transform .12s ease, background .15s ease, color .15s ease;
}
.sv-dot:active { transform: scale(.9); }
.sv-1 { border-color:#e74c3c; color:#e74c3c; }
.sv-2 { border-color:#e67e22; color:#e67e22; }
.sv-3 { border-color:#f1c40f; color:#c9a908; }
.sv-4 { border-color:#7cb342; color:#6a9e39; }
.sv-5 { border-color:#2ecc71; color:#25a35a; }
.sv-1.active { background:#e74c3c; color:#fff; }
.sv-2.active { background:#e67e22; color:#fff; }
.sv-3.active { background:#f1c40f; color:#fff; }
.sv-4.active { background:#7cb342; color:#fff; }
.sv-5.active { background:#2ecc71; color:#fff; }
.sv-name-card { padding: 10px; }
.sv-name { width:100%; border:0; outline:none; font-size:1rem; padding: 10px 8px; text-align:center; }
.sv-submit {
    background: var(--brand); color:#fff; border:0; border-radius: 12px;
    padding: 14px; font-size: 1rem; font-weight: 600; cursor: pointer; margin-bottom: 24px;
}
.sv-submit:disabled { opacity:.6; }
.sv-msg { text-align:center; margin: 0; font-size:.9rem; }
.sv-msg.err { color:#e74c3c; }
.sv-thanks { text-align:center; padding: 40px 16px; }
.sv-thanks i { font-size: 3rem; color: var(--brand); }
.sv-thanks p { font-size: 1.05rem; margin: 16px 0 24px; color: var(--ink); }

/* ===================== ARAMA OVERLAY ===================== */
.search-overlay {
    position: fixed;
    top: 0; bottom: 0; left: 50%;
    width: 100%; max-width: var(--maxw);
    transform: translateX(-50%);
    z-index: 70;
    background: #fff;
    display: none; flex-direction: column;
    padding: 16px 16px 0;
}
.search-overlay.open { display: flex; }
.search-overlay .so-head { display: flex; gap: 10px; align-items: center; padding-bottom: 12px; }
.search-overlay .so-close {
    background:none; border:0; font-size:1.15rem; color:#4a5a53;
    width:40px; height:40px; border-radius:50%; flex:0 0 auto;
    display:flex; align-items:center; justify-content:center;
}
.search-overlay .so-close:hover { background:#f2f4f3; }
.so-field {
    flex:1; display:flex; align-items:center; gap:10px;
    background:#f2f5f3; border-radius:14px; padding:0 14px; height:46px;
}
.so-field .so-ico { color:#9aa6a1; font-size:.95rem; }
.so-field input {
    flex:1; border:0; background:transparent; outline:none;
    font-size:1rem; color:var(--ink); height:100%;
}
.so-field input::placeholder { color:#9aa6a1; opacity:1; }
.so-close-txt {
    background:none; border:0; color:var(--brand);
    font-weight:600; font-size:.95rem; padding:8px 4px; flex:0 0 auto;
}

/* Öneriler */
.so-suggest { flex:1; overflow-y:auto; padding:12px 0 20px; }
.so-suggest h4 {
    margin:4px 2px 12px; font-size:.72rem; letter-spacing:1px;
    color:var(--muted); text-transform:uppercase;
}
.so-suggest-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.so-sg-card {
    display:flex; align-items:center; gap:10px;
    background:#fff; border:1px solid var(--line); border-radius:14px;
    padding:8px; box-shadow:0 3px 10px rgba(0,0,0,.04);
    animation: bbFade .4s ease both;
}
.so-sg-card img { width:50px; height:50px; border-radius:10px; object-fit:cover; background:#eef1ef; flex:0 0 auto; }
.so-sg-body { min-width:0; }
.so-sg-name { font-size:.82rem; font-weight:600; line-height:1.15; }
.so-sg-price { font-size:.8rem; color:var(--accent); font-weight:700; margin-top:2px; }
.so-results { flex:1; overflow-y:auto; padding: 6px 0 20px; }
.so-hint { text-align:center; color:var(--muted); padding:36px 20px; font-size:.9rem; }
.so-item {
    display:flex; align-items:center; gap:12px;
    padding:10px 6px; border-bottom:1px solid var(--line);
}
.so-item:active { background:#f7f9f8; }
.so-item-img { width:52px; height:52px; border-radius:10px; object-fit:cover; background:#eef1ef; flex:0 0 auto; }
.so-item-body { flex:1; min-width:0; }
.so-item-name { font-weight:600; font-size:.95rem; color:var(--ink); }
.so-item-cat { font-size:.78rem; color:var(--muted); }
.so-item-price { color:var(--accent); font-weight:700; font-size:.9rem; white-space:nowrap; }
