/* ============================================================
   Fonvio Marketing — modern light theme
   ============================================================ */

:root {
    --brand: #00C9A7;
    --brand-dark: #00897B;
    --brand-darker: #006E62;
    --ink: #0B0E11;
    --ink-2: #1F2429;
    --slate-500: #5A6470;
    --slate-400: #8993A0;
    --slate-200: #E5E9EE;
    --slate-100: #F4F6F8;
    --paper: #FFFFFF;
    --warn: #FFC870;
    --danger: #DC3545;
    --grad-1: linear-gradient(135deg, #00C9A7 0%, #00897B 100%);
    --grad-soft: linear-gradient(180deg, #F4F6F8 0%, #FFFFFF 100%);
    --shadow-sm: 0 1px 3px rgba(11, 14, 17, 0.08), 0 1px 2px rgba(11, 14, 17, 0.06);
    --shadow-md: 0 4px 12px rgba(11, 14, 17, 0.08), 0 2px 4px rgba(11, 14, 17, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 137, 123, 0.18), 0 4px 12px rgba(11, 14, 17, 0.08);
}

* { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    overflow-x: clip;          /* hiçbir alt element yatay scroll yapamasın */
    max-width: 100vw;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------------- Navbar ---------------- */
.navbar-sticky {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--slate-200);
}
.nav-inner {
    display: flex; align-items: center; gap: 32px;
    padding: 14px 24px;
}
.brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--ink);
    font-weight: 800; letter-spacing: 0.5px; font-size: 18px;
}
.brand img { height: 32px; }
.brand span { color: var(--brand-dark); }
/* Yeni full lockup header.png — wide logo (F + FONVIO + tagline) */
.brand-header {
    height: 67px !important;
    width: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 600px) {
    .brand-header { height: 73px !important; }
}

.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a {
    color: var(--slate-500); text-decoration: none;
    font-weight: 500; font-size: 14px; transition: color 0.15s;
}
.nav-links a:hover { color: var(--brand-dark); }

.nav-cta { display: flex; gap: 10px; }

.btn-ghost, .btn-primary {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: 10px;
    font-weight: 600; font-size: 14px;
    text-decoration: none; cursor: pointer;
    transition: all 0.18s ease;
    border: 1.5px solid transparent;
}
.btn-ghost {
    color: var(--ink); border-color: var(--slate-200); background: transparent;
}
.btn-ghost:hover { border-color: var(--brand-dark); color: var(--brand-dark); }
.btn-primary {
    background: var(--grad-1); color: white; border: none;
    box-shadow: 0 4px 14px rgba(0, 137, 123, 0.32);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0, 137, 123, 0.45); }
.btn-large { padding: 14px 28px; font-size: 16px; border-radius: 12px; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--ink); }
@media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; flex-direction: column; padding: 16px; background: white; border-bottom: 1px solid var(--slate-200); gap: 0; }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 8px; }
    .nav-burger { display: block; margin-left: auto; }
    .nav-cta { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
    position: relative;
    padding: 64px 0 96px;
    background:
        radial-gradient(circle at 75% 20%, rgba(0, 201, 167, 0.14), transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(0, 137, 123, 0.10), transparent 50%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FCFB 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(0, 201, 167, 0.12); color: var(--brand-darker);
    font-weight: 600; font-size: 12px; letter-spacing: 0.4px;
    margin-bottom: 22px;
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 8px var(--brand); }

.hero h1 {
    font-size: clamp(36px, 5.2vw, 60px); line-height: 1.05;
    font-weight: 800; letter-spacing: -1.5px;
    margin: 0 0 22px;
}
.hero h1 .accent {
    background: var(--grad-1);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.hero-sub {
    font-size: 18px; color: var(--slate-500); line-height: 1.55;
    max-width: 540px; margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
    display: flex; gap: 28px; margin-top: 44px;
    border-top: 1px solid var(--slate-200); padding-top: 24px;
}
.hero-stat .v { font-size: 22px; font-weight: 800; color: var(--ink); }
.hero-stat .l { font-size: 12px; color: var(--slate-500); font-weight: 500; }

/* iPhone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.iphone {
    position: relative;
    width: 300px; height: 610px;
    background: #0B0E11;
    border-radius: 48px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 137, 123, 0.35),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #1F2429,
        inset 0 0 0 3px #2A323A;
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.iphone:hover { transform: rotate(0) translateY(-8px); }
.iphone::before {
    content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 24px; background: #0B0E11; border-radius: 0 0 16px 16px; z-index: 2;
}
.iphone-screen {
    width: 100%; height: 100%;
    border-radius: 36px; overflow: hidden;
    background: linear-gradient(180deg, #0B0E11 0%, #14181C 100%);
    position: relative;
    display: flex; flex-direction: column;
    color: white;
}
.app-statusbar {
    height: 28px; display: flex; justify-content: space-between; align-items: center;
    padding: 8px 24px 0 32px; font-size: 12px; font-weight: 600; color: white;
}
.app-statusbar .right { display: flex; gap: 6px; align-items: center; font-size: 11px; }
.app-header {
    padding: 12px 18px 10px;
    display: flex; justify-content: space-between; align-items: flex-start;
}
.app-header .title { font-size: 18px; font-weight: 800; }
.app-header .sub { font-size: 11px; color: #8993A0; margin-top: 2px; }
.app-header .icons { display: flex; gap: 12px; color: #8993A0; font-size: 16px; }
.app-kpi { display: flex; gap: 6px; padding: 0 12px; }
.app-kpi .k { flex: 1; background: #14181C; border: 1px solid #1F2429; border-radius: 10px; padding: 8px; }
.app-kpi .k .d { width: 6px; height: 6px; border-radius: 50%; margin-bottom: 5px; }
.app-kpi .k .v { font-size: 16px; font-weight: 800; }
.app-kpi .k .l { font-size: 9px; color: #8993A0; }
.app-tabs { display: flex; gap: 4px; padding: 12px 16px 8px; }
.app-tabs .t { flex: 1; text-align: center; padding: 6px; border-radius: 8px; font-size: 10px; font-weight: 500; color: #8993A0; }
.app-tabs .t.on { background: var(--brand); color: #0B0E11; font-weight: 700; }
.app-cards { padding: 0 12px; display: flex; flex-direction: column; gap: 7px; }
.app-card { background: #14181C; border: 1px solid #1F2429; border-radius: 11px; padding: 10px; }
.app-card .row1 { display: flex; justify-content: space-between; align-items: center; }
.app-card .name { font-weight: 700; font-size: 12px; }
.app-card .badge {
    background: rgba(255,200,112,0.18); color: #FFC870;
    font-size: 8px; padding: 2px 7px; border-radius: 999px; font-weight: 700;
}
.app-card .meta { font-size: 10px; color: #C7CED6; margin-top: 5px; display: flex; gap: 6px; }
.app-card .table { color: var(--brand); font-size: 10px; margin-top: 3px; font-weight: 700; }
.app-card .actions { display: flex; gap: 5px; margin-top: 8px; }
.app-card .btn { flex: 1; text-align: center; padding: 5px; border-radius: 6px; font-size: 9px; font-weight: 700; }
.app-card .btn.reject { background: transparent; border: 1px solid #DC3545; color: #F1A5AD; }
.app-card .btn.accept { background: var(--brand-dark); color: white; border: none; }

/* Browser/Admin Panel mockup */
.browser {
    width: 100%; border-radius: 16px; overflow: hidden;
    background: white; border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    transform: rotate(1deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.browser:hover { transform: rotate(0) translateY(-8px); }
.browser-bar {
    background: #F4F6F8; padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--slate-200);
}
.browser-bar .dot { width: 12px; height: 12px; border-radius: 50%; }
.browser-bar .dot.r { background: #FF5F57; }
.browser-bar .dot.y { background: #FEBC2E; }
.browser-bar .dot.g { background: #28C840; }
.browser-bar .url {
    flex: 1; background: white; border: 1px solid var(--slate-200);
    border-radius: 6px; padding: 5px 10px; font-size: 12px; color: var(--slate-500);
    margin-left: 8px;
}
.browser-body {
    background: #0B0E11; color: white;
    padding: 14px; min-height: 340px;
    display: grid; grid-template-columns: 180px 1fr; gap: 12px;
}
.b-sidebar { background: #14181C; border-radius: 10px; padding: 12px 8px; display: flex; flex-direction: column; gap: 3px; }
.b-logo { display: flex; align-items: center; gap: 8px; padding: 4px 6px 12px; }
.b-logo img { height: 20px; }
.b-logo span { font-weight: 800; font-size: 12px; color: var(--brand); }
.b-sidebar .item {
    padding: 7px 10px; border-radius: 6px; font-size: 10px;
    display: flex; align-items: center; gap: 8px; color: #C7CED6;
}
.b-sidebar .item.on { background: rgba(0,201,167,0.12); color: var(--brand); }
.b-sidebar .item i { width: 12px; }
.b-main { background: #14181C; border-radius: 10px; padding: 12px; }
.b-title { font-size: 13px; font-weight: 800; margin-bottom: 10px; }
.b-stats { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 6px; margin-bottom: 12px; }
.b-stats .c { background: #0B0E11; border: 1px solid #1F2429; border-radius: 8px; padding: 7px; }
.b-stats .c .v { font-weight: 800; font-size: 13px; }
.b-stats .c .l { font-size: 8px; color: #8993A0; }
.b-stats .c .d { width: 5px; height: 5px; border-radius: 50%; margin-bottom: 4px; }
.b-list { display: flex; flex-direction: column; gap: 4px; }
.b-list .r {
    display: grid; grid-template-columns: 1fr 60px 50px 50px; gap: 6px;
    background: #0B0E11; border: 1px solid #1F2429; border-radius: 6px;
    padding: 6px 9px; font-size: 9px; align-items: center;
}
.b-list .r .nm { font-weight: 600; }
.b-list .r .bd {
    background: rgba(0,201,167,0.15); color: var(--brand);
    padding: 2px 6px; border-radius: 999px; font-weight: 700; font-size: 8px; text-align: center;
}

/* ---------------- Section common ---------------- */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-pill {
    display: inline-block; padding: 6px 14px; border-radius: 999px;
    background: rgba(0, 201, 167, 0.12); color: var(--brand-darker);
    font-weight: 600; font-size: 12px; letter-spacing: 0.4px;
    margin-bottom: 16px;
}
.section-head h2 {
    font-size: clamp(28px, 3.5vw, 42px); line-height: 1.1;
    font-weight: 800; letter-spacing: -1px; margin: 0 0 16px;
}
.section-head p { font-size: 17px; color: var(--slate-500); margin: 0; }

/* ---------------- Features ---------------- */
.features { background: var(--grad-soft); }
.f-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .f-grid { grid-template-columns: 1fr; } }
.f-card {
    background: white; border: 1px solid var(--slate-200);
    border-radius: 16px; padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.f-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0, 201, 167, 0.3); }
.f-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--brand-dark);
    background: rgba(0, 201, 167, 0.12);
    margin-bottom: 18px;
}
.f-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.f-card p { font-size: 14px; color: var(--slate-500); margin: 0; line-height: 1.55; }

/* ---------------- How it works ---------------- */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } }
.how-step { position: relative; padding-top: 12px; }
.how-num {
    display: inline-flex; width: 40px; height: 40px; border-radius: 12px;
    background: var(--grad-1); color: white;
    align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px;
    box-shadow: 0 6px 18px rgba(0, 137, 123, 0.3);
    margin-bottom: 18px;
}
.how-step h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.how-step p { font-size: 14px; color: var(--slate-500); line-height: 1.55; margin: 0; }

/* ---------------- Showcase ---------------- */
.showcase { background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F8 100%); overflow: hidden; }
.showcase-stage {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .showcase-stage { grid-template-columns: 1fr; }
    .iphone, .browser { transform: rotate(0) !important; }
}
.showcase-stage.reverse { direction: rtl; }
.showcase-stage.reverse > * { direction: ltr; }
.showcase-text h3 { font-size: clamp(26px, 3.2vw, 36px); line-height: 1.15; font-weight: 800; margin: 0 0 18px; letter-spacing: -0.5px; }
.showcase-text p { font-size: 16px; color: var(--slate-500); line-height: 1.6; margin: 0 0 24px; }
.showcase-list { list-style: none; padding: 0; margin: 0; }
.showcase-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 14px; color: var(--ink);
}
.showcase-list li i { color: var(--brand-dark); font-size: 18px; }

/* ---------------- CTA Band ---------------- */
.cta-band {
    padding: 96px 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 201, 167, 0.18), transparent 60%),
        linear-gradient(135deg, #002A26 0%, #00897B 100%);
    color: white; text-align: center;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin: 0 0 16px; letter-spacing: -1px; }
.cta-band p { font-size: 18px; opacity: 0.85; margin: 0 0 32px; }
.cta-band .btn-primary { background: white; color: var(--brand-darker); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.cta-band .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.cta-band .btn-ghost { color: white; border-color: rgba(255,255,255,0.4); }
.cta-band .btn-ghost:hover { border-color: white; color: white; }
.cta-ctas { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   Multi-page extensions
   ============================================================ */

/* ============================================================
   Mobile customer home mockup
   ============================================================ */
.app-customer {
    flex: 1; overflow: hidden;
    background: white; color: #0B0E11;
    display: flex; flex-direction: column;
}
.app-customer-status {
    height: 28px; display: flex; justify-content: space-between; align-items: center;
    padding: 8px 24px 0 32px; font-size: 12px; font-weight: 600; color: #0B0E11;
}
.app-customer-status .right { display: flex; gap: 6px; align-items: center; font-size: 11px; }
.app-loc {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px 4px;
}
.app-loc .pin {
    width: 30px; height: 30px; border-radius: 50%;
    background: #F4F6F8; color: #0B0E11;
    display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.app-loc .l { font-size: 11px; color: #8993A0; }
.app-loc .c { font-size: 13px; font-weight: 700; color: #0B0E11; }
.app-loc .bell {
    margin-left: auto; position: relative;
    width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
    color: #0B0E11; font-size: 16px;
}
.app-loc .bell::after {
    content: ''; position: absolute; top: 4px; right: 4px;
    width: 6px; height: 6px; border-radius: 50%; background: #DC3545;
}
.app-title {
    padding: 8px 18px 12px;
    font-size: 18px; font-weight: 800; letter-spacing: -0.3px;
    color: #0B0E11;
}
.app-search {
    margin: 0 18px 14px;
    background: #F4F6F8;
    border-radius: 12px;
    padding: 9px 12px;
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; color: #8993A0;
}
.app-search i { font-size: 13px; }
.app-search .sf {
    margin-left: auto; background: #E5E9EE; border-radius: 6px;
    width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
    color: #0B0E11;
}
.app-cats {
    display: flex; gap: 10px; padding: 0 18px 16px;
    overflow: hidden;
}
.app-cat {
    text-align: center;
}
.app-cat .img {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 4px;
}
.app-cat.fire .img { background: #FFE4D6; }
.app-cat.pizza .img { background: #FFE2E2; }
.app-cat.kebap .img { background: #FFEBC8; }
.app-cat.burger .img { background: #FFE6C7; }
.app-cat.turk .img { background: #DCFAEC; }
.app-cat .name { font-size: 10px; font-weight: 600; color: #0B0E11; }

.app-featured {
    margin: 0 18px 16px;
    height: 130px;
    border-radius: 14px; overflow: hidden;
    position: relative;
    background:
        linear-gradient(120deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%),
        radial-gradient(circle at 70% 40%, #FF8A50, #C4451B);
    color: white;
    padding: 14px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.app-featured .pill {
    background: #6B4FEE; color: white;
    font-size: 10px; padding: 4px 8px; border-radius: 999px;
    font-weight: 700; align-self: flex-start;
}
.app-featured .ft-title { font-size: 15px; font-weight: 800; line-height: 1.15; }
.app-featured .ft-sub { font-size: 10px; opacity: 0.85; }
.app-featured .dots {
    position: absolute; bottom: 8px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 4px;
}
.app-featured .dots span { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.app-featured .dots span.on { background: white; width: 14px; border-radius: 4px; }

.app-section-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 18px 8px;
}
.app-section-head h4 { font-size: 14px; font-weight: 800; margin: 0; color: #0B0E11; }
.app-section-head a { font-size: 11px; font-weight: 600; color: #00897B; text-decoration: none; }

.app-rests {
    display: flex; gap: 10px; padding: 0 18px;
    overflow: hidden;
}
.app-rest {
    width: 130px; flex-shrink: 0;
    border-radius: 14px; overflow: hidden;
    position: relative;
    height: 130px;
    background: linear-gradient(135deg, #C4451B, #8B3215);
}
.app-rest.r2 { background: linear-gradient(135deg, #E07A5F, #B85234); }
.app-rest .yeni {
    position: absolute; bottom: 8px; left: 8px;
    background: #00897B; color: white;
    font-size: 9px; padding: 3px 9px; border-radius: 999px;
    font-weight: 700;
    display: flex; align-items: center; gap: 3px;
}
.app-rest .heart {
    position: absolute; top: 8px; right: 8px;
    width: 24px; height: 24px; border-radius: 50%;
    background: rgba(255,255,255,0.9); color: #5A6470;
    display: flex; align-items: center; justify-content: center; font-size: 11px;
}

.app-bottom-nav {
    margin-top: auto;
    background: #F4F6F8;
    border-radius: 14px 14px 0 0;
    padding: 8px 18px 14px;
    display: flex; justify-content: space-between;
}
.app-bottom-nav .nav-i {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    font-size: 9px; color: #8993A0;
}
.app-bottom-nav .nav-i.on { color: #00897B; }
.app-bottom-nav .nav-i.on .icon-wrap {
    background: rgba(0,201,167,0.15); color: #00897B;
    padding: 3px 10px; border-radius: 10px;
}
.app-bottom-nav .nav-i i { font-size: 16px; }

/* ============================================================
   Booking page (web) mockup
   ============================================================ */
.book-mockup {
    background: #0B0E11;
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    color: white;
    display: flex; flex-direction: column;
    transform: rotate(1deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
    max-width: 460px; margin: 0 auto;
}
.book-mockup:hover { transform: rotate(0) translateY(-6px); }
.book-mockup .browser-bar { background: #14181C; border-bottom-color: #1F2429; }
.book-mockup .browser-bar .url { background: #0B0E11; border-color: #1F2429; color: #8993A0; }
.book-body {
    padding: 14px;
    background:
        linear-gradient(180deg, rgba(11,14,17,0) 0%, #0B0E11 70%),
        linear-gradient(135deg, #C4451B 0%, #FF8A50 100%);
}
.book-topbar {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 8px 0 12px;
}
.book-topbar img { height: 18px; }
.book-topbar span { font-weight: 800; color: #00C9A7; font-size: 12px; letter-spacing: 0.5px; }
.book-card {
    background: #14181C; border: 1px solid #1F2429;
    border-radius: 12px; margin-bottom: 10px;
    overflow: hidden;
}
.book-hero {
    height: 110px;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 100%),
        radial-gradient(circle at 60% 50%, #FF8A50, #C4451B);
    position: relative;
    padding: 12px;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.book-hero .name { color: white; font-size: 16px; font-weight: 800; }
.book-hero .addr { color: rgba(255,255,255,0.8); font-size: 10px; display: flex; align-items: center; gap: 4px; }
.book-section { padding: 10px 12px; }
.book-section .title {
    font-size: 11px; font-weight: 700; color: #d3d8de;
    display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
}
.book-section .title i { color: #d3d8de; }
.book-input {
    background: #0E1216; border: 1px solid #232a31;
    border-radius: 8px; padding: 7px 10px;
    font-size: 10px; color: white;
    display: flex; align-items: center; justify-content: space-between;
}
.book-grid { display: grid; gap: 6px; }
.book-grid.r2 { grid-template-columns: 1fr 1fr; }
.book-stepper {
    background: #0E1216; border: 1px solid #232a31;
    border-radius: 8px; padding: 4px;
    display: flex; align-items: center; justify-content: space-between;
}
.book-stepper button {
    background: #232a31; color: white; border: none;
    width: 24px; height: 24px; border-radius: 6px;
    font-size: 14px; cursor: pointer;
}
.book-stepper .v { font-weight: 800; font-size: 12px; }
.book-time {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
    margin-top: 6px;
}
.book-time .t {
    background: #0E1216; border: 1px solid #232a31;
    border-radius: 6px; padding: 5px;
    text-align: center; font-size: 9px; font-weight: 600; color: #d3d8de;
}
.book-time .t.on {
    background: #00C9A7; color: #0B0E11; border-color: #00C9A7; font-weight: 800;
}
.book-btn {
    margin-top: 8px; background: #00897B; color: white;
    text-align: center; padding: 9px;
    border-radius: 10px; font-weight: 700; font-size: 11px;
}

/* ============================================================
   Hero — Advertising composition (floating cards)
   ============================================================ */
.hero-stage {
    position: relative;
    width: 100%; min-height: 580px;
    display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) { .hero-stage { min-height: 640px; } }

/* Background blobs */
.stage-blob {
    position: absolute; border-radius: 50%;
    filter: blur(60px); opacity: 0.55; z-index: 0;
    pointer-events: none;
}
.stage-blob.b1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #00C9A7, transparent 70%);
    top: 10%; right: 5%;
    animation: blobFloat 8s ease-in-out infinite;
}
.stage-blob.b2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #FFC870, transparent 70%);
    bottom: 5%; left: 5%;
    opacity: 0.4;
    animation: blobFloat 10s ease-in-out infinite reverse;
}
@@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.stage-dots {
    position: absolute; inset: 0; z-index: 0;
    background-image: radial-gradient(circle, rgba(0,137,123,0.15) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    opacity: 0.5;
}

/* Floating card base */
.float-card {
    position: absolute; z-index: 2;
    background: white;
    border-radius: 16px;
    box-shadow:
        0 24px 48px -16px rgba(11, 14, 17, 0.18),
        0 8px 16px -8px rgba(11, 14, 17, 0.10),
        0 0 0 1px rgba(11, 14, 17, 0.04);
}

/* Main restaurant card (center, big) */
.rest-card {
    z-index: 1;
    width: 320px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-1deg);
    overflow: hidden;
    animation: floatA 6s ease-in-out infinite;
}
@@keyframes floatA {
    0%, 100% { transform: translate(-50%, -50%) rotate(-1deg); }
    50% { transform: translate(-50%, calc(-50% - 8px)) rotate(-1deg); }
}
.rest-cover {
    height: 170px; position: relative;
    background:
        linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%),
        radial-gradient(circle at 30% 40%, #FFD27F, transparent 60%),
        linear-gradient(135deg, #C4451B 0%, #FF8A50 60%, #8B3215 100%);
}
.rest-cover::after {
    /* fake hexagon pattern overlay — kebap teması */
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,200,100,0.35), transparent 25%),
        radial-gradient(circle at 70% 60%, rgba(180,60,30,0.45), transparent 25%),
        radial-gradient(circle at 40% 80%, rgba(255,165,80,0.4), transparent 20%);
}
.rest-stars {
    position: absolute; top: 12px; left: 12px;
    background: rgba(11, 14, 17, 0.7); backdrop-filter: blur(8px);
    color: #FFD27F; padding: 5px 10px; border-radius: 999px;
    font-size: 12px; font-weight: 800;
    display: flex; align-items: center; gap: 4px;
    z-index: 2;
}
.rest-stars .rev-cnt { color: rgba(255,255,255,0.7); font-weight: 600; margin-left: 2px; }
.rest-fav {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px; border-radius: 50%;
    background: white; color: #DC3545;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2; font-size: 14px;
}
.rest-cuisine-pill {
    position: absolute; bottom: 12px; left: 12px;
    background: white; color: var(--ink);
    padding: 5px 10px; border-radius: 999px;
    font-size: 11px; font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}
.rest-body { padding: 16px; }
.rest-name-row {
    display: flex; align-items: center; gap: 6px; margin-bottom: 4px;
}
.rest-name { font-size: 18px; font-weight: 800; letter-spacing: -0.3px; color: var(--ink); }
.rest-verified { color: var(--brand-dark); font-size: 16px; }
.rest-meta {
    font-size: 12px; color: var(--slate-500);
    display: flex; align-items: center; gap: 4px;
    margin-bottom: 12px;
}
.rest-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.rest-chips .chip {
    background: var(--slate-100); color: var(--ink);
    padding: 4px 9px; border-radius: 8px;
    font-size: 10px; font-weight: 600;
}
.rest-btn {
    background: var(--grad-1); color: white;
    padding: 11px; border-radius: 10px;
    text-align: center; font-weight: 700; font-size: 13px;
    box-shadow: 0 6px 16px rgba(0, 137, 123, 0.3);
    display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* Notification card — top right */
.notif-card {
    width: 280px;
    top: 8%; right: -12px;
    padding: 12px;
    display: flex; gap: 10px; align-items: center;
    transform: rotate(2deg);
    animation: floatB 7s ease-in-out infinite;
}
@@keyframes floatB {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-10px); }
}
.notif-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(0, 201, 167, 0.15); color: var(--brand-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0; position: relative;
}
.notif-icon .pulse {
    position: absolute; top: 4px; right: 4px;
    width: 8px; height: 8px; border-radius: 50%; background: #DC3545;
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.6);
    animation: pulse 1.8s ease-in-out infinite;
}
@@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(220, 53, 69, 0); }
}
.notif-body { flex: 1; min-width: 0; }
.notif-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 4px;
}
.notif-head strong { font-size: 13px; color: var(--ink); }
.notif-time { font-size: 10px; color: var(--slate-500); }
.notif-text { font-size: 11px; color: var(--slate-500); line-height: 1.4; }
.notif-text b { color: var(--ink); }

/* Calendar chip — left */
.cal-card {
    top: 10%; left: -16px;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 12px;
    transform: rotate(-3deg);
    animation: floatC 8s ease-in-out infinite;
}
@@keyframes floatC {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(-3deg) translateY(-8px); }
}
.cal-day {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--grad-1); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 137, 123, 0.25);
}
.cal-info .cal-month { font-size: 9px; color: var(--slate-500); font-weight: 700; letter-spacing: 0.6px; }
.cal-info .cal-detail { font-size: 12px; color: var(--ink); font-weight: 700; margin-top: 1px; }
.cal-ok { color: var(--brand-dark); font-size: 22px; }

/* SMS bubble card — bottom */
.sms-card {
    width: 320px;
    bottom: 4%; right: -8px;
    padding: 12px 14px;
    transform: rotate(2deg);
    animation: floatD 9s ease-in-out infinite;
}
@@keyframes floatD {
    0%, 100% { transform: rotate(2deg) translateY(0); }
    50% { transform: rotate(2deg) translateY(-7px); }
}
.sms-card-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--slate-200);
}
.sms-card-from {
    display: flex; align-items: center; gap: 6px;
    color: var(--brand-dark); font-weight: 700; font-size: 11px;
}
.sms-card-from i { font-size: 14px; }
.sms-card-tag {
    background: var(--slate-100); color: var(--slate-500);
    padding: 2px 8px; border-radius: 999px;
    font-size: 9px; font-weight: 700;
}
.sms-card-body {
    font-size: 11px; color: var(--ink); line-height: 1.5;
}
.sms-card-body strong { color: var(--brand-dark); }

/* Decorative floating emojis */
.float-deco {
    position: absolute; z-index: 1;
    font-size: 24px; opacity: 0.7;
    animation: spin 12s linear infinite;
}
.float-deco.s1 { top: 30%; right: 10%; animation: floatE 5s ease-in-out infinite; }
.float-deco.s2 { bottom: 30%; left: 15%; font-size: 20px; animation: floatF 6s ease-in-out infinite; }
.float-deco.s3 { top: 56%; right: 20%; font-size: 28px; opacity: 0.5; animation: floatG 7s ease-in-out infinite; }
@@keyframes floatE {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-12px) rotate(15deg); }
}
@@keyframes floatF {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(-12deg); }
}
@@keyframes floatG {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(8deg); }
}

/* Mobile responsive — stage shrinks, cards reposition */
@media (max-width: 900px) {
    .hero-stage { min-height: 580px; }
    .rest-card { width: 280px; }
    .notif-card { width: 240px; top: 4%; right: 0; }
    .cal-card { top: 5%; left: 0; }
    .sms-card { width: 260px; bottom: 0; right: 0; }
    .float-deco.s3 { display: none; }
}
@media (max-width: 600px) {
    .notif-card { right: -10px; width: 220px; }
    .sms-card { right: -10px; width: 240px; }
    .cal-card { left: -10px; }
}

/* ============================================================
   Hero — Admin variant (legacy, kept for /restoran usage)
   ============================================================ */
.hero-admin {
    max-width: 100%;
}
.hero-admin .admin-mockup {
    transform: rotate(0);
    max-width: 100%;
}
.hero-admin .admin-mockup:hover {
    transform: translateY(-4px);
}
@media (min-width: 900px) {
    .hero-grid:has(.hero-admin) { grid-template-columns: 1fr 1.15fr; }
}

/* ============================================================
   Web Admin Panel mockup (full) — gerçek panele yakın
   ============================================================ */
.admin-mockup {
    background: white;
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
    transform: rotate(1deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.admin-mockup:hover { transform: rotate(0) translateY(-6px); }
.admin-bar {
    background: #F4F6F8; padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--slate-200);
}
.admin-bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.admin-bar .dot.r { background: #FF5F57; }
.admin-bar .dot.y { background: #FEBC2E; }
.admin-bar .dot.g { background: #28C840; }
.admin-bar .url {
    flex: 1; background: white; border: 1px solid var(--slate-200);
    border-radius: 6px; padding: 4px 10px; font-size: 11px; color: var(--slate-500);
    margin-left: 6px;
}
.admin-shell {
    display: grid; grid-template-columns: 180px 1fr;
    min-height: 480px;
}
.admin-side {
    background: linear-gradient(180deg, #0B0E11 0%, #14181C 100%);
    padding: 14px 0;
    color: white;
}
.admin-logo {
    padding: 0 14px 16px; border-bottom: 1px solid #1F2429;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.admin-logo img { height: 22px; }
.admin-logo .t { font-size: 13px; font-weight: 800; color: #00C9A7; letter-spacing: 0.3px; }
.admin-logo .s { font-size: 8px; color: #8993A0; letter-spacing: 0.5px; }

/* New admin sidebar logo (yatay, gerçek panele yakın) */
.admin-logo-row {
    padding: 0 12px 14px; border-bottom: 1px solid #1F2429;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
}
.admin-logo-mark {
    width: 28px; height: 28px; border-radius: 7px;
    background: linear-gradient(135deg, #00C9A7 0%, #00897B 100%);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.admin-logo-mark img { height: 18px; filter: brightness(0) invert(1); }
.admin-logo-row .t { font-size: 12px; font-weight: 800; color: white; letter-spacing: 0.3px; line-height: 1; margin-bottom: 2px; }
.admin-logo-row .s { font-size: 7px; color: #8993A0; letter-spacing: 0.6px; line-height: 1; }
.admin-side .group-title {
    font-size: 9px; color: #5A6470; font-weight: 700;
    letter-spacing: 0.6px; padding: 8px 14px 4px;
}
.admin-side .item {
    padding: 7px 14px; font-size: 11px;
    display: flex; align-items: center; gap: 9px; color: #C7CED6;
}
.admin-side .item.on {
    background: rgba(0,201,167,0.12); color: #00C9A7;
    border-left: 3px solid #00C9A7; padding-left: 11px;
}
.admin-side .item i { width: 12px; font-size: 11px; }
.admin-main { background: #F4F6F8; padding: 16px; }
.admin-main-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 14px;
}
.admin-main-head .h-title { font-size: 15px; font-weight: 800; color: var(--ink); letter-spacing: -0.2px; }
.admin-main-head .h-crumb { font-size: 9px; color: var(--slate-500); margin-top: 2px; }
.admin-main-head .head-right { display: flex; align-items: center; gap: 8px; }
.admin-main-head .user {
    display: flex; align-items: center; gap: 6px;
    background: white; border-radius: 999px; padding: 3px 10px 3px 3px;
    border: 1px solid var(--slate-200);
}
.admin-main-head .user .ava {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, #5A6470, #2A323A);
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 700;
}
.admin-main-head .user .nm { font-size: 10px; font-weight: 700; color: var(--ink); }
.admin-main-head .role {
    background: rgba(0,201,167,0.12); color: var(--brand-darker);
    font-size: 8px; padding: 2px 7px; border-radius: 999px; font-weight: 700;
    margin-right: 6px;
}
.admin-hero {
    border-radius: 14px; overflow: hidden;
    min-height: 150px; margin-bottom: 16px;
    background:
        linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 80%),
        radial-gradient(circle at 70% 50%, #FF8A50, #8B3215);
    padding: 16px;
    color: white; position: relative;
    display: flex; flex-direction: column; justify-content: flex-end;
}
.admin-hero .welcome { font-size: 11px; opacity: 0.9; margin-bottom: 4px; }
.admin-hero .rest-name {
    font-size: 22px; font-weight: 800; letter-spacing: -0.4px; line-height: 1.1;
    margin-bottom: 6px;
}
.admin-hero .meta {
    font-size: 10px; display: flex; align-items: center; gap: 8px;
    opacity: 0.95; margin-bottom: 10px;
}
.admin-hero .ok {
    background: rgba(0,201,167,0.95); color: #0B0E11;
    font-size: 9px; padding: 2px 8px; border-radius: 999px; font-weight: 700;
}
.admin-hero .acts { display: flex; gap: 8px; }
.admin-hero .acts .b {
    background: rgba(0,0,0,0.35); backdrop-filter: blur(8px);
    color: white; font-size: 10px; padding: 7px 12px;
    border-radius: 8px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 5px;
    border: 1px solid rgba(255,255,255,0.18);
}

.admin-kpi-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    margin-bottom: 14px;
}
.admin-kpi {
    background: white; border: 1px solid var(--slate-200);
    border-radius: 12px; padding: 12px;
    display: flex; gap: 10px; align-items: flex-start;
}
.admin-kpi .ic {
    width: 32px; height: 32px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
}
.admin-kpi.k1 .ic { background: rgba(0,201,167,0.12); color: #00897B; }
.admin-kpi.k2 .ic { background: rgba(123,92,255,0.12); color: #7B5CFF; }
.admin-kpi.k3 .ic { background: rgba(255,180,0,0.15); color: #c98000; }
.admin-kpi.k4 .ic { background: rgba(255,140,80,0.15); color: #C4451B; }
.admin-kpi .l { font-size: 9px; color: var(--slate-500); font-weight: 700; letter-spacing: 0.6px; }
.admin-kpi .v { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.1; margin: 2px 0; }
.admin-kpi .s { font-size: 9px; color: var(--slate-500); }

.admin-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.admin-panel {
    background: white; border: 1px solid var(--slate-200);
    border-radius: 12px; padding: 14px;
}
.admin-panel .panel-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 12px;
}
.admin-panel .panel-head .link {
    background: var(--slate-100); color: var(--slate-500);
    padding: 3px 10px; border-radius: 6px; font-size: 9px; font-weight: 700;
}
.admin-panel .pt {
    font-size: 12px; font-weight: 800; color: var(--ink); margin-bottom: 3px;
    display: flex; align-items: center; gap: 6px;
}
.admin-panel .ps { font-size: 9px; color: var(--slate-500); margin-bottom: 12px; }

.empty-ok {
    text-align: center; padding: 24px 0;
}
.empty-ok i { font-size: 36px; color: #00897B; }
.empty-ok .t { font-size: 13px; font-weight: 700; margin-top: 6px; color: var(--ink); }
.empty-ok .s { font-size: 10px; color: var(--slate-500); margin-top: 2px; }

.adm-list { display: flex; flex-direction: column; gap: 6px; }
.adm-list .r {
    display: flex; align-items: center; gap: 10px;
    background: var(--slate-100); border-radius: 8px;
    padding: 8px 10px; font-size: 10px;
}
.adm-list .r .time {
    background: #2A323A; color: white; font-size: 10px;
    padding: 3px 8px; border-radius: 5px; font-weight: 700;
    min-width: 38px; text-align: center;
}
.adm-list .r .info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.adm-list .r .nm { font-weight: 700; font-size: 11px; color: var(--ink); }
.adm-list .r .ppl { color: var(--slate-500); font-size: 9px; }
.adm-list .r .ok-pill {
    background: rgba(0,137,123,0.15); color: var(--brand-dark);
    padding: 3px 8px; border-radius: 999px; font-size: 9px; font-weight: 700;
}

.photo-drop {
    border: 2px dashed var(--slate-200); border-radius: 10px;
    padding: 18px; text-align: center; margin-bottom: 10px;
    background: #FAFBFC;
}
.photo-drop i { font-size: 24px; color: var(--brand-dark); }
.photo-drop .t { font-size: 11px; font-weight: 700; margin-top: 6px; color: var(--ink); }
.photo-drop .s { font-size: 9px; color: var(--slate-500); margin-top: 2px; }
.photo-drop .s2 { font-size: 8px; color: var(--slate-400); margin-top: 4px; }
.photo-strip { display: flex; gap: 6px; }
.photo-strip .ph {
    flex: 1; aspect-ratio: 1; border-radius: 8px;
    background: linear-gradient(135deg, #C4451B, #8B3215);
}
.photo-strip .ph:nth-child(2) { background: linear-gradient(135deg, #5A6470, #2A323A); }
.photo-strip .ph:nth-child(3) { background: linear-gradient(135deg, #6B4FEE, #3E2BA8); }
.photo-strip .ph:nth-child(4) { background: linear-gradient(135deg, #00897B, #006E62); }
.photo-strip .ph:nth-child(5) { background: linear-gradient(135deg, #FFC870, #c98000); }

/* ============================================================
   Rezervasyonlar sayfası mockup elemanları
   ============================================================ */
.page-title-block { margin-bottom: 14px; }
.page-title-block .pt-title {
    font-size: 18px; font-weight: 800; letter-spacing: -0.3px; color: var(--ink);
}
.page-title-block .pt-sub {
    font-size: 10px; color: var(--slate-500); margin-top: 2px;
}

.filter-row {
    display: flex; gap: 8px; align-items: flex-end;
    background: white; border: 1px solid var(--slate-200);
    border-radius: 12px; padding: 12px;
    margin-bottom: 14px;
}
.filter-input {
    flex: 1; min-width: 0;
}
.filter-input .fi-label {
    font-size: 9px; color: var(--slate-500); font-weight: 700;
    margin-bottom: 4px; letter-spacing: 0.3px;
}
.filter-input .fi-value {
    background: white; border: 1px solid var(--slate-200);
    border-radius: 8px; padding: 7px 10px;
    font-size: 10px; font-weight: 600;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--ink);
}
.filter-input .fi-value i { color: var(--slate-400); }
.filter-btn {
    background: var(--brand-dark); color: white;
    padding: 8px 14px; border-radius: 8px;
    font-size: 10px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 5px;
    align-self: stretch; align-items: center;
}
.filter-reset {
    background: white; color: var(--slate-500);
    padding: 8px 14px; border-radius: 8px;
    font-size: 10px; font-weight: 600;
    border: 1px solid var(--slate-200);
    display: inline-flex; align-items: center;
}

.res-list { display: flex; flex-direction: column; gap: 8px; }
.res-card {
    background: white; border: 1px solid var(--slate-200);
    border-radius: 10px; padding: 10px 12px;
    display: flex; gap: 14px; align-items: center;
    position: relative; overflow: hidden;
}
.res-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px;
}
.res-card.ok::before { background: var(--brand); }
.res-card.cancel::before { background: var(--danger); }

.res-left { padding-left: 6px; }
.res-date {
    display: flex; flex-direction: column; align-items: center;
    min-width: 50px;
}
.res-date .d { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1; }
.res-date .m { font-size: 9px; color: var(--slate-500); font-weight: 700; letter-spacing: 0.4px; }
.res-date .t {
    font-size: 9px; color: var(--slate-500); margin-top: 4px;
    display: flex; align-items: center; gap: 3px;
}
.res-date .t i { font-size: 9px; }

.res-mid { flex: 1; min-width: 0; }
.res-name-row {
    display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.res-name { font-size: 12px; font-weight: 800; color: var(--ink); }
.badge-ok {
    background: rgba(0,201,167,0.15); color: var(--brand-darker);
    font-size: 9px; padding: 2px 8px; border-radius: 999px; font-weight: 700;
}
.badge-cancel {
    background: rgba(220,53,69,0.12); color: var(--danger);
    font-size: 9px; padding: 2px 8px; border-radius: 999px; font-weight: 700;
}
.res-meta {
    display: flex; gap: 12px; flex-wrap: wrap;
    font-size: 9px; color: var(--slate-500);
}
.res-meta span { display: inline-flex; align-items: center; gap: 4px; }
.res-meta b { color: var(--ink); font-weight: 700; }
.res-reason {
    margin-top: 5px; font-size: 9px; color: var(--danger);
    display: flex; align-items: center; gap: 5px;
}
.res-right { flex-shrink: 0; }
.res-ppl {
    background: var(--slate-100); color: var(--slate-500);
    padding: 4px 10px; border-radius: 999px;
    font-size: 10px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 4px;
}

/* ============================================================
   Masalar SVG mockup
   ============================================================ */
.tables-mockup {
    background: white;
    border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-200);
    transform: rotate(-1deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.tables-mockup:hover { transform: rotate(0) translateY(-6px); }

.tables-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
    margin-bottom: 12px;
}
.tables-stat {
    background: white; border: 1px solid var(--slate-200); border-radius: 10px;
    padding: 10px; display: flex; gap: 8px;
}
.tables-stat .ic {
    width: 28px; height: 28px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
}
.tables-stat.s1 .ic { background: rgba(123,92,255,0.12); color: #7B5CFF; }
.tables-stat.s2 .ic { background: rgba(0,201,167,0.12); color: #00897B; }
.tables-stat.s3 .ic { background: rgba(255,140,80,0.15); color: #C4451B; }
.tables-stat .l { font-size: 8px; color: var(--slate-500); font-weight: 600; letter-spacing: 0.4px; }
.tables-stat .v { font-size: 16px; font-weight: 800; }
.tables-stat .s { font-size: 8px; color: var(--slate-500); margin-top: 1px; }

.tables-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px;
}
@media (max-width: 1000px) { .tables-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .tables-grid { grid-template-columns: repeat(2, 1fr); } }

.table-card {
    background: #FFF7E6;
    border: 1px solid #FFE6B0;
    border-radius: 12px;
    padding: 12px 8px;
    display: flex; flex-direction: column; align-items: center;
}
.table-card.indoor { background: #FFF7E6; border-color: #FFE6B0; }
.table-card.garden { background: #E8F8EF; border-color: #B8E8C8; }
.table-card.terrace { background: #E8EEFA; border-color: #B8C8E8; }
.table-card.vip { background: #F3EAFA; border-color: #D6BCEB; }

.svg-table-wrap {
    width: 100%; aspect-ratio: 1; position: relative;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 6px;
}
.svg-table-wrap svg { width: 100%; height: 100%; max-width: 110px; }
.table-name { font-size: 11px; font-weight: 700; color: var(--ink); }
.table-loc { font-size: 9px; color: var(--slate-500); margin-bottom: 6px; }
.table-cap-badge {
    background: rgba(0,201,167,0.15); color: var(--brand-darker);
    font-size: 8px; padding: 2px 7px; border-radius: 999px; font-weight: 700;
}

/* ============================================================
   Mobile screen — generic frame wrapper
   ============================================================ */
.phone-wrap { display: flex; justify-content: center; }
.phone-wrap .iphone { transform: rotate(-2deg); }
.phone-wrap .iphone:hover { transform: rotate(0) translateY(-6px); }

/* ---------------- Hero screen image (Index) ---------------- */
.hero-screen {
    width: 100%; max-width: 360px; height: auto;
    border-radius: 36px;
    box-shadow:
        0 50px 100px -20px rgba(0, 137, 123, 0.35),
        0 30px 60px -30px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.hero-screen:hover { transform: rotate(0) translateY(-8px); }

.hero-screen-fallback {
    width: 320px; height: 580px;
    border-radius: 36px;
    background: linear-gradient(135deg, #F4F6F8 0%, #E5E9EE 100%);
    border: 2px dashed var(--slate-400);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--slate-500); text-align: center; padding: 32px;
    font-size: 14px;
}
.hero-screen-fallback i { font-size: 64px; color: var(--brand-dark); margin-bottom: 16px; opacity: 0.5; }
.hero-screen-fallback small { display: block; margin-top: 8px; font-size: 12px; opacity: 0.7; }
.hero-screen + .hero-screen-fallback { display: none; }
img.hero-screen[src=""] + .hero-screen-fallback,
img.hero-screen:not([src]) + .hero-screen-fallback { display: flex; }

/* ---------------- Audience split (Index) ---------------- */
.audience { padding: 96px 0; background: var(--grad-soft); }
.audience-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
@media (max-width: 900px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
    background: white; border: 1px solid var(--slate-200);
    border-radius: 20px; padding: 36px;
    text-decoration: none; color: var(--ink);
    transition: all 0.25s ease;
    display: flex; flex-direction: column;
}
.audience-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 201, 167, 0.4);
}
.audience-customer:hover .aud-icon { background: rgba(123, 92, 255, 0.15); color: #7B5CFF; }
.audience-owner:hover .aud-icon { background: rgba(0, 201, 167, 0.18); color: var(--brand-dark); }

.aud-icon {
    width: 60px; height: 60px; border-radius: 16px;
    background: rgba(0, 201, 167, 0.12); color: var(--brand-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 22px;
    transition: all 0.25s;
}
.audience-customer .aud-icon { background: rgba(123, 92, 255, 0.12); color: #7B5CFF; }

.audience-card h3 {
    font-size: 24px; font-weight: 800; margin: 0 0 10px;
    letter-spacing: -0.5px;
}
.audience-card > p {
    color: var(--slate-500); font-size: 15px; line-height: 1.55; margin: 0 0 18px;
}
.aud-list { list-style: none; padding: 0; margin: 0 0 24px; }
.aud-list li {
    padding: 6px 0; font-size: 14px; color: var(--ink);
    display: flex; align-items: center; gap: 8px;
}
.aud-list i { color: var(--brand-dark); font-size: 16px; }
.aud-cta {
    margin-top: auto; padding-top: 18px;
    border-top: 1px solid var(--slate-200);
    color: var(--brand-dark); font-weight: 700; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
}
.audience-card:hover .aud-cta { gap: 12px; }

/* ---------------- SMS Spotlight ---------------- */
.sms-spotlight {
    padding: 96px 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FCFB 100%);
}
.sms-grid {
    display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center;
}
@media (max-width: 900px) {
    .sms-grid { grid-template-columns: 1fr; justify-items: center; }
    .sms-phone { margin: 0 auto; }
}
.sms-list { list-style: none; padding: 0; margin: 0; }
.sms-list li {
    padding: 10px 0; font-size: 15px; color: var(--ink);
    display: flex; align-items: center; gap: 10px;
}
.sms-list i { color: var(--brand-dark); font-size: 19px; }

.sms-phone {
    width: 360px; max-width: 100%;
    background: #0B0E11;
    border-radius: 36px; padding: 14px;
    box-shadow:
        0 50px 100px -20px rgba(0, 137, 123, 0.35),
        0 30px 60px -30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px #1F2429;
    color: white;
    position: relative;
}
.sms-phone::before {
    content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 96px; height: 24px; background: #0B0E11; border-radius: 0 0 16px 16px; z-index: 2;
}
.sms-status {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 24px 0 32px; font-size: 13px; font-weight: 600;
}
.sms-status span:nth-child(2) { display: flex; gap: 6px; align-items: center; font-size: 11px; }
.sms-from { text-align: center; padding: 20px 12px 12px; }
.sms-avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #5A6470 0%, #2A323A 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 8px;
    color: #C7CED6;
}
.sms-sender {
    background: #232A31; color: white;
    display: inline-block; padding: 4px 14px;
    border-radius: 999px; font-weight: 600; font-size: 14px;
    margin-bottom: 6px;
}
.sms-time { font-size: 11px; color: #8993A0; }
.sms-bubble {
    background: #2A323A; border-radius: 18px 18px 18px 4px;
    padding: 14px 18px;
    margin: 8px 12px 24px;
    font-size: 14px; line-height: 1.4;
    color: white;
}
.sms-bubble > div { padding: 2px 0; }

/* ---------------- Page hero (sub pages) ---------------- */
.page-hero {
    padding: 80px 0 40px;
    background:
        radial-gradient(circle at 75% 30%, rgba(0, 201, 167, 0.12), transparent 60%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FCFB 100%);
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(34px, 5vw, 54px); line-height: 1.05;
    font-weight: 800; letter-spacing: -1.5px;
    margin: 14px 0 18px;
}
.page-hero h1 .accent {
    background: var(--grad-1);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.page-hero p {
    font-size: 18px; color: var(--slate-500);
    max-width: 680px; margin: 0 auto;
    line-height: 1.55;
}

/* ---------------- Screen frame (real image instead of mockup) ---------------- */
.screen-frame { display: flex; justify-content: center; align-items: center; }
.screen-frame img { width: 100%; max-width: 100%; height: auto; display: block; }

.screen-mobile {
    max-width: 320px; margin: 0 auto;
}
.screen-mobile img {
    border-radius: 36px;
    box-shadow:
        0 50px 100px -20px rgba(0, 137, 123, 0.35),
        0 30px 60px -30px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.screen-mobile img:hover { transform: rotate(0) translateY(-6px); }

.screen-browser, .screen-browser-large {
    max-width: 100%;
}
.screen-browser img, .screen-browser-large img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    transform: rotate(1deg);
    transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
    border: 1px solid var(--slate-200);
}
.screen-browser img:hover, .screen-browser-large img:hover {
    transform: rotate(0) translateY(-6px);
}

/* ---------------- Workflow (Restoran page) ---------------- */
.workflow {
    padding: 96px 0;
    background: white;
}
.workflow-steps {
    display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 16px;
    align-items: start;
}
@media (max-width: 900px) {
    .workflow-steps { grid-template-columns: 1fr; }
    .wf-arrow { display: none; }
}
.wf-step {
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 16px; padding: 24px;
    text-align: center;
}
.wf-num {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--grad-1); color: white;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px;
    box-shadow: 0 6px 18px rgba(0, 137, 123, 0.3);
    margin: 0 auto 16px;
}
.wf-step h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.wf-step p { font-size: 13px; color: var(--slate-500); line-height: 1.5; margin: 0; }
.wf-arrow {
    align-self: center;
    font-size: 24px; color: var(--brand);
}

/* ---------------- Pricing ---------------- */
.pricing-section { padding: 80px 0; }
.price-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    max-width: 1100px; margin: 0 auto;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
    background: white; border: 1px solid var(--slate-200);
    border-radius: 20px; padding: 32px;
    position: relative;
    transition: all 0.25s ease;
    display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-featured {
    border: 2px solid var(--brand);
    box-shadow: 0 20px 40px rgba(0, 137, 123, 0.18);
    background: linear-gradient(180deg, rgba(0,201,167,.03) 0%, white 60%);
}
.price-featured:hover { box-shadow: 0 30px 60px rgba(0, 137, 123, 0.28); transform: translateY(-8px); }

.price-badge {
    position: absolute; top: -12px; right: 24px;
    background: var(--grad-1); color: white;
    font-size: 11px; font-weight: 700; letter-spacing: 0.4px;
    padding: 5px 12px; border-radius: 999px;
}

.price-name { font-size: 18px; font-weight: 700; color: var(--brand-dark); margin-bottom: 6px; }
.price-desc { font-size: 13px; color: var(--slate-500); margin-bottom: 22px; min-height: 36px; }
.price-amount { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--slate-200); }
.price-amount .amount { font-size: 32px; font-weight: 800; letter-spacing: -1px; }
.price-amount .period { display: block; font-size: 13px; color: var(--slate-500); margin-top: 4px; }

.price-list { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.price-list li {
    padding: 8px 0; font-size: 14px; color: var(--ink);
    display: flex; align-items: flex-start; gap: 8px;
}
.price-list i { color: var(--brand-dark); font-size: 17px; margin-top: 1px; flex-shrink: 0; }

.btn-block { width: 100%; justify-content: center; }

.price-note {
    text-align: center; font-size: 13px; color: var(--slate-500);
    margin: 40px auto 0; max-width: 600px;
}

/* ---------------- Contact ---------------- */
.contact-section { padding: 60px 0 96px; }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px;
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3, .contact-form h3 {
    font-size: 22px; font-weight: 800; margin: 0 0 20px;
}
.contact-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--slate-200);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(0, 201, 167, 0.12); color: var(--brand-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.contact-label { font-size: 12px; color: var(--slate-500); font-weight: 500; margin-bottom: 2px; }
.contact-value { font-size: 15px; color: var(--ink); font-weight: 600; text-decoration: none; }
a.contact-value:hover { color: var(--brand-dark); }
.contact-social {
    display: flex; gap: 10px; margin-top: 24px;
}
.contact-social a {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--slate-100); color: var(--slate-500);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 18px;
    transition: all 0.18s;
}
.contact-social a:hover { background: var(--brand-dark); color: white; transform: translateY(-2px); }

.contact-form {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    padding: 32px;
}
.form-sub { font-size: 14px; color: var(--slate-500); margin: -12px 0 24px; }
.form-row { margin-bottom: 18px; }
.form-row label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--ink); margin-bottom: 6px;
}
.form-row input, .form-row select, .form-row textarea {
    width: 100%; padding: 11px 14px;
    background: white;
    border: 1.5px solid var(--slate-200);
    border-radius: 10px;
    font-family: inherit; font-size: 14px;
    color: var(--ink);
    transition: border-color 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.15);
}
.form-row textarea { resize: vertical; min-height: 100px; }
.form-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-cols { grid-template-columns: 1fr; } }
.form-note {
    font-size: 12px; color: var(--slate-500);
    margin: 16px 0 0; text-align: center;
}

/* ---------------- Footer (existing — keep) ---------------- */
.footer { background: #0B0E11; color: white; padding: 64px 0 24px; }
.footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 1px solid #1F2429;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } .f-brand { grid-column: 1 / -1; } }
.f-col h4 { font-size: 13px; font-weight: 700; margin: 0 0 16px; color: #C7CED6; text-transform: uppercase; letter-spacing: 0.8px; }
.f-col a { display: block; color: #8993A0; text-decoration: none; font-size: 14px; padding: 5px 0; transition: color 0.15s; }
.f-col a:hover { color: var(--brand); }
.f-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.f-logo img { height: 32px; }
.f-logo span { font-weight: 800; letter-spacing: 0.5px; color: var(--brand); }
/* Footer'da beyaz logo varyantı — koyu zeminde direkt gözükür */
.footer-header-logo {
    height: 67px !important;
    width: auto;
    display: block;
}
.f-brand p { color: #8993A0; font-size: 14px; line-height: 1.6; margin: 0 0 18px; max-width: 380px; }
.f-social { display: flex; gap: 8px; }
.f-social a {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: 12px;
    background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600; font-size: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 4px 14px rgba(221, 42, 123, 0.35);
}
.f-social a i { font-size: 18px; }
.f-social a:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(221, 42, 123, 0.5); }
.footer-bottom {
    display: flex; justify-content: space-between; padding-top: 24px;
    color: #5A6470; font-size: 13px;
}

/* =================================================================
   Value-prop kartları — sahte sayılar yerine özellik vurguları
   ================================================================= */
.value-row {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.value-card {
    background: #FFFFFF;
    border: 1px solid #E0E4E8;
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.10);
    border-color: var(--brand);
}
.value-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,201,167,0.18) 0%, rgba(0,137,123,0.12) 100%);
    color: var(--brand-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.value-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900, #0B0E11);
    margin: 0;
    letter-spacing: -0.2px;
}
.value-desc {
    font-size: 13.5px;
    color: var(--slate-500);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .value-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .value-row { grid-template-columns: 1fr; }
}

/* =================================================================
   "Nasıl Çalışır" — 3 adım process
   ================================================================= */
.howitworks {
    padding: 80px 0;
    background: #FFFFFF;
}
.howitworks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}
.hiw-step {
    position: relative;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F8 100%);
    border: 1px solid #E0E4E8;
    border-radius: 22px;
    padding: 32px 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hiw-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.10);
}
.hiw-num {
    position: absolute;
    top: -18px; left: 26px;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 137, 123, 0.35);
}
.hiw-icon {
    color: var(--brand-dark);
    font-size: 28px;
    margin-bottom: 12px;
    margin-top: 16px;
}
.hiw-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--slate-900, #0B0E11);
    letter-spacing: -0.3px;
}
.hiw-step p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 900px) {
    .howitworks-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   Yasal sayfalar — KVKK, Gizlilik, Kullanım Şartları, Çerez
   ================================================================= */
.legal-page {
    padding: 56px 0 96px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F8 100%);
}
.legal-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}
.legal-meta {
    color: var(--slate-500);
    font-size: 13px;
    margin: 4px 0 32px;
}
.legal-content {
    background: #FFFFFF;
    border: 1px solid #E0E4E8;
    border-radius: 18px;
    padding: 44px 48px;
    box-shadow: 0 8px 28px rgba(16, 24, 40, 0.05);
}
.legal-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--slate-900, #0B0E11);
    margin: 32px 0 12px;
    letter-spacing: -0.3px;
    padding-top: 8px;
    border-top: 1px solid #F0F2F4;
}
.legal-content h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--slate-900, #0B0E11);
    margin: 18px 0 8px;
}
.legal-content p,
.legal-content li {
    font-size: 14.5px;
    line-height: 1.75;
    color: #3C4956;
    margin: 0 0 10px;
}
.legal-content ul,
.legal-content ol {
    padding-left: 22px;
    margin: 8px 0 14px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--slate-900, #0B0E11); font-weight: 700; }
.legal-content a {
    color: var(--brand-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.legal-content a:hover { color: var(--brand); }
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 18px;
    font-size: 13.5px;
}
.legal-content th,
.legal-content td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid #E8EBEE;
    vertical-align: top;
}
.legal-content th {
    background: #F4F6F8;
    font-weight: 700;
    color: var(--slate-900, #0B0E11);
}
.legal-callout {
    background: rgba(0, 201, 167, 0.08);
    border-left: 3px solid var(--brand);
    border-radius: 10px;
    padding: 14px 18px;
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #1F2A30;
}
@media (max-width: 640px) {
    .legal-content { padding: 28px 22px; }
}

/* =================================================================
   Contact map — Google Maps embed kartı
   ================================================================= */
.contact-map-section {
    padding: 60px 0 96px;
    background: linear-gradient(180deg, #F4F6F8 0%, #FFFFFF 100%);
}
.contact-map {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(16, 24, 40, 0.10);
    border: 1px solid #E0E4E8;
}
.contact-map iframe { display: block; width: 100%; }

/* =================================================================
   Showcase tek görsel (telefon mockup yerine restoran foto kartı)
   ================================================================= */
.showcase-photo {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.18);
    aspect-ratio: 4 / 5;
    background: #1c2024;
}
.showcase-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.showcase-photo:hover img { transform: scale(1.03); }

/* =================================================================
   SMS bildirim kartı — telefon framing yok, sadece modern mesaj
   ================================================================= */
.sms-card {
    background: linear-gradient(180deg, #14181C 0%, #0B0E11 100%);
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    max-width: 420px;
    width: 100%;
}
.sms-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}
.sms-card-icon {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #FFFFFF;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.sms-card-meta { flex: 1; min-width: 0; }
.sms-card-title {
    color: #F1F3F5;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.2px;
}
.sms-card-sub {
    color: #8993A0;
    font-size: 12px;
    margin-top: 2px;
}
.sms-card-badge {
    background: rgba(0, 201, 167, 0.15);
    color: var(--brand);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.4px;
}
.sms-card-body {
    color: #E2E5E9;
    font-size: 14px;
    line-height: 1.65;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sms-card-body strong { color: var(--brand); font-weight: 700; }

@media (max-width: 768px) {
    .sms-card { max-width: 100%; }
}

/* =================================================================
   Restaurant Gallery — modern bento grid + sosyal kanıt metrikleri
   ================================================================= */
.restaurant-gallery {
    padding: 80px 0 96px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F6F8 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
    margin-top: 8px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #e9ecef;
    grid-column: span 2;
    grid-row: span 1;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(16, 24, 40, 0.16);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* Büyük öne çıkan kart */
.gallery-item.g-feature {
    grid-column: span 3;
    grid-row: span 2;
}
/* Geniş yatay kart */
.gallery-item.g-wide {
    grid-column: span 3;
}

/* Caption (sadece feature görselde) */
.g-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
}
.g-tag {
    background: rgba(255, 255, 255, 0.95);
    color: #0B0E11;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 8px;
}

/* Sosyal kanıt metrikleri */
.gallery-stats {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
    border: 1px solid #E0E4E8;
}
.g-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.g-stat-num {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -1px;
    line-height: 1;
}
.g-stat-label {
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 500;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
    }
    .gallery-item, .gallery-item.g-feature, .gallery-item.g-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .gallery-item.g-feature { grid-column: span 2; grid-row: span 2; }
    .gallery-stats { grid-template-columns: repeat(2, 1fr); padding: 24px; }
}
@media (max-width: 540px) {
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item.g-feature { grid-column: span 1; grid-row: span 1; }
    .gallery-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   CUSTOMER-FIRST REDESIGN (2026-05)
   Welcome-screen-style hero + browsing/booking sections
   ============================================================ */

/* ---------------- Welcome Hero — full-bleed photo crossfade ---------------- */
.welcome-hero {
    position: relative;
    min-height: 92vh;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.welcome-photos { position: absolute; inset: 0; z-index: -2; }
.welcome-photos .wp {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 24s infinite linear;
    transform: scale(1.05);
}
.welcome-photos .wp:nth-child(1) { animation-delay: 0s; }
.welcome-photos .wp:nth-child(2) { animation-delay: 6s; }
.welcome-photos .wp:nth-child(3) { animation-delay: 12s; }
.welcome-photos .wp:nth-child(4) { animation-delay: 18s; }
@keyframes heroFade {
    0%   { opacity: 0; transform: scale(1.05); }
    8%   { opacity: 1; transform: scale(1.08); }
    25%  { opacity: 1; transform: scale(1.12); }
    33%  { opacity: 0; transform: scale(1.14); }
    100% { opacity: 0; transform: scale(1.05); }
}
.welcome-overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, rgba(11,14,17,0.35) 0%, rgba(11,14,17,0.55) 40%, rgba(11,14,17,0.85) 100%),
        linear-gradient(135deg, rgba(0,201,167,0.30) 0%, transparent 60%);
}

.welcome-inner {
    position: relative; z-index: 1;
    padding: 100px 24px 140px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    min-height: 92vh;
}
.welcome-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 999px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.4px;
    color: #fff;
    margin-bottom: 28px;
}
.welcome-badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #00E5BC; box-shadow: 0 0 12px #00E5BC;
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.welcome-h1 {
    font-size: clamp(40px, 6.5vw, 76px);
    font-weight: 900; line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 22px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.accent-text {
    background: linear-gradient(135deg, #00E5BC 0%, #00C9A7 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
}
.welcome-sub {
    font-size: clamp(16px, 1.6vw, 19px);
    font-weight: 400;
    line-height: 1.55;
    max-width: 580px;
    margin: 0 0 38px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* Search bar */
.welcome-search {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 8px;
    width: 100%;
    max-width: 720px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 8px 20px rgba(0,0,0,0.2);
}
.ws-city, .ws-input {
    display: flex; align-items: center; gap: 10px;
    padding: 0 14px;
    border-radius: 12px;
    background: var(--slate-100);
}
.ws-city { padding: 0 14px 0 16px; }
.ws-city i, .ws-input i { color: var(--brand-dark); font-size: 17px; }
.ws-city select, .ws-input input {
    width: 100%; padding: 14px 0;
    border: none; background: transparent;
    font: inherit; color: var(--ink);
    outline: none;
    font-size: 15px;
}
.ws-city select { cursor: pointer; font-weight: 600; }
.ws-go {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0 22px; border-radius: 12px;
    background: var(--grad-1); color: #fff;
    font-weight: 700; font-size: 15px;
    border: none; cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 6px 18px rgba(0, 137, 123, 0.45);
}
.ws-go:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0, 137, 123, 0.55); }

.welcome-chips {
    margin-top: 22px;
    display: flex; flex-wrap: wrap; gap: 8px;
    justify-content: center;
    align-items: center;
}
.wc-label {
    color: rgba(255,255,255,0.7);
    font-size: 13px; font-weight: 500;
    margin-right: 4px;
}
.welcome-chips a {
    display: inline-flex; align-items: center;
    padding: 7px 14px; border-radius: 999px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff; font-size: 13.5px; font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.welcome-chips a:hover { background: rgba(255,255,255,0.26); }

.welcome-scroll {
    position: absolute;
    bottom: 28px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 28px;
    text-decoration: none;
    animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translate(-50%, 0); }
    50%      { transform: translate(-50%, 8px); }
}
.welcome-scroll:hover { color: #fff; }

@media (max-width: 700px) {
    .welcome-search { grid-template-columns: 1fr; }
    .ws-city, .ws-input { padding: 0 14px; }
    .ws-go { padding: 14px; justify-content: center; }
    .welcome-inner { padding: 80px 20px 110px; }
}

/* ============================================================
   DEMO BANNER — site geneli "test restoranları" uyarısı
   ============================================================ */
.demo-banner {
    background: linear-gradient(90deg, #FFF3D6 0%, #FFE7B3 100%);
    border-bottom: 1px solid #F0CC76;
    color: #6B4D00;
    overflow: hidden;
    transition: max-height 0.32s ease, opacity 0.28s ease, padding 0.32s ease;
    max-height: 200px; opacity: 1;
}
.demo-banner.hide { max-height: 0; opacity: 0; padding: 0; }
.demo-banner-inner {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 24px;
}
.demo-banner .db-icon {
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(107, 77, 0, 0.10);
    display: flex; align-items: center; justify-content: center;
    color: #8A6500; font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}
.demo-banner .db-text {
    flex: 1; min-width: 0;
    display: flex; flex-wrap: wrap; align-items: baseline;
    gap: 6px 10px;
    font-size: 14px; line-height: 1.5;
}
.demo-banner .db-text strong {
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #5A4200;
}
.demo-banner .db-text b {
    color: #5A4200;
    font-weight: 700;
}
.demo-banner .db-close {
    width: 30px; height: 30px; border-radius: 8px;
    background: transparent;
    border: 1px solid rgba(107, 77, 0, 0.20);
    color: #6B4D00;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.15s;
}
.demo-banner .db-close:hover { background: rgba(107, 77, 0, 0.10); border-color: #6B4D00; }

@media (max-width: 700px) {
    .demo-banner-inner { padding: 10px 16px; gap: 10px; }
    .demo-banner .db-text { font-size: 12.5px; }
}

/* Restoran detay sayfasında her zaman görünen test notu */
.db-demo-note {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px 20px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFF6E0 0%, #FFE9B3 100%);
    border: 1px solid #F0CC76;
    color: #6B4D00;
    font-size: 14px; line-height: 1.55;
    margin-bottom: 30px;
}
.db-demo-note .dn-emoji {
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(107, 77, 0, 0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}
.db-demo-note strong {
    display: block;
    color: #5A4200;
    font-weight: 800;
    margin-bottom: 2px;
    font-size: 14.5px;
}

/* ============================================================
   CINEMATIC HERO — slow Ken Burns + vignette + grain + sequential fade-in
   ============================================================ */
.cine-hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    background: #000; /* fallback while photos load */
}

/* Slow Ken Burns photos */
.cine-photos { position: absolute; inset: 0; z-index: 0; }
.cine-photos .cp {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: cineKenBurns 32s infinite cubic-bezier(0.6, 0.05, 0.4, 1);
    transform: scale(1.10);
    will-change: opacity, transform;
}
@keyframes cineKenBurns {
    0%   { opacity: 0; transform: scale(1.10) translate(0, 0); }
    6%   { opacity: 1; }
    25%  { opacity: 1; transform: scale(1.18) translate(-1.5%, 1%); }
    31%  { opacity: 0; transform: scale(1.20) translate(-2%, 1.5%); }
    100% { opacity: 0; }
}

/* Vignette — darken edges */
.cine-vignette {
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(
        ellipse at center,
        transparent 30%,
        rgba(0,0,0,0.55) 85%,
        rgba(0,0,0,0.85) 100%
    );
    pointer-events: none;
}

/* Subtle film grain (SVG noise) */
.cine-grain {
    position: absolute; inset: 0; z-index: 2;
    opacity: 0.10;
    mix-blend-mode: overlay;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    animation: cineGrain 1.2s steps(6) infinite;
}
@keyframes cineGrain {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-2%, 1%); }
    50% { transform: translate(1%, -2%); }
    75% { transform: translate(-1%, -1%); }
}

/* Dramatic gradient — push photo down, bring text up */
.cine-shade {
    position: absolute; inset: 0; z-index: 3;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.45) 0%, transparent 25%, transparent 55%, rgba(0,0,0,0.78) 100%),
        linear-gradient(135deg, rgba(0,40,38,0.35) 0%, transparent 50%, rgba(0,201,167,0.18) 100%);
    pointer-events: none;
}

/* Cinematic letterbox bars — slide in on load, stay (subtle) */
.cine-bar-top, .cine-bar-bottom {
    position: absolute; left: 0; right: 0; z-index: 4;
    height: 38px;
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    animation: cineBar 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    pointer-events: none;
}
.cine-bar-top { top: 0; }
.cine-bar-bottom {
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    animation-name: cineBarB;
}
@keyframes cineBar  { 0% { transform: translateY(-100%); } 100% { transform: translateY(0); } }
@keyframes cineBarB { 0% { transform: translateY(100%); }  100% { transform: translateY(0); } }

.cine-inner {
    position: relative; z-index: 5;
    min-height: 100vh;
    padding: 120px 24px 140px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
}

/* Each element fades in with a delay (set inline on element) */
.cine-badge, .cine-h1 .cw, .cine-sub, .cine-search, .cine-chips {
    opacity: 0;
    animation: cineUp 1.0s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes cineUp {
    0%   { opacity: 0; transform: translateY(28px); filter: blur(8px); }
    60%  { filter: blur(0); }
    100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.cine-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 999px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    margin-bottom: 30px;
}
.cine-badge .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #00E5BC; box-shadow: 0 0 14px #00E5BC;
    animation: dotPulse 2s ease-in-out infinite;
}

.cine-h1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900; line-height: 0.98;
    letter-spacing: -3px;
    margin: 0 0 24px;
    text-shadow: 0 6px 32px rgba(0,0,0,0.55);
    display: flex; flex-wrap: wrap; gap: 0.25em;
    justify-content: center;
}
.cine-h1 .cw { display: inline-block; }
.cine-h1 .accent-text {
    background: linear-gradient(135deg, #FFD66B 0%, #FFB23F 50%, #FF8A3D 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    /* slight outline for depth on dark photos */
    filter: drop-shadow(0 4px 16px rgba(255, 178, 63, 0.35));
}

.cine-sub {
    font-size: clamp(16px, 1.7vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 0 42px;
    color: rgba(255,255,255,0.92);
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}

/* Cine search — bigger, more premium */
.cine-search {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 10px;
    width: 100%;
    max-width: 760px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 22px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 12px 28px rgba(0,0,0,0.28);
}
.cs-city, .cs-input {
    display: flex; align-items: center; gap: 10px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--ink);
}
.cs-city i, .cs-input i { color: var(--brand-dark); font-size: 17px; }
.cs-city select, .cs-input input {
    width: 100%; padding: 16px 0;
    border: none; background: transparent;
    font: inherit; color: var(--ink);
    outline: none; font-size: 15px;
}
.cs-city select { cursor: pointer; font-weight: 700; }
.cs-input input::placeholder { color: var(--slate-500); }
.cs-go {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0 28px; border-radius: 14px;
    background: var(--grad-1); color: #fff;
    font-weight: 800; font-size: 15px;
    border: none; cursor: pointer;
    letter-spacing: 0.2px;
    box-shadow: 0 8px 24px rgba(0, 137, 123, 0.55);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cs-go:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0, 137, 123, 0.65); }

.cine-chips {
    margin-top: 26px;
    display: flex; flex-wrap: wrap; gap: 10px;
    justify-content: center; align-items: center;
}
.cc-label {
    color: rgba(255,255,255,0.65);
    font-size: 13px; font-weight: 500;
    letter-spacing: 0.4px;
    margin-right: 6px;
}
.cine-chips a {
    display: inline-flex; align-items: center;
    padding: 8px 16px; border-radius: 999px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff; font-size: 14px; font-weight: 600;
    text-decoration: none;
    transition: all 0.18s ease;
}
.cine-chips a:hover {
    background: rgba(255,255,255,0.22);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.4);
}

.cine-scroll {
    position: absolute;
    bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 5;
    display: flex; flex-direction: column;
    align-items: center; gap: 6px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 24px;
    animation: scrollBounce 2.2s ease-in-out infinite;
    opacity: 0;
    animation: cineUp 1.0s cubic-bezier(0.2, 0.8, 0.2, 1) both, scrollBounce 2.2s ease-in-out 3s infinite;
    animation-delay: 2.6s, 2.6s;
}
.cine-scroll .cs-text {
    font-size: 11px; letter-spacing: 1.4px;
    text-transform: uppercase; font-weight: 600;
}
.cine-scroll:hover { color: #fff; }

@media (max-width: 700px) {
    .cine-search { grid-template-columns: 1fr; }
    .cs-go { padding: 16px; justify-content: center; }
    .cine-inner { padding: 100px 20px 130px; }
    .cine-h1 { letter-spacing: -2px; }
    .cine-bar-top, .cine-bar-bottom { height: 26px; }
}

/* ============================================================
   REKLAMLAR — Full-width carousel (mobile DynamicHeroBanner equivalent)
   ============================================================ */
.ads-carousel {
    padding: 60px 0 30px;
    background: linear-gradient(180deg, var(--paper) 0%, #FAFCFB 100%);
}
.ac-head {
    text-align: center;
    margin-bottom: 28px;
}
.ac-head h2 {
    font-size: clamp(26px, 3.4vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 10px 0 0;
}

.ac-stage {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(11,14,17,0.15), 0 6px 18px rgba(11,14,17,0.10);
}
.ac-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
}
.ac-slide {
    flex: 0 0 100%;
    min-width: 100%;
    position: relative;
    aspect-ratio: 21 / 8;
    background-size: cover; background-position: center;
    text-decoration: none;
    color: #fff;
}
.ac-slide .ac-shade {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 50%, rgba(0,0,0,0.12) 100%);
}
.ac-slide .ac-inner {
    position: absolute; inset: 0;
    padding: clamp(28px, 5vw, 70px);
    display: flex; flex-direction: column;
    justify-content: center;
    gap: 14px;
    max-width: 60%;
}
.ac-slide .ac-badge {
    display: inline-flex; align-self: flex-start;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(255,255,255,0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.30);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.6px; text-transform: uppercase;
}
.ac-slide h3 {
    margin: 0;
    font-size: clamp(26px, 3.6vw, 46px);
    font-weight: 900;
    letter-spacing: -1.2px;
    line-height: 1.05;
    text-shadow: 0 4px 22px rgba(0,0,0,0.45);
}
.ac-slide p {
    margin: 0;
    font-size: clamp(14px, 1.4vw, 17px);
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
    max-width: 480px;
}
.ac-slide .ac-cta {
    display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
    margin-top: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: #fff; color: var(--ink);
    font-weight: 700; font-size: 14.5px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.30);
    transition: transform 0.18s;
}
.ac-slide:hover .ac-cta { transform: translateY(-2px); }

/* Arrows */
.ac-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: none; cursor: pointer;
    color: var(--ink);
    font-size: 22px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.18s;
    z-index: 2;
}
.ac-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.ac-prev { left: 18px; }
.ac-next { right: 18px; }

/* Dots */
.ac-dots {
    position: absolute; bottom: 22px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 2;
}
.ac-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; cursor: pointer;
    background: rgba(255,255,255,0.5);
    transition: all 0.22s ease;
    padding: 0;
}
.ac-dot.active {
    background: #fff;
    width: 28px; border-radius: 999px;
}
.ac-dot:hover:not(.active) { background: rgba(255,255,255,0.85); }

@media (max-width: 800px) {
    .ac-slide { aspect-ratio: 4 / 5; }
    .ac-slide .ac-inner { max-width: 90%; padding: 24px 22px; }
    .ac-arrow { width: 38px; height: 38px; font-size: 18px; }
    .ac-prev { left: 10px; } .ac-next { right: 10px; }
}

/* ---------------- Category strip ---------------- */
.cat-strip {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, var(--paper) 0%, var(--slate-100) 100%);
}
.cat-strip .section-head {
    text-align: center;
    margin-bottom: 36px;
}
.cat-strip h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 14px 0 0;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.cat-chip {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; text-decoration: none;
    color: var(--ink);
    transition: transform 0.18s ease;
}
.cat-chip:hover { transform: translateY(-4px); }
.cat-emoji {
    width: 76px; height: 76px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 34px;
    box-shadow: 0 6px 18px rgba(11, 14, 17, 0.10);
}
.cat-chip span {
    font-size: 13px; font-weight: 600;
    text-align: center;
}

/* ---------------- Featured banner ---------------- */
.featured-band { padding: 30px 0 60px; }
.featured-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}
.featured-card {
    position: relative;
    height: 220px;
    border-radius: 22px;
    overflow: hidden;
    background-size: cover; background-position: center;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: var(--shadow-md);
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.featured-card .fc-shade {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(11,14,17,0.78) 0%, rgba(11,14,17,0.40) 50%, transparent 100%);
}
.featured-card .fc-inner {
    position: absolute; inset: 0;
    padding: 24px;
    color: #fff;
    display: flex; flex-direction: column; justify-content: flex-end;
    gap: 8px;
}
.featured-card .fc-badge {
    display: inline-flex; align-self: flex-start;
    padding: 4px 12px; border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255,255,255,0.28);
    margin-bottom: 4px;
}
.featured-card h3 {
    margin: 0;
    font-size: 22px; font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.featured-card p {
    margin: 0;
    font-size: 13.5px;
    color: rgba(255,255,255,0.88);
    max-width: 80%;
}
.featured-card .fc-cta {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 10px;
    color: #fff; font-weight: 700; font-size: 13.5px;
    align-self: flex-start;
}

/* ---------------- Restaurant section + cards ---------------- */
.resto-section { padding: 60px 0; }
.resto-section-alt { background: linear-gradient(180deg, var(--slate-100) 0%, var(--paper) 100%); }

.rs-head {
    display: flex; align-items: flex-end;
    justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.rs-head h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    letter-spacing: -0.8px;
    margin: 10px 0 6px;
}
.rs-head .rs-sub {
    color: var(--slate-500);
    font-size: 14.5px;
    margin: 0;
}
.rs-all {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--brand-dark);
    font-weight: 700; font-size: 14px;
    text-decoration: none;
    transition: gap 0.18s;
}
.rs-all:hover { gap: 10px; }

.resto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.resto-card {
    display: flex; flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: var(--paper);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--slate-200);
    transition: transform 0.20s ease, box-shadow 0.20s ease, border-color 0.20s ease;
}
.resto-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 201, 167, 0.4);
}
.rc-image {
    height: 168px;
    background-size: cover; background-position: center;
    background-color: var(--slate-100);
    position: relative;
}
.rc-rating {
    position: absolute; bottom: 10px; left: 10px;
    padding: 5px 10px; border-radius: 999px;
    background: var(--grad-1); color: #fff;
    font-size: 12.5px; font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.4);
}
.rc-rating.google {
    background: linear-gradient(135deg, #FFB74D 0%, #FB8C00 100%);
    box-shadow: 0 4px 12px rgba(251, 140, 0, 0.45);
}
.rc-price {
    position: absolute; top: 10px; right: 10px;
    padding: 5px 10px; border-radius: 8px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    color: var(--ink);
    font-size: 12px; font-weight: 700;
    letter-spacing: -1px;
}
.rc-body { padding: 14px 16px 16px; }
.rc-body h4 {
    margin: 0 0 6px;
    font-size: 16px; font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
}
.rc-meta {
    color: var(--slate-500);
    font-size: 12.5px;
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 4px;
}
.rc-meta i { font-size: 13px; }
.rc-cta {
    display: inline-flex; align-items: center; gap: 4px;
    color: var(--brand-dark);
    font-size: 13px; font-weight: 700;
    transition: gap 0.18s;
}
.resto-card:hover .rc-cta { gap: 8px; }

.rs-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--slate-500);
}
.rs-empty i { font-size: 56px; opacity: 0.4; display: block; margin-bottom: 14px; }
.rs-empty p { margin: 6px 0; font-size: 15px; }

/* ---------------- Customer flow (how to book) ---------------- */
.customer-flow { padding: 80px 0; background: var(--paper); }
.customer-flow .section-head { text-align: center; margin-bottom: 50px; }
.cf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px; margin: 0 auto;
}
.cf-step {
    position: relative;
    padding: 36px 28px 28px;
    border-radius: 22px;
    background: linear-gradient(180deg, var(--slate-100) 0%, var(--paper) 100%);
    border: 1px solid var(--slate-200);
    text-align: center;
}
.cf-num {
    position: absolute; top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--grad-1); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 14px;
    box-shadow: 0 6px 14px rgba(0, 137, 123, 0.35);
}
.cf-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: rgba(0, 201, 167, 0.10);
    color: var(--brand-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 18px;
}
.cf-step h3 {
    margin: 0 0 8px;
    font-size: 19px; font-weight: 700;
    letter-spacing: -0.4px;
}
.cf-step p {
    margin: 0;
    color: var(--slate-500);
    font-size: 14.5px; line-height: 1.55;
}

/* ---------------- App band ---------------- */
.app-band {
    padding: 90px 0;
    background:
        radial-gradient(circle at 90% 30%, rgba(0, 201, 167, 0.10), transparent 60%),
        linear-gradient(180deg, var(--paper) 0%, #F8FCFB 100%);
}
.app-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.app-h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.08;
    margin: 0 0 18px;
}
.app-sub {
    font-size: 16.5px; color: var(--slate-500);
    line-height: 1.6; margin: 0 0 24px;
    max-width: 480px;
}
.app-list { list-style: none; padding: 0; margin: 0 0 28px; }
.app-list li {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0;
    color: var(--ink); font-size: 14.5px;
}
.app-list li i { color: var(--brand-dark); font-size: 18px; }

.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.app-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 12px;
    background: var(--ink); color: #fff;
    text-decoration: none;
    transition: transform 0.15s ease;
}
.app-btn:hover { transform: translateY(-1px); }
.app-btn i { font-size: 26px; }
.app-btn span { display: flex; flex-direction: column; line-height: 1.1; }
.app-btn small { font-size: 11px; opacity: 0.75; }
.app-btn strong { font-size: 15px; font-weight: 700; }

.app-visual { display: flex; justify-content: center; }

@media (max-width: 900px) {
    .app-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------- Owner band (B2B nudge) ---------------- */
.owner-band {
    padding: 80px 0;
    background: linear-gradient(135deg, #0B0E11 0%, #1F2429 100%);
    color: #fff;
}
.owner-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 60px; align-items: center;
}
.section-pill-light {
    background: rgba(0, 201, 167, 0.18) !important;
    color: #00E5BC !important;
}
.owner-text h2 {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 14px 0 16px;
    line-height: 1.15;
}
.owner-text p {
    color: rgba(255,255,255,0.78);
    font-size: 16px; line-height: 1.6;
    margin: 0 0 26px;
    max-width: 480px;
}
.owner-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ghost-light {
    color: #fff !important;
    border-color: rgba(255,255,255,0.3) !important;
    background: rgba(255,255,255,0.04) !important;
}
.btn-ghost-light:hover {
    border-color: #00E5BC !important;
    color: #00E5BC !important;
}

.owner-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.os-card {
    padding: 22px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
}
.os-num {
    font-size: 28px; font-weight: 800;
    background: linear-gradient(135deg, #00E5BC 0%, #00C9A7 100%);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    letter-spacing: -0.8px;
    margin-bottom: 4px;
}
.os-label {
    color: rgba(255,255,255,0.7);
    font-size: 12.5px; font-weight: 500;
}

@media (max-width: 900px) {
    .owner-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------- Keşfet page ---------------- */
.kesfet-header {
    padding: 56px 0 28px;
    background:
        radial-gradient(circle at 80% 20%, rgba(0, 201, 167, 0.14), transparent 60%),
        linear-gradient(180deg, var(--paper) 0%, #F8FCFB 100%);
}
.kesfet-header h1 {
    font-size: clamp(32px, 4.5vw, 50px);
    font-weight: 800;
    letter-spacing: -1.3px;
    margin: 0 0 8px;
}
.kesfet-header > .container > p {
    color: var(--slate-500);
    font-size: 16px;
    margin: 0 0 28px;
    max-width: 560px;
}
.kesfet-bar {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 10px;
    max-width: 820px;
    background: var(--paper);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}
.kb-city, .kb-search {
    display: flex; align-items: center; gap: 10px;
    padding: 0 14px;
    border-radius: 11px;
    background: var(--slate-100);
}
.kb-city i, .kb-search i { color: var(--brand-dark); font-size: 16px; }
.kb-city select, .kb-search input {
    width: 100%; padding: 13px 0;
    border: none; background: transparent; outline: none;
    font: inherit; font-size: 14.5px;
    color: var(--ink);
}
.kb-city select { cursor: pointer; font-weight: 600; }
.kb-btn {
    padding: 0 26px; border-radius: 11px;
    background: var(--grad-1); color: #fff;
    border: none; font-weight: 700; font-size: 14.5px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 137, 123, 0.35);
    transition: transform 0.15s;
}
.kb-btn:hover { transform: translateY(-1px); }

.kesfet-chips {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 6px;
}
.kc {
    padding: 8px 14px; border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--slate-200);
    color: var(--slate-500);
    font-weight: 600; font-size: 13.5px;
    text-decoration: none;
    transition: all 0.15s;
}
.kc:hover { border-color: var(--brand); color: var(--brand-dark); }
.kc.active {
    background: var(--grad-1); color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.35);
}

.kesfet-results { padding: 40px 0 80px; }
.kesfet-count {
    color: var(--slate-500);
    font-size: 14px;
    margin-bottom: 22px;
}
.kesfet-count strong { color: var(--ink); }

@media (max-width: 700px) {
    .kesfet-bar { grid-template-columns: 1fr; }
    .kb-btn { padding: 14px; }
}

/* ============================================================
   RESTAURANT DETAIL PAGE — mobile RestaurantDetailScreen replica
   ============================================================ */
.detail-hero { position: relative; background: var(--paper); }

/* Foto carousel — yatay slide */
.detail-photo-stage {
    position: relative;
    height: clamp(280px, 56vw, 560px);
    overflow: hidden;
    background: #000;
}
.dp-track {
    display: flex; height: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
}
.dp-slide {
    flex: 0 0 100%; min-width: 100%; height: 100%;
    background-size: cover; background-position: center;
}
.dp-shade {
    position: absolute; left: 0; right: 0; bottom: 0;
    height: 50%;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 100%);
    pointer-events: none;
}

.dp-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    border: none; cursor: pointer;
    color: var(--ink); font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: all 0.18s;
}
.dp-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.dp-prev { left: 18px; }
.dp-next { right: 18px; }

.dp-dots {
    position: absolute; bottom: 16px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 6px;
}
.dp-dot {
    width: 8px; height: 8px; border-radius: 50%;
    border: none; padding: 0; cursor: pointer;
    background: rgba(255,255,255,0.5);
    transition: all 0.22s ease;
}
.dp-dot.active { background: #fff; width: 26px; border-radius: 999px; }

/* .dp-back kaldırıldı — tarayıcının kendi geri butonu kullanılıyor */

/* Hero head — başlık + yıldız + butonlar */
.detail-head {
    display: grid; grid-template-columns: 1fr auto;
    gap: 24px; align-items: flex-end;
    padding: 32px 24px 28px;
    border-bottom: 1px solid var(--slate-200);
}
.dh-chips {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-bottom: 12px;
}
.dh-chip {
    padding: 4px 12px; border-radius: 999px;
    background: rgba(0, 201, 167, 0.10);
    color: var(--brand-darker);
    font-size: 12px; font-weight: 600;
    letter-spacing: 0.2px;
}
.dh-chip.dh-price {
    background: var(--slate-100);
    color: var(--ink);
    letter-spacing: -1px;
}
.detail-head h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -1.4px;
    line-height: 1.05;
    margin: 0 0 10px;
}
.dh-meta {
    display: flex; flex-wrap: wrap; gap: 10px;
    align-items: center;
    color: var(--slate-500);
    font-size: 14.5px;
}
.dh-meta i { font-size: 13px; }
.dh-rate {
    display: inline-flex; align-items: center; gap: 5px;
    color: #fff; background: var(--grad-1);
    padding: 4px 12px; border-radius: 999px;
    font-weight: 700; font-size: 13px;
    box-shadow: 0 4px 12px rgba(0, 137, 123, 0.35);
}
.dh-sep { opacity: 0.5; }

.dh-actions { display: flex; gap: 10px; flex-shrink: 0; }
.dh-call, .dh-book {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 12px;
    font-weight: 700; font-size: 14.5px;
    text-decoration: none;
    transition: all 0.18s;
}
.dh-call {
    background: var(--paper); color: var(--ink);
    border: 1.5px solid var(--slate-200);
}
.dh-call:hover { border-color: var(--brand-dark); color: var(--brand-dark); }
.dh-book {
    background: var(--grad-1); color: #fff;
    box-shadow: 0 6px 18px rgba(0, 137, 123, 0.4);
}
.dh-book:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0, 137, 123, 0.5); }

@media (max-width: 800px) {
    .detail-head { grid-template-columns: 1fr; gap: 18px; padding: 24px 20px 24px; }
    .dh-actions { width: 100%; }
    .dh-call, .dh-book { flex: 1; justify-content: center; }
}

/* ---------------- Body grid ---------------- */
.detail-body { padding: 50px 0 100px; background: var(--paper); }
.detail-grid {
    display: grid; grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 900px) {
    .detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .detail-body { padding-bottom: 130px; } /* mobil fixed bar için boşluk */
}

.detail-main { min-width: 0; }
.db-block { margin-bottom: 44px; }
.db-block h2 {
    font-size: 22px; font-weight: 800;
    letter-spacing: -0.6px;
    margin: 0 0 14px;
}
.db-desc {
    color: var(--ink);
    font-size: 15.5px; line-height: 1.7;
    margin: 0;
    opacity: 0.85;
}

/* Galeri grid */
.db-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.dg-item {
    aspect-ratio: 4 / 3;
    background-size: cover; background-position: center;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease;
}
.dg-item:hover { transform: scale(1.02); }

/* Harita */
.db-map {
    border-radius: 18px; overflow: hidden;
    height: 320px;
    border: 1px solid var(--slate-200);
    margin-bottom: 14px;
}
.db-map iframe { width: 100%; height: 100%; border: 0; }
.db-addr {
    color: var(--slate-500);
    font-size: 14.5px;
    margin: 0 0 14px;
    display: flex; align-items: flex-start; gap: 8px;
}
.db-addr i { color: var(--brand-dark); margin-top: 3px; }
.db-mapbtn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px; border-radius: 11px;
    background: var(--slate-100); color: var(--ink);
    text-decoration: none; font-weight: 600; font-size: 14px;
    transition: all 0.15s;
    border: 1.5px solid transparent;
}
.db-mapbtn:hover { border-color: var(--brand-dark); color: var(--brand-dark); }

/* Google reviews */
.db-google-head { margin-bottom: 16px; }
.dgh-meta {
    display: flex; flex-wrap: wrap; gap: 12px;
    align-items: center;
    color: var(--slate-500);
    font-size: 13.5px;
    margin-top: 6px;
}
.dgh-rate {
    display: inline-flex; align-items: center; gap: 5px;
    color: #fff; background: linear-gradient(135deg, #FFB74D, #FB8C00);
    padding: 4px 12px; border-radius: 999px;
    font-weight: 700; font-size: 13px;
}
.dgh-link {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: none;
}
.dgh-link:hover { text-decoration: underline; }

.db-reviews { display: flex; flex-direction: column; gap: 16px; }
.db-review {
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
}
.dr-head { display: flex; gap: 12px; margin-bottom: 10px; align-items: center; }
.dr-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--grad-1); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px;
    overflow: hidden; flex-shrink: 0;
}
.dr-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dr-meta strong { display: block; font-size: 14.5px; color: var(--ink); }
.dr-stars { color: #FB8C00; font-size: 13px; margin-top: 2px; }
.dr-stars span { color: var(--slate-500); margin-left: 6px; font-weight: 500; }
.db-review p {
    color: var(--ink); opacity: 0.85;
    font-size: 14.5px; line-height: 1.6;
    margin: 0;
}

/* ---------------- Sticky sidebar ---------------- */
.detail-side {
    position: sticky; top: 90px;
    display: flex; flex-direction: column; gap: 14px;
}
@media (max-width: 900px) {
    .detail-side { position: static; }
}

.ds-card {
    padding: 22px 22px 20px;
    border-radius: 18px;
    background: var(--paper);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
}
.ds-card-title {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 14.5px;
    margin-bottom: 12px;
    color: var(--ink);
}
.ds-card-title i { color: var(--brand-dark); }

/* Reservation card */
.ds-book {
    background: linear-gradient(135deg, #FAFCFB 0%, #F0FAF8 100%);
    border-color: rgba(0, 201, 167, 0.25);
    box-shadow: 0 12px 32px rgba(0, 137, 123, 0.12);
}
.dsb-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dsb-rate {
    color: #fff; background: var(--grad-1);
    padding: 4px 12px; border-radius: 999px;
    font-weight: 700; font-size: 13px;
}
.dsb-price {
    color: var(--ink); letter-spacing: -1px;
    font-weight: 700; font-size: 16px;
}
.dsb-title {
    font-size: 19px; font-weight: 800;
    letter-spacing: -0.6px;
    margin-bottom: 6px;
}
.dsb-sub {
    color: var(--slate-500);
    font-size: 13.5px; line-height: 1.5;
    margin: 0 0 16px;
}
.dsb-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px;
    border-radius: 14px;
    background: var(--grad-1); color: #fff;
    font-weight: 800; font-size: 15.5px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 137, 123, 0.45);
    transition: transform 0.18s, box-shadow 0.18s;
}
.dsb-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0, 137, 123, 0.55); }

.dsb-feat {
    margin-top: 14px;
    display: flex; gap: 8px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.dsb-feat span {
    flex: 1 1 auto;
    text-align: center;
    color: var(--slate-500);
    font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.2px;
    display: flex; align-items: center; gap: 4px;
    justify-content: center;
}
.dsb-feat i { color: var(--brand-dark); font-size: 13px; }

/* Hours */
.ds-hours { display: flex; flex-direction: column; gap: 4px; }
.ds-hours-row {
    display: flex; justify-content: space-between;
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--slate-500);
}
.ds-hours-row.today {
    color: var(--ink);
    font-weight: 700;
}

/* Info */
.ds-info-row {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 0;
    color: var(--ink);
    font-size: 14px;
}
.ds-info-row i { color: var(--brand-dark); font-size: 15px; flex-shrink: 0; }
.ds-info-row a {
    color: var(--ink);
    text-decoration: none;
}
.ds-info-row a:hover { color: var(--brand-dark); }

/* ---------------- Mobile fixed bottom bar ---------------- */
.detail-fixed-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 40;
    padding: 12px 20px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--slate-200);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.10);
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.dfb-name { font-weight: 700; font-size: 15px; }
.dfb-meta { color: var(--slate-500); font-size: 12.5px; margin-top: 2px; }
.dfb-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 12px 20px; border-radius: 12px;
    background: var(--grad-1); color: #fff;
    font-weight: 700; font-size: 14.5px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 137, 123, 0.4);
}
@media (max-width: 900px) {
    .detail-fixed-bar { display: flex; }
}

/* ============================================================
   BOOKING LINK SHOWCASE — restoran sayfasında "Online Rezervasyon Linki"
   panel'deki kartın görsel kopyası (kullanıcı vizyon edebilsin)
   ============================================================ */
.booking-link-showcase {
    padding: 80px 0 90px;
    background: linear-gradient(180deg, var(--paper) 0%, #F5FAF8 100%);
}
.booking-link-showcase .section-head {
    text-align: center;
    margin-bottom: 36px;
}
.booking-link-showcase h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    letter-spacing: -1px;
    margin: 12px 0 12px;
    line-height: 1.1;
}
.booking-link-showcase > .container > .section-head > p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--slate-500);
    font-size: 16px;
    line-height: 1.6;
}

.bls-card {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: 22px;
    padding: 28px 32px;
    border: 1px solid rgba(0, 201, 167, 0.22);
    box-shadow: 0 20px 60px rgba(0, 137, 123, 0.12), 0 8px 20px rgba(11, 14, 17, 0.08);
}

/* Card head */
.bls-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--slate-200);
    margin-bottom: 24px;
}
.bls-head-left {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}
.bls-head-icon {
    width: 42px; height: 42px; border-radius: 12px;
    background: var(--grad-1);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.bls-head-title {
    font-size: 18px; font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}
.bls-head-sub {
    color: var(--slate-500);
    font-size: 14px; line-height: 1.55;
    max-width: 640px;
}
.bls-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 999px;
    background: rgba(0, 201, 167, 0.14);
    color: var(--brand-darker);
    font-size: 12.5px; font-weight: 700;
    flex-shrink: 0;
}
.bls-pill i { font-size: 11px; }

/* URL satırı */
.bls-url-row {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    align-items: stretch;
}
.bls-url-input {
    flex: 1;
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px;
    background: var(--slate-100);
    border: 1px solid var(--slate-200);
    border-radius: 12px;
    min-width: 0;
}
.bls-url-input i {
    color: var(--brand-dark);
    font-size: 18px;
    flex-shrink: 0;
}
.bls-url-input code {
    font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace;
    font-size: 14.5px;
    color: var(--ink);
    background: transparent;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.bls-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 600; font-size: 14px;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}
.bls-btn-ghost {
    background: var(--paper);
    border-color: var(--slate-200);
    color: var(--slate-500);
}
.bls-btn-ghost:disabled { cursor: not-allowed; opacity: 0.85; }
.bls-btn-primary {
    background: var(--grad-1);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 137, 123, 0.35);
}
.bls-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0, 137, 123, 0.45); }

/* Body: QR + tips */
.bls-body {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: start;
}
@media (max-width: 800px) {
    .bls-body { grid-template-columns: 1fr; gap: 30px; }
    .bls-qr { margin: 0 auto; }
}

.bls-qr {
    display: flex; flex-direction: column;
    align-items: center;
    text-align: center;
}
.bls-qr img {
    width: 220px; height: 220px;
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    background: #fff;
    padding: 4px;
}
.bls-qr-caption {
    margin-top: 12px;
    color: var(--slate-500);
    font-size: 13px;
    max-width: 220px;
}

.bls-tips {
    display: flex; flex-direction: column;
}
.bls-tips-head {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 14px;
}
.bls-tips-head i { color: #FFB400; }

.bls-tip {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 14px 0;
    border-top: 1px solid var(--slate-200);
}
.bls-tip:first-of-type { border-top: none; padding-top: 4px; }

.bls-tip-icon {
    width: 38px; height: 38px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 14, 17, 0.12);
}
.bls-tip-icon span { font-size: 16px; line-height: 1; }
.bls-tip > div:last-child strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}
.bls-tip > div:last-child p {
    margin: 0;
    color: var(--slate-500);
    font-size: 13.5px;
    line-height: 1.55;
}

@media (max-width: 700px) {
    .bls-card { padding: 22px 18px; }
    .bls-card-head { flex-direction: column; gap: 12px; padding-bottom: 18px; margin-bottom: 18px; }
    .bls-pill { align-self: flex-start; }
    .bls-url-row { flex-direction: column; gap: 8px; }
    .bls-btn { justify-content: center; }
}

/* ============================================================
   RESTAURANT DETAIL — Kompakt menü özeti (chip strip + CTA)
   Tam menü ayrı sayfada (/restoranlar/{slug}/menu)
   ============================================================ */
.menu-block-compact {
    /* db-block stillerini miras alır */
}
.menu-tabs-readonly .menu-tab {
    cursor: default;
    pointer-events: none;
}
.menu-fullbtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    background: var(--grad-1);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 137, 123, 0.32);
    transition: transform 0.18s, box-shadow 0.18s;
    margin-top: 8px;
}
.menu-fullbtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 137, 123, 0.45);
    color: #fff;
}
.menu-fullbtn i:first-child { font-size: 18px; }
.menu-fullbtn i:last-child { font-size: 14px; opacity: 0.85; }

/* ============================================================
   RESTORAN MENÜ SAYFASI — /restoranlar/{slug}/menu
   Paylaşılabilir, şık, sticky-nav'lı
   ============================================================ */
.rm-hero {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
}
.rm-hero-shade {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(11,14,17,0.35) 0%, rgba(11,14,17,0.78) 100%);
}
.rm-hero-inner {
    position: relative; z-index: 2;
    padding: 32px 24px 38px;
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: end;
    gap: 18px;
    min-height: 280px;
}
.rm-back {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.20);
    transition: all 0.18s;
    align-self: start;
    margin-top: 8px;
}
.rm-back:hover { background: rgba(255,255,255,0.28); color: #fff; transform: translateX(-2px); }

.rm-hero-meta { min-width: 0; }
.rm-eyebrow {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 201, 167, 0.22);
    backdrop-filter: blur(8px);
    color: #95F2D7;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
    border: 1px solid rgba(0, 201, 167, 0.35);
}
.rm-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -1.4px;
    margin: 0 0 12px;
    line-height: 1.05;
    text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.rm-hero p {
    margin: 0;
    color: rgba(255,255,255,0.92);
    font-size: 14.5px;
    font-weight: 500;
    display: flex; flex-wrap: wrap; gap: 6px;
    align-items: center;
}
.rm-hero p i { color: rgba(255,255,255,0.7); }
.rm-sep { opacity: 0.5; }

.rm-book-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 26px;
    border-radius: 14px;
    background: var(--grad-1);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 8px 24px rgba(0, 137, 123, 0.55);
    transition: transform 0.18s, box-shadow 0.18s;
    align-self: end;
    white-space: nowrap;
}
.rm-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 137, 123, 0.65);
    color: #fff;
}

@media (max-width: 800px) {
    .rm-hero { min-height: 0; }
    .rm-hero-inner {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 18px 16px 24px;
        min-height: 0;
        align-items: start;
    }
    .rm-back { width: 38px; height: 38px; font-size: 18px; margin-top: 0; }
    .rm-book-btn { display: none; } /* mobilde rm-fixed-bar var */
    .rm-hero h1 { letter-spacing: -0.6px; font-size: clamp(22px, 6vw, 32px); margin-bottom: 8px; }
    .rm-hero p { font-size: 13px; }
    .rm-eyebrow { font-size: 10.5px; padding: 4px 10px; margin-bottom: 8px; }
}
@media (max-width: 480px) {
    .rm-hero-inner { padding: 14px 14px 20px; gap: 10px; grid-template-columns: 36px 1fr; }
    .rm-back { width: 34px; height: 34px; font-size: 16px; }
    .rm-hero h1 { font-size: 21px; }
}

.rm-empty {
    padding: 80px 24px;
    text-align: center;
}
.rm-empty i {
    font-size: 64px;
    color: var(--slate-200);
    display: block;
    margin-bottom: 18px;
}
.rm-empty h2 { margin: 0 0 8px; font-size: 24px; font-weight: 800; }
.rm-empty p { color: var(--slate-500); margin: 0 0 22px; }

.rm-content {
    padding: 40px 0 120px;
    background: linear-gradient(180deg, #FAFCFB 0%, var(--paper) 100%);
    min-height: 60vh;
}
.rm-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    min-width: 0;
    max-width: 100%;
}
.rm-grid > * { min-width: 0; }      /* her grid item shrinkable */
@media (max-width: 900px) {
    .rm-grid { grid-template-columns: 1fr; gap: 18px; }
    .rm-content { padding: 24px 0 130px; }
    .rm-content .container { padding-left: 16px; padding-right: 16px; }
}

/* Sol sticky navigation */
.rm-nav {
    position: sticky;
    top: 80px;
    min-width: 0;       /* grid item shrinkable */
    max-width: 100%;
}
@media (max-width: 900px) {
    .rm-nav { position: static; }
}
.rm-nav-card {
    background: var(--paper);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-width: 0;
    max-width: 100%;
}
.rm-nav-head {
    padding: 16px 18px;
    border-bottom: 1px solid var(--slate-200);
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.08), rgba(0, 137, 123, 0.04));
}
.rm-nav-head strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.5px;
}
.rm-nav-head span {
    color: var(--slate-500);
    font-size: 13px;
}
.rm-nav-list {
    display: flex; flex-direction: column;
    padding: 8px 0;
    max-height: 60vh;
    overflow-y: auto;
    min-width: 0;
}
@media (max-width: 900px) {
    .rm-nav-list {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px;
        max-height: none;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .rm-nav-list::-webkit-scrollbar { display: none; }
}
.rm-nav-item {
    display: flex; justify-content: space-between; align-items: center;
    gap: 8px;
    padding: 10px 18px;
    color: var(--slate-500);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
    white-space: nowrap;
}
@media (max-width: 900px) {
    .rm-nav-item {
        border-left: none;
        border-radius: 999px;
        background: var(--slate-100);
        padding: 8px 14px;
        font-size: 13.5px;
        flex-shrink: 0;
    }
}
.rm-nav-item:hover {
    background: rgba(0, 201, 167, 0.05);
    color: var(--brand-dark);
}
.rm-nav-item.active {
    background: rgba(0, 201, 167, 0.08);
    color: var(--brand-dark);
    border-left-color: var(--brand-dark);
    font-weight: 700;
}
@media (max-width: 900px) {
    .rm-nav-item.active {
        background: var(--grad-1);
        color: #fff;
    }
    .rm-nav-item.active .rm-nav-count { color: rgba(255,255,255,0.85); }
}
.rm-nav-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.rm-nav-count {
    background: var(--slate-100);
    color: var(--slate-500);
    font-size: 11.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    flex-shrink: 0;
}
.rm-nav-item.active .rm-nav-count {
    background: rgba(0, 137, 123, 0.18);
    color: var(--brand-dark);
}

/* Ana içerik */
.rm-main { min-width: 0; }
.rm-cat {
    margin-bottom: 50px;
    scroll-margin-top: 30px;
}
.rm-cat:last-child { margin-bottom: 0; }
.rm-cat-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 18px;
    border-bottom: 2px solid var(--slate-100);
}
.rm-cat-head h2 {
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 800;
    letter-spacing: -0.7px;
    margin: 0;
    color: var(--ink);
}
.rm-cat-meta {
    color: var(--slate-500);
    font-size: 13.5px;
    font-weight: 500;
}

.rm-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (max-width: 700px) {
    .rm-items { grid-template-columns: 1fr; gap: 12px; }
}

.rm-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--slate-200);
    border-radius: 18px;
    transition: all 0.18s ease;
}
.rm-item:hover {
    border-color: rgba(0, 201, 167, 0.4);
    box-shadow: 0 14px 30px rgba(11, 14, 17, 0.06);
    transform: translateY(-3px);
}
.rm-item.unavailable { opacity: 0.55; }

.rm-item-photo {
    width: 120px; height: 120px;
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    background-color: var(--slate-100);
    flex-shrink: 0;
}
.rm-no-photo {
    display: flex; align-items: center; justify-content: center;
    color: var(--slate-200);
    font-size: 36px;
}

.rm-item-body {
    min-width: 0;
    display: flex; flex-direction: column;
}
.rm-item-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}
.rm-item-head h3 {
    margin: 0;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}
.rm-item-price {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.4px;
    white-space: nowrap;
}
.rm-item-price small { font-size: 13px; margin-left: 2px; opacity: 0.7; }
.rm-item-price-soft {
    color: var(--slate-500);
    font-weight: 600;
    font-size: 13px;
}
.rm-item-desc {
    margin: 0;
    color: var(--slate-500);
    font-size: 13.5px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rm-unavail-pill {
    margin-top: 10px;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--slate-500);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

@media (max-width: 540px) {
    .rm-item { grid-template-columns: 88px 1fr; gap: 12px; padding: 10px; border-radius: 14px; }
    .rm-item-photo { width: 88px; height: 88px; border-radius: 10px; }
    .rm-item-head h3 { font-size: 14.5px; }
    .rm-item-price { font-size: 15.5px; }
    .rm-item-desc { font-size: 12.5px; -webkit-line-clamp: 2; }
    .rm-cat { margin-bottom: 32px; }
    .rm-cat-head { padding-bottom: 10px; margin-bottom: 12px; }
    .rm-cat-head h2 { font-size: 19px; letter-spacing: -0.4px; }
    .rm-cat-meta { font-size: 12px; }
    .rm-nav-card { border-radius: 14px; }
    .rm-nav-head { padding: 12px 14px; }
    .rm-nav-head strong { font-size: 16px; }
    .rm-nav-head span { font-size: 12px; }
}

/* Mobile fixed bottom bar */
.rm-fixed-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 40;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid var(--slate-200);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.10);
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.rm-fb-name {
    font-weight: 700; font-size: 14.5px; color: var(--ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 50vw;
}
.rm-fb-meta { color: var(--slate-500); font-size: 11.5px; margin-top: 2px; }
.rm-fb-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 16px; border-radius: 12px;
    background: var(--grad-1); color: #fff;
    font-weight: 700; font-size: 13.5px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 137, 123, 0.4);
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .rm-fixed-bar { display: flex; }
}
@media (max-width: 380px) {
    .rm-fb-btn { padding: 9px 12px; font-size: 12.5px; }
    .rm-fb-btn i { display: none; }
}

/* ============================================================
   ESKİ RESTAURANT DETAIL menü stilleri — kullanılmıyor ama
   geriye dönük uyumluluk için kalsın (detayda compact var)
   ============================================================ */
.menu-block { /* db-block türevi — başlık + tab + sectionlar */ }
.menu-block-head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 12px; margin-bottom: 14px;
}
.menu-block-head h2 { margin: 0; }
.menu-count {
    color: var(--slate-500);
    font-size: 13.5px;
    font-weight: 500;
}

/* Tab strip — yatay scroll, sticky-ish */
.menu-tabs {
    display: flex; gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 14px;
    margin: 0 -2px 18px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { height: 6px; }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--slate-200); border-radius: 3px; }
.menu-tab {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--ink);
    font-size: 13.5px; font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.15s ease;
}
.menu-tab span { color: var(--slate-500); font-weight: 500; }
.menu-tab:hover {
    background: rgba(0, 201, 167, 0.10);
    border-color: rgba(0, 201, 167, 0.3);
    color: var(--brand-dark);
}

/* Kategori bölümü */
.menu-section {
    margin-bottom: 36px;
    scroll-margin-top: 80px; /* tab tıkınca üst çubuk altına gelmesin */
}
.menu-section:last-child { margin-bottom: 0; }
.menu-section-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 14px;
    color: var(--ink);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--slate-100);
}

/* Item grid — 1 / 2 sütun responsive */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
@media (max-width: 800px) {
    .menu-grid { grid-template-columns: 1fr; }
}

.menu-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    padding: 14px;
    background: var(--paper);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    transition: all 0.18s ease;
}
.menu-card:hover {
    border-color: rgba(0, 201, 167, 0.4);
    box-shadow: 0 10px 24px rgba(11, 14, 17, 0.06);
    transform: translateY(-2px);
}
.menu-card.unavailable { opacity: 0.6; }

.mc-photo {
    width: 110px; height: 110px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: var(--slate-100);
    flex-shrink: 0;
}
.mc-no-photo {
    display: flex; align-items: center; justify-content: center;
    color: var(--slate-200);
    font-size: 32px;
}

.mc-body {
    min-width: 0;
    display: flex; flex-direction: column;
}
.mc-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}
.mc-head h4 {
    margin: 0;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.2px;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}
.mc-price {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.mc-price small { font-size: 12px; margin-left: 2px; opacity: 0.7; }
.mc-price-soft {
    color: var(--slate-500);
    font-weight: 600;
    font-size: 13px;
}
.mc-desc {
    margin: 0;
    color: var(--slate-500);
    font-size: 13px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mc-unavail-pill {
    margin-top: 8px;
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--slate-500);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

@media (max-width: 540px) {
    .menu-card { grid-template-columns: 90px 1fr; gap: 12px; padding: 12px; }
    .mc-photo { width: 90px; height: 90px; }
    .mc-head h4 { font-size: 14.5px; }
    .mc-price { font-size: 15px; }
}

