/* ═══════════════════════════════════════════
   BarberClub — Mon Compte (Espace Fidelite)
   Requires: base.css loaded first
   ═══════════════════════════════════════════ */

/* ======== BODY OVERRIDE ======== */
body {
    display: flex;
    flex-direction: column;
}

/* ======== HEADER (sticky, page-specific) ======== */
.header {
    position: sticky;
    top: 0;
    left: auto;
    right: auto;
    z-index: 100;
    padding: 12px 16px;
    padding-top: max(12px, env(safe-area-inset-top));
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.header-left {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-center {
    text-align: center;
    flex: 1;
}

.header-right {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-subtitle {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 1px;
}

.header-back {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.header-back:active { transform: scale(0.93); background: rgba(255, 255, 255, 0.15); }
.header-back svg { width: 16px; height: 16px; }

.btn-logout-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.2s;
    border-radius: 50%;
}
.btn-logout-icon:hover,
.btn-logout-icon:focus-visible { color: #ef4444; }
.btn-logout-icon svg { width: 18px; height: 18px; }

/* ======== CONTAINER ======== */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 16px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

/* ======== STATES ======== */
.state { display: none; width: 100%; }
.state.active { display: block; }

/* ======== SPINNER ======== */
.spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 60px auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* ============================================
   AUTH BACKGROUND — salon photo
   ============================================ */

.auth-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.auth-bg-img {
    position: absolute;
    inset: -30px;
    background: url('../images/salons/meylan/salon-meylan-v3.jpg') center/cover no-repeat;
    filter: brightness(0.3) saturate(0.7);
    animation: authKenBurns 25s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes authKenBurns {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.08) translate(-0.5%, -0.8%); }
    100% { transform: scale(1.15) translate(-1.5%, -1%); }
}

.auth-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        linear-gradient(180deg,
            rgba(0,0,0,0.6) 0%,
            rgba(0,0,0,0.2) 25%,
            rgba(0,0,0,0.15) 40%,
            rgba(0,0,0,0.4) 65%,
            rgba(0,0,0,0.85) 85%,
            rgba(0,0,0,0.98) 100%);
}

/* ---- Particles ---- */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -10px;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    8% { opacity: 0.4; }
    92% { opacity: 0.4; }
    100% { transform: translateY(-110vh) translateX(15px); opacity: 0; }
}

/* ---- Separator glow ---- */
.auth-separator-glow {
    position: relative;
    height: 1px;
    margin: 0 auto 20px;
    overflow: hidden;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.auth-separator-glow::after {
    content: '';
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    animation: sepTravel 5s ease-in-out infinite;
}

@keyframes sepTravel {
    0% { left: -30%; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 90%; opacity: 1; }
    60% { opacity: 0; }
    100% { left: -30%; opacity: 0; }
}

.auth-bg.hidden { display: none; }

/* ============================================
   STATE 2 : AUTH (Login / Register)
   ============================================ */

.auth-wrapper {
    width: 100%;
    text-align: center;
}

.auth-hero {
    margin-bottom: 28px;
    position: relative;
    padding-top: 24px;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 65%);
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.9); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.auth-logo {
    margin: 0 auto 14px;
    position: relative;
}

.auth-crown {
    width: 20px;
    height: auto;
    opacity: 0.5;
    display: block;
    margin: 0 auto 8px;
    animation: crownFloat 5s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.auth-logo-img {
    height: 70px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.05));
}

.auth-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.auth-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 0;
}

.auth-feature {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.auth-feature-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* ---- Auth choice cards (from booking.css pattern) ---- */
.auth-choice { width: 100%; }
.hidden { display: none !important; }

.auth-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 22px 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    -webkit-user-select: none;
    user-select: none;
    overflow: hidden;
    margin-bottom: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.auth-option::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 18px;
    background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}
.auth-option:active { transform: scale(0.975); }

.auth-option-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    flex-shrink: 0;
}
.auth-option-icon svg { opacity: 0.7; }

.auth-option-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.auth-option-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.auth-option-desc { font-size: 12px; color: rgba(255, 255, 255, 0.35); }
.auth-option-arrow { flex-shrink: 0; opacity: 0.2; }

/* ---- Signup CTA card ---- */
.auth-signup-cta { position: relative; text-align: center; margin-top: 20px; }

.auth-signup-divider {
    display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
}
.auth-signup-divider-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.auth-signup-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px; font-weight: 800;
    color: #fff; margin: 0;
    letter-spacing: 0.14em; text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255,255,255,0.4), 0 0 40px rgba(255,255,255,0.15);
    animation: labelGlow 3s ease-in-out infinite;
    white-space: nowrap;
}
@keyframes labelGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255,255,255,0.3), 0 0 40px rgba(255,255,255,0.1); }
    50% { text-shadow: 0 0 24px rgba(255,255,255,0.5), 0 0 48px rgba(255,255,255,0.2); }
}

.auth-signup-card {
    position: relative; width: 100%;
    padding: 24px 22px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #fff; text-align: left;
    overflow: hidden; cursor: pointer;
    backdrop-filter: blur(30px) saturate(1.2);
    -webkit-backdrop-filter: blur(30px) saturate(1.2);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.auth-signup-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

.auth-signup-card-shine {
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.03) 35%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.03) 65%, transparent 80%);
    animation: shimmerSlide 5s ease-in-out infinite;
    pointer-events: none;
}
@keyframes shimmerSlide { 0%, 100% { left: -100%; } 45% { left: 150%; } }

.auth-signup-card-content { position: relative; z-index: 1; }
.auth-signup-logo {
    display: block; width: auto; height: 48px;
    margin: 0 auto 18px;
    filter: invert(1); opacity: 0.9;
}
.auth-signup-perks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.auth-perk {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: rgba(255, 255, 255, 0.45);
}
.auth-perk svg { opacity: 0.5; flex-shrink: 0; }
.auth-signup-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 14px;
    background: #fff; color: #111;
    border: none; border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.auth-signup-btn:active { transform: scale(0.97); opacity: 0.9; }

/* ---- Auth form section (login/register) ---- */
.auth-form-section { width: 100%; }

.auth-back-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: none; border: none; color: rgba(255,255,255,0.5);
    font-size: 13px; font-weight: 500;
    cursor: pointer; padding: 8px 0; margin-bottom: 16px;
    transition: color 0.2s;
}
.auth-back-btn:hover { color: #fff; }
.auth-back-btn svg { flex-shrink: 0; }

.auth-card {
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(40px) saturate(1.2);
    -webkit-backdrop-filter: blur(40px) saturate(1.2);
    padding: 28px 22px;
    text-align: left;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.auth-form { display: block; }
.auth-form.hidden { display: none; }

.auth-form-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* iOS anti-zoom */
    font-weight: 400;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}
.form-group input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

/* Password wrapper with eye toggle */
.input-password-wrap {
    position: relative;
}

.input-password-wrap input {
    padding-right: 48px;
}

.btn-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}
.btn-eye:hover,
.btn-eye:focus-visible { color: rgba(255, 255, 255, 0.7); }
.btn-eye svg { width: 18px; height: 18px; pointer-events: none; }

/* Password strength */
.password-strength {
    margin-top: 8px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s, background 0.3s;
}

.password-strength-bar.weak { width: 33%; background: #ef4444; }
.password-strength-bar.medium { width: 66%; background: #f59e0b; }
.password-strength-bar.strong { width: 100%; background: #22c55e; }

.password-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 6px;
    line-height: 1.4;
}

/* Auth error */
.auth-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #ef4444;
    line-height: 1.5;
    display: none;
    animation: errorSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.auth-error.visible { display: block; }

.auth-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #22c55e;
    line-height: 1.5;
    text-align: center;
    animation: errorSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.auth-success.hidden { display: none; }

@keyframes errorSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Primary button (white bg, Orbitron) */
.btn-primary {
    width: 100%;
    padding: 16px;
    background: #fff;
    border: none;
    border-radius: 14px;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 4px;
}
.btn-primary:active { transform: scale(0.97); opacity: 0.9; }
.btn-primary:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

/* Forgot password */
.forgot-link {
    display: block;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    margin-top: 16px;
    transition: color 0.2s;
}
.forgot-link:hover { color: rgba(255, 255, 255, 0.7); }

/* Auth separator */
.auth-separator {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.auth-separator-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.auth-separator-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

/* Toggle auth mode */
.btn-toggle-auth {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-toggle-auth:active { transform: scale(0.97); }
.btn-toggle-auth:hover { background: rgba(255, 255, 255, 0.07); color: rgba(255, 255, 255, 0.8); }

/* ============================================
   STATE 3 : ACCOUNT (Tabs)
   ============================================ */

/* ============================================
   ACCOUNT AMBIENT BACKGROUND
   ============================================ */

.account-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: #000;
}
.account-bg.hidden { display: none; }

.account-bg-img {
    position: absolute;
    inset: -30px;
    background: center/cover no-repeat;
    filter: brightness(0.12) saturate(0.4) blur(4px);
    animation: authKenBurns 35s ease-in-out infinite alternate;
    will-change: transform;
}

.account-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.9) 100%);
}

/* ============================================
   WELCOME HERO (logged-in)
   ============================================ */

.welcome {
    text-align: center;
    padding: 4px 0 28px;
}

.welcome-avatar-wrap {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
}

.welcome-avatar-wrap::before {
    content: '';
    position: absolute;
    inset: -24px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    z-index: 0;
}

.welcome-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.welcome-avatar-ring {
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.18);
    border-right-color: rgba(255, 255, 255, 0.04);
    animation: ringRotate 10s linear infinite;
    z-index: 0;
}

.welcome-avatar-ring-2 {
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    border-left-color: rgba(255, 255, 255, 0.02);
    animation: ringRotate 18s linear infinite reverse;
    z-index: 0;
}

@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.welcome-name {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 4px;
    color: #fff;
    line-height: 1.2;
}

.welcome-since {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

/* ---- Stats bar ---- */
.welcome-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.welcome-stats::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 15%, rgba(255,255,255,0.08) 50%, transparent 85%);
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 3px;
    line-height: 1;
}

.stat-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.08), transparent);
    flex-shrink: 0;
}

/* ---- Tabs ---- */
.tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 4px;
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tab-btn {
    flex: 1;
    padding: 10px 4px;
    background: none;
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}

.tab-btn.active {
    color: #fff;
}

.tab-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc(50% - 4px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 11px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tab-indicator.right {
    transform: translateX(100%);
}

.tab-panel { display: none; width: 100%; }
.tab-panel.active { display: block; }

/* ---- Bookings Tab ---- */

/* Prochain RDV — frosted glass card */
.booking-next {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
    box-shadow:
        0 0 80px rgba(255, 255, 255, 0.025),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(40px) saturate(1.3);
    -webkit-backdrop-filter: blur(40px) saturate(1.3);
    animation: fadeSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
    overflow: hidden;
}

.booking-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.1) 70%, transparent 95%);
}

.booking-next::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.booking-next-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.booking-next-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.booking-next .detail-row {
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

.booking-next-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.btn-booking-action {
    flex: 1;
    padding: 11px 8px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
}
.btn-booking-action:active { transform: scale(0.95); }
.btn-booking-action svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-booking-action.reschedule {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-booking-action.cancel {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.btn-booking-action.calendar {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

/* ---- Booking card (compact, visual) ---- */
.booking-card {
    display: flex;
    gap: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 10px;
    width: 100%;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.booking-card:not(.past):hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    pointer-events: none;
}

/* Left: barber photo or initial circle */
.booking-card-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.booking-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    text-transform: uppercase;
}

/* Right: info */
.booking-card-info {
    flex: 1;
    min-width: 0;
}

.booking-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.booking-card-service {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-card-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.booking-card-status.confirmed { background: rgba(34,197,94,0.12); color: #22c55e; }
.booking-card-status.completed { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }
.booking-card-status.cancelled { background: rgba(239,68,68,0.08); color: rgba(239,68,68,0.6); }
.booking-card-status.no_show { background: rgba(245,158,11,0.1); color: rgba(245,158,11,0.7); }

.booking-card-status-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.booking-card-barber {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.booking-card-bottom {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.booking-card-bottom svg {
    width: 12px; height: 12px; flex-shrink: 0; opacity: 0.4;
}

.booking-card-dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.booking-card-price {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

/* Muted past cards */
.booking-card.past { opacity: 0.55; }
.booking-card.past:hover { opacity: 0.7; }

/* ---- Legacy detail rows (for prochain RDV gold card) ---- */
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.detail-row:last-child { border-bottom: none; }

.detail-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
}

/* History section */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.25);
    margin: 28px 0 14px;
    padding-left: 2px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

/* Muted history cards */
.booking-card.past {
    opacity: 0.65;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 48px 20px;
}

.empty-state-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}
.empty-state-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.03);
}
.empty-state-icon svg { width: 28px; height: 28px; color: rgba(255, 255, 255, 0.25); }

.empty-state-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 24px;
    line-height: 1.6;
}

.empty-state-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    background: #fff;
    border: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.06);
}
.empty-state-link:active { transform: scale(0.96); opacity: 0.9; }

/* Bottom CTA */
.bottom-cta {
    margin-top: 24px;
    width: 100%;
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #fff;
    border: none;
    border-radius: 14px;
    color: #000;
    font-family: 'Orbitron', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.06);
}
.btn-cta:active { transform: scale(0.97); opacity: 0.9; }
.btn-cta svg { width: 16px; height: 16px; }

/* ---- Profile Tab ---- */

/* Avatar */
.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.03);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.profile-avatar::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    padding: 4px 20px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    pointer-events: none;
}

.profile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.profile-row:last-child { border-bottom: none; }

.profile-row-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.profile-row-value {
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Profile actions */
.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-secondary {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); color: #fff; }
.btn-secondary:active { transform: scale(0.97); }
.btn-secondary svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-danger {
    width: 100%;
    padding: 14px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 14px;
    color: #ef4444;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-danger:hover { background: rgba(239, 68, 68, 0.15); }
.btn-danger:active { transform: scale(0.97); }
.btn-danger svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-logout-full {
    width: 100%;
    padding: 14px;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}
.btn-logout-full:hover { color: rgba(255, 255, 255, 0.7); border-color: rgba(255, 255, 255, 0.15); }
.btn-logout-full:active { transform: scale(0.97); }
.btn-logout-full svg { width: 16px; height: 16px; }

/* ============================================
   DIALOGS (confirm cancel + delete account)
   ============================================ */

.dialog-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.dialog-overlay.active { display: flex; }

.dialog {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px 24px;
    max-width: 360px;
    width: 100%;
    text-align: center;
    animation: dialogIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dialogIn {
    from { opacity: 0; transform: scale(0.95) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.dialog h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.dialog p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    line-height: 1.5;
}

.dialog .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.dialog-actions {
    display: flex;
    gap: 10px;
}

.dialog-actions button {
    flex: 1;
    padding: 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}
.dialog-actions button:active { transform: scale(0.97); }

.btn-dialog-cancel {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-dialog-confirm {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.btn-dialog-confirm:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in { animation: fadeSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) both; }
.fade-in:nth-child(1) { animation-delay: 0.05s; }
.fade-in:nth-child(2) { animation-delay: 0.12s; }
.fade-in:nth-child(3) { animation-delay: 0.19s; }
.fade-in:nth-child(4) { animation-delay: 0.26s; }
.fade-in:nth-child(5) { animation-delay: 0.33s; }
.fade-in:nth-child(6) { animation-delay: 0.4s; }
.fade-in:nth-child(7) { animation-delay: 0.47s; }
.fade-in:nth-child(8) { animation-delay: 0.54s; }

/* ============================================
   ACCESSIBILITY
   ============================================ */

.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #fff;
    color: #000;
    padding: 8px 16px;
    z-index: 10000;
    font-size: 14px;
    text-decoration: none;
    transition: top 0.2s;
    transform: none;
    border-radius: 0;
}
.skip-to-content:focus { top: 0; }

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .fade-in { animation: none !important; opacity: 1; transform: none; }
    .booking-next-badge-dot { animation: none !important; opacity: 1; }
    .dialog { animation: none !important; }
    .auth-error { animation: none !important; }
    .welcome-avatar-ring,
    .welcome-avatar-ring-2 { animation: none !important; }
    .account-bg-img { animation: none !important; }
    .particle { display: none !important; }
    .auth-separator-glow::after { animation: none !important; }
    .auth-hero::before { animation: none !important; }
    .auth-signup-card-shine { animation: none !important; }
}

/* ============================================
   RESPONSIVE — 768px+
   ============================================ */

@media (min-width: 768px) {
    .header {
        padding: 16px 32px;
    }

    .header-title {
        font-size: 18px;
    }

    .header-subtitle {
        font-size: 11px;
        letter-spacing: 0.15em;
    }

    .container {
        max-width: 560px;
        padding: 40px 24px;
    }

    .auth-brand {
        font-size: 26px;
    }

    .auth-card {
        padding: 32px 28px;
        border-radius: 20px;
    }

    .auth-form-title {
        font-size: 15px;
    }

    .booking-next {
        padding: 24px;
        border-radius: 20px;
    }

    .booking-card {
        padding: 24px;
        border-radius: 20px;
    }

    .booking-next-actions {
        gap: 10px;
    }

    .btn-booking-action {
        padding: 12px 10px;
        font-size: 13px;
    }

    .detail-row {
        padding: 12px 0;
    }

    .detail-label {
        font-size: 14px;
    }

    .detail-value {
        font-size: 15px;
    }

    .welcome-name {
        font-size: 32px;
    }

    .welcome-avatar, .welcome-avatar-wrap {
        width: 96px;
        height: 96px;
    }

    .welcome-avatar {
        font-size: 26px;
    }

    .stat-value {
        font-size: 24px;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .profile-card {
        padding: 4px 24px;
        border-radius: 20px;
    }

    .profile-row {
        padding: 16px 0;
    }

    .profile-row-label {
        font-size: 14px;
    }

    .profile-row-value {
        font-size: 15px;
    }

    .tab-btn {
        font-size: 14px;
        padding: 12px 4px;
    }

    .btn-primary:hover {
        opacity: 0.9;
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    }

    .btn-cta:hover {
        opacity: 0.9;
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    }

    .dialog {
        max-width: 420px;
        padding: 32px 28px;
        border-radius: 24px;
    }

    .dialog h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }

    .dialog p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .dialog-actions button {
        padding: 16px;
        font-size: 14px;
        border-radius: 14px;
    }
}

/* ============================================
   RESPONSIVE — 1024px+
   ============================================ */

@media (min-width: 1024px) {
    .header {
        padding: 18px 48px;
    }

    .header-title {
        font-size: 20px;
    }

    .container {
        max-width: 640px;
        padding: 48px 32px;
    }

    .auth-card {
        padding: 36px 32px;
    }

    .booking-next {
        padding: 28px;
    }

    .booking-card {
        padding: 28px;
    }

    .detail-row {
        padding: 14px 0;
    }

    .detail-label {
        font-size: 15px;
    }

    .detail-value {
        font-size: 16px;
    }

    .profile-row {
        padding: 18px 0;
    }

    .profile-row-label {
        font-size: 15px;
    }

    .profile-row-value {
        font-size: 16px;
        max-width: 280px;
    }

    .dialog {
        max-width: 480px;
        padding: 36px 32px;
    }

    .dialog h3 {
        font-size: 18px;
    }

    .dialog-actions button {
        padding: 18px;
    }
}
