:root {
    /* -----------------------------------------------------------------
       Dark theme tokens (single source of truth)
       ----------------------------------------------------------------- */
    --ls-bg: #0B1220;
    --ls-surface: #111827;
    --ls-surface-2: #223764;
    --ls-surface-3: #172033;

    --ls-border: rgba(255, 255, 255, 0.08);
    --ls-border-strong: rgba(255, 255, 255, 0.12);

    --ls-text: rgba(255, 255, 255, 0.92);
    --ls-text-secondary: rgba(255, 255, 255, 0.68);
    --ls-text-muted: rgba(255, 255, 255, 0.48);

    --ls-primary: #6366F1;
    --ls-primary-hover: #4F46E5;
    --ls-primary-soft: rgba(99, 102, 241, 0.16);

    --ls-success: #22C55E;
    --ls-success-soft: rgba(34, 197, 94, 0.14);

    --ls-warning: #F59E0B;
    --ls-warning-soft: rgba(245, 158, 11, 0.14);

    --ls-danger: #F43F5E;
    --ls-danger-soft: rgba(244, 63, 94, 0.14);

    --ls-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.28);
    --ls-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.22);

    /* -----------------------------------------------------------------
       Backwards compatible aliases (keep existing class behavior)
       ----------------------------------------------------------------- */
    --ls-bg-soft: var(--ls-bg);
    --ls-bg-panel: rgba(11, 18, 32, 0.72);
    --ls-bg-panel-strong: rgba(11, 18, 32, 0.84);
    --ls-card: var(--ls-surface);
    --ls-card-soft: var(--ls-surface-2);
    --ls-text-dark: rgba(0, 0, 0, 0.88);
    --ls-accent: var(--ls-primary);
    --ls-accent-2: var(--ls-primary);
    --ls-accent-3: var(--ls-success);
    --ls-shadow: var(--ls-shadow-md);
    --ls-shadow-soft: var(--ls-shadow-sm);

    --ls-on-primary: rgba(255, 255, 255, 0.92);
    /* Preferred token name (keep --ls-on-primary for backwards compatibility). */
    --ls-primary-fg: var(--ls-on-primary);

    /* App-level primitives used across existing templates */
    --ls-page-bg: var(--ls-bg);               /* global background */
    --ls-fg: var(--ls-text);                 /* main text */
    --ls-fg-muted: var(--ls-text-secondary); /* secondary text */
    --ls-fg-soft: var(--ls-text-muted);      /* muted text */

    --ls-surface-elevated: var(--ls-surface-2);
    --ls-surface-muted: var(--ls-surface-3);
    --ls-surface-panel: var(--ls-surface-3);

    --ls-border-light: var(--ls-border);
    --ls-border-strong-light: rgba(99, 102, 241, 0.30);
    --ls-selected-bg: var(--ls-primary-soft);

    --ls-neutral: var(--ls-text-secondary);

    /* Spacing scale (use in new utilities/components) */
    --ls-space-1: 0.25rem;
    --ls-space-2: 0.5rem;
    --ls-space-3: 0.75rem;
    --ls-space-4: 1rem;
    --ls-space-5: 1.25rem;
    --ls-space-6: 1.5rem;
    --ls-space-8: 2rem;
    --ls-space-10: 2.5rem;
    --ls-space-12: 3rem;

    /* Rounded-xl for controls, rounded-2xl for cards. */
    --ls-radius-control: 0.75rem;
    --ls-radius-card: 1rem;
    --ls-radius-pill: 9999px;

    /* Flat surfaces: use layering more than shadows. */
    --ls-shadow-card: var(--ls-shadow-sm);
    --ls-shadow-card-hover: var(--ls-shadow-md);
    --ls-shadow-modal: 0 24px 60px -28px rgba(0, 0, 0, 0.62);

    /* Layout */
    --ls-container-max: 80rem; /* ~1280px */
    --ls-container-max-wide: 96rem; /* ~1536px */
    --ls-header-height: 64px;
    --ls-anchor-gap: 12px;
    --ls-anchor-offset: calc(var(--ls-header-height) + var(--ls-anchor-gap));

    /* Controls */
    --ls-control-bg: var(--ls-surface-3);
    --ls-control-fg: var(--ls-fg);
    --ls-control-border: var(--ls-border-light);

    /* Buttons */
    --ls-btn-secondary-bg: var(--ls-surface-2);
    --ls-btn-secondary-fg: var(--ls-fg);
    --ls-btn-secondary-border: var(--ls-border-strong);

    --ls-btn-ghost-bg: transparent;
    --ls-btn-ghost-fg: var(--ls-fg-muted);
    --ls-btn-ghost-border: var(--ls-border);

    /* Badges */
    --ls-badge-neutral-bg: var(--ls-surface-2);
    --ls-badge-neutral-border: var(--ls-border);
    --ls-badge-neutral-fg: var(--ls-fg-muted);

    --ls-badge-success-bg: var(--ls-success-soft);
    --ls-badge-success-border: rgba(34, 197, 94, 0.22);
    --ls-badge-success-fg: var(--ls-success);

    --ls-badge-warning-bg: var(--ls-warning-soft);
    --ls-badge-warning-border: rgba(245, 158, 11, 0.22);
    --ls-badge-warning-fg: var(--ls-warning);

    --ls-badge-danger-bg: var(--ls-danger-soft);
    --ls-badge-danger-border: rgba(244, 63, 94, 0.22);
    --ls-badge-danger-fg: var(--ls-danger);
}

/* -----------------------------------------------------------------
   Theme scopes
   ----------------------------------------------------------------- */
.ls-theme-partner {
    /* Light theme = defaults in :root (intentionally empty). */
}

body.ls-theme-partner {
    color-scheme: dark;
    background: var(--ls-page-bg);
    color: var(--ls-fg);
}

body.ls-theme-customer {
    color-scheme: dark;
    background: var(--ls-page-bg);
    color: var(--ls-fg);
}

body {
    font-family: ui-sans-serif, system-ui, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--ls-anchor-offset);
}

[id] {
    scroll-margin-top: var(--ls-anchor-offset);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

::selection {
    background: var(--ls-primary-soft);
    color: var(--ls-fg);
}

hr {
    border: 0;
    border-top: 1px solid var(--ls-border-light);
}

/* Scrollbars (subtle, consistent on dark). */
* {
    scrollbar-color: rgba(255, 255, 255, 0.22) rgba(255, 255, 255, 0.06);
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    border: 2px solid rgba(11, 18, 32, 0.52);
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
}

/* -----------------------------------------------------------------
   Customer theme: light-first
   ----------------------------------------------------------------- */
html {
    font-size: 15px;
}

body.ls-app-shell {
    min-height: 100vh;
    background: var(--ls-page-bg);
    color: var(--ls-fg);
    letter-spacing: 0;
    overflow-x: hidden;
}

.ls-full-bleed {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
}

.ls-card {
    border-radius: var(--ls-radius-card);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    box-shadow: var(--ls-shadow-card);
    color: var(--ls-fg);
}

.ls-card--interactive {
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ls-card--interactive:hover {
    border-color: var(--ls-border-strong-light);
    box-shadow: var(--ls-shadow-card-hover);
}

/* Onboarding step rows (salon/profile completion). */
.ls-step-row {
    border-radius: 1.5rem;
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    padding: 0.75rem 1rem;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ls-step-row.is-active {
    border-color: var(--ls-border-strong-light);
    background: var(--ls-primary-soft);
}

.ls-step-row.is-locked {
    opacity: 0.5;
    pointer-events: none;
}

.ls-onboarding-aside {
    border-bottom: 1px solid var(--ls-border-light);
    background: var(--ls-surface-muted);
}

@media (min-width: 1024px) {
    .ls-onboarding-aside {
        border-bottom: 0;
        border-right: 1px solid var(--ls-border-light);
    }
}

.ls-panel {
    border-radius: var(--ls-radius-card);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-panel);
    box-shadow: var(--ls-shadow-card);
    color: var(--ls-fg);
}

.ls-tile {
    border-radius: var(--ls-radius-control);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-muted);
    padding: 0.65rem 0.75rem;
    color: var(--ls-fg);
}

/* -----------------------------------------------------------------
   Layout shells
   ----------------------------------------------------------------- */
.ls-page {
    background: var(--ls-page-bg);
    color: var(--ls-fg);
}

.ls-page-muted {
    background: var(--ls-surface-muted);
}

.ls-auth-shell {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.ls-auth-card {
    width: 100%;
    max-width: 28rem;
}

.ls-auth-card .ls-panel {
    padding: 1.5rem;
}

.ls-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ls-fg);
}

.ls-section-subtitle {
    margin-top: 0.4rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--ls-fg-muted);
}

.ls-icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 0.9rem;
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-muted);
    color: var(--ls-primary);
}

/* Auth hero image (no inline styles). */
.ls-auth-hero {
    background-image: url('/images/home/hero-studio.jpg');
    background-size: cover;
    background-position: center;
    background-color: rgba(11, 18, 32, 0.72);
    background-blend-mode: multiply;
}

/* -----------------------------------------------------------------
   Sections + containers
   ----------------------------------------------------------------- */
.ls-container {
    width: 100%;
    max-width: var(--ls-container-max-wide);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .ls-container { padding-left: 1.25rem; padding-right: 1.25rem; }
}

@media (min-width: 1024px) {
    .ls-container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.ls-section {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.ls-section--lg {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.ls-toolbar {
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    border-radius: calc(var(--ls-radius-card) + 0.25rem);
    box-shadow: var(--ls-shadow-card);
    padding: 0.9rem;
}

/* Global header */
.ls-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--ls-surface);
    border-bottom: 1px solid var(--ls-border-light);
    box-shadow: var(--ls-shadow-sm);
}

.ls-header__inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.ls-header__brand,
.ls-header__account,
.ls-dashboard-header__meta,
.ls-dashboard-header__actions,
.ls-dashboard-top-actions {
    min-width: 0;
}

.ls-page-dashboard .ls-dashboard-header__inner {
    width: 100%;
    max-width: none;
}

.ls-page-dashboard #dashboardScrollArea {
    width: 100%;
}

@media (min-width: 768px) {
    .ls-page-dashboard #dashboardSidebarToggle,
    .ls-page-dashboard #dashboardSidebarClose,
    .ls-page-dashboard #dashboardSidebarBackdrop,
    .ls-page-dashboard #dashboardSidebarMobile {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .ls-page-dashboard .ls-dashboard-sidebar-desktop {
        display: none !important;
    }

    .ls-page-dashboard .ls-dashboard-header__inner {
        align-items: flex-start;
        flex-wrap: wrap;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ls-page-dashboard .ls-dashboard-header__meta {
        flex: 1 1 calc(100% - 3.75rem);
        padding-top: 0.125rem;
    }

    .ls-page-dashboard .ls-dashboard-header__actions {
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .ls-page-dashboard .ls-dashboard-top-actions {
        flex: 1 1 12rem;
        width: 100%;
    }

    .ls-page-dashboard .ls-dashboard-top-actions > * {
        width: 100%;
    }

    .ls-page-dashboard #profileToggle {
        min-width: 0;
        max-width: 100%;
        gap: 0.65rem;
        padding-left: 0.7rem;
        padding-right: 0.7rem;
    }

    .ls-page-dashboard #profileMenu,
    .ls-page-dashboard #notificationMenu {
        right: 0;
        left: auto;
        width: min(100vw - 2rem, 24rem);
        max-width: min(100vw - 2rem, 24rem);
    }
}

@media (max-width: 639.98px) {
    .ls-header__inner {
        flex-wrap: wrap;
        align-items: center;
        row-gap: 0.7rem;
    }

    .ls-header__brand {
        flex: 0 0 auto;
    }

    .ls-header__account {
        margin-left: auto;
        max-width: 100%;
    }

    .ls-header__inner > .flex-1.inline-flex {
        flex: 1 1 100%;
        width: 100%;
        order: 3;
    }

    .ls-header-location {
        display: flex;
        width: 100%;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .ls-header-location [data-location-label] {
        flex: 1 1 9rem;
        max-width: none !important;
        white-space: normal;
        word-break: break-word;
    }

    .ls-header-location .ls-btn-ghost {
        flex: 0 0 auto;
        margin-left: 0 !important;
    }

    .ls-mobile-nav__inner {
        gap: 0.15rem;
        padding: 0.25rem 0.35rem calc(0.25rem + env(safe-area-inset-bottom));
    }

    .ls-mobile-nav__item {
        min-height: 3.5rem;
        padding: 0.5rem 0.2rem;
        font-size: 0.69rem;
    }
}

.ls-header-location {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ls-fg-muted);
    text-decoration: none;
    transition: color 160ms ease;
}

.ls-header-location:hover {
    color: var(--ls-primary);
}

.ls-header-location__icon {
    width: 1rem;
    height: 1rem;
    color: var(--ls-primary);
}

.ls-mobile-nav {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 40;
    border-top: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.28);
}

.ls-mobile-nav__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem;
    padding: 0.25rem;
    min-height: 4rem;
}

.ls-mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 0.85rem;
    padding: 0.55rem 0.3rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--ls-fg-soft);
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.ls-mobile-nav__item:hover {
    background: var(--ls-surface-2);
    color: var(--ls-fg);
}

.ls-mobile-nav__item.is-active {
    background: var(--ls-primary-soft);
    color: var(--ls-primary);
}

.ls-mobile-nav__item:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.22);
}

/* Dashboard side-rail */
.ls-rail-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 0.85rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ls-fg-muted);
    transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.ls-rail-link:hover {
    background: var(--ls-primary-soft);
    color: var(--ls-fg);
}

.ls-rail-link.is-active {
    background: var(--ls-primary);
    color: var(--ls-primary-fg);
    box-shadow: var(--ls-shadow-sm);
}

.ls-rail-badge {
    border-radius: var(--ls-radius-pill);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-2);
    padding: 0.15rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--ls-fg-muted);
}

.ls-rail-link.is-active .ls-rail-badge {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.10);
    color: var(--ls-text);
}

.ls-rail-icon {
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-2);
    color: var(--ls-fg-muted);
    font-weight: 900;
}

.ls-rail-link.is-active .ls-rail-icon {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.10);
    color: var(--ls-text);
}

.ls-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--ls-radius-pill);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-2);
    padding: 0.35rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--ls-fg-muted);
}

.ls-status-pill__dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--ls-fg-soft);
}

.ls-status-pill--live .ls-status-pill__dot { background: var(--ls-primary); }
.ls-status-pill--paused .ls-status-pill__dot { background: var(--ls-fg-soft); }

.ls-sidebar {
    border-right: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    color: var(--ls-fg);
}

.ls-sidebar__header {
    border-bottom: 1px solid var(--ls-border-light);
}

/* Sticky bars and action bars. */
.ls-sticky-bottom {
    border-top: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.28);
}

.ls-safe-bottom {
    padding-bottom: env(safe-area-inset-bottom);
}

/* Page hero (light, flat, product-like). */
.ls-hero {
    border-bottom: 1px solid var(--ls-border-light);
    background: var(--ls-surface-muted);
    color: var(--ls-fg);
}

.ls-card {
    background: var(--ls-surface-elevated);
}

/* Dashboard surfaces: keep subtle and consistent with cards. */
[data-dashboard-surface] {
    box-shadow: var(--ls-shadow-card);
}

.ls-kicker {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: none;
    color: var(--ls-fg-soft);
}

.ls-text { color: var(--ls-fg); }
.ls-text-muted { color: var(--ls-fg-muted); }
.ls-text-soft { color: var(--ls-fg-soft); }
.ls-text-warning { color: var(--ls-warning); }
.ls-text-success { color: var(--ls-success); }
.ls-text-danger { color: var(--ls-danger); }
.ls-accent { color: var(--ls-primary); }

.ls-text-xs { font-size: 0.78rem; line-height: 1.35; }
.ls-text-sm { font-size: 0.9rem; line-height: 1.45; }
.ls-text-lg { font-size: 1.05rem; line-height: 1.35; }

.ls-strong { font-weight: 800; color: var(--ls-fg); }

.ls-link {
    color: var(--ls-primary);
    font-weight: 800;
    text-decoration: none;
}

.ls-link:hover {
    color: var(--ls-primary-hover);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ls-link-btn {
    font: inherit;
    cursor: pointer;
    text-decoration: none;
}

.ls-link-btn,
.ls-link-btn:hover,
.ls-link-btn:focus-visible {
    text-decoration: none;
}

.ls-bg-page { background: var(--ls-page-bg); }
.ls-bg-muted { background: var(--ls-surface-muted); }
.ls-bg-surface { background: var(--ls-surface); }
.ls-border { border-color: var(--ls-border-light); }
.ls-bt { border-top: 1px solid var(--ls-border-light); }
.ls-bb { border-bottom: 1px solid var(--ls-border-light); }
.ls-br { border-right: 1px solid var(--ls-border-light); }
.ls-bd { border: 1px solid var(--ls-border-light); }
.ls-round { border-radius: var(--ls-radius-pill); }
.ls-dot {
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: var(--ls-radius-pill);
    background: var(--ls-fg-soft);
}

.ls-dot--accent { background: var(--ls-primary); }
.ls-dot--success { background: var(--ls-success); }
.ls-dot--danger { background: var(--ls-danger); }
.ls-dot--warning { background: var(--ls-warning); }

.ls-focus-ring {
    outline: none;
}

.ls-focus-ring:focus-visible {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.22);
    border-color: var(--ls-border-strong-light);
}

.ls-avatar--ring {
    border: 2px solid var(--ls-surface);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.ls-avatar-badge {
    border: 2px solid var(--ls-surface);
    background: var(--ls-primary);
    color: var(--ls-on-primary);
    box-shadow: var(--ls-shadow-card);
}

.ls-h1 {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ls-fg);
}

.ls-h2 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ls-fg);
}

.ls-h3 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ls-fg);
}

/* Long-form content (legal/support pages). */
.ls-prose {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--ls-fg-muted);
}

.ls-prose h1,
.ls-prose h2,
.ls-prose h3 {
    color: var(--ls-fg);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.ls-prose h2 { font-size: 1.2rem; margin-top: 1.75rem; }
.ls-prose h3 { font-size: 1.05rem; margin-top: 1.2rem; }
.ls-prose p { margin-top: 0.85rem; }
.ls-prose ul { margin-top: 0.85rem; padding-left: 1.25rem; list-style: disc; }
.ls-prose ol { margin-top: 0.85rem; padding-left: 1.25rem; list-style: decimal; }
.ls-prose li { margin-top: 0.35rem; }
.ls-prose ::marker { color: var(--ls-fg-soft); }
.ls-prose a { color: var(--ls-primary); font-weight: 700; text-decoration: none; }
.ls-prose a:hover { color: var(--ls-primary-hover); text-decoration: underline; text-underline-offset: 4px; }
.ls-prose strong { color: var(--ls-fg); font-weight: 700; }

.ls-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--ls-fg);
}

.ls-help {
    margin-top: 0.45rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--ls-fg-muted);
}

.ls-error {
    margin-top: 0.45rem;
    font-size: 0.78rem;
    line-height: 1.35;
    color: var(--ls-danger);
}

.ls-notice {
    border-radius: var(--ls-radius-card);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-2);
    padding: 0.95rem 1rem;
    font-size: 0.9rem;
    color: var(--ls-fg-muted);
}

.ls-notice--warning {
    border-color: rgba(245, 158, 11, 0.22);
    background: var(--ls-warning-soft);
    color: var(--ls-warning);
}

.ls-notice--success {
    border-color: rgba(34, 197, 94, 0.22);
    background: var(--ls-success-soft);
    color: var(--ls-success);
}

.ls-notice--danger {
    border-color: rgba(244, 63, 94, 0.22);
    background: var(--ls-danger-soft);
    color: var(--ls-danger);
}

.ls-avatar {
    border-radius: var(--ls-radius-card);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-muted);
    object-fit: cover;
}

.ls-avatar--round {
    border-radius: var(--ls-radius-pill);
}

.ls-btn-primary,
.ls-btn-secondary,
.ls-link-btn,
.ls-btn-ghost,
.ls-btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ls-radius-control);
    padding: 0.72rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

@media (max-width: 639.98px) {
    .ls-btn-primary,
    .ls-btn-secondary,
    .ls-link-btn,
    .ls-btn-ghost,
    .ls-btn-danger {
        min-height: 2.75rem;
        padding: 0.78rem 0.95rem;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
    }

    .ls-btn--sm {
        min-height: 2.35rem;
    }

    .ls-icon-btn {
        width: 2.65rem;
        height: 2.65rem;
    }
}

.ls-btn-primary:disabled,
.ls-btn-secondary:disabled,
.ls-link-btn:disabled,
.ls-btn-ghost:disabled,
.ls-btn-danger:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.ls-btn-primary[aria-disabled='true'],
.ls-btn-secondary[aria-disabled='true'],
.ls-link-btn[aria-disabled='true'],
.ls-btn-ghost[aria-disabled='true'],
.ls-btn-danger[aria-disabled='true'] {
    cursor: not-allowed;
    opacity: 0.6;
}

.ls-btn-primary {
    border: 1px solid transparent;
    /* Explicit token-driven background/fg (use shorthand + longhand to beat overrides). */
    background: var(--ls-primary) !important;
    background-color: var(--ls-primary) !important;
    background-image: none !important;
    color: var(--ls-primary-fg) !important;
    border-color: transparent !important;
    opacity: 1 !important;
    filter: none !important;
    text-decoration: none;
    box-shadow: var(--ls-shadow-sm);
}

.ls-btn-primary:hover {
    background: var(--ls-primary-hover) !important;
    background-color: var(--ls-primary-hover) !important;
    box-shadow: var(--ls-shadow-sm);
}

/* Bulletproof theme-scoped primary buttons (covers <a> + <button> and beats broad utility overrides). */
body.ls-theme-customer .ls-btn-primary,
body.ls-theme-partner .ls-btn-primary {
    background: var(--ls-primary) !important;
    background-color: var(--ls-primary) !important;
    background-image: none !important;
    color: var(--ls-primary-fg) !important;
    border-color: transparent !important;
    opacity: 1 !important;
    filter: none !important;
}

body.ls-theme-customer .ls-btn-primary:hover,
body.ls-theme-partner .ls-btn-primary:hover {
    background: var(--ls-primary-hover) !important;
    background-color: var(--ls-primary-hover) !important;
}

.ls-link-btn,
.ls-btn-secondary {
    border: 1px solid var(--ls-btn-secondary-border);
    background: var(--ls-btn-secondary-bg);
    color: var(--ls-btn-secondary-fg);
    box-shadow: none;
}

.ls-link-btn:hover,
.ls-btn-secondary:hover {
    background: var(--ls-btn-secondary-bg);
    color: var(--ls-btn-secondary-fg);
    border-color: rgba(99, 102, 241, 0.32);
}

.ls-btn-ghost {
    border: 1px solid var(--ls-btn-ghost-border);
    background: var(--ls-btn-ghost-bg);
    color: var(--ls-btn-ghost-fg);
}

.ls-btn--sm {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    border-radius: var(--ls-radius-pill);
}

.ls-btn--danger {
    border-color: rgba(225, 29, 72, 0.18);
    color: var(--ls-danger);
}

.ls-btn--danger:hover {
    border-color: rgba(225, 29, 72, 0.28);
    background: rgba(225, 29, 72, 0.06);
}

.ls-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--ls-radius-control);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    color: var(--ls-fg-muted);
    box-shadow: var(--ls-shadow-card);
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ls-icon-btn:hover {
    border-color: var(--ls-border-strong-light);
    color: var(--ls-fg);
    box-shadow: var(--ls-shadow-card-hover);
}

.ls-btn-danger {
    border: 1px solid rgba(251, 113, 133, 0.18);
    background: var(--ls-danger);
    color: var(--ls-on-primary);
    box-shadow: var(--ls-shadow-sm);
}

[data-ls-avatar-trigger] {
    cursor: pointer;
}

.ls-input,
.ls-select,
.ls-textarea {
    width: 100%;
    border-radius: var(--ls-radius-control);
    border: 1px solid var(--ls-control-border);
    background: var(--ls-control-bg);
    padding: 0.78rem 0.95rem;
    font-size: 0.82rem;
    color: var(--ls-control-fg);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ls-input.is-error,
.ls-select.is-error,
.ls-textarea.is-error {
    border-color: rgba(225, 29, 72, 0.35);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
}

.ls-field-shell {
    width: 100%;
    border-radius: var(--ls-radius-control);
    border: 1px solid var(--ls-control-border);
    background: var(--ls-control-bg);
    min-height: 50px;
    padding: 0 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ls-field-shell:focus-within {
    border-color: var(--ls-border-strong-light);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.16);
}

.ls-field-shell.is-error {
    border-color: rgba(225, 29, 72, 0.35);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.12);
}

.ls-shell-input {
    min-width: 0;
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0.78rem 0.75rem;
    font-size: 0.82rem;
    color: var(--ls-control-fg);
    outline: none;
    box-shadow: none;
}

.ls-shell-toggle {
    border: 0;
    background: transparent;
    padding: 0 0.75rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ls-fg-muted);
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease;
}

.ls-shell-toggle:hover {
    background: var(--ls-primary-soft);
    color: var(--ls-fg);
}

.ls-otp-input {
    letter-spacing: 0.45em;
    text-align: center;
}

.ls-input[type='file'] {
    padding: 0.6rem 0.85rem;
    font-size: 0.82rem;
}

.ls-input[readonly] {
    background: var(--ls-surface-2);
    color: var(--ls-fg-muted);
}

.ls-input::placeholder,
.ls-select::placeholder,
.ls-textarea::placeholder {
    color: var(--ls-text-muted);
}

/* Prevent bright yellow autofill on dark surfaces (WebKit). */
.ls-input:-webkit-autofill,
.ls-input:-webkit-autofill:hover,
.ls-input:-webkit-autofill:focus,
.ls-textarea:-webkit-autofill,
.ls-textarea:-webkit-autofill:hover,
.ls-textarea:-webkit-autofill:focus,
.ls-select:-webkit-autofill,
.ls-select:-webkit-autofill:hover,
.ls-select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--ls-text);
    transition: background-color 9999s ease-in-out 0s;
    box-shadow: 0 0 0px 1000px var(--ls-surface-3) inset;
    caret-color: var(--ls-text);
}

.ls-fieldset {
    display: grid;
    gap: 1rem;
}

.ls-fields {
    display: grid;
    gap: 1rem;
}

.ls-divider {
    height: 1px;
    background: var(--ls-border-light);
}

hr.ls-hr {
    border: 0;
    height: 1px;
    background: var(--ls-border-light);
}

/* Native select clarity (arrow + menu colors) */
.ls-select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 2.6rem;
    background-repeat: no-repeat;
    background-position: right 0.95rem center;
    background-size: 1.05rem 1.05rem;
}

/* Arrow icon (single light-first theme). */
.ls-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M5.5 7.75l4.5 4.5 4.5-4.5' fill='none' stroke='rgba%28255%2C255%2C255%2C0.48%29' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Disabled state */
.ls-select:disabled,
select:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

select option,
select optgroup {
    background-color: var(--ls-surface-2);
    color: var(--ls-text);
}

.ls-input:focus,
.ls-select:focus,
.ls-textarea:focus {
    border-color: rgba(99, 102, 241, 0.50);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.14);
}

/* Strong keyboard focus (consistent across controls). */
.ls-btn-primary:focus-visible,
.ls-btn-secondary:focus-visible,
.ls-link-btn:focus-visible,
.ls-btn-ghost:focus-visible,
.ls-btn-danger:focus-visible,
.ls-input:focus-visible,
.ls-select:focus-visible,
.ls-textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.22);
}

/* -----------------------------------------------------------------
   Tabs, chips, rows, empty states
   ----------------------------------------------------------------- */
.ls-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 0.75rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-2);
    color: var(--ls-fg-muted);
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.ls-tab:hover {
    background: var(--ls-surface-3);
    color: var(--ls-fg);
}

.ls-tab.is-active,
.ls-tab[aria-current='page'] {
    background: var(--ls-primary);
    color: var(--ls-primary-fg);
    box-shadow: var(--ls-shadow-sm);
}

.ls-tab--block {
    width: 100%;
    justify-content: flex-start;
}

.ls-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ls-radius-pill);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    padding: 0.25rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ls-fg-muted);
}

.ls-chip--muted {
    background: var(--ls-surface-muted);
}

.ls-chip--danger {
    border-color: rgba(244, 63, 94, 0.22);
    background: var(--ls-danger-soft);
    color: var(--ls-danger);
}

.ls-chip--warning {
    border-color: rgba(245, 158, 11, 0.22);
    background: var(--ls-warning-soft);
    color: var(--ls-warning);
}

.ls-rating-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--ls-radius-control);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    padding: 0 0.75rem;
    font-size: 0.9rem;
    font-weight: 750;
    color: var(--ls-fg-muted);
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.ls-rating-pill:hover {
    border-color: rgba(99, 102, 241, 0.28);
    background: rgba(99, 102, 241, 0.08);
    color: var(--ls-fg);
}

.ls-rating-input:checked + .ls-rating-pill {
    border-color: rgba(99, 102, 241, 0.40);
    background: var(--ls-primary-soft);
    color: var(--ls-text);
}

.ls-empty {
    border: 1px dashed var(--ls-border);
    background: var(--ls-surface-2);
    border-radius: var(--ls-radius-card);
    padding: 1.5rem;
    color: var(--ls-fg-muted);
    text-align: center;
    font-size: 0.92rem;
}

.ls-add-tile {
    border: 1px dashed var(--ls-border);
    background: var(--ls-surface-2);
    border-radius: var(--ls-radius-card);
    color: var(--ls-fg-soft);
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.ls-add-tile:hover {
    border-color: rgba(99, 102, 241, 0.22);
    background: rgba(99, 102, 241, 0.10);
    color: var(--ls-fg);
}

.ls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    border-radius: 0.9rem;
    padding: 0.75rem 0.9rem;
}

.ls-row:hover {
    border-color: rgba(99, 102, 241, 0.30);
    background: var(--ls-surface-2);
}

.ls-tile {
    border-radius: var(--ls-radius-card);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    overflow: hidden;
}

/* -----------------------------------------------------------------
   Badges (semantic)
   ----------------------------------------------------------------- */
.ls-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: var(--ls-radius-pill);
    border: 1px solid transparent;
    padding: 0.25rem 0.7rem;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.ls-badge-neutral {
    border-color: var(--ls-badge-neutral-border);
    background: var(--ls-badge-neutral-bg);
    color: var(--ls-badge-neutral-fg);
}

.ls-badge-success {
    border-color: var(--ls-badge-success-border);
    background: var(--ls-badge-success-bg);
    color: var(--ls-badge-success-fg);
}

.ls-badge-warning {
    border-color: var(--ls-badge-warning-border);
    background: var(--ls-badge-warning-bg);
    color: var(--ls-badge-warning-fg);
}

.ls-badge-danger {
    border-color: var(--ls-badge-danger-border);
    background: var(--ls-badge-danger-bg);
    color: var(--ls-badge-danger-fg);
}

.ls-badge-primary {
    border-color: rgba(99, 102, 241, 0.22);
    background: var(--ls-primary-soft);
    color: var(--ls-primary);
}

.ls-badge-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.25rem;
    border-radius: var(--ls-radius-pill);
    background: var(--ls-danger);
    color: var(--ls-on-primary);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
}

/* -----------------------------------------------------------------
   Modal + drawer shells
   ----------------------------------------------------------------- */
.ls-backdrop {
    background: rgba(11, 18, 32, 0.74);
}

.ls-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    padding: 1rem;
    align-items: flex-end;
    justify-content: center;
}

.ls-modal-backdrop.is-open {
    display: flex;
}

.ls-modal-panel {
    width: 100%;
    max-width: 42rem;
    max-height: calc(100dvh - 2rem);
    overflow: hidden;
    border-radius: calc(var(--ls-radius-card) + 0.35rem);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    box-shadow: var(--ls-shadow-modal);
}

.ls-modal-header {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ls-border-light);
    background: var(--ls-surface-muted);
}

.ls-modal-body {
    min-height: 0;
    max-height: calc(100dvh - 9rem);
    overflow: auto;
    padding: 1.25rem;
}

@media (max-width: 639.98px) {
    .ls-modal-backdrop {
        padding: 0.5rem;
        align-items: flex-end;
    }

    .ls-modal-panel {
        max-width: none;
        max-height: calc(100dvh - 1rem);
        border-radius: 1.25rem 1.25rem 0 0;
    }

    .ls-modal-header,
    .ls-modal-body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ls-modal-body {
        max-height: calc(100dvh - 7.5rem);
        padding-top: 1rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    }
}

@media (min-width: 640px) {
    .ls-modal-backdrop {
        align-items: center;
        padding: 1.5rem;
    }

    .ls-modal-panel {
        max-height: calc(100dvh - 3rem);
    }
}

/* -----------------------------------------------------------------
   Global location modal (centered + blurred backdrop)
   ----------------------------------------------------------------- */
.ls-location-modal {
    position: fixed;
    inset: 0;
    z-index: 10010;
    display: none;
    padding: calc(1rem + env(safe-area-inset-top)) 1rem calc(1rem + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: center;
}

.ls-location-modal:not(.hidden) {
    display: flex;
}

.ls-location-modal[data-location-modal-mode="permission"] [data-location-modal-close="1"] {
    display: none !important;
}

.ls-location-modal__overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(11, 18, 32, 0.64);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ls-location-modal__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 32rem;
    max-height: calc(100dvh - 2rem);
    overflow: auto;
    box-shadow: var(--ls-shadow-modal);
}

/* Keep long suggestion lists usable on small screens + with soft keyboard. */
.ls-location-modal .ls-menu {
    max-height: min(40vh, 18rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 640px) {
    .ls-location-modal {
        padding: calc(1.5rem + env(safe-area-inset-top)) 1.5rem calc(1.5rem + env(safe-area-inset-bottom));
    }

    .ls-location-modal__panel {
        max-height: calc(100dvh - 3rem);
    }
}

@media (max-width: 639.98px) {
    .ls-location-modal {
        padding: calc(0.75rem + env(safe-area-inset-top)) 0.75rem calc(0.75rem + env(safe-area-inset-bottom));
        align-items: flex-end;
    }

    .ls-location-modal__panel {
        max-width: none;
        max-height: calc(100dvh - 1.5rem);
    }
}

/* Bottom drawers (mobile) */
.ls-drawer-panel {
    max-height: 85vh;
    padding-bottom: env(safe-area-inset-bottom);
}

/* -----------------------------------------------------------------
   Mobile bottom bar actions
   ----------------------------------------------------------------- */
.ls-bottom-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: none;
    background: var(--ls-surface);
    border-top: 1px solid var(--ls-border-light);
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
}

.ls-bottom-bar.is-visible {
    display: block;
}

.ls-bottom-bar__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ls-bottom-bar__meta {
    min-width: 0;
    display: grid;
    gap: 0.1rem;
}

.ls-bottom-bar__meta strong {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--ls-fg);
}

.ls-bottom-bar__meta span {
    font-size: 0.78rem;
    color: var(--ls-fg-muted);
}

/* -----------------------------------------------------------------
   Small utilities
   ----------------------------------------------------------------- */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

.ls-email-loader {
    position: absolute;
    top: 50%;
    right: 1rem;
    display: none;
    align-items: center;
    gap: 0.24rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.ls-email-loader[data-active='true'] {
    display: inline-flex;
}

.ls-email-loader span {
    width: 0.34rem;
    height: 0.34rem;
    border-radius: 999px;
    background: var(--ls-primary);
    opacity: 0.22;
    animation: ls-dot-run 0.95s infinite ease-in-out;
}

.ls-email-loader span:nth-child(2) { animation-delay: 0.12s; }
.ls-email-loader span:nth-child(3) { animation-delay: 0.24s; }

@keyframes ls-dot-run {
    0%, 100% { opacity: 0.22; transform: translateX(-3px); }
    50% { opacity: 0.92; transform: translateX(5px); }
}

.ls-stack-tight > * + * {
    margin-top: 0.7rem;
}

.ls-page-home section,
.ls-page-profile section,
.ls-page-dashboard section,
.ls-page-salon-show section {
    margin-top: 1rem !important;
}

.ls-page-home h1,
.ls-page-home h2,
.ls-page-profile h1,
.ls-page-profile h2,
.ls-page-dashboard h1,
.ls-page-dashboard h2,
.ls-page-salon-show h1,
.ls-page-salon-show h2,
.ls-page-search h2 {
    letter-spacing: -0.035em;
}

.ls-page-search #results-app {
    background: transparent !important;
}

.ls-page-search #results-shell {
    gap: 0.85rem !important;
}

.ls-page-search #results-scroll {
    padding: 0.8rem !important;
}

.ls-page-search #results-grid article {
    border-radius: 1.35rem !important;
    border-color: var(--ls-border-light) !important;
    box-shadow: var(--ls-shadow-card) !important;
}

.ls-page-search #results-grid article .p-4 {
    padding: 0.85rem !important;
}

.ls-page-search #results-location-button,
.ls-page-search #service-select {
    min-height: 42px;
}

/* Gallery tile overlay (dashboard operations). */
.ls-tile-overlay {
    background: rgba(17, 32, 51, 0.92);
    border: 1px solid var(--ls-border-light);
    color: var(--ls-text-secondary);
}

/* Category accordion (salon booking service list). */
.ls-accordion {
    border-radius: 1.5rem;
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface-elevated);
    padding: 0.95rem 1rem;
}

.ls-accordion__summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ls-accordion__summary::-webkit-details-marker {
    display: none;
}

.ls-accordion__chev {
    color: var(--ls-fg-soft);
    transition: transform 160ms ease, color 160ms ease;
}

.ls-accordion[open] .ls-accordion__chev {
    transform: rotate(180deg);
    color: var(--ls-fg-muted);
}

.ls-page-profile .profile-sidebar a,
.ls-page-dashboard .action-card {
    transition: box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.ls-page-profile .profile-sidebar a:hover,
.ls-page-dashboard .action-card:hover {
    /* Flat hover: no lift. */
}

.ls-page-salon-show .ls-salon-booking__service-fast-trigger {
    min-height: 64px;
    padding: 1rem;
    cursor: pointer;
    transition: background 160ms ease;
    -webkit-tap-highlight-color: transparent;
}

.ls-page-salon-show .ls-salon-booking__service-fast-trigger:hover {
    background: var(--ls-surface-2);
}

.ls-page-salon-show .ls-salon-booking__service-fast-trigger:active {
    background: var(--ls-primary-soft);
}

.ls-page-salon-show .ls-salon-booking__service-fast-trigger::after {
    content: none;
}

.ls-salon-show-hero {
    display: grid;
    gap: 0.65rem;
    width: 100%;
}

.ls-salon-show-hero__gallery {
    border-radius: 0;
    max-height: 420px;
}

.ls-salon-show-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(0.9rem, 2.4vw, 1.25rem);
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.72), rgba(2, 6, 23, 0.14) 36%, rgba(2, 6, 23, 0.98));
    pointer-events: none;
}

.ls-salon-show-hero__rating,
.ls-salon-show-hero__identity a {
    pointer-events: auto;
}

.ls-salon-show-hero__rating {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.72);
    color: #fbbf24;
    padding: 0.45rem 0.65rem;
    font-size: 0.78rem;
    font-weight: 850;
    text-decoration: none;
    backdrop-filter: blur(12px);
}

.ls-salon-show-hero__identity {
    min-width: 0;
    color: #ffffff;
}

.ls-salon-show-hero__identity h1 {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(1.7rem, 5.8vw, 2.75rem);
    font-weight: 950;
    line-height: 1.08;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.ls-salon-show-hero__identity a,
.ls-salon-show-hero__identity span {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-top: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.58);
    text-underline-offset: 3px;
}

.ls-salon-show-hero__identity a:hover,
.ls-salon-show-hero__meta a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ls-salon-show-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
    color: var(--ls-fg-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.ls-salon-show-hero__meta span,
.ls-salon-show-hero__meta a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 28px;
    border: 1px solid var(--ls-border-light);
    border-radius: 999px;
    background: var(--ls-surface-muted);
    padding: 0 0.65rem;
    color: inherit;
    text-decoration: none;
}

.ls-salon-show-hero__meta span span,
.ls-salon-show-hero__meta a span {
    min-height: 0;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--ls-primary);
}

.ls-salon-show-hero__cta {
    display: inline-flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ls-primary);
    border-radius: 8px;
    background: var(--ls-primary);
    color: var(--ls-primary-fg);
    padding: 0 1rem;
    font-size: 0.95rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ls-salon-show-hero__cta:hover {
    transform: translateY(-1px);
    background: var(--ls-primary-strong);
    border-color: var(--ls-primary-strong);
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .ls-app-shell main {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .ls-page-search #results-shell {
        gap: 0.7rem !important;
    }
}

@media (max-width: 639.98px) {
    .ls-page-dashboard [class*='grid-cols-['],
    .ls-page-profile [class*='grid-cols-['],
    .ls-page-salon-show [class*='grid-cols-['] {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .ls-page-dashboard .ls-table-wrap,
    .ls-page-profile .ls-table-wrap,
    .ls-page-salon-show .ls-table-wrap {
        margin-inline: -0.15rem;
    }

    .ls-page-dashboard .ls-card,
    .ls-page-dashboard .ls-panel,
    .ls-page-profile .ls-card,
    .ls-page-profile .ls-panel,
    .ls-page-salon-show .ls-card,
    .ls-page-salon-show .ls-panel {
        overflow-wrap: anywhere;
    }
}

.ls-distance-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--ls-border);
    background: var(--ls-surface-2);
    padding: 0.25rem 0.75rem;
    font-size: 11px;
    font-weight: 600;
    color: var(--ls-text-secondary);
}

.ls-distance-chip::before {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--ls-primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.ls-page-search #results-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ls-page-search .results-toolbar-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border-radius: 0.85rem;
    border: 1px solid var(--ls-border);
    background: var(--ls-surface-2);
    padding: 0.65rem 0.9rem;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--ls-text-secondary);
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.ls-page-search .results-toolbar-button:hover {
    border-color: rgba(99, 102, 241, 0.28);
    background: var(--ls-surface-3);
    color: var(--ls-text);
}

.ls-page-search .results-toolbar-button.is-active {
    border-color: rgba(99, 102, 241, 0.28);
    background: var(--ls-primary-soft);
    color: var(--ls-text);
}

.ls-page-search #sort-menu {
    min-width: 12rem;
}

.ls-page-search #sort-menu [data-sort-option] {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 0.9rem;
    border: 1px solid transparent;
    background: transparent;
    padding: 0.7rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ls-text-secondary);
    text-align: left;
}

.ls-page-search #sort-menu [data-sort-option]:hover,
.ls-page-search #sort-menu [data-sort-option].is-active {
    border-color: rgba(99, 102, 241, 0.22);
    background: var(--ls-primary-soft);
    color: var(--ls-text);
}

.ls-page-search .results-salon-card.is-selected {
    grid-column: 1 / -1;
    border-color: rgba(99, 102, 241, 0.34) !important;
    background: var(--ls-primary-soft) !important;
    box-shadow: none !important;
}

.ls-page-search .results-selected-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    background: var(--ls-primary-soft);
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--ls-text);
}

.ls-page-search .results-selected-badge::before {
    content: '';
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--ls-primary);
}

.ls-page-search .results-card-distance {
    color: var(--ls-text-secondary);
}

.ls-page-search .salon-map-marker {
    background: transparent;
    border: 0;
}

.ls-page-search .salon-map-marker img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: bottom center;
    transition: transform 180ms ease, filter 180ms ease;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.32));
}

.ls-page-search .salon-map-marker.is-dim img {
    opacity: 0.55;
    filter: saturate(0.85);
}

.ls-page-search .salon-map-marker.is-selected img {
    transform: translateY(-3px) scale(1.16);
    filter: drop-shadow(0 18px 20px rgba(99, 102, 241, 0.20));
}

.panel-shadow {
    box-shadow: var(--ls-shadow-modal);
}

/* --- Minimal loaders (page overlay + local) --- */
.ls-page-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 18, 32, 0.82);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    touch-action: none;
    overscroll-behavior: none;
    transition: opacity 140ms ease, visibility 140ms ease;
}

html.ls-overlay-active,
body.ls-overlay-active {
    overflow: hidden !important;
}

.ls-page-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

body.loc-loading header,
body.loc-loading main,
body.loc-loading #site-footer,
body.loc-loading .ls-mobile-nav {
    visibility: hidden;
}

body.loc-loading #ls-page-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.ls-page-overlay__spinner {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-top-color: var(--ls-primary);
    animation: ls-spin 700ms linear infinite;
}

.ls-loader-host {
    /* JS ensures relative positioning only when safe. */
}

.ls-local-loader {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--ls-surface-2);
    border: 1px solid var(--ls-border-light);
    box-shadow: var(--ls-shadow-sm);
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(-2px) scale(0.98);
    transition: opacity 140ms ease, transform 140ms ease;
    pointer-events: none;
}

.ls-local-loader.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.ls-spinner {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(99, 102, 241, 0.22);
    border-top-color: rgba(99, 102, 241, 0.8);
    animation: ls-spin 700ms linear infinite;
}

@keyframes ls-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .ls-page-overlay__spinner,
    .ls-spinner {
        animation: none;
    }
}

/* Pending mask (prevents misleading fallback UI while waiting). */
.ls-is-pending {
    position: relative;
}

.ls-is-pending::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 18, 32, 0.56);
    pointer-events: none;
}

/* Button pending (inline spinner). */
.ls-btn-pending {
    position: relative;
    padding-right: 2.6rem !important;
}

.ls-btn-pending::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-top-color: currentColor;
    animation: ls-spin 700ms linear infinite;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .ls-btn-pending::after {
        animation: none;
    }
}

/* -----------------------------------------------------------------
   Primary button final guard (beats Tailwind preflight + utilities)
   Tailwind preflight sets:
   `button, input:where([type=submit]) { background-color: transparent; background-image: none; }`
   This section ensures `.ls-btn-primary` always has a visible fill.
   ----------------------------------------------------------------- */
button.ls-btn-primary,
a.ls-btn-primary,
input.ls-btn-primary[type='button'],
input.ls-btn-primary[type='reset'],
input.ls-btn-primary[type='submit'] {
    background: var(--ls-primary) !important;
    background-color: var(--ls-primary) !important;
    background-image: none !important;
    color: var(--ls-primary-fg) !important;
    border-color: transparent !important;
    opacity: 1 !important;
    filter: none !important;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
}

button.ls-btn-primary:hover,
a.ls-btn-primary:hover,
input.ls-btn-primary[type='button']:hover,
input.ls-btn-primary[type='reset']:hover,
input.ls-btn-primary[type='submit']:hover {
    background: var(--ls-primary-hover) !important;
    background-color: var(--ls-primary-hover) !important;
}

/* -----------------------------------------------------------------
   Tables (dashboard + profile)
   ----------------------------------------------------------------- */
.ls-table-wrap {
    border-radius: var(--ls-radius-card);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    box-shadow: var(--ls-shadow-card);
    overflow: auto;
}

.ls-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.ls-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--ls-fg-soft);
    background: var(--ls-surface-muted);
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--ls-border-light);
}

.ls-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--ls-border-light);
    color: var(--ls-fg);
    font-size: 0.9rem;
    vertical-align: top;
}

.ls-table tr:last-child td {
    border-bottom: 0;
}

.ls-table tr:hover td {
    background: var(--ls-surface-2);
}

/* -----------------------------------------------------------------
   Menus / result lists (dropdown-like lists)
   ----------------------------------------------------------------- */
.ls-menu {
    border-radius: var(--ls-radius-card);
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    box-shadow: var(--ls-shadow-card);
    overflow: hidden;
}

.ls-menu-item {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: var(--ls-fg);
    background: transparent;
    transition: background 140ms ease, color 140ms ease;
}

.ls-menu-item:hover,
.ls-menu-item.is-active {
    background: var(--ls-surface-2);
}

button.ls-menu-item:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* -----------------------------------------------------------------
   Check tiles (checkbox selection in grids)
   ----------------------------------------------------------------- */
.ls-check-tile {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-radius: 0.9rem;
    border: 1px solid var(--ls-border-light);
    background: var(--ls-surface);
    padding: 0.6rem 0.75rem;
    transition: background 160ms ease, border-color 160ms ease;
}

.ls-check-tile:hover {
    border-color: var(--ls-border-strong-light);
    background: var(--ls-surface-2);
}

.ls-check-tile input[type='checkbox'] {
    margin-top: 0.1rem;
    accent-color: var(--ls-primary);
}

.ls-checkbox {
    width: 1rem;
    height: 1rem;
    accent-color: var(--ls-primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.dashboard-shell {
    display: grid;
    gap: 16px;
    align-items: start;
}

.dashboard-section-grid {
    display: grid;
    gap: 16px;
    align-items: start;
}

.dashboard-panel--primary,
.dashboard-panel--aside {
    width: 100%;
    max-width: 100%;
}

.dashboard-card-list {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.grid-2 {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    justify-items: start;
}

.grid-auto {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    justify-content: start;
    justify-items: start;
}

.filters-inline {
    display: grid;
    gap: 10px;
    align-items: end;
}

.filters-inline > div {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.filters-inline .ls-input,
.filters-inline .ls-select,
.filters-inline select {
    width: 100%;
    min-width: 0;
}

.filters-inline button {
    width: 100%;
}

.booking-section-scroll {
    width: 100%;
    max-height: none;
    overflow: visible;
    padding-right: 0;
}

.booking-loader {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    opacity: 0.7;
}

.booking-end {
    text-align: center;
    padding: 10px;
    font-size: 12px;
    opacity: 0.7;
}

.booking-card {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 12px;
}

.booking-card__main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
}

.booking-card__content {
    min-width: 0;
}

.booking-card__meta {
    display: grid;
    gap: 8px;
    width: 100%;
}

.booking-card__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.dashboard-quick-links {
    display: grid;
    gap: 10px;
    justify-content: start;
}

.dashboard-quick-links .ls-btn-primary,
.dashboard-quick-links .ls-btn-secondary {
    width: auto;
}

.dashboard-dialog-frame {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.dashboard-dialog-panel {
    width: 100%;
    max-width: 600px;
}

.dashboard-modal-frame {
    width: 100%;
    max-width: 600px;
    margin: auto;
}

.dashboard-modal-panel {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.dashboard-modal-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr);
}

.dashboard-modal-form {
    display: grid;
    gap: 12px;
    justify-items: start;
}

.dashboard-modal-form .ls-input:not(textarea),
.dashboard-modal-form select {
    width: min(100%, 20rem);
}

.dashboard-modal-form textarea {
    width: min(100%, 32rem);
}

.dashboard-modal-form .ls-btn-primary,
.dashboard-modal-form .ls-btn-secondary,
.dashboard-modal-form .ls-btn-danger {
    width: auto;
}

@media (min-width: 640px) {
    .filters-inline {
        display: flex;
        flex-wrap: wrap;
    }

    .filters-inline .ls-input,
    .filters-inline .ls-select,
    .filters-inline select {
        width: auto;
    }

    .filters-inline input[type='date'] {
        min-width: 150px;
        max-width: 160px;
    }

    .filters-inline select {
        min-width: 160px;
        max-width: 200px;
    }

    .filters-inline button {
        width: auto;
    }

    .booking-card {
        width: min(100%, 700px);
    }

    .booking-card__footer {
        flex-direction: row;
        align-items: center;
    }

    .booking-section-scroll {
        max-height: 540px;
        overflow-y: auto;
        padding-right: 4px;
    }
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-auto {
        grid-template-columns: repeat(auto-fit, minmax(220px, max-content));
    }

    .booking-card__main {
        flex-direction: row;
    }

    .booking-card__meta {
        width: auto;
        min-width: 220px;
        max-width: 260px;
    }
}

@media (min-width: 1280px) {
    .dashboard-section-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(260px, 320px);
    }

    .dashboard-panel--primary {
        max-width: 780px;
    }

    .dashboard-panel--aside {
        max-width: 320px;
    }
}

/* -----------------------------------------------------------------
   Salon card v2
   ----------------------------------------------------------------- */
.salon-card-v2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 16px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    -webkit-tap-highlight-color: transparent;
}

.salon-card-v2--dark {
    border-color: rgba(148, 163, 184, 0.22);
    background: #0f172a;
    color: #f8fafc;
    box-shadow: 0 18px 46px rgba(2, 6, 23, 0.28);
}

.salon-card-v2:hover {
    transform: scale(1.02);
    border-color: rgba(56, 189, 248, 0.34);
    box-shadow: 0 24px 56px rgba(2, 6, 23, 0.34);
}

.salon-card-v2:active {
    transform: scale(0.99);
}

.salon-card-v2__hit {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.salon-card-v2__image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #1e293b;
}

.salon-card-v2__media-scroll {
    position: relative;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.salon-card-v2__media-scroll::-webkit-scrollbar {
    display: none;
}

.salon-card-v2__image-skeleton {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.12), rgba(255, 255, 255, 0.16), rgba(148, 163, 184, 0.12));
    background-size: 220% 100%;
    animation: salon-card-v2-shimmer 1.4s ease-in-out infinite;
}

.salon-card-v2__image {
    position: relative;
    z-index: 1;
    flex: 0 0 100%;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}

.salon-card-v2__top-overlay,
.salon-card-v2__bottom-overlay {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
}

.salon-card-v2__top-overlay {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px;
    pointer-events: none;
}

.salon-card-v2__bottom-overlay {
    bottom: 0;
    padding: 54px 14px 14px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.5) 42%, rgba(15, 23, 42, 0.98));
    color: #ffffff;
    pointer-events: none;
}

.salon-card-v2__bottom-overlay h3 {
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.36);
}

.salon-card-v2__bottom-overlay p,
.salon-card-v2__bottom-overlay a {
    display: block;
    margin: 4px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.salon-card-v2__bottom-overlay a {
    position: relative;
    z-index: 6;
    pointer-events: auto;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.salon-card-v2__bottom-overlay a:hover {
    color: #ffffff;
}

.salon-card-v2__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 6;
    max-width: calc(100% - 24px);
    min-width: 0;
    min-height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.72);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
    backdrop-filter: blur(12px);
    gap: 5px;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 900;
    pointer-events: auto;
    text-decoration: none;
}

.salon-card-v2__pill--rating {
    color: #fbbf24;
}

.salon-card-v2__pill--rating:hover {
    color: #fcd34d;
    border-color: rgba(251, 191, 36, 0.38);
}

.salon-card-v2__pill--rating small {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.68);
    white-space: nowrap;
}

.salon-card-v2__body {
    position: relative;
    z-index: 4;
    display: grid;
    gap: 12px;
    padding: 14px;
}

.salon-card-v2__highlights {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    color: #64748b;
}

.salon-card-v2__highlights span,
.salon-card-v2__highlights a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 27px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.03);
    padding: 0 8px;
    font-size: 12px;
    font-weight: 750;
    color: inherit;
    text-decoration: none;
}

.salon-card-v2__highlights a {
    position: relative;
    z-index: 6;
}

.salon-card-v2__highlights a:hover {
    color: #0f172a;
    border-color: rgba(8, 145, 178, 0.32);
    background: rgba(8, 145, 178, 0.08);
}

.salon-card-v2__highlights small {
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #0891b2;
}

.salon-card-v2--dark .salon-card-v2__highlights span,
.salon-card-v2--dark .salon-card-v2__highlights a {
    border-color: rgba(148, 163, 184, 0.16);
    background: rgba(148, 163, 184, 0.08);
    color: #cbd5e1;
}

.salon-card-v2--dark .salon-card-v2__highlights a:hover {
    color: #ffffff;
    border-color: rgba(34, 211, 238, 0.28);
    background: rgba(34, 211, 238, 0.12);
}

.salon-card-v2__services {
    position: relative;
    z-index: 5;
    display: grid;
    gap: 2px;
}

.salon-card-v2__service-row {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    width: 100%;
    align-items: center;
    gap: 8px;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    min-height: 34px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 6px;
    background: transparent;
    padding: 6px 4px;
    font-size: 13px;
    color: inherit;
    text-align: left;
    transition: background 160ms ease, transform 120ms ease;
    cursor: pointer;
}

.salon-card-v2--dark .salon-card-v2__service-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.salon-card-v2__service-row:hover {
    background: rgba(15, 23, 42, 0.03);
}

.salon-card-v2--dark .salon-card-v2__service-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.salon-card-v2__service-row:active {
    transform: scale(0.99);
    background: rgba(8, 145, 178, 0.08);
}

.salon-card-v2__service-row::after {
    content: '\203A';
    flex: 0 0 auto;
    color: #94a3b8;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.salon-card-v2__service-row span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: inherit;
}

.salon-card-v2__service-row strong {
    flex: 0 0 auto;
    justify-self: end;
    min-width: max-content;
    font-size: 12px;
    font-weight: 760;
    color: #64748b;
    white-space: nowrap;
}

.salon-card-v2--dark .salon-card-v2__service-row strong {
    color: #cbd5e1;
}

.salon-card-v2__service-empty {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

.salon-card-v2--dark .salon-card-v2__service-empty {
    color: #94a3b8;
}

.salon-card-v2__more {
    position: relative;
    z-index: 3;
    width: max-content;
    font-size: 12px;
    font-weight: 750;
    color: #64748b;
    text-decoration: none;
}

.salon-card-v2--dark .salon-card-v2__more {
    color: #cbd5e1;
}

.salon-card-v2__more:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.salon-card-v2__cta {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 0;
}

.salon-card-v2__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    overflow: hidden;
    border-radius: 8px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.salon-card-v2__btn::after {
    content: "";
    position: absolute;
    inset: auto;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    opacity: 0;
    transform: scale(1);
    transition: opacity 220ms ease, transform 220ms ease;
}

.salon-card-v2__btn:active::after {
    opacity: 1;
    transform: scale(18);
}

.salon-card-v2__btn:hover {
    transform: translateY(-1px);
}

.salon-card-v2__btn--primary {
    border: 1px solid #0891b2;
    background: #0891b2;
    color: #ffffff;
}

.salon-card-v2__btn--primary:hover {
    border-color: #0e7490;
    background: #0e7490;
}

@keyframes salon-card-v2-shimmer {
    0% { background-position: 160% 0; }
    100% { background-position: -160% 0; }
}

@keyframes salon-card-v2-scroll-2 {
    0%, 42% { transform: translateX(0); }
    50%, 92% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@keyframes salon-card-v2-scroll-3 {
    0%, 27% { transform: translateX(0); }
    35%, 60% { transform: translateX(-100%); }
    68%, 92% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .salon-card-v2,
    .salon-card-v2__media-scroll,
    .salon-card-v2__image-skeleton,
    .salon-card-v2__btn,
    .salon-card-v2__service-row {
        animation: none;
        transition: none;
    }
}

@media (max-width: 639px) {
    .salon-card-v2 {
        max-width: none;
    }

    .salon-card-v2__image-wrap {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .salon-card-v2__body {
        gap: 12px;
        padding: 14px;
    }
}

/* -----------------------------------------------------------------
   Fast booking bottom sheet
   ----------------------------------------------------------------- */
.ls-fast-booking {
    position: fixed;
    inset: 0;
    height: var(--ls-vvh, 100vh);
    z-index: 80;
    padding: 10px;
    overscroll-behavior: contain;
    touch-action: none;
}

html:has(body.ls-fast-booking-lock) {
    overflow: hidden;
}

body.ls-fast-booking-lock {
    overscroll-behavior: contain;
    touch-action: none;
}

.ls-fast-booking__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.70);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 180ms ease;
    will-change: opacity;
}

.ls-fast-booking__panel {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    max-height: min(calc(var(--ls-vvh, 100vh) - 20px), 720px);
    min-height: 58vh;
    flex-direction: column;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 24px 24px 0 0;
    background: #0f172a;
    color: #f8fafc;
    box-shadow: 0 -26px 70px rgba(2, 6, 23, 0.45);
    transform: translateY(100%);
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
    touch-action: auto;
    will-change: transform;
}

.ls-fast-booking.is-open .ls-fast-booking__backdrop {
    opacity: 1;
}

.ls-fast-booking.is-open .ls-fast-booking__panel {
    transform: translateY(0);
}

.ls-fast-booking__handle {
    flex: 0 0 auto;
    align-self: center;
    width: 42px;
    height: 4px;
    margin-top: 10px;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.34);
    cursor: grab;
    touch-action: none;
}

.ls-fast-booking__handle:active {
    cursor: grabbing;
}

.ls-fast-booking__panel.is-dragging {
    transition: none;
}

.ls-fast-booking__close,
.ls-fast-booking__minimize {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.82);
    color: #e2e8f0;
    font-size: 24px;
}

.ls-fast-booking__minimize {
    font-size: 22px;
    font-weight: 900;
}

.ls-fast-booking__header {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.16);
    background: linear-gradient(180deg, #0f172a 0%, rgba(15, 23, 42, 0.96) 100%);
    padding: 10px 14px 12px 16px;
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.18);
}

.ls-fast-booking__header-main {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.ls-fast-booking__back {
    flex: 0 0 auto;
    min-height: 34px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.78);
    padding: 0 10px;
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 900;
}

.ls-fast-booking__header-title {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 950;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ls-fast-booking__header-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.ls-fast-booking__content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 16px;
    overscroll-behavior: contain;
}

[data-fast-booking-picker],
[data-fast-booking-slots] {
    will-change: opacity, transform;
}

.ls-fast-booking__view--from-right {
    animation: ls-fast-view-from-right 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ls-fast-booking__view--from-left {
    animation: ls-fast-view-from-left 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ls-fast-booking__eyebrow {
    margin: 0 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 800;
    color: #94a3b8;
}

.ls-fast-booking__title {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    color: #f8fafc;
}

.ls-fast-booking__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.ls-fast-booking__meta strong {
    font-size: 22px;
    font-weight: 950;
    color: #67e8f9;
}

.ls-fast-booking__meta span,
.ls-fast-booking__next {
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
}

.ls-fast-booking__next {
    margin: 14px 0 0;
}

.ls-fast-booking__add-link {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border: 1px solid rgba(103, 232, 249, 0.34);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.30), rgba(14, 116, 144, 0.20));
    padding: 0 14px;
    color: #ecfeff;
    font-size: 13px;
    font-weight: 900;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 120ms ease, background 160ms ease;
}

.ls-fast-booking__add-link:hover {
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.42), rgba(14, 116, 144, 0.28));
}

.ls-fast-booking__add-link:active {
    transform: scale(0.98);
}

.ls-fast-booking__selected {
    margin-top: 14px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.58);
    overflow: hidden;
}

.ls-fast-booking__selected-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 12px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 900;
}

.ls-fast-booking__selected-head strong {
    color: #67e8f9;
}

.ls-fast-booking__selected-note {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 9px 12px;
    color: #bae6fd;
    font-size: 12px;
    font-weight: 750;
}

.ls-fast-booking__selected-list {
    display: grid;
}

.ls-fast-booking__selected-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 34px;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 12px;
    animation: ls-fast-item-in 180ms ease-out;
}

.ls-fast-booking__selected-item:last-child {
    border-bottom: 0;
}

.ls-fast-booking__selected-item span {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.ls-fast-booking__selected-item strong,
.ls-fast-booking__selected-item small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ls-fast-booking__selected-item strong {
    color: #f8fafc;
    font-size: 13px;
    font-weight: 900;
}

.ls-fast-booking__selected-item small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 750;
}

.ls-fast-booking__selected-item b {
    color: #e2e8f0;
    font-size: 13px;
}

.ls-fast-booking__selected-item button {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 63, 94, 0.24);
    border-radius: 8px;
    background: rgba(244, 63, 94, 0.12);
    color: #fecdd3;
    font-size: 20px;
    line-height: 1;
}

.ls-fast-booking__error {
    margin: 12px 0 0;
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-radius: 8px;
    background: rgba(244, 63, 94, 0.10);
    padding: 10px 12px;
    color: #fecdd3;
    font-size: 13px;
    font-weight: 700;
}

.ls-fast-booking__success {
    margin: 12px 0 0;
    border: 1px solid rgba(34, 197, 94, 0.28);
    border-radius: 8px;
    background: rgba(34, 197, 94, 0.12);
    padding: 12px;
    color: #bbf7d0;
    font-size: 15px;
    font-weight: 900;
}

.ls-fast-booking__success span {
    display: block;
    margin-top: 4px;
    color: #dcfce7;
    font-size: 12px;
    font-weight: 750;
}

.ls-fast-booking__dates {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.ls-fast-booking__dates::-webkit-scrollbar {
    display: none;
}

.ls-fast-booking__date {
    display: grid;
    min-width: 76px;
    min-height: 58px;
    place-items: center;
    border: 1px solid rgba(148, 163, 184, 0.20);
    border-radius: 8px;
    background: rgba(30, 41, 59, 0.86);
    color: #cbd5e1;
    padding: 8px 10px;
}

.ls-fast-booking__date span {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
}

.ls-fast-booking__date strong {
    font-size: 15px;
    font-weight: 900;
}

.ls-fast-booking__date.is-selected,
.ls-fast-booking__slot.is-selected {
    border-color: rgba(103, 232, 249, 0.95);
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.62), rgba(14, 116, 144, 0.44));
    color: #ecfeff;
    box-shadow: 0 0 0 2px rgba(103, 232, 249, 0.28), 0 14px 30px rgba(8, 145, 178, 0.30);
}

.ls-fast-booking__slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.ls-fast-booking__slot {
    min-height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.20);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.72);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 850;
    transition: transform 120ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.ls-fast-booking__slot:not(:disabled):active {
    transform: scale(0.96);
}

.ls-fast-booking__slot.is-pulsing {
    animation: ls-fast-slot-pulse 700ms ease-out;
}

.ls-fast-booking__slot:disabled {
    cursor: not-allowed;
    border-style: dashed;
    border-color: rgba(148, 163, 184, 0.28);
    background: repeating-linear-gradient(135deg, rgba(71, 85, 105, 0.34) 0, rgba(71, 85, 105, 0.34) 6px, rgba(15, 23, 42, 0.52) 6px, rgba(15, 23, 42, 0.52) 12px);
    color: #94a3b8;
    opacity: 0.72;
}

.ls-fast-booking__slot-skeleton {
    min-height: 44px;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(30, 41, 59, 0.78), rgba(51, 65, 85, 0.90), rgba(30, 41, 59, 0.78));
    background-size: 220% 100%;
    animation: ls-fast-shimmer 1.1s ease-in-out infinite;
}

.ls-fast-booking__empty {
    grid-column: 1 / -1;
    margin: 0;
    border: 1px dashed rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    padding: 14px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
}

.ls-fast-booking__footer {
    position: sticky;
    bottom: 0;
    z-index: 3;
    flex: 0 0 auto;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), #0f172a);
    padding: 10px 16px max(16px, env(safe-area-inset-bottom));
    box-shadow: 0 -12px 28px rgba(2, 6, 23, 0.18);
}

.ls-fast-booking__fee-note {
    margin: 0 0 8px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 750;
    text-align: center;
}

.ls-fast-booking__cta {
    position: relative;
    width: 100%;
    min-height: 48px;
    overflow: hidden;
    border: 1px solid #0891b2;
    border-radius: 8px;
    background: #0891b2;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    transition: transform 120ms ease, background 160ms ease, border-color 160ms ease;
}

.ls-fast-booking__cta:active:not(:disabled) {
    transform: scale(0.985);
}

.ls-fast-booking__cta:disabled {
    border-color: rgba(148, 163, 184, 0.18);
    background: rgba(71, 85, 105, 0.72);
    color: #cbd5e1;
}

.ls-fast-booking__cta.is-submitting {
    color: transparent;
}

.ls-fast-booking__cta.is-submitting::after,
.ls-fast-booking__cta.is-refreshing::after {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
}

.ls-fast-booking__cta.is-submitting::after {
    content: 'Booking...';
}

.ls-fast-booking__cta.is-refreshing {
    color: transparent;
}

.ls-fast-booking__cta.is-refreshing::after {
    content: 'Refreshing session...';
}

.ls-fast-booking__cta.is-submitting::before,
.ls-fast-booking__cta.is-refreshing::before {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(50% - 56px);
    z-index: 1;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.28);
    border-top-color: #ffffff;
    animation: ls-spin 700ms linear infinite;
}

.ls-fast-booking__search {
    display: block;
    margin-top: 14px;
}

.ls-fast-booking__search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.72);
    color: #f8fafc;
    font-size: 14px;
    font-weight: 750;
    outline: none;
    padding: 0 12px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ls-fast-booking__search input::placeholder {
    color: #64748b;
}

.ls-fast-booking__search input:focus {
    border-color: rgba(103, 232, 249, 0.70);
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.14);
}

.ls-fast-booking__service-list {
    display: grid;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 8px;
}

.ls-fast-booking__service-choice {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 18px;
    width: 100%;
    min-height: 60px;
    align-items: center;
    column-gap: 10px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 0;
    background: rgba(30, 41, 59, 0.78);
    padding: 12px;
    color: #f8fafc;
    text-align: left;
    transition: background 160ms ease, transform 160ms ease;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    animation: ls-fast-item-in 180ms ease-out;
}

.ls-fast-booking__service-choice::after {
    content: '\203A';
    color: #67e8f9;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    text-align: right;
}

.ls-fast-booking__service-choice:last-child {
    border-bottom: 0;
}

.ls-fast-booking__service-choice:hover {
    background: rgba(51, 65, 85, 0.92);
}

.ls-fast-booking__service-choice:active {
    transform: scale(0.99);
    background: rgba(8, 145, 178, 0.20);
}

.ls-fast-booking__service-choice.is-disabled,
.ls-fast-booking__service-choice:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.ls-fast-booking__service-choice.is-selected {
    border-bottom-color: rgba(34, 197, 94, 0.18);
    background: rgba(20, 83, 45, 0.20);
}

.ls-fast-booking__service-choice.is-selected::after {
    content: '\2713';
    color: #86efac;
}

.ls-fast-booking__service-choice.is-selected b {
    color: #bbf7d0;
}

.ls-fast-booking__confirm {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: end center;
    padding: 16px;
    background: rgba(2, 6, 23, 0.58);
}

.ls-fast-booking__confirm.hidden {
    display: none;
}

.ls-fast-booking__confirm-card {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 12px;
    background: #111827;
    padding: 16px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.ls-fast-booking__confirm-card h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 17px;
    font-weight: 950;
}

.ls-fast-booking__confirm-card p {
    margin: 6px 0 14px;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
}

.ls-fast-booking__confirm-card div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ls-fast-booking__confirm-card button {
    min-height: 44px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.ls-fast-booking__confirm-secondary {
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(30, 41, 59, 0.92);
    color: #e2e8f0;
}

.ls-fast-booking__confirm-danger {
    border: 1px solid rgba(244, 63, 94, 0.35);
    background: rgba(244, 63, 94, 0.18);
    color: #fecdd3;
}

.ls-fast-booking-minibar {
    position: fixed;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 75;
    max-width: 480px;
    margin-inline: auto;
    transform: translateY(14px);
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.ls-fast-booking-minibar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ls-fast-booking-minibar__button {
    display: flex;
    width: 100%;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid rgba(103, 232, 249, 0.36);
    border-radius: 14px;
    background: #0f172a;
    padding: 10px 12px 10px 14px;
    color: #f8fafc;
    text-align: left;
    box-shadow: 0 18px 44px rgba(2, 6, 23, 0.32);
}

.ls-fast-booking-minibar__button:active {
    transform: scale(0.99);
}

.ls-fast-booking-minibar__summary {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.ls-fast-booking-minibar__summary strong,
.ls-fast-booking-minibar__summary span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ls-fast-booking-minibar__summary strong {
    font-size: 13px;
    font-weight: 950;
}

.ls-fast-booking-minibar__summary span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 750;
}

.ls-fast-booking-minibar__expand {
    flex: 0 0 auto;
    border-radius: 8px;
    background: rgba(8, 145, 178, 0.22);
    padding: 8px 10px;
    color: #67e8f9;
    font-size: 12px;
    font-weight: 950;
}

.ls-fast-booking-conflict {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: end center;
    padding: 16px;
    background: rgba(2, 6, 23, 0.62);
}

.ls-fast-booking-conflict__card {
    width: 100%;
    max-width: 420px;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 14px;
    background: #111827;
    padding: 16px;
    color: #f8fafc;
    box-shadow: 0 24px 64px rgba(2, 6, 23, 0.42);
}

.ls-fast-booking-conflict__card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 950;
}

.ls-fast-booking-conflict__card p {
    margin: 8px 0 16px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 700;
}

.ls-fast-booking-conflict__actions {
    display: grid;
    gap: 8px;
}

.ls-fast-booking-conflict__actions button {
    min-height: 46px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 950;
}

.ls-fast-booking-conflict__primary {
    border: 1px solid #0891b2;
    background: #0891b2;
    color: #ffffff;
}

.ls-fast-booking-conflict__secondary {
    border: 1px solid rgba(148, 163, 184, 0.24);
    background: rgba(30, 41, 59, 0.92);
    color: #e2e8f0;
}

@keyframes ls-fast-slot-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(103, 232, 249, 0.42), 0 12px 26px rgba(8, 145, 178, 0.20);
    }
    100% {
        box-shadow: 0 0 0 12px rgba(103, 232, 249, 0), 0 12px 26px rgba(8, 145, 178, 0.20);
    }
}

@keyframes ls-fast-item-in {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ls-fast-view-from-right {
    from {
        opacity: 0;
        transform: translateX(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ls-fast-view-from-left {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes ls-fast-shimmer {
    from {
        background-position: 120% 0;
    }
    to {
        background-position: -120% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ls-fast-booking__view--from-right,
    .ls-fast-booking__view--from-left,
    .ls-fast-booking__service-choice,
    .ls-fast-booking__selected-item {
        animation: none;
    }
}

.ls-fast-booking-toast {
    position: fixed;
    left: 50%;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 120;
    transform: translate(-50%, 10px);
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 8px;
    background: #0f172a;
    color: #f8fafc;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 850;
    box-shadow: 0 16px 36px rgba(2, 6, 23, 0.32);
    opacity: 0;
    transition: opacity 160ms ease, transform 160ms ease;
}

.ls-fast-booking-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.ls-fast-booking__service-choice span {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.ls-fast-booking__service-choice strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.ls-fast-booking__service-choice small {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 750;
}

.ls-fast-booking__service-choice b {
    justify-self: end;
    min-width: max-content;
    color: #67e8f9;
    font-size: 13px;
    font-weight: 950;
    white-space: nowrap;
}

@media (min-width: 640px) {
    .ls-fast-booking__panel {
        right: max(16px, calc((100vw - 720px) / 2));
        left: max(16px, calc((100vw - 720px) / 2));
        border-radius: 24px;
        bottom: 16px;
    }
}

.ls-fast-booking__service-list {
    gap: 10px;
    border: 0;
    background: transparent;
}

.ls-fast-booking__service-group {
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.54);
}

.ls-fast-booking__service-group summary {
    display: flex;
    min-height: 50px;
    cursor: pointer;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 950;
}

.ls-fast-booking__service-group summary::-webkit-details-marker {
    display: none;
}

.ls-fast-booking__service-group summary::after {
    content: '\203A';
    color: #67e8f9;
    font-size: 20px;
    transform: rotate(90deg);
    transition: transform 160ms ease;
}

.ls-fast-booking__service-group[open] summary::after {
    transform: rotate(-90deg);
}

.ls-fast-booking__service-group summary b {
    margin-left: auto;
    color: #94a3b8;
    font-size: 12px;
}

.ls-fast-booking__service-group-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.salon-card-v2__media-scroll {
    animation: none !important;
    scroll-behavior: smooth;
}

.salon-card-v2__carousel-control,
.ls-gallery-carousel__control {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    color: #ffffff;
    font-size: 22px;
    font-weight: 900;
    transform: translateY(-50%);
}

.salon-card-v2__carousel-control--prev,
.ls-gallery-carousel__control--prev {
    left: 10px;
}

.salon-card-v2__carousel-control--next,
.ls-gallery-carousel__control--next {
    right: 10px;
}

.salon-card-v2__carousel-dots,
.ls-gallery-carousel__dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 10px;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
}

.salon-card-v2__carousel-dot,
.ls-gallery-carousel__dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.52);
    padding: 0;
}

.salon-card-v2__carousel-dot.is-active,
.ls-gallery-carousel__dot.is-active {
    width: 18px;
    background: #ffffff;
}

.ls-gallery-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ls-surface-muted);
}

.ls-gallery-carousel__track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.ls-gallery-carousel__track::-webkit-scrollbar {
    display: none;
}

.ls-gallery-carousel__slide {
    flex: 0 0 100%;
    height: 100%;
    scroll-snap-align: start;
}

.ls-gallery-carousel__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 640px) {
    .ls-gallery-carousel__slide img {
        height: 100%;
    }
}

@media (min-width: 1024px) {
    .ls-gallery-carousel__slide img {
        height: 100%;
    }
}
