/* ═══════════════════════════════════════════
   ERHAN ÇALTI BARBER'S CLUB — MOBILE-FIRST
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg1: #08080c;
    --bg2: #0e0e14;
    --bg3: #14141c;
    --bg4: #1a1a24;
    --gold: #d4a843;
    --gold2: #c49a3a;
    --gold3: #b08930;
    --gold-glow: rgba(212, 168, 67, 0.12);
    --gold-glow2: rgba(212, 168, 67, 0.06);
    --text1: #f2f1ee;
    --text2: #b0afa8;
    --text3: #787772;
    --text4: #4a4940;
    --border: rgba(255, 255, 255, 0.06);
    --border2: rgba(255, 255, 255, 0.1);
    --border3: rgba(212, 168, 67, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --font-h: 'Montserrat', sans-serif;
    --font-b: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --success: #4ade80;
    --warning: #fbbf24;
    --error: #f87171;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-b);
    background: var(--bg1);
    color: var(--text1);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--bg1);
}

/* ══ SPLASH SCREEN ══ */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.splash-screen.splash-exit {
    opacity: 0;
    transform: scale(0.95);
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Barber Pole */
.splash-pole {
    animation: fadeInUp 0.6s var(--ease) both;
}

.pole-cap {
    width: 36px;
    height: 10px;
    background: linear-gradient(180deg, #c0c0c0, #8a8a8a);
    border-radius: 4px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.pole-body {
    width: 28px;
    height: 100px;
    margin: 0 auto;
    background: #e8e8e8;
    overflow: hidden;
    position: relative;
    box-shadow: inset -4px 0 8px rgba(0, 0, 0, 0.15), inset 4px 0 8px rgba(0, 0, 0, 0.05), 0 0 20px rgba(212, 168, 67, 0.15);
}

.pole-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            #cc2020 0px,
            #cc2020 8px,
            #ffffff 8px,
            #ffffff 16px,
            #1a4fa0 16px,
            #1a4fa0 24px,
            #ffffff 24px,
            #ffffff 32px);
    background-size: 100% 45px;
    animation: poleScroll 1.2s linear infinite;
}

@keyframes poleScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 45px;
    }
}

/* Text Group */
.splash-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.splash-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 4px;
}

.splash-brand {
    font-family: var(--font-h);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text1);
    letter-spacing: 0.02em;
}

.splash-sub {
    font-family: var(--font-b);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.3em;
}

/* Gold Line */
.splash-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: lineExpand 1s var(--ease) 0.6s both;
}

@keyframes lineExpand {
    from {
        width: 0;
    }

    to {
        width: 160px;
    }
}


/* ══ ANIMATIONS ══ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(212, 168, 67, 0.3)
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 168, 67, 0.6)
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0
    }

    10% {
        opacity: var(--opa, 0.15)
    }

    90% {
        opacity: var(--opa, 0.15)
    }

    100% {
        transform: translateY(-100vh) translateX(var(--drift, 40px));
        opacity: 0
    }
}

@keyframes confettiFall {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    100% {
        transform: translate(var(--x), var(--y)) rotate(var(--r))
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0
    }

    50% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes checkDraw {
    0% {
        stroke-dashoffset: 50
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

/* ══ PARTICLES ══ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: var(--opa, 0.15);
    animation: floatUp var(--dur, 12s) var(--delay, 0s) linear infinite;
}

/* ══ TOPBAR ══ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 8px 12px;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.topbar.scrolled {
    background: rgba(8, 8, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 6px 12px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
}

.brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text1);
    min-width: 0;
    flex: 1 1 0;
    overflow: hidden;
}

.brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s var(--ease);
}

.brand:hover .brand-logo {
    transform: rotate(-8deg) scale(1.1);
}

.brand-text {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.status-pill.open {
    border-color: rgba(74, 222, 128, 0.3);
    color: var(--success);
}

.status-pill.closed {
    border-color: rgba(248, 113, 113, 0.3);
    color: var(--error);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulseGlow 2s infinite;
}

/* ═══════════════════════════════════════
   PREMIUM NAV BUTTONS (Randevu Al & İptal Et)
   ═══════════════════════════════════════ */

/* ── RANDEVU AL (Primary CTA) ── */
.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 50%, var(--gold3) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: var(--bg1);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 6px 16px -3px rgba(212, 168, 67, 0.45),
        0 2px 6px -2px rgba(212, 168, 67, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.35);
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    isolation: isolate;
}
.cta-btn::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--gold), var(--gold3));
    z-index: -2;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.35s ease;
}
.cta-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.cta-btn:hover {
    transform: translateY(-2px);
    background-position: 100% 50%;
    box-shadow:
        0 12px 28px -4px rgba(212, 168, 67, 0.55),
        0 6px 14px -4px rgba(212, 168, 67, 0.4),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.45);
}
.cta-btn:hover::before { opacity: 0.7; }
.cta-btn:hover::after { left: 130%; }
.cta-btn:hover i { transform: scale(1.15) rotate(-8deg); }
.cta-btn:active {
    transform: translateY(0) scale(0.97);
    box-shadow:
        0 2px 8px -2px rgba(212, 168, 67, 0.4),
        inset 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    transition-duration: 0.1s;
}
.cta-btn i {
    font-size: 0.92rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}
.cta-btn span {
    position: relative;
    z-index: 1;
}

/* ── İPTAL ET (Ghost / Outline) ── */
.btn-cancel-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 100px;
    background: rgba(239, 68, 68, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(239, 68, 68, 0.35);
    color: #f87171;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
    font-family: var(--font-b);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.08);
    isolation: isolate;
}
.btn-cancel-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-cancel-nav::after {
    content: '';
    position: absolute;
    top: 0; left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.btn-cancel-nav:hover {
    transform: translateY(-2px);
    border-color: transparent;
    color: #ffffff;
    box-shadow:
        0 10px 24px -4px rgba(239, 68, 68, 0.4),
        0 4px 10px -3px rgba(239, 68, 68, 0.3),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
}
.btn-cancel-nav:hover::before { opacity: 1; }
.btn-cancel-nav:hover::after { left: 130%; }
.btn-cancel-nav:active {
    transform: translateY(0) scale(0.97);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.15);
    transition-duration: 0.1s;
}
.btn-cancel-nav i {
    font-size: 0.9rem;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}
.btn-cancel-nav:hover i {
    transform: rotate(-90deg) scale(1.1);
}
.btn-cancel-nav span {
    position: relative;
    z-index: 1;
}

/* ── Shimmer overlay (her iki butonda kullanılan span.cta-glow) ── */
.cta-glow {
    display: none; /* eski shimmer kaldırıldı, yeni efekt ::after ile geliyor */
}

/* ── Mobile düzeni ── */
@media (max-width: 600px) {
    .cta-btn { padding: 10px 16px; font-size: 0.78rem; gap: 6px; }
    .btn-cancel-nav { padding: 10px 14px; font-size: 0.78rem; gap: 6px; margin-right: 6px; }
}
@media (max-width: 380px) {
    .btn-cancel-nav span, .cta-btn span { display: inline; }
    .cta-btn { padding: 10px 14px; }
    .btn-cancel-nav { padding: 10px 12px; }
}

/* ── Light theme için kontrast ── */
[data-theme="light-modern"] .cta-btn { color: #ffffff; }
[data-theme="light-modern"] .btn-cancel-nav { background: rgba(239, 68, 68, 0.08); color: #dc2626; }
[data-theme="light-modern"] .btn-cancel-nav:hover { color: #ffffff; }

/* ── Aksesibilite: hareket azaltma ── */
@media (prefers-reduced-motion: reduce) {
    .cta-btn, .btn-cancel-nav, .cta-btn::after, .btn-cancel-nav::after { transition: none; animation: none; }
}

/* ══ STAFF SHOWCASE ══ */
.staff-showcase {
    padding: 80px 16px 20px;
    position: relative;
    z-index: 1;
}

.showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s var(--ease) both;
}

.showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border3);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.showcase-header h2 {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text1), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.staff-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 4px 0 20px;
}

.staff-carousel::-webkit-scrollbar {
    display: none;
}

.staff-card {
    width: 260px;
    scroll-snap-align: start;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    animation: fadeInUp 0.5s var(--ease) both;
    flex-shrink: 0;
    position: relative;
}

.staff-card:nth-child(1) {
    animation-delay: 0s
}

.staff-card:nth-child(2) {
    animation-delay: 0.1s
}

.staff-card:nth-child(3) {
    animation-delay: 0.2s
}

.staff-card:hover {
    border-color: var(--border3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(212, 168, 67, 0.12);
}

.staff-card-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.staff-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s var(--ease);
}

.staff-card:hover .staff-card-img img {
    transform: scale(1.06);
}

.staff-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 12, 0.9) 0%, rgba(8, 8, 12, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.staff-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(8px);
    color: var(--gold);
    border: 1px solid var(--border3);
    z-index: 2;
}

.staff-card-name-overlay {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
}

.staff-card-name-overlay .staff-card-name {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.staff-card-name-overlay .staff-card-role {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
}

.staff-card-body {
    padding: 14px;
}

.staff-card-name {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.staff-card-role {
    font-size: 0.78rem;
    color: var(--text3);
    margin-bottom: 8px;
}

.staff-card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.staff-card-stars span {
    margin-left: 4px;
    color: var(--text3);
}

.staff-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.spec-tag {
    display: inline-block;
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 50px;
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid var(--border3);
    font-weight: 500;
    transition: all 0.3s;
}

.spec-tag:hover {
    background: rgba(212, 168, 67, 0.2);
}

.staff-card-actions {
    display: flex;
    gap: 6px;
}

.sc-btn {
    flex: 1;
    padding: 8px;
    border-radius: var(--radius-xs);
    font-size: 0.78rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s var(--ease);
    font-family: var(--font-b);
}

.sc-btn:active {
    transform: scale(0.95);
}

.sc-btn-book {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
}

.sc-btn-info {
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 50%;
    font-size: 1rem;
    animation: bioGlow 1.5s ease-in-out infinite;
    position: relative;
}

@keyframes bioGlow {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(212, 168, 67, 0.1);
        border-color: rgba(212, 168, 67, 0.4);
        background: rgba(212, 168, 67, 0.03);
    }

    50% {
        box-shadow: 0 0 22px rgba(212, 168, 67, 0.65), 0 0 44px rgba(212, 168, 67, 0.2);
        border-color: #f0d078;
        background: rgba(212, 168, 67, 0.18);
    }
}

.sc-btn-info:hover {
    background: rgba(212, 168, 67, 0.18);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(212, 168, 67, 0.5);
    animation: none;
}

/* ══ GALLERY ══ */
.gallery-showcase {
    padding: 0 16px 20px;
    position: relative;
    z-index: 1;
}

.gallery-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    min-width: 220px;
    height: 150px;
    scroll-snap-align: start;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.gallery-item:active {
    transform: scale(0.97);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 12, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1.2rem;
    color: white;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

/* ══ MAIN LAYOUT ══ */
.main-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ══ BOOKING PANEL ══ */
.booking-panel {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border3);
    border-radius: var(--radius);
    padding: 24px 18px;
    overflow: hidden;
    animation: fadeInUp 0.6s var(--ease) 0.2s both;
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.04);
}

.panel-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
    animation: subtleFloat 6s ease-in-out infinite;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.panel-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    animation: bounceIn 0.6s var(--ease) 0.3s both;
}

.panel-header h1 {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.panel-header p {
    font-size: 0.8rem;
    color: var(--text3);
}

/* Progress */
.progress-bar {
    margin-bottom: 20px;
}

.progress-track {
    height: 3px;
    background: var(--bg4);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    border-radius: 50px;
    transition: width 0.5s var(--ease);
    width: 0;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.step-ind {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    transition: all 0.3s;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    background: var(--bg4);
    color: var(--text3);
    border: 2px solid var(--border);
    transition: all 0.4s var(--ease);
}

.step-ind span {
    font-size: 0.65rem;
    color: var(--text4);
    text-align: center;
    font-weight: 600;
}

.step-ind.active .step-circle {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    border-color: var(--gold);
    animation: bounceIn 0.4s var(--ease);
}

.step-ind.active span {
    color: var(--gold);
}

.step-ind.done .step-circle {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.step-ind.done span {
    color: var(--success);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.4s var(--ease);
}

.form-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-title i {
    color: var(--gold);
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text2);
}

.label-hint {
    font-weight: 400;
    font-size: 0.65rem;
    color: var(--text4);
}

.label-optional {
    font-weight: 600;
    font-size: 0.62rem;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid var(--border3);
    letter-spacing: 0.02em;
}

.svc-hint {
    font-size: 0.7rem;
    color: var(--text3);
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(212, 168, 67, 0.04);
    border-left: 2px solid var(--gold);
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    line-height: 1.5;
}

.svc-hint i {
    color: var(--gold);
    margin-right: 4px;
}

.svc-category-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 0 4px;
    margin-top: 4px;
    border-bottom: 1px solid var(--border3);
    grid-column: 1 / -1;
}

.svc-field {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text1);
    font-size: 0.9rem;
    font-family: var(--font-b);
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}

.service-cards::-webkit-scrollbar {
    width: 3px;
}

.service-cards::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 50px;
}

.svc-card {
    padding: 10px 12px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc-card:active {
    transform: scale(0.98);
}

.svc-card.picked {
    border-color: var(--gold);
    background: var(--gold-glow);
    box-shadow: 0 0 16px rgba(212, 168, 67, 0.12);
}

.svc-card:hover:not(.picked) {
    border-color: var(--border2);
    background: rgba(255, 255, 255, 0.03);
}

.svc-name {
    font-size: 0.8rem;
    font-weight: 500;
}

.svc-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.svc-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
}

.svc-dur {
    font-size: 0.65rem;
    color: var(--text3);
}

/* Staff Picks — Modern Card Design */
.staff-picks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 8px 4px 12px;
    justify-content: center;
    align-items: stretch;
}

@keyframes staffCardIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.s-pick {
    flex: 1 1 200px;
    max-width: 240px;
    background: linear-gradient(165deg, rgba(30, 30, 40, 0.95), rgba(18, 18, 24, 0.98));
    border: 1px solid var(--border2);
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    animation: staffCardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    display: flex;
    flex-direction: column;
}

.s-pick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.s-pick:hover::before {
    opacity: 1;
}

.s-pick:hover {
    transform: translateY(-6px);
    border-color: var(--border3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 67, 0.06);
}

.s-pick:active {
    transform: translateY(-2px) scale(0.98);
}

/* Selected state */
.s-pick.picked {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.15), 0 12px 32px rgba(212, 168, 67, 0.12);
    background: linear-gradient(165deg, rgba(40, 36, 24, 0.95), rgba(22, 20, 14, 0.98));
}

.s-pick.picked::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
    height: 3px;
}

.s-pick.picked::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: bounceIn 0.4s var(--ease);
    box-shadow: 0 2px 10px rgba(212, 168, 67, 0.4);
}

/* Visual section: photo + name */
.s-pick-visual {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 10px;
}

.s-pick-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.s-pick-img-wrap img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.s-pick:hover .s-pick-img-wrap img {
    border-color: var(--gold);
    transform: scale(1.05);
}

.s-pick.picked .s-pick-img-wrap img {
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(212, 168, 67, 0.3);
}

.s-pick-img-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(var(--gold), transparent, var(--gold2), transparent, var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
    animation: spin 4s linear infinite;
    z-index: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.s-pick:hover .s-pick-img-glow,
.s-pick.picked .s-pick-img-glow {
    opacity: 0.5;
}

.s-pick-content {
    flex: 1;
    min-width: 0;
}

.s-pick .nm {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text1);
    transition: color 0.3s;
}

.s-pick.picked .nm {
    color: var(--gold);
}

.s-pick .s-role {
    font-size: 0.68rem;
    color: var(--text4);
    display: block;
    margin-top: 1px;
}

.s-pick-exp {
    font-size: 0.6rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
    font-weight: 600;
}

.s-pick-exp i {
    font-size: 0.55rem;
}

.s-pick-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.68rem;
    color: var(--gold);
    margin-top: 3px;
    font-weight: 600;
}

.s-pick-rating span {
    color: var(--text4);
    font-weight: 400;
}

/* Bio preview */
.s-pick-bio-preview {
    padding: 0 14px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.s-pick-bio-preview p {
    font-size: 0.68rem;
    color: var(--text3);
    line-height: 1.5;
    margin: 8px 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-pick-specs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.s-pick-specs span {
    font-size: 0.58rem;
    padding: 3px 8px;
    border-radius: 50px;
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 67, 0.15);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Action buttons */
.s-pick-actions {
    display: flex;
    gap: 6px;
    padding: 0 10px 12px;
    margin-top: auto;
}

.s-pick-select-btn,
.s-pick-bio-btn {
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-b);
}

.s-pick-select-btn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text2);
    border: 1px solid var(--border);
}

.s-pick-select-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    border-color: var(--gold);
    transform: scale(1.03);
}

.s-pick.picked .s-pick-select-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    border-color: var(--gold);
}

/* Özgeçmiş button — prominent & eye-catching */
.s-pick-bio-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.s-pick-bio-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.15), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.s-pick-bio-btn:hover {
    background: rgba(212, 168, 67, 0.12);
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(212, 168, 67, 0.2);
}

.s-pick-bio-btn:active {
    transform: scale(0.95);
}

/* Selected info */
.selected-info {
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.2);
    font-size: 0.82rem;
    color: var(--success);
    display: none;
    animation: fadeInUp 0.3s var(--ease);
    margin-top: 8px;
}

.selected-info.show {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Calendar */
.cal-widget {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    overflow: hidden;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cal-month {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 600;
}

.cal-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s;
}

.cal-nav:active {
    transform: scale(0.9);
}

.cal-nav:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 6px;
}

.cal-weekdays span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text3);
    padding: 4px 0;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-weight: 500;
    position: relative;
}

.cal-day:active {
    transform: scale(0.9);
}

.cal-day.empty {
    cursor: default;
}

.cal-day.today {
    color: var(--gold);
    font-weight: 700;
}

.cal-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.cal-day.off {
    color: var(--text4);
    opacity: 0.4;
    cursor: default;
}

.cal-day.closed-day {
    color: var(--warning);
    opacity: 0.65;
    cursor: pointer;
    position: relative;
}

.cal-day.closed-day::after {
    content: '•';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: var(--warning);
}

.cal-day.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    font-weight: 700;
    animation: bounceIn 0.3s var(--ease);
}

.cal-day:not(.empty):not(.off):not(.closed):not(.selected):hover {
    background: var(--gold-glow);
    color: var(--gold);
}

/* Time tabs & slots */
.slot-legend {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: var(--text3);
}

.leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.leg-dot.available {
    background: var(--gold);
}

.leg-dot.booked {
    background: var(--error);
}

.time-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.t-tab {
    flex: 1;
    padding: 8px;
    border-radius: var(--radius-xs);
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--bg4);
    color: var(--text3);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s;
    font-family: var(--font-b);
}

.t-tab:active {
    transform: scale(0.95);
}

.t-tab.active {
    background: var(--gold-glow);
    color: var(--gold);
    border-color: var(--border3);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.t-slot {
    padding: 10px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-xs);
    background: var(--bg4);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.t-slot:active {
    transform: scale(0.93);
}

.t-slot.picked {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.2);
}

.t-slot.off {
    opacity: 0.3;
    cursor: default;
    text-decoration: line-through;
}

.t-slot.booked {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.2);
    color: var(--error);
    cursor: default;
}

.date-range-hint {
    font-size: 0.7rem;
    color: var(--text3);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg3);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 16px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 22px;
    border-radius: var(--radius-xs);
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-b);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-gold:active {
    transform: scale(0.96);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 18px;
    border-radius: var(--radius-xs);
    background: transparent;
    color: var(--text2);
    font-size: 0.88rem;
    border: 1px solid var(--border);
    cursor: pointer;
    font-family: var(--font-b);
    transition: all 0.3s;
}

.btn-ghost:active {
    transform: scale(0.96);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.72rem;
}

/* Final Summary */
.final-summary {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}

.final-summary h3 {
    font-family: var(--font-h);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
}

.s-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.s-row:last-child {
    border: none;
}

.s-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text3);
}

.s-val {
    font-weight: 600;
    color: var(--text1);
}

/* ══ SIDEBAR ══ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-card {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    overflow: hidden;
    animation: fadeInUp 0.5s var(--ease) both;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.side-card h3 {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-card h3 i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Hours */
.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    transition: all 0.3s;
}

.hours-list li:last-child {
    border: none;
}

.hours-list li .day {
    font-weight: 500;
    color: var(--text2);
}

.hours-list li .time {
    color: var(--text3);
}

.hours-list li.today {
    color: var(--gold);
}

.hours-list li.today .day,
.hours-list li.today .time {
    color: var(--gold);
    font-weight: 600;
}

/* Pricing */
.price-category {
    margin-bottom: 12px;
}

.price-cat-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border3);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
}

.price-row:last-child {
    border: none;
}

.price-row .svc {
    color: var(--text2);
}

.price-row .dur {
    font-size: 0.68rem;
    color: var(--text4);
    margin-left: 6px;
}

.price-row .amt {
    font-weight: 700;
    color: var(--gold);
}

/* Map */
.mini-map-link {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 10px;
    aspect-ratio: 16/9;
}

.mini-map {
    width: 100%;
    height: 100%;
    background: var(--bg4);
}

.mini-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text4);
    font-size: 2rem;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    background: linear-gradient(transparent, rgba(8, 8, 12, 0.9));
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.mini-map-link:hover .map-overlay {
    background: linear-gradient(transparent, rgba(212, 168, 67, 0.15));
}

/* Contact */
.contact-info-compact {
    font-size: 0.82rem;
}

.c-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: var(--text2);
}

.c-row i {
    color: var(--gold);
    width: 14px;
    font-size: 0.7rem;
}

.c-row a {
    color: var(--text2);
    text-decoration: none;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.soc-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.soc-link:active {
    transform: scale(0.9);
}

.soc-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══ FOOTER ══ */
footer {
    text-align: center;
    padding: 28px 16px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text4);
    position: relative;
    z-index: 1;
}

.footer-brand {
    color: var(--gold);
    font-weight: 600;
}

.footer-credit {
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--text3);
    letter-spacing: 0.04em;
    padding: 8px 0;
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(212, 168, 67, 0.3);
    padding-bottom: 1px;
}

.footer-credit a:hover {
    color: var(--text1);
    border-bottom-color: var(--text1);
}

.admin-fab {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 0.9rem;
    z-index: 10;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.admin-fab:active {
    transform: scale(0.9);
}

.admin-fab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══ MODAL BASE ══ */
.modal-bg {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.modal-bg.on {
    display: flex;
}

.modal-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius) var(--radius) 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s var(--ease);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0.5
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.popup-close:active {
    transform: scale(0.9);
}

/* ══ BARBER BIO POPUP ══ */
.barber-popup {
    padding: 0;
}

.barber-popup .bp-cover {
    height: 140px;
    background: linear-gradient(135deg, var(--bg3), var(--bg4));
    overflow: hidden;
    position: relative;
}

.barber-popup .bp-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}

.barber-popup .bp-content {
    padding: 0 16px 20px;
    margin-top: -40px;
    position: relative;
}

.bp-header {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
}

.bp-header img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: bounceIn 0.5s var(--ease) 0.2s both;
}

.bp-info {
    padding-bottom: 4px;
}

.bp-info h2 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.bp-role {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 500;
}

.bp-bio {
    font-size: 0.85rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 12px;
    padding: 10px;
    background: var(--bg3);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    animation: fadeInUp 0.4s var(--ease) 0.3s both;
}

.bp-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
    animation: fadeInUp 0.4s var(--ease) 0.4s both;
}

.bp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 14px;
    animation: fadeInUp 0.4s var(--ease) 0.5s both;
}

.bp-stat {
    text-align: center;
    padding: 10px 6px;
    background: var(--bg3);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
}

.stat-val {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bp-select {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.82rem;
}

/* Reviews Open Button */
.btn-reviews-open {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
    font-family: var(--font-b);
    margin-bottom: 10px;
    animation: fadeInUp 0.4s var(--ease) 0.6s both;
}

.btn-reviews-open:active {
    transform: scale(0.97);
}

.btn-reviews-open:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-reviews-open i:first-child {
    color: var(--gold);
}

.btn-reviews-open i:last-child {
    margin-left: auto;
    font-size: 0.6rem;
    color: var(--text4);
}

/* ══ REVIEWS POPUP ══ */
.reviews-popup {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.reviews-popup-header {
    padding: 20px 16px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    animation: fadeInDown 0.4s var(--ease);
}

.reviews-popup-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.1rem;
    color: var(--bg1);
    animation: bounceIn 0.5s var(--ease) 0.2s both;
}

.reviews-popup-header h3 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.reviews-popup-avg {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.reviews-popup-avg i {
    font-size: 0.7rem;
    margin-right: 2px;
}

.reviews-popup-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    max-height: 40vh;
    -webkit-overflow-scrolling: touch;
}

.review-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 12px;
    margin-bottom: 8px;
    animation: fadeInUp 0.3s var(--ease) both;
}

.review-card:nth-child(1) {
    animation-delay: 0.05s
}

.review-card:nth-child(2) {
    animation-delay: 0.1s
}

.review-card:nth-child(3) {
    animation-delay: 0.15s
}

.review-card:nth-child(4) {
    animation-delay: 0.2s
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.review-author {
    font-weight: 600;
    font-size: 0.85rem;
}

.review-date {
    font-size: 0.68rem;
    color: var(--text4);
}

.review-stars-display {
    margin-bottom: 4px;
}

.review-stars-display i {
    font-size: 0.6rem;
    color: var(--gold);
}

.review-stars-display i.empty {
    color: var(--text4);
}

.review-text {
    font-size: 0.8rem;
    color: var(--text2);
    line-height: 1.5;
}

.no-reviews {
    text-align: center;
    padding: 24px 12px;
    color: var(--text3);
    font-size: 0.85rem;
    animation: fadeInUp 0.4s var(--ease);
}

/* Review Form */
.reviews-popup-form {
    padding: 16px;
    border-top: 1px solid var(--border);
    background: var(--bg3);
    animation: fadeInUp 0.4s var(--ease) 0.3s both;
}

.reviews-popup-form h4 {
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews-popup-form h4 i {
    color: var(--gold);
    font-size: 0.7rem;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.star-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text4);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-btn:active {
    transform: scale(0.85);
}

.star-btn.active {
    background: var(--gold-glow);
    color: var(--gold);
    border-color: var(--gold);
    animation: bounceIn 0.3s var(--ease);
}

.review-input {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text1);
    font-size: 0.8rem;
    font-family: var(--font-b);
    margin-bottom: 8px;
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.review-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.btn-red-submit {
    width: 100%;
    justify-content: center;
    padding: 12px;
    border-radius: var(--radius-xs);
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-b);
}

.btn-red-submit:active {
    transform: scale(0.98);
}

.btn-red-submit:hover {
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, #dc2626, #991b1b);
    transform: translateY(-2px);
}



/* ══ SUCCESS MODAL ══ */
.success-modal {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.success-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    border-radius: 2px;
    animation: confettiFall var(--dur, 1s) var(--delay, 0s) var(--ease) forwards;
}

.success-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 16px;
    animation: bounceIn 0.6s var(--ease) 0.2s both;
}

.success-modal h2 {
    font-family: var(--font-h);
    font-size: 1.2rem;
    margin-bottom: 6px;
    animation: fadeInUp 0.4s var(--ease) 0.4s both;
}

.success-modal p {
    font-size: 0.85rem;
    color: var(--text2);
    margin-bottom: 16px;
    animation: fadeInUp 0.4s var(--ease) 0.5s both;
}

.modal-summary {
    text-align: left;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 16px;
    animation: fadeInUp 0.4s var(--ease) 0.6s both;
}

.modal-actions {
    margin-bottom: 12px;
    animation: fadeInUp 0.4s var(--ease) 0.7s both;
}

.modal-actions .btn-gold {
    width: 100%;
}

.modal-note {
    font-size: 0.65rem;
    color: var(--text4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ══ LIGHTBOX ══ */
.lightbox-box {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.lightbox-box img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
    transition: all 0.3s var(--ease);
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
}

.lb-nav:active {
    transform: translateY(-50%) scale(0.9);
}

.lb-prev {
    left: 8px;
}

.lb-next {
    right: 8px;
}

.lb-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 50px;
}

/* ══ TOAST ══ */
.bk-toast {
    z-index: 500 !important;
}

/* ══════════════════════════════════════
   SMALL MOBILE (max-width: 520px)
   ══════════════════════════════════════ */
@media(max-width:520px) {
    .topbar {
        padding: 6px 8px;
    }

    .topbar-inner {
        gap: 4px;
    }

    .brand-logo {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .brand-text {
        font-size: 0.68rem;
        max-width: 120px;
    }

    .status-pill {
        display: none;
    }

    .cta-btn {
        font-size: 0.7rem;
        padding: 8px 14px;
        gap: 5px;
    }
}

/* ══════════════════════════════════════
   EXTRA-SMALL SCREENS (max-width: 380px)
   ══════════════════════════════════════ */
@media(max-width:380px) {
    .topbar {
        padding: 4px 6px;
    }

    .brand-logo {
        width: 26px;
        height: 26px;
    }

    .brand-text {
        display: none;
    }

    .cta-btn {
        font-size: 0.72rem;
        padding: 9px 14px;
    }

    .cta-btn span {
        display: none;
    }

    .cta-btn .cta-glow {
        display: none;
    }

    .showcase-header h2 {
        font-size: 1.15rem;
    }

    .showcase-tag {
        font-size: 0.6rem;
    }

    .staff-card {
        width: 220px;
    }

    .staff-card-img {
        height: 260px;
    }

    .gallery-item {
        min-width: 180px;
        height: 110px;
    }

    .panel-header h1 {
        font-size: 0.95rem;
    }

    .panel-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .s-pick {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .s-pick-img-wrap img {
        width: 42px;
        height: 42px;
    }

    .s-pick .nm {
        font-size: 0.72rem;
    }

    .s-pick-select-btn,
    .s-pick-bio-btn {
        font-size: 0.6rem;
        padding: 6px 8px;
    }

    .cal-day {
        font-size: 0.65rem;
        min-height: 32px;
    }

    .t-slot {
        padding: 8px 4px;
        font-size: 0.68rem;
    }

    .form-nav {
        flex-direction: column;
        gap: 8px;
    }

    .form-nav .btn-gold,
    .form-nav .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .booking-panel {
        padding: 14px 10px;
    }

    .sidebar {
        padding: 14px 10px;
    }

    .sb-card {
        padding: 12px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-box {
        padding: 14px 10px;
    }

    .step-indicators {
        gap: 2px;
    }

    .step-ind span {
        font-size: 0.55rem;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .time-tabs {
        flex-wrap: wrap;
    }

    .t-tab {
        font-size: 0.68rem;
        padding: 6px 4px;
    }

    .time-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .field label {
        font-size: 0.78rem;
    }

    .field input,
    .field textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .row2 {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   TOUCH & MOBILE OPTIMIZATION
   ══════════════════════════════════════ */
@media(hover: none) and (pointer: coarse) {

    /* Larger touch targets for mobile */
    .cal-day {
        min-height: 40px;
    }

    .t-slot {
        min-height: 44px;
    }

    .btn-gold,
    .btn-outline,
    .btn-outline2,
    .cta-btn {
        min-height: 44px;
    }

    .s-pick-select-btn,
    .s-pick-bio-btn {
        min-height: 40px;
    }

    /* Disable hover effects on touch */
    .staff-card:hover,
    .gallery-item:hover,
    .s-pick:hover {
        transform: none;
    }

    /* Better form inputs for mobile */
    .form-input,
    .review-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* ══════════════════════════════════════
   TABLET (min-width: 600px)
   ══════════════════════════════════════ */
@media(min-width:600px) {
    .topbar {
        padding: 10px 20px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .staff-showcase {
        padding: 90px 20px 20px;
    }

    .showcase-header h2 {
        font-size: 1.8rem;
    }

    .staff-card {
        width: 280px;
    }

    .staff-card-img {
        height: 340px;
    }

    .gallery-showcase {
        padding: 0 20px 20px;
    }

    .gallery-item {
        min-width: 240px;
        height: 160px;
    }

    .main-layout {
        padding: 0 20px 32px;
    }

    .booking-panel {
        padding: 24px 20px;
    }

    .service-cards {
        grid-template-columns: 1fr 1fr;
    }

    .row2 {
        grid-template-columns: 1fr 1fr;
    }

    .time-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .s-pick {
        flex: 1 1 210px;
        max-width: 260px;
    }

    .s-pick-img-wrap img {
        width: 56px;
        height: 56px;
    }

    .s-pick .nm {
        font-size: 0.85rem;
    }

    .s-pick-bio-preview p {
        font-size: 0.68rem;
    }

    .s-pick-select-btn,
    .s-pick-bio-btn {
        font-size: 0.68rem;
        padding: 8px 10px;
    }

    .modal-bg {
        align-items: center;
        padding: 16px;
    }

    .modal-box {
        border-radius: var(--radius);
        max-height: 85vh;
    }

    .success-modal {
        border-radius: var(--radius);
    }

    .reviews-popup {
        max-width: 500px;
    }

    @keyframes slideUp {
        from {
            transform: translateY(40px);
            opacity: 0
        }

        to {
            transform: translateY(0);
            opacity: 1
        }
    }
}

/* ══════════════════════════════════════
   DESKTOP (min-width: 960px)
   ══════════════════════════════════════ */
@media(min-width:960px) {
    .topbar {
        padding: 12px 32px;
    }

    .brand-text {
        font-size: 1.15rem;
    }

    .status-pill {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .cta-btn {
        font-size: 0.85rem;
        padding: 12px 24px;
    }

    .staff-showcase {
        padding: 100px 32px 24px;
    }

    .showcase-header h2 {
        font-size: 2rem;
    }

    .gallery-showcase {
        padding: 0 32px 24px;
    }

    .gallery-item {
        min-width: 280px;
        height: 180px;
    }

    .main-layout {
        flex-direction: row;
        gap: 24px;
        padding: 0 32px 40px;
    }

    .booking-panel {
        flex: 1;
        padding: 28px 24px;
        min-width: 0;
    }

    .sidebar {
        width: 340px;
        flex-shrink: 0;
    }

    .time-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .panel-header h1 {
        font-size: 1.4rem;
    }

    .barber-popup .bp-cover {
        height: 160px;
    }

    .bp-header img {
        width: 80px;
        height: 80px;
    }

    .bp-info h2 {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════
   PHONE VALIDATION FEEDBACK
   ═══════════════════════════════════════ */
.field input.input-valid {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.field input.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.phone-hint {
    font-size: 0.72rem;
    margin-top: 6px;
    min-height: 1em;
    transition: all 0.2s ease;
}
/* ═══════════ BAHALABS FOOTER ═══════════ */
.bahalabs-footer { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; padding: 12px 18px; background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.02)); border: 1px solid rgba(212,168,67,0.2); border-radius: 12px; }
.bahalabs-footer-logo { width: 38px; height: 38px; border-radius: 8px; object-fit: contain; flex-shrink: 0; background: rgba(0,0,0,0.25); padding: 4px; }
.bahalabs-footer-text { display: flex; flex-direction: column; text-align: left; gap: 2px; }
.bhl-line1 { font-size: 0.85rem; color: var(--text1, #f2f1ee); }
.bhl-line1 strong { color: var(--gold, #d4a843); font-weight: 700; letter-spacing: 0.3px; }
.bhl-line2 { font-size: 0.78rem; color: var(--text2, #b0afa8); }
.bhl-line2 a { color: var(--gold, #d4a843); text-decoration: none; }
.bhl-line2 a:hover { text-decoration: underline; }
@media (max-width: 480px) {
    .bahalabs-footer { flex-direction: column; text-align: center; padding: 12px 14px; }
    .bahalabs-footer-text { text-align: center; }
}

/* ═══════════ DEMO MODU BANNER + FAB ═══════════ */
#bkDemoBanner { position: sticky; top: 0; z-index: 10000; background: linear-gradient(90deg, #d4a843, #c49a3a, #d4a843); background-size: 200% 100%; animation: bk-demo-shimmer 6s linear infinite; color: #08080c; padding: 8px 16px; font-size: 0.92rem; border-bottom: 2px solid #b08930; }
@keyframes bk-demo-shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.bk-demo-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.bk-demo-msg { display: flex; align-items: center; gap: 10px; font-weight: 500; line-height: 1.3; }
.bk-demo-msg i { font-size: 1.1rem; }
.bk-demo-msg strong { font-weight: 800; letter-spacing: 0.5px; }
.bk-demo-cta { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: #08080c; color: #d4a843; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.88rem; transition: all 0.2s; white-space: nowrap; }
.bk-demo-cta:hover { background: #1a1a24; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.4); }
.bk-demo-cta i { font-size: 1.1rem; color: #25D366; }
body.bk-has-demo-banner .topbar { top: 0; }

#bkDemoFab { position: fixed; bottom: 22px; right: 22px; z-index: 9000; display: flex; align-items: center; gap: 10px; padding: 14px 22px; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; border-radius: 100px; text-decoration: none; font-weight: 700; box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4); animation: bk-fab-bounce 3s ease-in-out infinite; transition: transform 0.2s; }
#bkDemoFab:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5); }
#bkDemoFab i { font-size: 1.4rem; }
@keyframes bk-fab-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@media (max-width: 600px) {
    #bkDemoBanner { font-size: 0.8rem; padding: 8px 12px; }
    .bk-demo-msg span { font-size: 0.78rem; }
    .bk-demo-cta { padding: 6px 10px; font-size: 0.78rem; }
    #bkDemoFab span { display: none; }
    #bkDemoFab { padding: 14px; }
}

/* ═══════════════════════════════════════
   CUSTOMER MOBILE-FIRST POLISH
   Berberlerin telefondan kullanım odaklı
   ═══════════════════════════════════════ */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
* { -webkit-tap-highlight-color: transparent; }
*, .modal-box { -webkit-overflow-scrolling: touch; }

/* Buton tap targets */
@media (max-width: 600px) {
    button, a[role="button"], .btn-gold, .btn-ghost, .cta-btn, .btn-cancel-nav,
    .t-tab, .form-nav button, .time-grid > button, .cal-days > div {
        min-height: 44px;
    }
}

/* Form inputs iOS zoom önle */
@media (max-width: 600px) {
    input, textarea, select { font-size: 16px !important; }
}

/* Modal -> bottom sheet (mobile) */
@media (max-width: 700px) {
    .modal-bg.on, .modal-bg.active { align-items: flex-end !important; padding: 0 !important; }
    .modal-box {
        width: 100% !important; max-width: 100% !important;
        max-height: 92vh !important;
        border-radius: 20px 20px 0 0 !important;
        margin: 0 !important;
        overflow-y: auto;
        padding-bottom: calc(20px + env(safe-area-inset-bottom, 0)) !important;
        animation: customer-sheet-up 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    @keyframes customer-sheet-up { from { transform: translateY(100%); } to { transform: translateY(0); } }
    .modal-box:not(.lightbox-box):before {
        content: "";
        display: block;
        width: 40px; height: 4px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 100px;
        margin: 8px auto 4px;
    }
    .popup-close { top: 14px !important; right: 14px !important; }
}

/* Topbar mobile */
@media (max-width: 600px) {
    .topbar-inner { padding: 8px 12px !important; gap: 8px; }
    .brand-text {
        font-size: 0.85rem !important;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .brand-logo { width: 32px !important; height: 32px !important; }
    .topbar-right { gap: 6px !important; }
    .status-pill { display: none; }
}

/* Booking panel mobile */
@media (max-width: 600px) {
    .booking-panel { padding: 18px 14px !important; border-radius: 14px !important; }
    .panel-header { gap: 10px; }
    .panel-header h1 { font-size: 1.25rem; }
    .panel-header p { font-size: 0.85rem; }
    .panel-icon { width: 44px !important; height: 44px !important; font-size: 1.05rem !important; }
    .form-step { animation: none; }
    .step-title { font-size: 1.02rem; gap: 8px; }
    .step-ind span { font-size: 0.66rem; }
    .step-circle { width: 32px !important; height: 32px !important; font-size: 0.78rem; }
    .progress-bar { gap: 8px; }
    .field { margin-bottom: 14px; }
    .field label { font-size: 0.85rem; margin-bottom: 6px; }
    .row2 { grid-template-columns: 1fr !important; gap: 12px !important; }
}

/* Takvim mobile */
@media (max-width: 600px) {
    .cal-widget { padding: 12px !important; border-radius: 12px; }
    .cal-header { margin-bottom: 10px; }
    .cal-month { font-size: 0.92rem; }
    .cal-nav { width: 32px; height: 32px; }
    .cal-weekdays { gap: 4px; font-size: 0.7rem; margin-bottom: 8px; }
    .cal-days { gap: 4px; }
    .cal-days > div {
        font-size: 0.85rem !important;
        min-height: 38px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 8px;
    }
    .date-range-hint { font-size: 0.78rem; padding: 8px 10px; }
}

/* Saat slot grid mobile */
@media (max-width: 600px) {
    .time-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 6px !important; }
    .time-grid > button {
        padding: 11px 4px !important;
        font-size: 0.85rem !important;
        border-radius: 10px !important;
    }
    .time-tabs { gap: 4px; margin-bottom: 10px; }
    .t-tab { padding: 8px 10px; font-size: 0.78rem; }
    .slot-legend { font-size: 0.74rem; }
}

/* Personel seçim kartları mobile */
@media (max-width: 600px) {
    .staff-picks { grid-template-columns: 1fr !important; gap: 10px !important; }
    .s-pick { padding: 12px !important; gap: 12px; }
    .s-pick img { width: 52px !important; height: 52px !important; }
    .s-pick .nm { font-size: 0.95rem; }
    .s-pick .role-mini { font-size: 0.75rem; }
}

/* Personel showcase mobile */
@media (max-width: 600px) {
    .staff-showcase { padding: 30px 14px; }
    .showcase-header { margin-bottom: 18px; }
    .showcase-tag { font-size: 0.75rem; }
    .staff-carousel { padding: 0; }
    .staff-card { min-width: 240px; }
    .staff-card-img { aspect-ratio: 1; }
    .gallery-scroll img { width: 180px; height: 180px; }
}

/* Yan sidebar (saatler/fiyat/harita) mobile */
@media (max-width: 900px) {
    .main-layout { grid-template-columns: 1fr !important; gap: 16px; }
    .sidebar:not(.admin-layout .sidebar) {
        order: 1;
    }
}
@media (max-width: 600px) {
    .side-card { padding: 16px !important; border-radius: 14px; }
    .side-card h3 { font-size: 0.98rem; }
    .hours-list li { font-size: 0.85rem; padding: 7px 0; }
    .price-row { font-size: 0.85rem; padding: 7px 0; }
}

/* Splash mobile */
@media (max-width: 600px) {
    .splash-content { padding: 0 24px; }
    .splash-pole { width: 32px; height: 54px; }
    .splash-brand { font-size: 1.7rem; }
    .splash-sub { font-size: 0.78rem; }
    .splash-logo { width: 60px; height: 60px; }
}

/* Cancel modal mobile */
@media (max-width: 600px) {
    #cancelRequestModal .modal-box { padding: 18px 16px !important; }
    #cancelRequestModal h3 { font-size: 1.1rem; }
}

/* Success modal mobile */
@media (max-width: 600px) {
    .success-modal { padding: 24px 18px !important; }
    .success-check { width: 70px; height: 70px; font-size: 2rem; }
    .success-modal h2 { font-size: 1.3rem; }
}

/* Hover devre dışı touch'ta */
@media (hover: none) {
    .staff-card:hover, .price-row:hover, .feature:hover, .btn-gold:hover { transform: none; }
}

/* Footer mobile */
@media (max-width: 600px) {
    footer { padding: 24px 16px !important; font-size: 0.85rem; }
    .footer-credit { font-size: 0.78rem; }
}

/* Scrollbar mobile */
@media (max-width: 600px) {
    ::-webkit-scrollbar { width: 4px; height: 4px; }
    ::-webkit-scrollbar-thumb { background: var(--gold, #d4a843); border-radius: 100px; }
}


/* ═══════════════════════════════════════
   NO-CUTOFF / NO-OVERFLOW — Tüm cihazlarda %100 uyum
   En son yüklenir, mevcut kuralları override eder
   ═══════════════════════════════════════ */

/* ── Root: yatay scroll asla olmasın ── */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
}

/* ── Border-box her şeyde, minimum genişlik 0 ── */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    min-width: 0;
}

/* ── Uzun kelimeler taşmasın (URL, email, isim) ── */
p, span, div, td, th, h1, h2, h3, h4, h5, h6, li, a, label, strong, em, code, small {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* ── Medya elemanları viewport'tan büyük olmasın ── */
img, video, canvas, svg, iframe, picture, embed, object {
    max-width: 100% !important;
    height: auto;
}
canvas.chartjs-render-monitor { height: auto !important; }
canvas {
    display: block;
    max-width: 100%;
}

/* ── Pre/code blok taşmasın ── */
pre, code {
    white-space: pre-wrap;
    word-break: break-word;
    max-width: 100%;
}

/* ── Tablo taşmaları için container ── */
table {
    max-width: 100%;
    table-layout: auto;
}

/* ── Container/wrapper'lar viewport'a göre ── */
.main-content,
.admin-section,
.panel,
.modal-box,
.admin-modal,
.booking-panel,
.sidebar:not(.admin-layout .sidebar),
.side-card,
.staff-showcase,
.gallery-showcase,
section,
footer,
header,
main {
    max-width: 100%;
}

/* ── Flex/grid çocukları min-width: 0 ── */
.flex > *, [class*="grid"] > * {
    min-width: 0;
}

/* ── Sayfa header'ları ── */
.page-header, .panel-head-row {
    max-width: 100%;
    overflow: hidden;
}

/* ── Sticky/fixed elemanlar viewport'u aşmasın ── */
.topbar, .admin-demo-banner, .bottom-nav, #bkDemoBanner {
    max-width: 100vw;
    left: 0;
    right: 0;
}

/* ── Toolbarlardaki flex satırlar wrap olsun ── */
.finance-toolbar,
.adb-inner,
.bk-demo-inner,
.topbar-inner,
.panel-head-row,
.about-cta,
.about-cta-actions,
.hero-actions,
.form-nav,
.modal-actions {
    flex-wrap: wrap;
}

/* ── Period tabs ve diğer scrollable nav'lar yatay scroll içerisin ── */
.finance-period-tabs,
.time-tabs,
.cal-weekdays {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

/* ── Mobile-first viewport tweaks ── */
@media (max-width: 1024px) {
    /* Form/grid layouts mobil tek sütun */
    .form-grid,
    .row2,
    .finance-grid-2,
    .features,
    .pricing-grid,
    .steps,
    .hero-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    /* Tüm grid'leri mobilde tek sütuna düşür */
    .finance-stats,
    .stats-grid,
    .dashboard-stats,
    .about-features,
    .demo-features {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    /* En küçük ekranlarda 2 sütun finance stats */
    .finance-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
}

@media (max-width: 420px) {
    /* Ultra dar ekran (Galaxy Fold vs.) */
    .finance-stats { grid-template-columns: 1fr !important; }
    .demo-flow-step { gap: 10px; }
    .demo-cta-actions { flex-direction: column; }
    .demo-cta-btn { width: 100%; min-width: 0; }
    .hero-stats { gap: 14px; flex-wrap: wrap; }
    .stat-num { font-size: 1.2rem !important; }
}

/* ── Modal scroll kontrolü ── */
.modal-box, .admin-modal {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 95vh;
}

/* ── Toast/dropdown/popover'lar viewport içinde ── */
.toast, .dropdown-menu, .popover {
    max-width: calc(100vw - 24px);
}

/* ── Resimler skeleton ile yüklenince layout kaymaz ── */
.staff-card img, .gallery-scroll img {
    aspect-ratio: 1;
    object-fit: cover;
}

/* ── Long buttons sığsın ── */
.modern-btn, .btn-gold, .btn-ghost, .cta-btn, .btn-cancel-nav {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Title uzunsa kesilmesin, alt satıra atsın ── */
.page-header h2, .panel h3 {
    flex-wrap: wrap;
    overflow-wrap: break-word;
}

/* ── Pricing/staff items mobile ── */
@media (max-width: 600px) {
    .price-row, .hours-list li, .review-item {
        flex-wrap: wrap;
        gap: 6px;
    }
    .price-row .amt { flex-shrink: 0; }
}

/* ── Section info card mobile ── */
@media (max-width: 480px) {
    .section-info-card { gap: 10px; padding: 14px 12px; }
    .section-info-icon { width: 34px; height: 34px; font-size: 0.9rem; }
}

/* ── Demo banner inner çok uzunsa wrap ── */
.adb-inner > .adb-msg { min-width: 0; flex: 1; }
.adb-msg span { overflow-wrap: anywhere; }

/* ── Charts container ── */
.finance-chart-wrap {
    width: 100%;
    overflow: hidden;
}

/* ── Tüm grid'lerin gap'leri kontrol altında ── */
@media (max-width: 600px) {
    .features, .pricing-grid, .steps, .finance-grid-2, .form-grid { gap: 12px !important; }
}

/* ── Selectbox/input mobilde overflow yok ── */
@media (max-width: 600px) {
    input, textarea, select, button {
        max-width: 100%;
    }
}

/* ── Tarih bilgisi tek satıra zorlanmasın ── */
.appt-detail-value, .sms-log-date, .activity-log-row {
    overflow-wrap: anywhere;
}

/* ── Footer credit uzunsa wrap olsun ── */
.bahalabs-footer, footer p { flex-wrap: wrap; }

/* ── Light theme: scrollbar görünür ── */
[data-theme="light-modern"] ::-webkit-scrollbar-thumb { background: #2563eb; }

/* ── Sidebar drawer içinde overflow hidden olsun ── */
@media (max-width: 900px) {
    .sidebar { overflow-x: hidden; }
    .sidebar-nav { overflow-y: auto; }
}

/* ── Login shell taşması ── */
.login-shell { max-width: 100%; overflow: hidden; }
.login-card, .demo-pitch { max-width: 100%; }

/* ── About modal taşma garantisi ── */
.about-modal {
    max-width: min(720px, 100vw - 8px) !important;
}
@media (max-width: 700px) {
    .about-modal { max-width: 100% !important; }
}

/* ── Floating elemanlar (FAB) kenara yaslanmasın ── */
#adminDemoFab, #bkDemoFab, .float-wa {
    right: max(14px, env(safe-area-inset-right, 14px));
    left: auto;
}

/* ── Mockup phone responsive ── */
.hero-phone { max-width: min(340px, 100%); }

/* ── Gallery yatay scroll içerisin ── */
.gallery-scroll, .staff-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar, .staff-carousel::-webkit-scrollbar { display: none; }
.gallery-scroll > *, .staff-carousel > * { scroll-snap-align: start; flex-shrink: 0; }

/* ── İptal modali içeriği taşmasın ── */
#cancelRequestModal .modal-box ul { padding-left: 18px; }

/* ── Generic body overflow tampon ── */
body { word-wrap: break-word; }

/* ── Şüpheli durumlarda safe-area ── */
@supports (padding: max(0px)) {
    .bottom-nav, footer {
        padding-bottom: max(8px, env(safe-area-inset-bottom));
    }
    .topbar, .admin-demo-banner {
        padding-top: max(0px, env(safe-area-inset-top));
    }
}

