/* =====================================================
   EATUS — Siyah & Beyaz Tema
   ===================================================== */

* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black: #000;
    --white: #fff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-lg: 0 10px 30px rgba(0,0,0,.08);
}

html, body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--gray-50);
    color: var(--black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--black); text-decoration: none; }
a:hover { opacity: .7; }

img { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; }

/* ----- Layout ----- */
.app { display: flex; min-height: 100vh; }

.sidebar {
    width: 260px;
    background: var(--black);
    color: var(--white);
    padding: 24px 0;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.sidebar .brand {
    font-size: 24px;
    font-weight: 700;
    padding: 0 24px 24px;
    letter-spacing: -.5px;
    border-bottom: 1px solid var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ----- Logo ----- */
.logo { height: 40px; width: auto; display: block; object-fit: contain; }
.logo-sidebar { height: 44px; filter: invert(1) brightness(1.1); }
.logo-auth { height: 56px; margin: 0 auto 8px; }
.public-header .logo { height: 36px; }

/* Mobil: logo orantısını koru, daha makul boyut */
@media (max-width: 768px) {
    .public-header .public-logo,
    .cust-brand img {
        height: 50px !important;
        max-height: 50px !important;
        width: auto !important;
        max-width: 200px;
        object-fit: contain;
    }
    .logo-sidebar {
        height: auto !important;
        max-height: 36px !important;
        width: auto !important;
    }
    .logo-auth {
        max-height: 72px !important;
        max-width: 70% !important;
        width: auto !important;
        height: auto !important;
    }
    /* Mobilde gizlenecek navigasyon linkleri */
    .hide-mobile { display: none !important; }
}

.sidebar .nav { padding: 16px 12px; }
.sidebar .nav-section { color: var(--gray-500); font-size: 11px; font-weight: 600; text-transform: uppercase; padding: 16px 12px 8px; letter-spacing: 1px; }
.sidebar a {
    display: flex; align-items: center; gap: 12px;
    color: var(--gray-300); padding: 12px;
    border-radius: 8px; font-size: 14px; font-weight: 500;
    transition: all .15s;
}
.sidebar a:hover { background: var(--gray-900); color: var(--white); opacity: 1; }
.sidebar a.active { background: var(--white); color: var(--black); }
.sidebar a i { width: 18px; height: 18px; }

/* Açılır/kapanır admin grupları */
.sidebar .nav-group { margin: 2px 0; }
.sidebar .nav-group > summary {
    list-style: none;
    cursor: pointer;
    display: flex; align-items: center; gap: 12px;
    color: var(--gray-300); padding: 12px;
    border-radius: 8px; font-size: 14px; font-weight: 600;
    transition: background .15s, color .15s;
    user-select: none;
}
.sidebar .nav-group > summary::-webkit-details-marker { display: none; }
.sidebar .nav-group > summary:hover { background: var(--gray-900); color: var(--white); }
.sidebar .nav-group > summary i { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar .nav-group > summary > span { flex: 1; }
.sidebar .nav-group > summary .nav-group-chev {
    width: 16px !important; height: 16px !important;
    transition: transform .2s;
    opacity: .6;
}
.sidebar .nav-group[open] > summary .nav-group-chev { transform: rotate(180deg); }
.sidebar .nav-group .nav-group-items {
    margin-top: 2px;
    display: flex; flex-direction: column; gap: 1px;
    padding-left: 8px;
    border-left: 2px solid var(--gray-800);
    margin-left: 18px;
}
.sidebar .nav-group .nav-group-items a {
    padding: 9px 12px;
    font-size: 13px; font-weight: 500;
}
.sidebar .nav-group .nav-group-items a i { width: 14px; height: 14px; opacity: .7; }
.sidebar .nav-group .nav-group-items a.active i { opacity: 1; }

.sidebar .user-card {
    margin: 16px 12px; padding: 16px; border-radius: 8px;
    background: var(--gray-900); border: 1px solid var(--gray-800);
}
.sidebar .user-card .name { font-weight: 600; font-size: 14px; }
.sidebar .user-card .role { font-size: 11px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

.main {
    flex: 1;
    min-width: 0;
}

.topbar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: sticky; top: 0; z-index: 50;
}
.topbar h1 { font-size: 20px; font-weight: 700; }
.topbar .actions { display: flex; align-items: center; gap: 12px; }

.content { padding: 32px; max-width: 1400px; margin: 0 auto; }

/* ----- Cards ----- */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
}
.card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.card-head h2 { font-size: 16px; font-weight: 600; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* Inline grid-template-columns kullanan tüm yapılar mobilde tek sütun olsun */
@media (max-width: 768px) {
    .grid[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
    /* Tablolar mobilde yatay kaydırılabilir */
    .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    /* Sticky paneller mobilde sticky olmasın (form panelleri taşırma yapıyor) */
    .card[style*="position:sticky"], .card[style*="position: sticky"] { position: static !important; }
}

/* ----- Stats ----- */
.stat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
}
.stat .label { color: var(--gray-500); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.stat .value { font-size: 28px; font-weight: 700; margin-top: 8px; }
.stat .delta { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

/* ----- Forms ----- */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: var(--gray-700); }
.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font: inherit;
    font-size: 14px;
    background: var(--white);
    color: var(--black);
    transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--black);
}
.field textarea { resize: vertical; min-height: 80px; }

/* ----- Buttons ----- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px;
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    border-radius: 8px;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
}
.btn:hover { opacity: .85; }
.btn-light {
    background: var(--white);
    color: var(--black);
    border: 1px solid var(--gray-300);
}
.btn-light:hover { background: var(--gray-100); opacity: 1; }
.btn-danger { background: #dc2626; border-color: #dc2626; }
.btn-success { background: #16a34a; border-color: #16a34a; }
.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-block { width: 100%; }
.btn-icon { width: 36px; height: 36px; padding: 0; }

/* ----- Tables ----- */
.table-wrap { overflow-x: auto; }
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.table th {
    text-align: left;
    padding: 12px 16px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
}
.table tr:hover { background: var(--gray-50); }

/* ----- Badges ----- */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    background: var(--gray-200);
    color: var(--gray-700);
}
.badge-ok { background: #dcfce7; color: #166534; }
.badge-bad { background: #fee2e2; color: #991b1b; }
.badge-warn { background: #fef3c7; color: #92400e; }
.badge-info { background: var(--black); color: var(--white); }

/* ----- Alerts ----- */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    margin-bottom: 16px;
    font-size: 14px;
}
.alert-success { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.alert-error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.alert-info { background: var(--gray-100); }

/* ----- Auth pages ----- */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: var(--white);
}
.auth-card {
    width: 100%;
    max-width: 460px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.auth-card .brand {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
}
.auth-card .subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 32px;
}
.role-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    background: var(--gray-100);
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.role-tabs button {
    background: transparent;
    border: none;
    padding: 10px 6px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-600);
    transition: all .15s;
}
.role-tabs button.active {
    background: var(--white);
    color: var(--black);
    box-shadow: var(--shadow);
}

/* ----- Restoran kartı ----- */
.rest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.rest-card {
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .15s, box-shadow .15s;
}
.rest-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.rest-card .cover {
    height: 160px;
    background: #fff;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    border-bottom: 2px solid var(--black);
}
.rest-card .body { padding: 16px; }
.rest-card h3 { font-size: 16px; font-weight: 700; }
.rest-card .meta { display: flex; gap: 10px; color: var(--gray-500); font-size: 13px; margin-top: 6px; }
.rest-card .footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; margin-top: 12px; border-top: 1px solid var(--gray-100); font-size: 13px; }

/* ----- Restoran kartı: temiz alt bilgi listesi ----- */
.rest-card-head {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.rest-card-head h3 {
    flex: 1; min-width: 0;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.status-dot {
    display: inline-block; flex-shrink: 0;
    width: 10px; height: 10px; border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0,0,0,0);
}
.status-open   { background: #16a34a; box-shadow: 0 0 0 3px rgba(22,163,74,.18); }
.status-closed { background: #dc2626; box-shadow: 0 0 0 3px rgba(220,38,38,.18); }

.rest-info-list {
    list-style: none; margin: 12px 0 0; padding: 12px 0 0;
    border-top: 1px solid var(--gray-100);
    display: flex; flex-direction: column; gap: 8px;
    font-size: 13px;
}
.rest-info-list li {
    display: grid;
    grid-template-columns: 22px auto 1fr;
    align-items: center; gap: 8px;
}
.ri-icon { font-size: 14px; line-height: 1; text-align: center; }
.ri-label { color: var(--gray-500); font-weight: 500; }
.ri-value { text-align: right; font-weight: 600; color: var(--gray-800); }
.ri-value.ri-ok  { color: #166534; }
.ri-value.ri-bad { color: #991b1b; }

/* ----- Detaylı filtre kartı ----- */
.filter-card { padding: 14px 16px; }
.filter-toprow {
    display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.filter-search {
    flex: 1; min-width: 200px;
    padding: 12px 14px;
    border: 1px solid var(--gray-300); border-radius: 8px;
    font-size: 14px;
}
.filter-toggle-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 16px;
    border: 1px solid var(--gray-300); border-radius: 8px;
    background: #fff; color: var(--gray-800);
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
    position: relative;
}
.filter-toggle-btn:hover { background: var(--gray-50); }
.filter-toggle-btn.open { background: #000; color: #fff; border-color: #000; }
.filter-count {
    background: #dc2626; color: #fff;
    border-radius: 999px;
    min-width: 20px; height: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
    padding: 0 6px;
}
.filter-view-toggle {
    margin-left: auto;
    display: flex; gap: 2px;
    background: var(--gray-100); padding: 3px;
    border-radius: 8px;
}
.filter-view-toggle a {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px; font-weight: 600;
    color: var(--gray-700); text-decoration: none;
    white-space: nowrap;
}
.filter-view-toggle a.is-active { background: #000; color: #fff; }

.filter-panel {
    display: none;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-200);
}
.filter-panel.open { display: block; }
.filter-group { margin-bottom: 14px; }
.filter-group > label {
    display: block; font-size: 13px; font-weight: 700;
    color: var(--gray-700); margin-bottom: 8px;
}
.pill-group {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.pill-radio, .pill-check {
    cursor: pointer;
    user-select: none;
}
.pill-radio input, .pill-check input { display: none; }
.pill-radio span, .pill-check span {
    display: inline-block;
    padding: 7px 14px;
    background: var(--gray-100);
    border-radius: 999px;
    font-size: 13px; font-weight: 600;
    color: var(--gray-700);
    border: 1px solid transparent;
    transition: background .12s, color .12s, border-color .12s;
}
.pill-radio input:checked + span,
.pill-check input:checked + span {
    background: #000; color: #fff; border-color: #000;
}
.pill-radio span:hover, .pill-check span:hover { background: var(--gray-200); }
.pill-radio input:checked + span:hover,
.pill-check input:checked + span:hover { background: #1a1a1a; }

.filter-actions {
    display: flex; gap: 10px; justify-content: flex-end;
    padding-top: 8px; border-top: 1px solid var(--gray-100);
}

@media (max-width: 540px) {
    .filter-toprow { gap: 8px; }
    .filter-search { width: 100%; flex: 1 1 100%; }
    .filter-toggle-btn { flex: 1; justify-content: center; }
    .filter-view-toggle { margin-left: 0; flex: 0 0 auto; }
    .filter-actions { flex-direction: column-reverse; }
    .filter-actions .btn { width: 100%; }
}

/* ----- Restoran detay başlığı + alt-menü pill'leri ----- */
.rest-detail-head { padding: 16px 18px; }
.rest-detail-top { display: flex; align-items: center; gap: 14px; }
.rest-detail-logo {
    width: 72px; height: 72px; border-radius: 14px;
    object-fit: contain; background: #fff;
    border: 1px solid var(--gray-200);
    padding: 4px;
    flex-shrink: 0;
}
.rest-detail-title {
    flex: 1; min-width: 0;
    font-size: 22px; font-weight: 800; letter-spacing: -.5px;
    line-height: 1.15;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.rest-fav-btn {
    flex-shrink: 0;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gray-100); border: 1px solid var(--gray-200);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background .15s, color .15s, transform .1s;
    color: var(--gray-700);
}
.rest-fav-btn:hover { background: var(--gray-200); }
.rest-fav-btn:active { transform: scale(.92); }
.rest-fav-btn.is-fav { background: #000; color: #fff; border-color: #000; }
.rest-fav-btn i { width: 18px; height: 18px; }
.rest-fav-btn.is-fav i { fill: currentColor; }

.rest-pills {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 14px;
}
.rest-pill {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--gray-100); color: var(--gray-700);
    padding: 6px 12px; border-radius: 999px;
    font-size: 12.5px; font-weight: 600;
    white-space: nowrap;
}
.rest-pill-success { background: #dcfce7; color: #166534; }
.rest-pill-error   { background: #fee2e2; color: #991b1b; }
.rest-pill-tag     { background: #fef3c7; color: #92400e; }

/* Pill içindeki çok uzun yazılar (örn. uzun adres) gerekirse satır kırsın */
.rest-pill { white-space: normal; word-break: break-word; max-width: 100%; }

@media (max-width: 540px) {
    .rest-detail-head { padding: 14px; }
    .rest-detail-logo { width: 56px; height: 56px; border-radius: 12px; padding: 3px; }
    .rest-detail-title { font-size: 19px; }
    /* Mobilde tüm pill'ler görünür: scroll yerine alt alta wrap */
    .rest-pills { flex-wrap: wrap; }
}

/* ----- Menü item ----- */
.menu-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    margin-bottom: 12px;
    transition: border-color .15s, box-shadow .15s, transform .1s;
}
.menu-item:hover { border-color: var(--gray-400); box-shadow: var(--shadow); }
.menu-item:active { transform: scale(.998); }
.menu-item .img {
    width: 100px; height: 100px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-500);
    font-size: 24px;
}
.menu-item .info { flex: 1; min-width: 0; }
.menu-item h4 { font-size: 16px; font-weight: 600; }
.menu-item .desc { color: var(--gray-500); font-size: 13px; margin-top: 4px; }
.menu-item .tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.menu-item .price { font-size: 18px; font-weight: 700; }
.menu-item .actions { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; gap: 8px; }

.tag {
    display: inline-block;
    padding: 3px 8px;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 11px;
    font-weight: 500;
    border-radius: 4px;
}
.tag-warn { background: #fef3c7; color: #92400e; }
.tag-ok { background: #dcfce7; color: #166534; }

/* ----- Cart / Sepet ----- */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}
.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    overflow: hidden;
}
.qty-control button {
    background: var(--white);
    border: none;
    width: 30px; height: 30px;
    font-size: 16px;
    font-weight: 600;
}
.qty-control button:hover { background: var(--gray-100); }
.qty-control span { padding: 0 12px; font-weight: 600; }

/* ----- Map ----- */
.map-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}
.map-container.small { height: 280px; }

/* ----- QR ----- */
.qr-display {
    background: var(--white);
    padding: 32px;
    border: 2px solid var(--black);
    border-radius: var(--radius);
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}
.qr-display canvas, .qr-display img { margin: 16px auto; }
.qr-display .label { color: var(--gray-500); font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.qr-display .amount { font-size: 36px; font-weight: 800; margin: 8px 0; }

/* ----- Helpers ----- */
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.gap-1 { gap: 8px; } .gap-2 { gap: 16px; } .gap-3 { gap: 24px; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.text-muted { color: var(--gray-500); }
.text-sm { font-size: 13px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 24px; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.empty { text-align: center; padding: 48px 20px; color: var(--gray-500); }

/* ----- Public header (anasayfa, register, login) ----- */
.public-header {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 32px;
}
.public-header .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.public-header .brand {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -.5px;
}
.public-header .nav { display: flex; gap: 24px; align-items: center; }

.hero {
    background: var(--black);
    color: var(--white);
    padding: 80px 32px;
    text-align: center;
}
.hero h1 {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 16px;
    line-height: 1.1;
}
.hero p {
    font-size: 18px;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* ----- Mobile ----- */
@media (max-width: 768px) {
    .sidebar { width: 70px; }
    .sidebar .brand { padding: 0 12px 24px; font-size: 18px; }
    .sidebar a { justify-content: center; padding: 12px 0; }
    .sidebar a span, .sidebar .nav-section, .sidebar .user-card { display: none; }
    .content { padding: 16px; }
    .topbar { padding: 12px 16px; }
    .hero h1 { font-size: 36px; }
}

/* ===================================================
   ANASAYFA SLIDER
   =================================================== */
.slider-wrap {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    background: #000;
}
.slider-track {
    display: flex;
    height: 100%;
    transition: transform .6s ease;
}
.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: .55;
    z-index: 0;
}
.slide-content {
    position: relative; z-index: 1;
    text-align: center;
    padding: 24px;
    max-width: 800px;
}
.slide-content h2 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    line-height: 1.1;
}
.slide-content p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: .9;
}
.slide-btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
}
.slider-nav {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    width: 48px; height: 48px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 5;
    transition: background .15s;
}
.slider-nav:hover { background: rgba(0,0,0,.8); }
.slider-nav.prev { left: 24px; }
.slider-nav.next { right: 24px; }
.slider-dots {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 5;
}
.slider-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    border: none;
    cursor: pointer;
    transition: background .15s, width .15s;
}
.slider-dots .dot.active {
    background: #fff;
    width: 28px;
    border-radius: 999px;
}

@media (max-width: 768px) {
    .slider-wrap { height: 320px; }
    .slide-content h2 { font-size: 28px; }
    .slide-content p { font-size: 14px; }
    .slider-nav { width: 36px; height: 36px; font-size: 18px; }
    .slider-nav.prev { left: 8px; }
    .slider-nav.next { right: 8px; }
}

/* ===================================================
   MÜŞTERİ ÜST NAV LAYOUT
   =================================================== */
.cust-nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow);
}
.cust-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.cust-brand { flex-shrink: 0; display: block; }
.cust-brand:hover { opacity: .8; }

.cust-links {
    display: flex;
    gap: 4px;
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
}
.cust-links::-webkit-scrollbar { display: none; }
.cust-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    transition: all .15s;
}
.cust-links a:hover { background: var(--gray-100); color: var(--black); opacity: 1; }
.cust-links a.active { background: var(--black); color: var(--white); }
.cust-links a.active:hover { opacity: 1; }

.cart-badge {
    background: var(--black);
    color: var(--white);
    border-radius: 999px;
    padding: 1px 7px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}
.cust-links a.active .cart-badge { background: var(--white); color: var(--black); }

.cust-user {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.cust-username { font-size: 14px; font-weight: 600; color: var(--gray-700); }

.cust-main {
    background: var(--gray-50);
    min-height: calc(100vh - 70px - 50px);
}
.cust-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 24px;
}

.cust-footer {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 16px 24px;
    color: var(--gray-500);
    font-size: 13px;
    text-align: center;
}

@media (max-width: 768px) {
    .cust-nav-inner { padding: 10px 16px; gap: 12px; }
    .cust-username { display: none; }
    .cust-links a span { display: none; }
    .cust-links a { padding: 8px 10px; }
    .cust-container { padding: 16px; }
}

/* ----- Mobil sol-açılır müşteri drawer ----- */
.cust-drawer-btn { display: none; }
.cust-drawer-overlay { display: none; }
.cust-drawer { display: none; }

@media (max-width: 768px) {
    .cust-drawer-btn {
        display: inline-flex; align-items: center; justify-content: center;
        width: 40px; height: 40px; flex-shrink: 0;
        background: var(--gray-100); border: 1px solid var(--gray-200);
        border-radius: 10px; cursor: pointer;
        color: var(--gray-800);
        position: absolute; left: 16px;
    }
    .cust-drawer-btn i { width: 20px; height: 20px; }
    .cust-drawer-overlay {
        display: block;
        position: fixed; inset: 0;
        background: rgba(0,0,0,.45);
        z-index: 110;
        opacity: 0; visibility: hidden;
        transition: opacity .2s, visibility .2s;
    }
    .cust-drawer {
        display: flex; flex-direction: column;
        position: fixed; top: 0; left: 0; bottom: 0;
        width: 84%; max-width: 320px;
        background: #fff;
        z-index: 120;
        transform: translateX(-100%);
        transition: transform .25s ease;
        overflow-y: auto;
        box-shadow: 4px 0 24px rgba(0,0,0,.15);
    }
    body.drawer-open .cust-drawer-overlay { opacity: 1; visibility: visible; }
    body.drawer-open .cust-drawer { transform: translateX(0); }
    body.drawer-open { overflow: hidden; }

    .cust-drawer-head {
        display: flex; align-items: flex-start; justify-content: space-between;
        padding: 22px 18px 16px;
        border-bottom: 1px solid var(--gray-100);
    }
    .cust-drawer-name { font-size: 17px; font-weight: 800; }
    .cust-drawer-mail { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
    .cust-drawer-close {
        width: 32px; height: 32px;
        background: var(--gray-100); border: none; border-radius: 8px;
        cursor: pointer; display: flex; align-items: center; justify-content: center;
        color: var(--gray-800);
    }
    .cust-drawer-close i { width: 18px; height: 18px; }

    .cust-drawer-balance {
        margin: 14px 14px 6px; padding: 14px 16px;
        background: linear-gradient(135deg,#000,#1f1f1f);
        color: #fff; border-radius: 12px;
    }
    .cdb-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: #a3a3a3; }
    .cdb-value { font-size: 24px; font-weight: 800; margin-top: 4px; }
    .cust-drawer-cta { margin: 14px 14px 0; }
    .cust-drawer-cta .btn { padding: 10px 14px; font-size: 14px; }

    .cust-drawer-nav { padding: 8px 8px 24px; display: flex; flex-direction: column; gap: 2px; }
    .cust-drawer-nav a {
        display: flex; align-items: center; gap: 12px;
        padding: 12px 14px; border-radius: 10px;
        color: var(--gray-800); text-decoration: none;
        font-size: 14.5px; font-weight: 600;
        transition: background .12s;
    }
    .cust-drawer-nav a:hover { background: var(--gray-100); }
    .cust-drawer-nav a.active { background: #000; color: #fff; }
    .cust-drawer-nav a i { width: 20px; height: 20px; }
    .cust-drawer-divider { height: 1px; background: var(--gray-200); margin: 10px 8px; }
    .cust-drawer-support { color: #1d4ed8 !important; }
    .cust-drawer-logout { color: #b91c1c !important; }

    /* Hamburger açıkken logo merkezde kalsın diye padding */
    .cust-nav-inner { position: relative; padding-left: 64px !important; padding-right: 16px !important; }
}

/* Menu item içinde tıklanabilir görsel + ad */
.menu-item-img-link { display: contents; }
.menu-item-name { color: inherit; text-decoration: none; }
.menu-item-name:hover { text-decoration: underline; }

/* Restoran içi kategori sticky-tab navigasyonu */
.menu-cats-nav {
    position: sticky;
    /* cust-nav header height: desktop logo 64px + 28px padding = 92px */
    top: 93px;
    z-index: 40;
    margin: 0 0 16px;
    padding: 0 18px;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.menu-cats-nav::-webkit-scrollbar { display: none; }
.menu-cats-nav a {
    flex-shrink: 0;
    padding: 14px 14px 12px;
    font-size: 14px; font-weight: 600;
    color: var(--gray-500);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .12s, border-color .12s;
}
.menu-cats-nav a:hover { color: var(--gray-800); }
.menu-cats-nav a.active {
    color: #000;
    border-bottom-color: #000;
}
.menu-cat-section { scroll-margin-top: 160px; }

@media (max-width: 768px) {
    .menu-cats-nav {
        /* mobil cust-nav: logo 50px + 28px padding = 78px */
        top: 80px;
        margin: 0 0 12px;
        padding: 0 12px;
        border-radius: 10px;
        /* Az sayıda tab varsa ortalı, taşarsa scroll'lu (safe center fallback'i) */
        justify-content: safe center;
    }
    .menu-cats-nav a { padding: 12px 12px 10px; font-size: 13.5px; }
    .menu-cat-section { scroll-margin-top: 150px; }
}

/* ----- Ürün detay sayfası ----- */
.item-detail-wrap { max-width: 1100px; margin: 0 auto; }
.item-back {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gray-700); text-decoration: none;
    font-size: 14px; font-weight: 600; padding: 8px 0;
    margin-bottom: 12px;
}
.item-back:hover { color: #000; }
.item-back i { width: 18px; height: 18px; }

.item-detail-card {
    background: #fff; border: 1px solid var(--gray-200); border-radius: 16px;
    overflow: hidden; display: grid;
    grid-template-columns: 420px 1fr; gap: 0;
    margin-bottom: 32px;
}
.item-detail-img {
    background: #f5f5f5 center/cover no-repeat;
    min-height: 380px; height: 100%;
}
.item-detail-img-empty {
    display: flex; align-items: center; justify-content: center;
    font-size: 120px; font-weight: 800; color: var(--gray-300);
}
.item-detail-body { padding: 24px 28px; display: flex; flex-direction: column; }
.item-rest-chip {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gray-100); padding: 6px 12px; border-radius: 999px;
    text-decoration: none; color: var(--gray-700); font-size: 13px; font-weight: 600;
    align-self: flex-start;
}
.item-rest-chip:hover { background: var(--gray-200); }
.item-rest-chip img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }

.item-detail-title { font-size: 28px; font-weight: 800; letter-spacing: -.5px; margin: 12px 0 8px; line-height: 1.15; }
.item-detail-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 14px; }
.item-pill {
    display: inline-flex; align-items: center; gap: 4px;
    background: var(--gray-100); color: var(--gray-700);
    padding: 5px 11px; border-radius: 999px;
    font-size: 12px; font-weight: 600;
}
.item-pill-ok   { background: #dcfce7; color: #166534; }
.item-pill-warn { background: #fee2e2; color: #991b1b; }

.item-detail-desc {
    color: var(--gray-700); line-height: 1.55; font-size: 15px;
    margin-bottom: 16px;
}
.item-detail-section { margin: 14px 0; }
.item-detail-section h3 {
    font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px; color: var(--gray-600);
    margin-bottom: 8px;
}
.item-ing-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.item-ing-list li {
    display: flex; justify-content: space-between;
    padding: 8px 12px; background: var(--gray-50);
    border-radius: 8px; font-size: 13.5px;
}

.item-detail-buy {
    margin-top: auto; padding-top: 18px;
    display: flex; gap: 12px; align-items: center;
    border-top: 1px solid var(--gray-100);
}
.item-detail-price { font-size: 26px; font-weight: 800; }
.item-detail-qty {
    display: flex; align-items: center; gap: 0;
    background: var(--gray-100); border-radius: 999px;
    padding: 4px;
}
.item-detail-qty button {
    width: 36px; height: 36px; border-radius: 50%;
    border: none; background: #fff; cursor: pointer;
    font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.item-detail-qty button:hover { background: var(--gray-200); }
.item-detail-qty span { padding: 0 14px; font-weight: 700; min-width: 36px; text-align: center; }
.item-detail-add {
    flex: 1; padding: 14px 22px; font-size: 15px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.item-detail-add i { width: 18px; height: 18px; }

/* Cross-sell */
.item-cross-title { font-size: 22px; font-weight: 800; margin: 0 0 16px; }
.item-cross-section { margin-bottom: 28px; }
.item-cross-section h3 {
    font-size: 15px; font-weight: 700; color: var(--gray-700);
    margin-bottom: 10px;
}
.item-cross-grid {
    display: grid; gap: 12px;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.xs-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: 12px; overflow: hidden;
    transition: box-shadow .15s, transform .15s;
}
.xs-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.xs-img { display: block; height: 130px; background: #f5f5f5; }
.xs-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xs-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; font-weight: 800; color: var(--gray-300);
}
.xs-body { padding: 10px 12px; }
.xs-name {
    display: block; font-size: 14px; font-weight: 700;
    color: var(--gray-900); text-decoration: none;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.xs-row { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.xs-price { font-weight: 700; }
.xs-add {
    width: 32px; height: 32px;
    border-radius: 50%; padding: 0;
    font-size: 18px; line-height: 1;
}

@media (max-width: 768px) {
    .item-detail-card { grid-template-columns: 1fr; }
    .item-detail-img { min-height: 280px; }
    .item-detail-img-empty { font-size: 80px; }
    .item-detail-body { padding: 18px; text-align: center; }
    .item-detail-title { font-size: 22px; text-align: center; }
    .item-rest-chip { align-self: center; }
    .item-detail-meta { justify-content: center; }
    .item-detail-desc { text-align: center; }
    .item-detail-section h3 { text-align: left; }
    /* Sticky satın al barı: fiyat ve qty ortada, sepete ekle butonu altta tam genişlik */
    .item-detail-buy {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    .item-detail-price { width: 100%; text-align: center; order: 1; }
    .item-detail-qty { order: 2; }
    .item-detail-add { flex: 1 1 100%; order: 3; }
    .item-ing-list li { text-align: left; }
}

/* ----- Restoran etiket seçici (settings sayfası) ----- */
.tag-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill { cursor: pointer; user-select: none; }
.tag-pill input { display: none; }
.tag-pill span {
    display: inline-block;
    padding: 8px 14px;
    background: var(--gray-100);
    color: var(--gray-700);
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 13.5px; font-weight: 600;
    transition: all .12s;
}
.tag-pill span:hover { background: var(--gray-200); }
.tag-pill.is-checked span { background: #000; color: #fff; border-color: #000; }

/* ----- Canlı destek floating widget ----- */
.support-widget { position: fixed; right: 18px; bottom: 22px; z-index: 95; }
.support-fab {
    width: 56px; height: 56px; border-radius: 50%;
    background: #000; color: #fff; border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: transform .15s, background .15s;
    position: relative;
}
.support-fab:hover { transform: scale(1.05); }
.support-fab.open { background: #dc2626; }
.support-fab i { width: 24px; height: 24px; }
.support-fab-badge {
    position: absolute; top: -4px; right: -4px;
    min-width: 22px; height: 22px;
    background: #dc2626; color: #fff;
    border-radius: 999px;
    font-size: 11px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    padding: 0 6px;
    border: 2px solid #fff;
}
.support-panel {
    position: absolute; bottom: 70px; right: 0;
    width: 360px; max-width: calc(100vw - 32px);
    height: 500px; max-height: calc(100vh - 120px);
    background: #fff; border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    display: flex; flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--gray-200);
}
/* hidden attribute önceliği — display:flex bunu eziyor olmasın diye */
.support-panel[hidden] { display: none !important; }
.support-head {
    padding: 14px 16px;
    background: #000; color: #fff;
    display: flex; justify-content: space-between; align-items: center;
}
.support-title { font-size: 15px; font-weight: 800; }
.support-sub { font-size: 11.5px; color: #a3a3a3; }
.support-close {
    width: 30px; height: 30px;
    background: rgba(255,255,255,.1); border: none; border-radius: 8px;
    cursor: pointer; color: #fff;
    display: flex; align-items: center; justify-content: center;
}
.support-close i { width: 16px; height: 16px; }

.support-body {
    flex: 1; overflow-y: auto;
    padding: 14px;
    background: #fafafa;
    display: flex; flex-direction: column; gap: 8px;
}
.support-empty { color: var(--gray-500); font-size: 13px; text-align: center; padding: 24px 12px; }
.support-msg { display: flex; flex-direction: column; max-width: 80%; }
.support-msg.mine { align-self: flex-end; align-items: flex-end; }
.support-msg.other { align-self: flex-start; align-items: flex-start; }
.support-bubble {
    padding: 9px 13px; border-radius: 14px;
    font-size: 14px; line-height: 1.35;
    white-space: pre-wrap; word-break: break-word;
}
.support-msg.mine .support-bubble  { background: #000; color: #fff; border-bottom-right-radius: 4px; }
.support-msg.other .support-bubble { background: #fff; color: #1f1f1f; border: 1px solid var(--gray-200); border-bottom-left-radius: 4px; }
.support-time { font-size: 10.5px; color: var(--gray-400); margin-top: 3px; padding: 0 4px; }

.support-form {
    display: flex; gap: 8px; align-items: flex-end;
    padding: 10px; border-top: 1px solid var(--gray-100);
    background: #fff;
}
.support-form textarea {
    flex: 1; resize: none;
    border: 1px solid var(--gray-300); border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px; font-family: inherit;
    max-height: 100px;
}
.support-form textarea:focus { outline: 2px solid var(--gray-400); border-color: transparent; }
.support-form button {
    width: 40px; height: 40px;
    background: #000; color: #fff; border: none; border-radius: 10px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.support-form button i { width: 18px; height: 18px; }

@media (max-width: 540px) {
    /* Bottom-nav ile çakışmasın diye widget biraz yukarda */
    .support-widget { right: 14px; bottom: 90px; }
    .support-panel { bottom: 70px; height: calc(100vh - 180px); width: calc(100vw - 28px); }
}

/* ----- Mobil alt menü ----- */
.mobile-bottom-nav { display: none; }

@media (max-width: 768px) {
    /* Üstteki orta linkleri gizle (sepet, siparişler vs. — bottom-nav'a taşındı) */
    .cust-links { display: none !important; }
    /* Mobilde sağdaki kullanıcı bilgisi/giriş/çıkış da gizli — sadece logo görünür.
       Hesap erişimi alttaki bottom-nav'da. */
    .cust-user { display: none !important; }
    .public-header .nav { display: none !important; }

    /* Mobilde logo tam ortada (50px) */
    .cust-nav-inner { justify-content: center; }
    .cust-nav-inner .cust-brand img,
    .public-header .public-logo,
    .public-header .brand img { height: 50px !important; max-height: 50px !important; width: auto !important; }
    .public-header .container { justify-content: center; }

    /* Bottom-nav altında içerik kalmasın */
    body { padding-bottom: 80px; }
    .cust-footer { display: none; }

    .mobile-bottom-nav {
        position: fixed; left: 0; right: 0; bottom: 0;
        z-index: 100;
        display: flex; justify-content: space-around; align-items: flex-end;
        background: #fff;
        border-top: 1px solid var(--gray-200);
        padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
        box-shadow: 0 -2px 12px rgba(0,0,0,.06);
    }
    .mbn-item {
        flex: 1;
        display: flex; flex-direction: column; align-items: center; gap: 3px;
        padding: 6px 4px;
        text-decoration: none;
        color: var(--gray-500);
        font-size: 10.5px; font-weight: 600;
        transition: color .15s;
    }
    .mbn-item.active { color: #000; }
    .mbn-item.active .mbn-icon-wrap { background: var(--gray-100); }
    .mbn-icon-wrap {
        position: relative;
        display: flex; align-items: center; justify-content: center;
        width: 38px; height: 32px; border-radius: 10px;
    }
    .mbn-icon-wrap i { width: 22px; height: 22px; }
    .mbn-label {
        white-space: nowrap;
        max-width: 64px; overflow: hidden; text-overflow: ellipsis;
    }

    /* Merkez sepet butonu — yukarıya çıkıntılı yuvarlak */
    .mbn-center {
        flex: 0 0 auto;
        margin-top: -28px;
    }
    .mbn-center .mbn-icon-wrap {
        width: 56px; height: 56px;
        border-radius: 50%;
        background: #000 !important;
        color: #fff;
        box-shadow: 0 4px 16px rgba(0,0,0,.25);
    }
    .mbn-center .mbn-icon-wrap i { width: 26px; height: 26px; color: #fff; }
    .mbn-center .mbn-label { color: var(--gray-500); margin-top: 2px; }
    .mbn-center.active .mbn-label { color: #000; }

    .mbn-badge {
        position: absolute; top: -4px; right: -6px;
        min-width: 18px; height: 18px;
        background: #dc2626; color: #fff;
        border-radius: 999px;
        font-size: 10px; font-weight: 800;
        display: flex; align-items: center; justify-content: center;
        padding: 0 5px;
        border: 2px solid #fff;
    }
    .mbn-center .mbn-badge { background: #dc2626; }
}

/* ----- Live order tracking ----- */
.tracking-bar {
    display: flex;
    justify-content: space-between;
    margin: 24px 0;
    position: relative;
}
.tracking-bar::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 16px;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}
.tracking-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}
.tracking-step .dot {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--gray-300);
    margin: 0 auto 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    color: var(--gray-400);
}
.tracking-step.active .dot,
.tracking-step.done .dot {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}
.tracking-step .label { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.tracking-step.done .label, .tracking-step.active .label { color: var(--black); }
