/* ═══════════════════════════════════════════════════════
   LUSHLY — Complete Stylesheet v3 (final)
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --lav:      #E6E6FA;
  --lav-d:    #C8C8F0;
  --lav-s:    #F4F4FD;
  --lav-m:    #A0A0E8;
  --gold:     #C9A84C;
  --gold-b:   #FFD700;
  --black:    #0D0D0D;
  --gray:     #6B6B6B;
  --gray-l:   #D8D8D8;
  --gray-ll:  #F5F5F3;
  --white:    #FFFFFF;
  --green:    #1D7A3C;
  --green-l:  #E8F5EE;
  --red:      #C0392B;
  --red-l:    #FDECEA;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Lato', system-ui, sans-serif;
  --nav-h:    72px;
  --max-w:    1200px;
  --shadow-sm: 0 2px 8px rgba(13,13,13,.06);
  --shadow-md: 0 8px 32px rgba(13,13,13,.10);
  --shadow-lg: 0 16px 48px rgba(13,13,13,.14);
  --t-fast:   .15s ease;
  --t-base:   .25s ease;
  --t-slow:   .4s ease;
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); line-height: 1.6; color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { cursor: pointer; font-family: var(--sans); border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: var(--sans); font-size: 14px; }
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--gray-ll); }
::-webkit-scrollbar-thumb { background: var(--lav-d); border-radius: 3px; }

/* ── Typography ─────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--serif); font-weight: 500; line-height: 1.15; color: var(--black); }
h1 { font-size: clamp(36px,5vw,62px); }
h2 { font-size: clamp(28px,3.5vw,40px); }
h3 { font-size: clamp(20px,2.5vw,26px); }
h4 { font-size: 18px; }
p  { color: var(--gray); line-height: 1.75; }

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-subtitle { font-size: 16px; font-weight: 300; color: var(--gray); line-height: 1.7; margin-bottom: 40px; max-width: 560px; }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 13px 28px; cursor: pointer;
  transition: all var(--t-base); white-space: nowrap; border: none;
}
.btn-primary   { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--gold); color: var(--black); }
.btn-secondary { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn-secondary:hover { background: var(--black); color: var(--white); }
.btn-gold      { background: var(--gold-b); color: var(--black); }
.btn-gold:hover { background: var(--gold); color: var(--white); }
.btn-ghost     { background: transparent; color: var(--black); border: 1px solid var(--lav-d); font-size: 11px; padding: 8px 20px; }
.btn-ghost:hover { border-color: var(--black); background: var(--black); color: var(--white); }
.btn-lav       { background: var(--lav); color: var(--black); }
.btn-lav:hover  { background: var(--gold-b); }

/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  justify-content: space-between; padding: 0 48px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--lav-d); transition: box-shadow var(--t-base);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-logo { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: 3px; color: var(--black); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 13px; color: var(--gray); position: relative; transition: color var(--t-fast); }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width var(--t-base); }
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after,.nav-link-active::after { width: 100% !important; }
.nav-link-active { color: var(--black) !important; font-weight: 700; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; height: 1.5px; background: var(--black); transition: all var(--t-base); transform-origin: center; }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 98; }
.nav-overlay.visible { display: block; }
.nav-mobile-auth { display: none; flex-direction: column; gap: 8px; padding-top: 16px; border-top: 0.5px solid var(--lav-d); margin-top: 8px; }

/* ── Language Switcher ──────────────────────────────── */
.lang-switcher { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 5px; font-family: var(--sans);
  font-size: 12px; font-weight: 700; letter-spacing: .5px; color: var(--black);
  background: none; border: 1px solid var(--lav-d); padding: 7px 10px;
  cursor: pointer; transition: all var(--t-fast); white-space: nowrap;
}
.lang-current:hover { border-color: var(--black); background: var(--lav-s); }
.lang-flag  { font-size: 14px; }
.lang-code  { font-size: 11px; font-weight: 700; letter-spacing: 1px; }
.lang-arrow { font-size: 9px; color: var(--gray); transition: transform var(--t-fast); }
.lang-switcher.open .lang-arrow { transform: rotate(180deg); }
.lang-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--white); border: 0.5px solid var(--lav-d); min-width: 160px;
  z-index: 200; box-shadow: var(--shadow-md);
}
.lang-switcher.open .lang-dropdown { display: block; }
.lang-option { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 13px; color: var(--gray); text-decoration: none; transition: background var(--t-fast); }
.lang-option:hover { background: var(--lav-s); color: var(--black); }
.lang-option.on   { color: var(--black); font-weight: 700; background: var(--lav-s); }
.lang-name  { flex: 1; }
.lang-check { color: var(--gold); font-size: 12px; }

/* ── Modals ─────────────────────────────────────────── */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 300; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: var(--white); width: 100%; max-width: 420px; box-shadow: var(--shadow-lg); animation: fadeUp .25s ease; }
.modal-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 0.5px solid var(--lav-d); }
.modal-title { font-family: var(--serif); font-size: 20px; color: var(--black); }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--gray); line-height: 1; }
.modal-close:hover { color: var(--black); }
.modal-body { padding: 24px; }
.modal-tabs { display: flex; border-bottom: 0.5px solid var(--lav-d); margin-bottom: 20px; }
.modal-tab { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .5px; padding: 10px 20px; cursor: pointer; color: var(--gray); border: none; border-bottom: 2px solid transparent; background: none; transition: all var(--t-fast); }
.modal-tab.on { color: var(--black); border-bottom-color: var(--black); }
.modal-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.modal-field label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--gray); }
.modal-field input { font-family: var(--sans); font-size: 14px; color: var(--black); border: 1px solid var(--lav-d); padding: 11px 14px; outline: none; transition: border-color var(--t-fast); }
.modal-field input:focus { border-color: var(--lav-m); box-shadow: 0 0 0 3px rgba(160,160,232,.1); }
.modal-alt { text-align: center; font-size: 13px; color: var(--gray); margin-top: 16px; }
.modal-alt a { color: var(--lav-m); font-weight: 700; }

/* ── Animations ─────────────────────────────────────── */
@keyframes fadeUp   { from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn   { from{opacity:0;}to{opacity:1;} }
@keyframes ctaPulse { 0%,100%{box-shadow:0 0 0 0 rgba(201,168,76,.4);}50%{box-shadow:0 0 0 10px rgba(201,168,76,0);} }
@keyframes pulse    { 0%,100%{opacity:1;}50%{opacity:.4;} }
@keyframes barIn    { from{height:0;}to{height:var(--h);} }
.animate-fade-up { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.animate-fade-up.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero { margin-top: var(--nav-h); min-height: calc(100vh - var(--nav-h)); display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; }
.admin-bar .hero { margin-top: calc(var(--nav-h) + 32px); }
.hero-left { padding: 80px 48px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.hero-title { font-family: var(--serif); font-size: clamp(44px,5vw,62px); font-weight: 500; line-height: 1.06; color: var(--black); margin-bottom: 24px; letter-spacing: -0.5px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle { font-size: 17px; font-weight: 300; color: var(--gray); line-height: 1.7; margin-bottom: 40px; max-width: 440px; }

/* Search */
.search-box { background: var(--white); border: 1px solid var(--lav-d); display: flex; align-items: center; margin-bottom: 16px; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.search-box:focus-within { border-color: var(--lav-m); box-shadow: 0 0 0 3px rgba(160,160,232,.12); }
.search-icon { padding: 0 12px; font-size: 14px; color: var(--gold); flex-shrink: 0; }
.search-box input { flex: 1; border: none; outline: none; background: transparent; font-size: 14px; color: var(--black); padding: 16px 0; }
.search-box input::placeholder { color: var(--gray-l); }
.search-divider { width: 1px; height: 28px; background: var(--lav-d); flex-shrink: 0; margin: 0 4px; }
.search-location { display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.search-location input { border: none; outline: none; background: transparent; font-size: 13px; color: var(--gray); width: 140px; }
.search-btn { background: var(--black); color: var(--white); border: none; padding: 16px 28px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; flex-shrink: 0; transition: background var(--t-fast); }
.search-btn:hover { background: var(--gold); }

/* Quick tags */
.quick-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.quick-tag { font-size: 12px; color: var(--gray); background: var(--lav-s); border: 0.5px solid var(--lav-d); padding: 6px 14px; cursor: pointer; transition: all var(--t-fast); }
.quick-tag:hover,.quick-tag--active { background: var(--lav); border-color: var(--lav-m); color: var(--black); }

/* Hero stats */
.hero-stats { display: flex; gap: 32px; padding-top: 32px; border-top: 0.5px solid var(--lav-d); }
.hero-stat-num { font-family: var(--serif); font-size: 28px; color: var(--black); line-height: 1; }
.hero-stat-num .stat-suffix { color: var(--gold); font-size: 22px; }
.hero-stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; }

/* Hero right */
.hero-right { background: var(--lav-s); border-left: 0.5px solid var(--lav-d); padding: 48px 36px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.hero-card { background: var(--white); border: 0.5px solid var(--lav-d); overflow: hidden; transition: transform var(--t-base), box-shadow var(--t-base); }
.hero-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.hero-card--wide { grid-column: 1 / -1; }
.hero-card-img { height: 110px; overflow: hidden; position: relative; }
.hero-card--wide .hero-card-img { height: 140px; }
.hero-card-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 36px; background: var(--lav-s); }
.hero-card-body { padding: 12px 14px 14px; }
.hero-card-name { font-family: var(--serif); font-size: 14px; color: var(--black); margin-bottom: 3px; }
.hero-card-meta { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.hero-card-footer { display: flex; justify-content: space-between; align-items: center; }
.hero-card-rating { font-size: 12px; font-weight: 700; color: var(--black); }
.hero-card-rating span { color: var(--gray); font-weight: 300; }
.hero-card-price { font-family: var(--serif); font-size: 14px; color: var(--gold); }
.hero-card-avail { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--lav); color: var(--black); padding: 3px 9px; margin-top: 7px; }
.hero-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ═══════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════ */
.categories-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; background: var(--lav-d); border: 1px solid var(--lav-d); }
.category-card { background: var(--white); padding: 32px 16px; text-align: center; cursor: pointer; transition: background var(--t-fast); border-bottom: 3px solid transparent; position: relative; overflow: hidden; text-decoration: none; display: block; }
.category-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--t-base); }
.category-card:hover { background: var(--lav-s); }
.category-card:hover::after { transform: scaleX(1); }
.category-img { width: 68px; height: 68px; margin: 0 auto 14px; border-radius: 50%; overflow: hidden; background: var(--lav-s); }
.category-img img { width: 100%; height: 100%; object-fit: cover; }
.category-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; background: var(--lav-s); border-radius: 50%; }
.category-name { font-family: var(--serif); font-size: 14px; color: var(--black); margin-bottom: 4px; }
.category-count { font-size: 11px; color: var(--gray); }

/* ═══════════════════════════════════════════════════════
   SALON CARDS
   ═══════════════════════════════════════════════════════ */
.salon-card { background: var(--white); border: 0.5px solid var(--lav-d); overflow: hidden; transition: transform var(--t-base), box-shadow var(--t-base); }
.salon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.salon-card-img { position: relative; height: 200px; overflow: hidden; background: var(--lav-s); }
.salon-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.salon-card:hover .salon-card-img img { transform: scale(1.04); }
.salon-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 48px; }
.salon-card-badge { position: absolute; top: 10px; left: 10px; font-size: 9px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--black); color: var(--gold-b); padding: 3px 8px; }
.salon-card-avail { position: absolute; top: 10px; right: 10px; font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; background: var(--lav); color: var(--black); padding: 3px 8px; }
.salon-card-body { padding: 18px 20px 20px; }
.salon-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 5px; }
.salon-card-name { font-family: var(--serif); font-size: 16px; color: var(--black); }
.salon-card-name a { color: inherit; text-decoration: none; }
.salon-card-name a:hover { color: var(--gold); }
.salon-card-rating { font-size: 11px; font-weight: 700; background: var(--lav); padding: 3px 10px; color: var(--black); flex-shrink: 0; margin-left: 8px; }
.salon-card-services { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.salon-card-footer { display: flex; justify-content: space-between; align-items: center; }
.salon-card-meta { display: flex; flex-direction: column; gap: 3px; }
.salon-card-location { font-size: 12px; color: var(--gray); }
.salon-card-price { font-family: var(--serif); font-size: 15px; color: var(--gold); }

/* Salons section */
.salons-section { background: var(--gray-ll); padding: 80px 0; }
.salons-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.salons-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--lav-d); }

/* Skeleton */
.skeleton { background: linear-gradient(90deg,var(--lav-s) 25%,var(--lav) 50%,var(--lav-s) 75%); background-size: 200% 100%; animation: skeleton-loading 1.4s infinite; border-radius: 2px; }
@keyframes skeleton-loading { 0%{background-position:200% 0;}100%{background-position:-200% 0;} }
.skeleton-card { background: var(--white); border: 0.5px solid var(--lav-d); overflow: hidden; }
.skeleton-img  { height: 200px; }
.skeleton-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.skeleton-line { height: 14px; border-radius: 3px; }

/* ═══════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════ */
.hiw-section { background: var(--lav-s); border-top: 0.5px solid var(--lav-d); border-bottom: 0.5px solid var(--lav-d); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--lav-d); }
.step { background: var(--white); padding: 44px 36px 52px; position: relative; overflow: hidden; }
.step::before { content: attr(data-num); position: absolute; top: -10px; right: 20px; font-family: var(--serif); font-size: 96px; font-style: italic; color: var(--lav); line-height: 1; pointer-events: none; user-select: none; }
.step-number { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.step-title  { font-family: var(--serif); font-size: 20px; color: var(--black); margin-bottom: 12px; }
.step-desc   { font-size: 14px; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testimonial { border: 0.5px solid var(--lav-d); padding: 28px; background: var(--white); transition: transform var(--t-base), box-shadow var(--t-base); }
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial-quote { font-family: var(--serif); font-size: 56px; color: var(--lav-d); line-height: 0.7; margin-bottom: 14px; }
.testimonial-stars { color: var(--gold-b); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text  { font-family: var(--serif); font-size: 14px; font-style: italic; color: var(--gray); line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; border-top: 0.5px solid var(--lav-d); padding-top: 14px; }
.testimonial-ava  { width: 36px; height: 36px; border-radius: 50%; background: var(--lav); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--lav-m); flex-shrink: 0; }
.testimonial-name { font-size: 12px; font-weight: 700; color: var(--black); }
.testimonial-city { font-size: 11px; color: var(--gray); }
.b2b-testi-result { font-size: 11px; font-weight: 700; color: var(--gold); margin-top: 3px; }

/* ═══════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════ */
.cta-banner { background: var(--black); padding: 80px 48px; }
.cta-inner  { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.cta-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.cta-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.cta-title    { font-family: var(--serif); font-size: clamp(28px,3vw,42px); color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.cta-title em { font-style: italic; color: var(--gold); }
.cta-subtitle { font-size: 15px; color: rgba(255,255,255,.5); font-weight: 300; line-height: 1.7; max-width: 480px; }
.cta-actions  { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cta-note     { font-size: 11px; color: rgba(255,255,255,.3); }
.btn-cta-pulse { animation: ctaPulse 2.5s infinite; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { border-top: 0.5px solid var(--lav-d); padding: 40px 48px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.footer-logo  { font-family: var(--serif); font-size: 20px; letter-spacing: 3px; color: var(--black); }
.footer-logo a { color: inherit; text-decoration: none; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--gray); text-decoration: none; transition: color var(--t-fast); }
.footer-links a:hover { color: var(--black); }
.footer-copy  { font-size: 11px; color: var(--gray-l); }

/* ═══════════════════════════════════════════════════════
   CATALOG PAGE
   ═══════════════════════════════════════════════════════ */
.catalog-page { min-height: 80vh; }
.catalog-header { background: var(--lav-s); border-bottom: 0.5px solid var(--lav-d); padding: 32px 0 28px; margin-top: var(--nav-h); }
.admin-bar .catalog-header { margin-top: calc(var(--nav-h) + 32px); }
.catalog-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.catalog-breadcrumb a { color: var(--gray); text-decoration: none; transition: color var(--t-fast); }
.catalog-breadcrumb a:hover { color: var(--black); }
.catalog-title { font-family: var(--serif); font-size: clamp(24px,3vw,36px); color: var(--black); margin-bottom: 6px; }
.catalog-subtitle { font-size: 14px; color: var(--gray); font-weight: 300; }

.catalog-search-bar { background: var(--white); border-bottom: 0.5px solid var(--lav-d); padding: 14px 0; position: sticky; top: var(--nav-h); z-index: 80; }
.admin-bar .catalog-search-bar { top: calc(var(--nav-h) + 32px); }
.catalog-search-inner { display: flex; align-items: center; gap: 12px; }
.catalog-search-box  { flex: 1; }
.active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.af-label { font-size: 11px; font-weight: 700; color: var(--gray); letter-spacing: .5px; }
.af-tag   { display: flex; align-items: center; gap: 6px; font-size: 11px; background: var(--lav); border: 0.5px solid var(--lav-m); color: var(--black); padding: 4px 10px; }
.af-tag a { color: var(--lav-m); font-weight: 700; text-decoration: none; }
.af-clear { font-size: 11px; color: var(--gray); text-decoration: underline; cursor: pointer; }
.af-clear:hover { color: var(--black); }

.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 32px 0 80px; align-items: start; }

.catalog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  overflow: hidden;
  border-radius: var(--radius);
}
.admin-bar .catalog-sidebar { top: calc(var(--nav-h) + 16px + 32px); }
.sidebar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sidebar-title  { font-size: 13px; font-weight: 700; color: var(--black); letter-spacing: .5px; text-transform: uppercase; }
.sidebar-close  { display: none; background: none; border: none; font-size: 20px; cursor: pointer; color: var(--gray); }

.filter-block { border: 0.5px solid var(--lav-d); overflow: hidden; margin-bottom: 10px; background: var(--white); }
.filter-block-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; cursor: pointer; font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--black); border-bottom: 0.5px solid var(--lav-d); user-select: none; transition: background var(--t-fast); }
.filter-block-head:hover { background: var(--lav-s); }
.fb-arrow { font-size: 9px; color: var(--gray); }
.filter-block-body { padding: 10px 14px; }
.filter-opt { display: flex; align-items: center; gap: 8px; padding: 7px 0; cursor: pointer; font-size: 13px; color: var(--gray); }
.filter-opt input[type="radio"] { accent-color: var(--black); flex-shrink: 0; }
.fo-label { flex: 1; }
.fo-count { font-size: 11px; color: var(--gray-l); }
.btn-filter-reset { display: block; width: 100%; text-align: center; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--gray); border: 1px solid var(--lav-d); padding: 10px; text-decoration: none; transition: all var(--t-fast); margin-top: 6px; }
.btn-filter-reset:hover { border-color: var(--black); color: var(--black); background: var(--lav-s); }

.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.results-count  { font-size: 14px; color: var(--gray); }
.results-count strong { font-size: 16px; color: var(--black); margin-right: 4px; }
.results-controls { display: flex; align-items: center; gap: 12px; }
.sort-wrap { display: flex; align-items: center; gap: 8px; }
.sort-label { font-size: 12px; color: var(--gray); }
.sort-wrap select { font-family: var(--sans); font-size: 12px; font-weight: 700; border: 1px solid var(--lav-d); background: var(--white); color: var(--black); padding: 7px 12px; outline: none; cursor: pointer; }
.view-btns { display: flex; border: 1px solid var(--lav-d); overflow: hidden; }
.view-btn  { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; background: var(--white); border: none; cursor: pointer; font-size: 14px; color: var(--gray); transition: all var(--t-fast); }
.view-btn.on { background: var(--black); color: var(--white); }
.view-btn:hover:not(.on) { background: var(--lav-s); }
.filter-toggle { display: none; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .5px; padding: 7px 14px; border: 1px solid var(--lav-d); background: var(--white); color: var(--black); cursor: pointer; }

.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--lav-d); }
.catalog-grid--list { grid-template-columns: 1fr; }
.catalog-grid--list .salon-card { display: grid; grid-template-columns: 200px 1fr; }
.catalog-grid--list .salon-card-img { height: auto; min-height: 140px; }
.catalog-grid--list .salon-card-body { display: flex; flex-direction: column; justify-content: space-between; padding: 20px 24px; }

.catalog-pagination { margin-top: 40px; display: flex; justify-content: center; }
.catalog-pagination .page-numbers { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; }
.catalog-pagination .page-numbers li a,
.catalog-pagination .page-numbers li span { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; font-size: 13px; font-weight: 700; border: 0.5px solid var(--lav-d); color: var(--gray); text-decoration: none; transition: all var(--t-fast); }
.catalog-pagination .page-numbers li a:hover { border-color: var(--black); color: var(--black); }
.catalog-pagination .page-numbers li span.current { background: var(--black); color: var(--white); border-color: var(--black); }

/* Breadcrumb */
.breadcrumb-bar { background: var(--lav-s); border-bottom: 0.5px solid var(--lav-d); padding: 14px 0; margin-top: var(--nav-h); }
.admin-bar .breadcrumb-bar { margin-top: calc(var(--nav-h) + 32px); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--gray); flex-wrap: wrap; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { color: var(--gray-l); }

/* ═══════════════════════════════════════════════════════
   SINGLE SALON PAGE
   ═══════════════════════════════════════════════════════ */

/* Gallery */
.salon-gallery-wrap { position: relative; }
.salon-gallery-main { height: 420px; overflow: hidden; position: relative; background: var(--lav-s); display: flex; align-items: center; justify-content: center; }
.salon-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.salon-gallery-badge { position: absolute; top: 20px; left: 48px; background: var(--black); color: var(--gold-b); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; }
.gallery-btn-all { position: absolute; bottom: 20px; left: 48px; background: rgba(255,255,255,.9); border: none; font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 8px 16px; cursor: pointer; transition: background var(--t-fast); }
.gallery-btn-all:hover { background: var(--white); }
.salon-gallery-thumbs { position: absolute; bottom: 20px; right: 48px; display: flex; gap: 8px; }
.gallery-thumb { width: 68px; height: 68px; border: 3px solid var(--white); overflow: hidden; cursor: pointer; opacity: .7; transition: opacity var(--t-fast), border-color var(--t-fast), transform var(--t-fast); }
.gallery-thumb:hover,.gallery-thumb.on { opacity: 1; border-color: var(--lav-m); transform: scale(1.05); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 24px; }

/* Salon header */
.salon-header-wrap { display: grid; grid-template-columns: 1fr 360px; border-bottom: 0.5px solid var(--lav-d); }
.salon-header-left { padding: 32px 48px; }
.salon-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.salon-tag  { font-size: 11px; letter-spacing: .5px; background: var(--lav-s); border: 0.5px solid var(--lav-d); padding: 4px 12px; color: var(--gray); }
.salon-title { font-family: var(--serif); font-size: clamp(28px,3vw,40px); color: var(--black); margin-bottom: 14px; line-height: 1.15; }
.salon-meta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; }
.salon-meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--gray); }
.salon-meta-item strong { color: var(--black); }
.salon-meta-sep { color: var(--gray-l); }
.meta-icon { font-size: 14px; }
.salon-stars-wrap .star,.rs-stars .star { font-size: 15px; letter-spacing: 1px; }
.salon-stars-wrap .star.full,.rs-stars .star.full { color: var(--gold-b); }
.salon-stars-wrap .star.half,.rs-stars .star.half { color: var(--gold-b); opacity: .6; }
.salon-stars-wrap .star.empty,.rs-stars .star.empty { color: var(--lav-d); }
.status-open   { color: var(--green) !important; font-weight: 700 !important; }
.status-closed { color: var(--red)   !important; font-weight: 700 !important; }
.salon-description { font-size: 14px; color: var(--gray); line-height: 1.75; max-width: 560px; font-weight: 300; margin-bottom: 20px; }
.salon-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.salon-actions .btn { font-size: 11px; padding: 9px 18px; }
.btn.saved { background: var(--lav); }

/* Booking widget */
.salon-booking-widget { border-left: 0.5px solid var(--lav-d); position: sticky; top: var(--nav-h); height: fit-content; background: var(--white); }
.admin-bar .salon-booking-widget { top: calc(var(--nav-h) + 32px); }
.widget-head  { background: var(--black); padding: 20px 24px; }
.widget-title { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 4px; }
.widget-sub   { font-size: 11px; color: rgba(255,255,255,.45); }
.widget-body  { padding: 20px 24px; }
.widget-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; display: block; }
.widget-hint  { font-size: 12px; color: var(--gray); font-style: italic; padding: 8px 0; }
.widget-select { width: 100%; font-family: var(--sans); font-size: 13px; color: var(--black); border: 1px solid var(--lav-d); padding: 10px 12px; background: var(--white); outline: none; margin-bottom: 16px; appearance: none; cursor: pointer; }
.widget-select:focus { border-color: var(--lav-m); }
.widget-masters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.master-btn { font-family: var(--sans); font-size: 11px; border: 1px solid var(--lav-d); padding: 6px 12px; background: var(--white); color: var(--gray); cursor: pointer; transition: all var(--t-fast); }
.master-btn:hover:not(.on) { border-color: var(--lav-m); background: var(--lav-s); }
.master-btn.on { background: var(--black); color: var(--white); border-color: var(--black); }
.widget-footer { padding: 10px 24px; background: var(--lav-s); border-top: 0.5px solid var(--lav-d); font-size: 11px; color: var(--gray); text-align: center; }
.btn-book-widget { width: 100%; justify-content: center; }

/* Mini calendar */
.mini-calendar { border: 0.5px solid var(--lav-d); overflow: hidden; margin-bottom: 16px; }
.mc-nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; background: var(--lav-s); border-bottom: 0.5px solid var(--lav-d); }
.mc-month { font-family: var(--serif); font-size: 14px; color: var(--black); }
.mc-arrow { background: none; border: none; font-size: 16px; cursor: pointer; color: var(--gray); padding: 2px 6px; transition: color var(--t-fast); }
.mc-arrow:hover { color: var(--black); }
.mc-days-header { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; padding: 8px 8px 4px; }
.mc-day-name { font-size: 9px; font-weight: 700; text-align: center; color: var(--gray); padding: 3px 0; letter-spacing: .5px; }
.mc-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; padding: 4px 8px 10px; }
.mc-day { font-size: 12px; text-align: center; padding: 8px 2px; cursor: pointer; color: var(--black); background: var(--white); transition: background var(--t-fast); position: relative; border-radius: 2px; }
.mc-day.available { background: var(--lav-s); border: 1px solid var(--lav); }
.mc-day.available:hover { background: var(--lav); border-color: var(--lav-m); }
.mc-day.on { background: var(--black) !important; color: var(--white) !important; border: 1px solid var(--black) !important; font-weight: 700; }
.mc-day.today { font-weight: 700; border: 2px solid var(--lav-m) !important; }
.mc-day.today::after { content: ''; position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.mc-day.on.today::after { background: var(--white); }
.mc-day.past,.mc-day.empty { color: var(--gray-l) !important; background: transparent !important; border: none !important; cursor: default; }
.mc-day.available::before { content: ''; position: absolute; top: 2px; right: 2px; width: 3px; height: 3px; border-radius: 50%; background: var(--green); }
.mc-day.on::before { display: none; }

/* Time slots */
.slot-group { margin-bottom: 14px; }
.slot-group-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.slots-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; }
.time-slot { font-family: var(--sans); font-size: 12px; font-weight: 700; text-align: center; padding: 9px 4px; border: 1px solid var(--lav-d); background: var(--white); color: var(--black); cursor: pointer; transition: all var(--t-fast); display: block; width: 100%; }
.time-slot:hover:not(.taken):not(.on) { background: var(--lav); border-color: var(--lav-m); }
.time-slot.on { background: var(--black) !important; color: var(--white) !important; border-color: var(--black) !important; }
.time-slot.taken { color: var(--gray-l) !important; background: var(--gray-ll) !important; border-color: var(--gray-ll) !important; cursor: not-allowed; text-decoration: line-through; }

/* Tabs */
.salon-tabs-bar { border-bottom: 0.5px solid var(--lav-d); position: sticky; top: var(--nav-h); z-index: 80; background: var(--white); }
.admin-bar .salon-tabs-bar { top: calc(var(--nav-h) + 32px); }
.salon-tabs { display: flex; overflow-x: auto; scrollbar-width: none; }
.salon-tabs::-webkit-scrollbar { display: none; }
.salon-tab { font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .5px; padding: 16px 24px; cursor: pointer; color: var(--gray); border: none; border-bottom: 2px solid transparent; background: none; white-space: nowrap; transition: all var(--t-fast); }
.salon-tab.on { color: var(--black); border-bottom-color: var(--black); }
.salon-tab:hover { color: var(--black); }
.tab-count { font-size: 11px; font-weight: 400; color: var(--gray); margin-left: 4px; }

/* Content grid */
.salon-content-wrap { padding: 40px 0 80px; }
.salon-content-grid { display: grid; grid-template-columns: 1fr 280px; gap: 48px; align-items: start; }
.tab-panel { display: none; }
.tab-panel.on { display: block; }
.tab-title { font-family: var(--serif); font-size: 26px; color: var(--black); margin-bottom: 20px; }

/* Services */
.services-filter { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 18px; }
.svc-filter-btn { font-family: var(--sans); font-size: 11px; font-weight: 700; letter-spacing: .5px; padding: 7px 18px; border: 1px solid var(--lav-d); background: var(--white); color: var(--gray); cursor: pointer; transition: all var(--t-fast); }
.svc-filter-btn.on { background: var(--black); color: var(--white); border-color: var(--black); }
.svc-filter-btn:hover:not(.on) { border-color: var(--black); color: var(--black); }
.services-list { display: flex; flex-direction: column; gap: 1px; background: var(--lav-d); }
.service-row { background: var(--white); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: background var(--t-fast); }
.service-row:hover { background: var(--lav-s); }
.service-name  { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.service-desc  { font-size: 12px; color: var(--gray); }
.service-price { font-family: var(--serif); font-size: 18px; color: var(--black); }
.service-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.team-card { border: 0.5px solid var(--lav-d); padding: 24px 16px; text-align: center; transition: transform var(--t-base), box-shadow var(--t-base); background: var(--white); }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-ava  { width: 72px; height: 72px; border-radius: 50%; background: var(--lav); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 14px; overflow: hidden; }
.team-ava img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--serif); font-size: 16px; color: var(--black); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--gray); margin-bottom: 10px; line-height: 1.4; }
.team-rating { font-size: 12px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.stars-gold { color: var(--gold-b); }
.team-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; margin-bottom: 8px; }
.team-tag  { font-size: 10px; background: var(--lav-s); border: 0.5px solid var(--lav-d); padding: 3px 8px; color: var(--gray); }
.team-schedule { font-size: 11px; color: var(--gray); margin-top: 8px; padding-top: 8px; border-top: 0.5px solid var(--lav-d); letter-spacing: .3px; }

/* Reviews */
.rating-summary { display: flex; align-items: flex-end; gap: 24px; padding: 24px; background: var(--lav-s); border: 0.5px solid var(--lav-d); margin-bottom: 24px; }
.rs-big    { text-align: center; }
.rs-number { font-family: var(--serif); font-size: 52px; color: var(--black); line-height: 1; }
.rs-stars  { color: var(--gold-b); font-size: 18px; letter-spacing: 2px; margin: 6px 0 4px; }
.rs-count  { font-size: 12px; color: var(--gray); }
.rs-bars   { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.rs-bar-row { display: flex; align-items: center; gap: 10px; font-size: 11px; color: var(--gray); }
.rs-bar-label { width: 24px; flex-shrink: 0; }
.rs-bar-pct   { width: 30px; text-align: right; flex-shrink: 0; }
.rs-bar-track { flex: 1; height: 5px; background: var(--lav-d); }
.rs-bar-fill  { height: 5px; background: var(--gold-b); transition: width .8s ease; }

/* Info tab */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.info-block-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hours-row  { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding-bottom: 8px; border-bottom: 0.5px solid var(--lav-d); }
.hours-row:last-child { border-bottom: none; }
.hours-row.today .hours-day  { font-weight: 700; color: var(--black); }
.hours-row.today .hours-time { color: var(--green); font-weight: 700; }
.hours-day    { color: var(--gray); }
.hours-time   { color: var(--black); font-weight: 700; }
.hours-closed { color: var(--gray-l); }
.today-badge  { font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; background: var(--green-l); color: var(--green); padding: 1px 6px; margin-left: 6px; }
.contact-list { display: flex; flex-direction: column; gap: 8px; }
.contact-row  { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.contact-row a { color: var(--gray); text-decoration: none; }
.contact-row a:hover { color: var(--black); }
.amenities-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.amenity-item  { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.amenity-check { color: var(--green); font-weight: 700; }
.map-placeholder { height: 200px; background: var(--lav-s); border: 0.5px solid var(--lav-d); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; cursor: pointer; transition: background var(--t-fast); }
.map-placeholder:hover { background: var(--lav); }
.map-placeholder-icon { font-size: 28px; }
.map-placeholder-addr { font-size: 13px; color: var(--gray); text-align: center; line-height: 1.6; }
.map-placeholder-link { font-size: 11px; font-weight: 700; color: var(--lav-m); }

/* Content sidebar */
.salon-content-sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: calc(var(--nav-h) + 20px); }
.admin-bar .salon-content-sidebar { top: calc(var(--nav-h) + 20px + 32px); }
.side-widget { border: 0.5px solid var(--lav-d); background: var(--white); overflow: hidden; }
.side-widget--dark { background: var(--black); border-color: var(--black); }
.sw-head  { padding: 12px 16px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); border-bottom: 0.5px solid var(--lav-d); background: var(--lav-s); }
.sw-body  { padding: 16px; }
.sw-rating-big { font-family: var(--serif); font-size: 44px; color: var(--black); line-height: 1; margin-bottom: 4px; }
.sw-stars { color: var(--gold-b); font-size: 16px; letter-spacing: 2px; margin-bottom: 4px; }
.sw-count { font-size: 12px; color: var(--gray); }
.sw-promo-title { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 8px; }
.sw-promo-text  { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 300; margin-bottom: 16px; line-height: 1.6; }
.nearby-row { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 0.5px solid var(--lav-d); text-decoration: none; transition: background var(--t-fast); cursor: pointer; }
.nearby-row:last-child { border-bottom: none; }
.nearby-row:hover { background: var(--lav-s); }
.nearby-img { width: 48px; height: 48px; background: var(--lav-s); flex-shrink: 0; overflow: hidden; }
.nearby-img img { width: 100%; height: 100%; object-fit: cover; }
.nearby-img--placeholder { display: flex; align-items: center; justify-content: center; font-size: 22px; }
.nearby-name { font-family: var(--serif); font-size: 13px; color: var(--black); margin-bottom: 3px; }
.nearby-meta { font-size: 11px; color: var(--gray); }

/* Demo notice */
.demo-notice { background: rgba(201,168,76,.1); border: 0.5px solid var(--gold); border-left: 3px solid var(--gold); padding: 10px 14px; font-size: 12px; color: var(--gold); margin-bottom: 16px; }

/* ═══════════════════════════════════════════════════════
   BOOKING PAGE
   ═══════════════════════════════════════════════════════ */
.booking-page { min-height: 100vh; background: var(--lav-s); }
.booking-topbar { height: var(--nav-h); background: var(--white); border-bottom: 0.5px solid var(--lav-d); display: flex; align-items: center; justify-content: space-between; padding: 0 48px; position: sticky; top: 0; z-index: 100; }
.admin-bar .booking-topbar { top: 32px; }
.booking-back { font-size: 13px; color: var(--gray); text-decoration: none; transition: color var(--t-fast); }
.booking-back:hover { color: var(--black); }
.booking-salon-info { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 8px; }
.booking-salon-info strong { color: var(--black); }
.booking-logo { font-family: var(--serif); font-size: 20px; letter-spacing: 3px; color: var(--black); text-decoration: none; }
.booking-logo span { color: var(--gold); }

.booking-progress { background: var(--white); border-bottom: 0.5px solid var(--lav-d); padding: 0 48px; }
.progress-inner { max-width: 700px; margin: 0 auto; display: flex; align-items: center; padding: 18px 0; }
.progress-step { display: flex; flex-direction: column; align-items: center; position: relative; flex-shrink: 0; }
.progress-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--lav-d); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--gray); z-index: 1; transition: all var(--t-base); }
.progress-step.active .progress-dot { background: var(--black); border-color: var(--black); color: var(--white); }
.progress-step.done   .progress-dot { background: var(--black); border-color: var(--black); color: var(--white); }
.step-num   { display: block; }
.step-check { display: none; }
.progress-step.done .step-num   { display: none; }
.progress-step.done .step-check { display: block; }
.progress-label { font-size: 10px; color: var(--gray); margin-top: 6px; white-space: nowrap; letter-spacing: .3px; }
.progress-step.active .progress-label { color: var(--black); font-weight: 700; }
.progress-step.done   .progress-label { color: var(--black); }
.progress-line { flex: 1; height: 1px; background: var(--lav-d); margin: 0 4px; margin-bottom: 18px; transition: background var(--t-base); }
.progress-line.done { background: var(--black); }

.booking-layout { max-width: 960px; margin: 0 auto; padding: 32px 48px 80px; display: grid; grid-template-columns: 1fr 300px; gap: 28px; align-items: start; }
.booking-step { display: none; background: var(--white); border: 0.5px solid var(--lav-d); }
.booking-step.active { display: block; animation: fadeIn .25s ease; }
.step-head { padding: 24px 28px 20px; border-bottom: 0.5px solid var(--lav-d); }
.step-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.step-title { font-family: var(--serif); font-size: 22px; color: var(--black); }
.step-body  { padding: 24px 28px; }
.step-footer { padding: 16px 28px; border-top: 0.5px solid var(--lav-d); display: flex; align-items: center; justify-content: space-between; }
.step-hint { font-size: 12px; color: var(--gray); }

.svc-group { margin-bottom: 24px; }
.svc-group-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.svc-list { display: flex; flex-direction: column; gap: 1px; background: var(--lav-d); }
.svc-option { background: var(--white); padding: 14px 16px; display: flex; align-items: center; gap: 14px; cursor: pointer; transition: background var(--t-fast); position: relative; }
.svc-option:hover { background: var(--lav-s); }
.svc-option.selected { background: var(--lav-s); }
.svc-option.selected::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--black); }
.svc-radio { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--lav-d); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--t-fast); }
.svc-option.selected .svc-radio { border-color: var(--black); background: var(--black); }
.svc-radio-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--white); display: none; }
.svc-option.selected .svc-radio-dot { display: block; }
.svc-opt-info { flex: 1; }
.svc-opt-name { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 2px; }
.svc-opt-meta { font-size: 12px; color: var(--gray); }
.svc-opt-price { flex-shrink: 0; text-align: right; }
.svc-price-amount { font-family: var(--serif); font-size: 18px; color: var(--black); }

.masters-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.master-option { border: 1px solid var(--lav-d); padding: 20px 16px; text-align: center; cursor: pointer; transition: all var(--t-fast); position: relative; background: var(--white); }
.master-option:hover { border-color: var(--lav-m); background: var(--lav-s); }
.master-option.selected { border: 2px solid var(--black); background: var(--lav-s); }
.master-check { position: absolute; top: 10px; right: 12px; font-size: 12px; font-weight: 700; color: var(--black); display: none; }
.master-option.selected .master-check { display: block; }
.master-ava  { width: 64px; height: 64px; border-radius: 50%; background: var(--lav); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 12px; overflow: hidden; }
.master-ava img { width: 100%; height: 100%; object-fit: cover; }
.master-ava--any { background: var(--lav-s); font-size: 24px; }
.master-name  { font-family: var(--serif); font-size: 15px; color: var(--black); margin-bottom: 3px; }
.master-role  { font-size: 11px; color: var(--gray); margin-bottom: 8px; }
.master-rating{ font-size: 12px; font-weight: 700; color: var(--black); margin-bottom: 6px; }
.master-avail { font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; background: var(--green-l); color: var(--green); padding: 3px 8px; display: inline-block; }

.datetime-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.dt-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.full-calendar { border: 0.5px solid var(--lav-d); overflow: hidden; }
.fc-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 0.5px solid var(--lav-d); background: var(--lav-s); }
.fc-month { font-family: var(--serif); font-size: 15px; color: var(--black); }
.fc-arrow { background: none; border: none; font-size: 16px; cursor: pointer; color: var(--gray); padding: 2px 6px; transition: color var(--t-fast); }
.fc-arrow:hover { color: var(--black); }
.fc-days-header { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; padding: 8px 8px 4px; }
.fc-day-name { font-size: 9px; font-weight: 700; text-align: center; color: var(--gray); letter-spacing: .5px; }
.fc-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; padding: 4px 8px 10px; }
.fc-day { font-size: 12px; text-align: center; padding: 8px 2px; cursor: pointer; color: var(--black); background: var(--white); transition: background var(--t-fast); position: relative; border-radius: 2px; }
.fc-day.available { background: var(--lav-s); }
.fc-day:hover:not(.past):not(.empty) { background: var(--lav); }
.fc-day.on { background: var(--black); color: var(--white); }
.fc-day.today { font-weight: 700; }
.fc-day.today::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.fc-day.on.today::after { background: var(--white); }
.fc-day.past,.fc-day.empty { color: var(--gray-l); cursor: default; }
.fc-day.past:hover,.fc-day.empty:hover { background: transparent; }
.fc-day.available::before { content: ''; position: absolute; top: 2px; right: 2px; width: 3px; height: 3px; border-radius: 50%; background: var(--green); }
.fc-day.on::before { display: none; }
.no-date-selected { font-size: 13px; color: var(--gray); font-style: italic; padding: 16px 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--gray); }
.req { color: var(--red); }
.form-input { font-family: var(--sans); font-size: 14px; color: var(--black); border: 1px solid var(--lav-d); padding: 11px 14px; outline: none; transition: border-color var(--t-fast); background: var(--white); }
.form-input:focus { border-color: var(--lav-m); box-shadow: 0 0 0 3px rgba(160,160,232,.1); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-hint { font-size: 11px; color: var(--gray); }
.consent-row { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; padding: 14px; background: var(--lav-s); border: 0.5px solid var(--lav-d); margin-top: 4px; }
.consent-box { width: 18px; height: 18px; border: 1.5px solid var(--lav-d); background: var(--white); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 1px; transition: all var(--t-fast); }
.consent-row.checked .consent-box { background: var(--black); border-color: var(--black); }
.consent-tick { color: var(--white); font-size: 11px; display: none; }
.consent-row.checked .consent-tick { display: block; }
.consent-text { font-size: 12px; color: var(--gray); line-height: 1.6; }
.consent-text a { color: var(--lav-m); }

.confirm-card { border: 0.5px solid var(--lav-d); overflow: hidden; margin-bottom: 16px; }
.confirm-card-head { background: var(--lav-s); padding: 12px 20px; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); border-bottom: 0.5px solid var(--lav-d); }
.confirm-rows { padding: 4px 20px; }
.confirm-row { display: flex; justify-content: space-between; align-items: center; font-size: 13px; padding: 10px 0; border-bottom: 0.5px solid var(--lav-d); }
.confirm-row:last-child { border-bottom: none; }
.cr-label { color: var(--gray); }
.cr-val   { color: var(--black); font-weight: 700; text-align: right; }
.confirm-total { background: var(--black); padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.ct-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); }
.ct-val   { font-family: var(--serif); font-size: 22px; color: var(--white); }
.payment-notice { background: var(--lav-s); border: 0.5px solid var(--lav-d); padding: 14px 16px; font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.btn-confirm-main { width: 100%; justify-content: center; font-size: 13px; padding: 17px; margin-bottom: 10px; }
.confirm-note { font-size: 11px; color: var(--gray); text-align: center; }

.success-wrap    { padding: 48px 28px; text-align: center; }
.success-icon    { font-size: 64px; margin-bottom: 20px; display: block; }
.success-title   { font-family: var(--serif); font-size: 32px; color: var(--black); margin-bottom: 12px; }
.success-sub     { font-size: 15px; color: var(--gray); font-weight: 300; line-height: 1.7; margin-bottom: 28px; }
.success-details { background: var(--lav-s); border: 0.5px solid var(--lav-d); padding: 20px; margin-bottom: 20px; text-align: left; }
.sd-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--black); padding: 6px 0; }
.success-reminder { font-size: 13px; color: var(--gray); margin-bottom: 28px; line-height: 1.7; }
.success-actions  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.booking-summary { background: var(--white); border: 0.5px solid var(--lav-d); position: sticky; top: calc(var(--nav-h) + 20px); }
.admin-bar .booking-summary { top: calc(var(--nav-h) + 20px + 32px); }
.bs-head  { background: var(--black); padding: 16px 20px; }
.bs-title { font-family: var(--serif); font-size: 16px; color: var(--white); margin-bottom: 3px; }
.bs-sub   { font-size: 11px; color: rgba(255,255,255,.4); }
.bs-salon { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-bottom: 0.5px solid var(--lav-d); }
.bs-salon-img { width: 48px; height: 48px; background: var(--lav-s); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.bs-salon-img img { width: 100%; height: 100%; object-fit: cover; }
.bs-salon-name { font-family: var(--serif); font-size: 14px; color: var(--black); margin-bottom: 3px; }
.bs-salon-loc  { font-size: 11px; color: var(--gray); }
.bs-items { padding: 16px 20px; display: flex; flex-direction: column; gap: 12px; }
.bs-item  { display: flex; align-items: flex-start; gap: 10px; }
.bsi-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.bsi-label{ font-size: 10px; color: var(--gray); letter-spacing: .3px; margin-bottom: 2px; }
.bsi-val  { font-size: 13px; color: var(--black); font-weight: 700; }
.bsi-val.empty { color: var(--gray-l); font-weight: 400; font-style: italic; }
.bs-price-row { padding: 14px 20px; border-top: 0.5px solid var(--lav-d); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray); }
.bs-price { font-family: var(--serif); font-size: 20px; color: var(--black); }
.bs-price.empty { font-family: var(--sans); font-size: 14px; color: var(--gray-l); font-style: italic; }
.bs-cancellation { padding: 10px 20px; background: var(--green-l); border-top: 0.5px solid var(--lav-d); font-size: 11px; font-weight: 700; color: var(--green); }

/* ═══════════════════════════════════════════════════════
   B2B PAGE
   ═══════════════════════════════════════════════════════ */
.b2b-page { overflow-x: hidden; }
.b2b-hero { background: var(--black); margin-top: var(--nav-h); min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; }
.admin-bar .b2b-hero { margin-top: calc(var(--nav-h) + 32px); }
.b2b-hero-inner { max-width: var(--max-w); margin: 0 auto; padding: 80px 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; width: 100%; }
.b2b-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3); padding: 6px 14px; margin-bottom: 28px; width: fit-content; }
.b2b-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-b); animation: ctaPulse 2s infinite; }
.b2b-hero-title { font-family: var(--serif); font-size: clamp(40px,5vw,60px); font-weight: 500; line-height: 1.06; color: var(--white); margin-bottom: 24px; }
.b2b-hero-title em { font-style: italic; color: var(--gold); }
.b2b-hero-sub { font-size: 17px; font-weight: 300; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 40px; max-width: 440px; }
.b2b-hero-actions { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.btn-ghost-white { display: inline-flex; align-items: center; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 13px 28px; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.7); text-decoration: none; transition: all var(--t-base); }
.btn-ghost-white:hover { border-color: var(--white); color: var(--white); }
.b2b-hero-trust { display: flex; align-items: center; gap: 14px; padding-top: 32px; border-top: 0.5px solid rgba(255,255,255,.1); }
.b2b-trust-avatars { display: flex; }
.bta { width: 32px; height: 32px; border-radius: 50%; background: var(--lav); display: flex; align-items: center; justify-content: center; font-size: 14px; margin-right: -8px; border: 2px solid var(--black); }
.b2b-trust-text { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
.b2b-trust-text strong { color: var(--white); }

/* Dashboard preview */
.b2b-hero-right { display: flex; align-items: center; justify-content: center; }
.dashboard-preview { background: var(--white); width: 100%; max-width: 400px; box-shadow: 0 32px 64px rgba(0,0,0,.4); overflow: hidden; }
.dp-topbar { background: var(--black); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; border-bottom: 0.5px solid rgba(255,255,255,.1); }
.dp-logo  { font-family: var(--serif); font-size: 14px; letter-spacing: 2px; color: var(--white); }
.dp-logo span { color: var(--gold); }
.dp-date  { font-size: 11px; color: rgba(255,255,255,.4); }
.dp-body  { padding: 18px; }
.dp-greeting { font-family: var(--serif); font-size: 16px; color: var(--black); margin-bottom: 14px; }
.dp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.dp-stat  { background: var(--lav-s); padding: 10px; text-align: center; }
.dp-stat-num { font-family: var(--serif); font-size: 22px; color: var(--black); line-height: 1; }
.dp-stat-num span { font-size: 12px; color: var(--green); }
.dp-stat-label { font-size: 10px; color: var(--gray); margin-top: 3px; }
.dp-section-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.dp-bookings { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.dp-booking { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 0.5px solid var(--lav-d); font-size: 11px; }
.dp-bk-time { font-weight: 700; color: var(--black); width: 36px; flex-shrink: 0; }
.dp-bk-ava  { font-size: 16px; flex-shrink: 0; }
.dp-bk-info { flex: 1; }
.dp-bk-name { font-weight: 700; color: var(--black); font-size: 11px; }
.dp-bk-svc  { color: var(--gray); font-size: 10px; }
.dp-bk-status { font-size: 9px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 2px 6px; flex-shrink: 0; }
.dp-bk-status.conf { background: var(--green-l); color: var(--green); }
.dp-bk-status.pend { background: var(--lav); color: var(--black); }
.dp-chart  { display: flex; align-items: flex-end; gap: 4px; height: 48px; margin-bottom: 10px; }
.dp-bar    { flex: 1; background: var(--lav); }
.dp-bar.today { background: var(--black); }
.dp-bar:hover { background: var(--lav-m); }
.dp-revenue { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 0.5px solid var(--lav-d); }
.dp-rev-label { font-size: 11px; color: var(--gray); }
.dp-rev-val   { font-family: var(--serif); font-size: 18px; color: var(--black); }
.dp-rev-up    { font-size: 11px; font-weight: 700; color: var(--green); font-family: var(--sans); }

/* B2B stats strip */
.b2b-stats-strip { background: var(--lav-s); border-top: 0.5px solid var(--lav-d); border-bottom: 0.5px solid var(--lav-d); padding: 48px 0; }
.b2b-stats-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--lav-d); }
.b2b-stat { background: var(--white); padding: 32px 24px; text-align: center; }
.b2b-stat-num { font-family: var(--serif); font-size: 44px; color: var(--black); line-height: 1; margin-bottom: 8px; }
.b2b-stat-num span { color: var(--gold); font-size: 28px; }
.b2b-stat-label { font-size: 13px; color: var(--gray); font-weight: 300; }
.b2b-stat-sub   { font-size: 11px; color: var(--lav-m); margin-top: 4px; font-weight: 700; }

/* Benefits */
.benefits-grid-b2b { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--lav-d); }
.benefit-card { background: var(--white); padding: 36px 28px; position: relative; overflow: hidden; transition: transform var(--t-base); }
.benefit-card:hover { transform: translateY(-3px); }
.benefit-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--t-base); }
.benefit-card:hover::after { transform: scaleX(1); }
.bc-num  { position: absolute; top: -8px; right: 16px; font-family: var(--serif); font-size: 72px; font-style: italic; color: var(--lav); line-height: 1; pointer-events: none; }
.bc-icon { font-size: 32px; margin-bottom: 18px; display: block; }
.bc-title{ font-family: var(--serif); font-size: 20px; color: var(--black); margin-bottom: 10px; }
.bc-desc { font-size: 14px; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* B2B HIW */
.b2b-hiw   { background: var(--black); padding: 88px 0; }
.b2b-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.08); margin-top: 48px; }
.b2b-step  { background: rgba(255,255,255,.03); padding: 36px 28px; position: relative; overflow: hidden; }
.b2b-step::before { content: attr(data-n); position: absolute; top: -10px; right: 16px; font-family: var(--serif); font-size: 80px; font-style: italic; color: rgba(255,255,255,.04); line-height: 1; pointer-events: none; }
.b2b-step-num   { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.b2b-step-title { font-family: var(--serif); font-size: 18px; color: var(--white); margin-bottom: 10px; }
.b2b-step-desc  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan-card { border: 0.5px solid var(--lav-d); overflow: hidden; position: relative; transition: transform var(--t-base), box-shadow var(--t-base); background: var(--white); }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(160,160,232,.15); }
.plan-card--featured { border: 2px solid var(--black); }
.plan-badge { background: var(--black); color: var(--gold-b); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 20px; text-align: center; }
.plan-head { padding: 28px 28px 20px; border-bottom: 0.5px solid var(--lav-d); }
.plan-name { font-family: var(--serif); font-size: 24px; color: var(--black); margin-bottom: 5px; }
.plan-tagline { font-size: 13px; color: var(--gray); font-weight: 300; margin-bottom: 18px; }
.plan-price { display: flex; align-items: flex-end; gap: 2px; line-height: 1; margin-bottom: 4px; }
.plan-currency { font-size: 20px; color: var(--gray); margin-bottom: 6px; }
.plan-amount   { font-family: var(--serif); font-size: 52px; color: var(--black); }
.plan-price-period { font-size: 13px; color: var(--gray); }
.plan-price-annual { font-size: 11px; color: var(--gray-l); margin-top: 4px; }
.plan-price-free   { font-family: var(--serif); font-size: 40px; color: var(--gold); margin-bottom: 4px; }
.plan-body { padding: 24px 28px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pf.on  { font-size: 13px; color: var(--black); }
.pf.off { font-size: 13px; color: var(--gray-l); }
.plan-btn  { width: 100%; justify-content: center; text-decoration: none; }
.plan-note { font-size: 11px; color: var(--gray-l); text-align: center; margin-top: 10px; }

/* FAQ */
.b2b-faq-section { padding: 88px 48px; }
.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--lav-d); margin-top: 32px; }
.faq-item { background: var(--white); overflow: hidden; cursor: pointer; }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; font-size: 15px; font-weight: 700; color: var(--black); user-select: none; transition: background var(--t-fast); }
.faq-item:hover .faq-question { background: var(--lav-s); }
.faq-icon { font-size: 20px; color: var(--gray); transition: transform var(--t-base); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--black); }
.faq-answer { display: none; padding: 0 22px 18px; font-size: 14px; color: var(--gray); line-height: 1.7; font-weight: 300; }
.faq-item.open .faq-answer { display: block; }

/* B2B Signup */
.b2b-signup { background: var(--black); padding: 88px 48px; }
.b2b-signup-inner { max-width: 760px; margin: 0 auto; }
.b2b-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.1); margin-bottom: 1px; }
.b2b-field { background: rgba(255,255,255,.04); display: flex; flex-direction: column; }
.b2b-field label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); padding: 14px 16px 0; }
.b2b-field input,.b2b-field select { font-family: var(--sans); font-size: 14px; color: var(--white); background: transparent; border: none; outline: none; padding: 8px 16px 14px; }
.b2b-field input::placeholder { color: rgba(255,255,255,.2); }
.b2b-field select { appearance: none; cursor: pointer; }
.b2b-field select option { background: var(--black); color: var(--white); }
.b2b-submit-btn { width: 100%; justify-content: center; background: var(--gold-b); color: var(--black); border: none; padding: 18px; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-top: 16px; transition: all var(--t-base); animation: ctaPulse 3s infinite; }
.b2b-submit-btn:hover { background: var(--white); color: var(--black); transform: translateY(-1px); }
.b2b-form-note { font-size: 12px; color: rgba(255,255,255,.25); text-align: center; margin-top: 12px; line-height: 1.6; }
.b2b-form-note a { color: rgba(255,255,255,.4); }
.b2b-success { text-align: center; padding: 40px 20px; }
.b2b-success-icon { font-size: 56px; margin-bottom: 16px; }
.b2b-success h3 { font-family: var(--serif); font-size: 28px; color: var(--white); margin-bottom: 10px; }
.b2b-success p  { font-size: 15px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.b2b-next-steps { background: rgba(255,255,255,.06); border: 0.5px solid rgba(255,255,255,.1); padding: 20px; font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; }
.b2b-next-steps strong { color: var(--gold); }
.b2b-testi-section { background: var(--lav-s); border-top: 0.5px solid var(--lav-d); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Mobile & Tablet
   ═══════════════════════════════════════════════════════ */

/* Tablet 600-1024px */
@media (min-width: 600px) and (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .categories-grid { grid-template-columns: repeat(3,1fr); }
  .salons-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 200px 1fr; gap: 20px; }
  .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .salon-header-wrap { grid-template-columns: 1fr; }
  .salon-booking-widget { border-left: none; border-top: 0.5px solid var(--lav-d); position: static; }
  .salon-content-grid { grid-template-columns: 1fr 240px; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .booking-layout { grid-template-columns: 1fr 240px; padding: 24px 24px 60px; }
  .masters-grid { grid-template-columns: repeat(2,1fr); }
  .datetime-grid { grid-template-columns: 1fr; }
  .b2b-hero-inner { grid-template-columns: 1fr; padding: 60px 32px; }
  .b2b-hero-right { display: none; }
  .b2b-stats-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid-b2b { grid-template-columns: repeat(2,1fr); }
  .b2b-steps { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .b2b-form-grid { grid-template-columns: 1fr; }
}

/* Mobile < 600px */
@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .nav-burger { display: flex; }
  .nav-actions { display: none; }
  .nav-links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 0.5px solid var(--lav-d); flex-direction: column; padding: 16px 20px 24px; z-index: 99; box-shadow: var(--shadow-md); }
  .admin-bar .nav-links { top: calc(var(--nav-h) + 46px); }
  .nav-links.nav-links--open { display: flex; }
  .nav-links a { padding: 13px 0; font-size: 15px; color: var(--black); border-bottom: 0.5px solid var(--lav-d); }
  .nav-links a:last-of-type { border-bottom: none; }
  .nav-links a::after { display: none; }
  .nav-mobile-auth { display: flex; }
  .lang-dropdown { right: auto; left: 0; }
  .lang-code { display: none; }
  .section { padding: 60px 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 20px; }
  .hero-right { display: none; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .search-box { flex-wrap: wrap; }
  .search-divider { display: none; }
  .search-location { width: 100%; padding: 8px 0 10px 16px; border-top: 0.5px solid var(--lav-d); }
  .search-location input { width: 100%; }
  .search-btn { width: 100%; padding: 14px; text-align: center; }
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .salons-grid { grid-template-columns: 1fr; }
  .salons-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 60px 20px; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { align-items: flex-start; }
  .footer { padding: 32px 20px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .catalog-header { padding: 20px 0 16px; }
  .catalog-layout { grid-template-columns: 1fr; padding: 20px 0 60px; }
  .catalog-sidebar { display: none; position: fixed; top: 0; left: 0; bottom: 0; width: 280px; background: var(--white); z-index: 200; overflow-y: auto; padding: 20px; box-shadow: var(--shadow-lg); }
  .catalog-sidebar.sidebar--open { display: block; }
  .sidebar-close { display: block; }
  .filter-toggle { display: flex; align-items: center; gap: 6px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .results-header { flex-direction: column; align-items: flex-start; }
  .catalog-search-bar { position: static; }
  .salon-gallery-main { height: 260px; }
  .salon-gallery-thumbs { right: 8px; bottom: 8px; gap: 5px; }
  .gallery-thumb { width: 48px; height: 48px; }
  .salon-gallery-badge { top: 10px; left: 12px; font-size: 9px; }
  .gallery-btn-all { left: 12px; bottom: 8px; }
  .salon-header-wrap { grid-template-columns: 1fr; }
  .salon-header-left { padding: 20px; }
  .salon-booking-widget { border-left: none; border-top: 0.5px solid var(--lav-d); position: static; }
  .salon-tabs-bar { position: static; }
  .salon-tab { padding: 12px 16px; font-size: 11px; }
  .salon-content-wrap { padding: 20px 0 60px; }
  .salon-content-grid { grid-template-columns: 1fr; }
  .salon-content-sidebar { display: none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; align-items: flex-start; }
  .salon-meta-row { gap: 10px; }
  .salon-actions { flex-direction: column; }
  .salon-actions .btn { width: 100%; justify-content: center; }
  .booking-topbar { padding: 0 16px; }
  .booking-topbar .booking-salon-info { display: none; }
  .booking-progress { padding: 0 16px; }
  .progress-label { display: none; }
  .booking-layout { grid-template-columns: 1fr; padding: 16px 16px 60px; }
  .booking-summary { display: none; }
  .step-body { padding: 16px; }
  .step-head { padding: 16px 16px 14px; }
  .step-footer { padding: 12px 16px; }
  .masters-grid { grid-template-columns: 1fr 1fr; }
  .datetime-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .success-actions { flex-direction: column; }
  .success-actions .btn { width: 100%; justify-content: center; }
  .b2b-hero { min-height: auto; }
  .b2b-hero-inner { grid-template-columns: 1fr; padding: 48px 20px; }
  .b2b-hero-right { display: none; }
  .b2b-hero-actions { flex-direction: column; }
  .b2b-hero-actions .btn { width: 100%; justify-content: center; }
  .b2b-stats-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid-b2b { grid-template-columns: 1fr; }
  .b2b-steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .b2b-form-grid { grid-template-columns: 1fr; }
  .b2b-signup { padding: 60px 20px; }
  .b2b-faq-section { padding: 60px 20px; }
}

/* Large desktop */
@media (min-width: 1400px) {
  :root { --max-w: 1320px; }
}

/* Admin bar adjustments */
@media screen and (max-width: 782px) {
  .admin-bar .nav { top: 46px; }
  .admin-bar .hero { margin-top: calc(var(--nav-h) + 46px); }
  .admin-bar .catalog-header { margin-top: calc(var(--nav-h) + 46px); }
  .admin-bar .breadcrumb-bar { margin-top: calc(var(--nav-h) + 46px); }
  .admin-bar .b2b-hero { margin-top: calc(var(--nav-h) + 46px); }
}

/* ═══════════════════════════════════════════════════════
   CATEGORIES PAGE
   ═══════════════════════════════════════════════════════ */

/* ── Page Header ────────────────────────────────────── */
.cat-page-header {
  background: var(--lav-s);
  border-bottom: 0.5px solid var(--lav-d);
  padding: 40px 0 36px;
  margin-top: var(--nav-h);
}

.admin-bar .cat-page-header {
  margin-top: calc(var(--nav-h) + 32px);
}

.cat-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.cat-header-inner h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  color: var(--black);
  margin-bottom: 10px;
}

.cat-header-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
  margin: 0;
}

.cat-header-stats {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.cat-stat {
  text-align: center;
}

.cat-stat-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--black);
  line-height: 1;
}

.cat-stat-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

/* ── Categories Grid ────────────────────────────────── */
.cat-page-section {
  padding: 56px 0 72px;
}

.cat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Category Card ──────────────────────────────────── */
.cat-card {
  background: var(--cat-bg, var(--lav-s));
  border: 0.5px solid var(--lav-d);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cat-color, var(--gold));
  transform: scaleX(0);
  transition: transform var(--t-base);
}

.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cat-color, var(--lav-m));
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.cat-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.cat-card:hover .cat-card-icon {
  transform: scale(1.1);
}

.cat-card-info {
  flex: 1;
}

.cat-card-name {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.2;
}

.cat-card-desc {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 10px;
}

.cat-card-count {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cat-count-num {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cat-color, var(--black));
  font-weight: 500;
}

.cat-card-arrow {
  font-size: 20px;
  color: var(--gray-l);
  flex-shrink: 0;
  transition: color var(--t-fast), transform var(--t-fast);
  margin-top: 4px;
}

.cat-card:hover .cat-card-arrow {
  color: var(--cat-color, var(--black));
  transform: translateX(4px);
}

/* ── Mini salons inside category card ───────────────── */
.cat-card-salons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 0.5px solid rgba(255,255,255,.6);
}

.cat-mini-salon {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.5);
  padding: 8px 12px;
  transition: background var(--t-fast);
}

.cat-card:hover .cat-mini-salon {
  background: rgba(255,255,255,.75);
}

.cat-mini-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}

.cat-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-mini-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}

.cat-mini-meta {
  font-size: 10px;
  color: var(--gray);
}

/* ── CTA link at bottom of card ─────────────────────── */
.cat-card-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cat-color, var(--black));
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}

.cat-card:hover .cat-card-cta {
  gap: 10px;
}

/* ── Popular Treatments ─────────────────────────────── */
.popular-section {
  background: var(--lav-s);
  border-top: 0.5px solid var(--lav-d);
  border-bottom: 0.5px solid var(--lav-d);
  padding: 72px 0;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--lav-d);
}

.treatment-card {
  background: var(--white);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: background var(--t-fast);
  cursor: pointer;
}

.treatment-card:hover {
  background: var(--lav-s);
}

.tc-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}

.treatment-card:hover .tc-icon {
  transform: scale(1.1);
}

.tc-info {
  flex: 1;
  min-width: 0;
}

.tc-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tc-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--gray);
}

.tc-sep { color: var(--gray-l); }
.tc-price { font-weight: 700; color: var(--gold); }

.tc-count {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gray-l);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════
   CATEGORIES PAGE RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (min-width: 600px) and (max-width: 1024px) {
  .cat-cards-grid   { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid  { grid-template-columns: repeat(2, 1fr); }
  .cat-header-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .cat-page-header  { padding: 24px 0 20px; }
  .cat-header-inner { flex-direction: column; gap: 20px; }
  .cat-header-stats { gap: 24px; }
  .cat-cards-grid   { grid-template-columns: 1fr; }
  .treatments-grid  { grid-template-columns: repeat(2, 1fr); }
  .cat-card         { padding: 20px; }
  .cat-card-name    { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════ */
.error-page {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  background: var(--lav-s);
}

.admin-bar .error-page {
  margin-top: calc(var(--nav-h) + 32px);
}

.error-inner {
  text-align: center;
  padding: 80px 0;
  max-width: 580px;
  margin: 0 auto;
}

.error-number {
  font-family: var(--serif);
  font-size: clamp(100px, 15vw, 180px);
  font-style: italic;
  color: var(--lav-d);
  line-height: 1;
  margin-bottom: 0;
}

.error-title {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--black);
  margin-bottom: 12px;
}

.error-sub {
  font-size: 15px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px;
}

.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.error-search {
  margin-bottom: 32px;
}

.error-search p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.error-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-links a {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  border-bottom: 1px solid var(--lav-d);
  padding-bottom: 2px;
  transition: all var(--t-fast);
}

.error-links a:hover {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ═══════════════════════════════════════════════════════ */
.legal-page { margin-top: var(--nav-h); }
.admin-bar .legal-page { margin-top: calc(var(--nav-h) + 32px); }

.legal-header {
  background: var(--lav-s);
  border-bottom: 0.5px solid var(--lav-d);
  padding: 40px 0 32px;
}

.legal-header h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--black);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 13px;
  color: var(--gray);
}

.legal-content {
  padding: 56px 0 80px;
}

.legal-body {
  max-width: 760px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 0.5px solid var(--lav-d);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--black);
  margin-bottom: 14px;
}

.legal-section h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin: 18px 0 8px;
}

.legal-section p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section a { color: var(--lav-m); }
.legal-section a:hover { color: var(--black); }

.legal-info-block {
  background: var(--lav-s);
  border: 0.5px solid var(--lav-d);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 12px 0;
}

.legal-info-block p {
  margin-bottom: 4px;
  font-size: 14px;
}

.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.legal-list li {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.legal-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   ÜBER UNS PAGE
   ═══════════════════════════════════════════════════════ */
.about-page { margin-top: var(--nav-h); }
.admin-bar .about-page { margin-top: calc(var(--nav-h) + 32px); }

.about-hero {
  background: var(--black);
  padding: 72px 0;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.about-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
}

.about-title em { font-style: italic; color: var(--gold); }

.about-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

.about-stat {
  background: rgba(255,255,255,.05);
  padding: 24px 28px;
  text-align: center;
}

.as-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-b);
  margin-bottom: 4px;
}

.as-label {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .5px;
}

.about-section {
  padding: 72px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-grid p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-mission-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.amv-card {
  background: var(--lav-s);
  border: 0.5px solid var(--lav-d);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform var(--t-fast);
}

.amv-card:hover { transform: translateX(4px); }

.amv-card--gold {
  background: var(--black);
  border-color: var(--black);
}

.amv-card--gold .amv-text { color: var(--white); }

.amv-icon { font-size: 22px; flex-shrink: 0; }
.amv-text { font-size: 14px; font-weight: 700; color: var(--black); }

.about-values-section {
  background: var(--lav-s);
  border-top: 0.5px solid var(--lav-d);
  border-bottom: 0.5px solid var(--lav-d);
  padding: 72px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--lav-d);
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  padding: 32px 28px;
  transition: transform var(--t-base);
}

.value-card:hover { transform: translateY(-3px); }

.vc-icon  { font-size: 32px; margin-bottom: 14px; display: block; }
.vc-title { font-family: var(--serif); font-size: 18px; color: var(--black); margin-bottom: 8px; }
.vc-desc  { font-size: 13px; color: var(--gray); line-height: 1.7; font-weight: 300; }

.team-about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.team-about-card {
  border: 0.5px solid var(--lav-d);
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.team-about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tac-ava  { font-size: 40px; margin-bottom: 14px; display: block; }
.tac-name { font-family: var(--serif); font-size: 18px; color: var(--black); margin-bottom: 4px; }
.tac-role { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: .5px; margin-bottom: 10px; }
.tac-desc { font-size: 13px; color: var(--gray); line-height: 1.6; font-weight: 300; }

/* ═══════════════════════════════════════════════════════
   KONTAKT PAGE
   ═══════════════════════════════════════════════════════ */
.kontakt-page { margin-top: var(--nav-h); }
.admin-bar .kontakt-page { margin-top: calc(var(--nav-h) + 32px); }

.kontakt-header {
  background: var(--lav-s);
  border-bottom: 0.5px solid var(--lav-d);
  padding: 40px 0 32px;
}

.kontakt-header h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--black);
  margin-bottom: 8px;
}

.kontakt-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  max-width: 480px;
  margin: 0;
}

.kontakt-body {
  padding: 56px 0 80px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

/* Kontakt Info */
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ki-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ki-icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  background: var(--lav-s);
  border: 0.5px solid var(--lav-d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ki-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

.ki-text {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
}

.ki-text a { color: var(--black); text-decoration: none; }
.ki-text a:hover { color: var(--gold); }

.ki-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ki-social-btn {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px 14px;
  border: 1px solid var(--lav-d);
  color: var(--gray);
  text-decoration: none;
  transition: all var(--t-fast);
}

.ki-social-btn:hover {
  border-color: var(--black);
  color: var(--black);
  background: var(--lav-s);
}

.ki-faq { border-top: 0.5px solid var(--lav-d); padding-top: 20px; }

.ki-faq-link {
  display: block;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 0.5px solid var(--lav-d);
  transition: color var(--t-fast);
}

.ki-faq-link:last-child { border-bottom: none; }
.ki-faq-link:hover { color: var(--black); }

/* Kontakt Form */
.kontakt-form-wrap {
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  padding: 36px;
}

.kontakt-form { display: flex; flex-direction: column; gap: 0; }

.kontakt-success {
  text-align: center;
  padding: 48px 20px;
}

.kontakt-error {
  background: var(--red-l);
  border: 0.5px solid var(--red);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════
   LEGAL + ABOUT + KONTAKT RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (min-width: 600px) and (max-width: 1024px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .team-about-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .error-actions { flex-direction: column; align-items: center; }
  .about-hero { padding: 48px 0; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-stats { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .team-about-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; }
  .kontakt-form-wrap { padding: 20px; }
  .legal-body { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   BORDER RADIUS — заокруглені кути для кнопок і елементів
   ═══════════════════════════════════════════════════════ */
:root {
  --radius:     10px;
  --radius-sm:  6px;
  --radius-lg:  16px;
  --radius-full: 50px;
}

.btn              { border-radius: var(--radius) !important; }
.btn-primary      { border-radius: var(--radius) !important; }
.btn-secondary    { border-radius: var(--radius) !important; }
.btn-gold         { border-radius: var(--radius) !important; }
.btn-ghost        { border-radius: var(--radius) !important; }
.btn-ghost-white  { border-radius: var(--radius) !important; }
.btn-lav          { border-radius: var(--radius) !important; }
.modal-box        { border-radius: var(--radius-lg); }
.filter-block     { border-radius: var(--radius-sm); }
.salon-card       { border-radius: var(--radius); }
.hero-card        { border-radius: var(--radius); }
.fav-card         { border-radius: var(--radius); }
.plan-card        { border-radius: var(--radius-lg); }
.side-widget      { border-radius: var(--radius); }
.booking-summary  { border-radius: var(--radius); }
.bsp-summary-box  { border-radius: var(--radius); }
.bsp-contact-form { border-radius: var(--radius); }
.bsp-why-box      { border-radius: var(--radius); }
.bsp-salon-card   { border-radius: var(--radius); }
.catalog-sidebar  { border-radius: var(--radius); }
.account-nav      { border-radius: var(--radius); }
.onboard-section  { border-radius: var(--radius); }
.booking-card     { border-radius: var(--radius); }
.lushly-review    { border-radius: var(--radius-sm); }
.dash-stat-card   { border-radius: var(--radius-sm); }
.search-box       { border-radius: var(--radius); }
.search-btn       { border-radius: 0 var(--radius) var(--radius) 0; }
.quick-tag        { border-radius: var(--radius-full); }
.pill             { border-radius: var(--radius-full); }
.af-tag           { border-radius: var(--radius-sm); }
.cqc-item         { border-radius: var(--radius-full); }
.lang-current     { border-radius: var(--radius-sm); }
.lang-dropdown    { border-radius: var(--radius); }
.nav-user-dropdown{ border-radius: var(--radius); }
.fav-toast        { border-radius: var(--radius); }
.modal-field input{ border-radius: var(--radius-sm); }
.form-input       { border-radius: var(--radius-sm); }
.b2b-field input,
.b2b-field select { border-radius: var(--radius-sm); }


/* ═══════════════════════════════════════════════════════
   HERO — темний фон + новий пошук (redesign)
   ═══════════════════════════════════════════════════════ */

/* Перевизначаємо hero на темний */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a30 60%, var(--black) 100%) !important;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(160,160,232,.08) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.hero-left {
  background: transparent !important;
  position: relative; z-index: 1;
}

.hero-title { color: var(--white) !important; }
.hero-title em { color: var(--gold) !important; }
.hero-subtitle { color: rgba(255,255,255,.6) !important; }

.hero-right {
  background: transparent !important;
  border-left: 1px solid rgba(255,255,255,.08) !important;
  position: relative; z-index: 1;
}

/* Eyebrow на темному */
.hero .eyebrow { color: var(--gold); }
.hero .eyebrow::before { background: var(--gold); }

/* Stats на темному — перевизначення */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,.1) !important;
  padding-top: 24px !important;
}

.hero-stat-num { color: var(--white) !important; }
.hero-stat-num .stat-suffix { color: var(--gold-b) !important; }
.hero-stat-label { color: rgba(255,255,255,.45) !important; }

/* ── Новий пошук (hero search box) ───────────────────── */
.hero-search-wrap { margin-bottom: 20px; }

.hero-search-box {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.hero-search-box:focus-within {
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 8px 32px rgba(0,0,0,.25), 0 0 0 3px rgba(255,255,255,.1);
}

.hsb-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 56px;
  flex: 1;
  min-width: 0;
}

.hsb-field--service { flex: 1; }
.hsb-field--city    { flex: 0.65; }
.hsb-field--radius  { flex: 0.45; }

.hsb-icon {
  font-size: 16px;
  flex-shrink: 0;
  opacity: .8;
}

.hsb-field input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  color: var(--white) !important;
  width: 100% !important;
  padding: 0 !important;
}

.hsb-field input::placeholder {
  color: rgba(255,255,255,.45) !important;
}

.hsb-select {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  color: var(--white) !important;
  cursor: pointer !important;
  width: 100% !important;
  padding: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

.hsb-select option { background: var(--black); color: var(--white); }

.hsb-divider {
  width: 1px; height: 28px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

.hsb-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-b);
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 0 24px;
  height: 56px;
  border: none;
  cursor: pointer;
  transition: background var(--t-base);
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0 !important;
}

.hsb-btn:hover { background: var(--gold); }

/* Quick tags на темному */
.quick-tags { margin-bottom: 24px; }

.quick-tag {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: rgba(255,255,255,.65) !important;
  border-radius: var(--radius-full) !important;
}

.quick-tag:hover, .quick-tag--active {
  background: rgba(255,255,255,.2) !important;
  border-color: rgba(255,255,255,.35) !important;
  color: var(--white) !important;
}

/* Hero stats під пошуком */
.hero-stats {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  border-top: none !important;
  padding-top: 0 !important;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  flex: 1;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--white) !important;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  color: rgba(255,255,255,.4) !important;
  text-transform: uppercase;
  text-align: center;
}

/* Hero CTA card (права сторона) */
.hero-visual-cta {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hvc-inner {
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hvc-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-b);
  background: rgba(255,215,0,.12);
  border: 1px solid rgba(255,215,0,.25);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.hvc-emoji {
  font-size: 52px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.2));
}

.hvc-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}

.hvc-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin: 0;
}

.hvc-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 13px;
  border-radius: var(--radius) !important;
}

/* Floating badges */
.hvc-float {
  position: absolute;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: rgba(160,160,232,.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  z-index: 2;
}

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

.hvc-float { animation: floatBadge 3s ease-in-out infinite; }
.hvc-float--1 { top: 16px; right: -10px; }
.hvc-float--2 { bottom: 16px; left: -10px; animation-delay: 1.5s; }

/* Hero responsive */
@media (max-width: 900px) {
  .hero-search-box { flex-direction: column; border-radius: var(--radius) !important; }
  .hsb-field { width: 100%; height: 52px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hsb-field--radius { border-bottom: none; }
  .hsb-divider { display: none; }
  .hsb-btn { width: 100%; justify-content: center; height: 52px; border-radius: 0 0 var(--radius) var(--radius) !important; }
  .hvc-float { display: none; }
}

@media (max-width: 600px) {
  .hero-stat  { padding: 10px 12px; }
  .hero-stat-num { font-size: 20px; }
  .hvc-inner  { padding: 24px 16px; }
}


/* ═══════════════════════════════════════════════════════
   FRONT PAGE — B2B секція
   ═══════════════════════════════════════════════════════ */
.fp-b2b-section {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.fp-b2b-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  pointer-events: none;
}

.fp-b2b-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(160,160,232,.06) 0%, transparent 70%);
  pointer-events: none;
}

.fp-b2b-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.fp-b2b-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.fp-b2b-left h2 em { font-style: italic; color: var(--gold-b); }

.fp-b2b-desc {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.7;
}

.fp-b2b-triggers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.fp-b2b-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color var(--t-fast);
}

.fp-b2b-trigger:hover { border-color: rgba(255,255,255,.2); }

.fb2bt-icon { font-size: 22px; flex-shrink: 0; }
.fb2bt-num  { display: block; font-family: var(--serif); font-size: 20px; color: var(--gold-b); line-height: 1; }
.fb2bt-text { display: block; font-size: 11px; color: rgba(255,255,255,.4); font-weight: 300; margin-top: 2px; line-height: 1.4; }

.fp-b2b-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

/* Контрастна золота кнопка на темному */
.fp-b2b-actions .btn-gold {
  background: var(--gold-b) !important;
  color: var(--black) !important;
  animation: ctaPulse 3s infinite;
}

/* Ghost кнопка на темному */
.fp-b2b-actions .btn-ghost-white {
  border-color: rgba(255,255,255,.3) !important;
  color: rgba(255,255,255,.7) !important;
}

.fp-b2b-actions .btn-ghost-white:hover {
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.fp-b2b-note {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  font-weight: 300;
}

/* Права сторона */
.fp-b2b-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fp-b2b-proof {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.fbp-stat { flex: 1; text-align: center; }
.fbp-num  { font-family: var(--serif); font-size: 26px; color: var(--white); }
.fbp-label{ font-size: 11px; color: rgba(255,255,255,.35); margin-top: 4px; }
.fbp-divider { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

.fp-b2b-testimonial {
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 20px;
}

.fbt-text  { font-size: 14px; color: rgba(255,255,255,.7); font-style: italic; line-height: 1.7; margin-bottom: 14px; font-family: var(--serif); }
.fbt-author{ display: flex; align-items: center; gap: 10px; }
.fbt-ava   { width: 36px; height: 36px; border-radius: 50%; background: var(--lav-m); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--white); flex-shrink: 0; }
.fbt-name  { font-size: 13px; font-weight: 700; color: var(--white); }
.fbt-salon { font-size: 11px; color: rgba(255,255,255,.4); }
.fbt-result{ margin-left: auto; font-size: 12px; font-weight: 700; color: var(--green); background: var(--green-l); padding: 3px 10px; border-radius: var(--radius-full); white-space: nowrap; }

.fp-b2b-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fp-b2b-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
  padding: 8px 12px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-sm);
}

.fbf-check { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
  .fp-b2b-inner    { grid-template-columns: 1fr; gap: 40px; }
  .fp-b2b-triggers { grid-template-columns: 1fr 1fr; }
  .fp-b2b-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .fp-b2b-section  { padding: 48px 0; }
  .fp-b2b-triggers { grid-template-columns: 1fr; }
  .fp-b2b-features { grid-template-columns: 1fr; }
  .fp-b2b-actions  { flex-direction: column; }
  .fp-b2b-actions .btn { width: 100%; justify-content: center; }
}


/* ═══════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════ */
.preise-page { margin-top: var(--nav-h); }
.admin-bar .preise-page { margin-top: calc(var(--nav-h) + 32px); }

/* ═══════════════════════════════════════════════════════
   NAV USER BUTTON — виправлений (на білому navbar)
   ═══════════════════════════════════════════════════════ */
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--lav-d) !important;
  padding: 6px 12px 6px 6px;
  cursor: pointer;
  transition: all var(--t-fast);
  color: var(--black) !important;
  font-family: var(--sans);
  font-size: 13px;
  border-radius: var(--radius) !important;
}

.nav-user-btn:hover {
  border-color: var(--lav-m) !important;
  background: var(--lav-s) !important;
}

.nav-user-ava {
  background: var(--lav-m) !important;
}

.nav-user-name { color: var(--black) !important; }

.nav-user-arrow { color: var(--gray) !important; }

/* ═══════════════════════════════════════════════════════
   COOKIE BANNER
   ═══════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  z-index: 1000;
  box-shadow: 0 32px 64px rgba(13,13,13,.4);
  transform: translateY(120px);
  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text { flex: 1; min-width: 280px; }

.cookie-title {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--gold-b);
  color: var(--black);
  border-radius: var(--radius) !important;
}

.cookie-btn-settings,
.cookie-btn-reject {
  font-size: 10px;
  padding: 8px 14px;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  border-radius: var(--radius) !important;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: all var(--t-fast);
}

.cookie-btn-settings:hover,
.cookie-btn-reject:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}

.cookie-group {
  border-bottom: 0.5px solid var(--lav-d);
  padding: 14px 0;
}

.cookie-group:last-of-type { border-bottom: none; }

.cookie-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-group-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 3px;
}

.cookie-group-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
  font-weight: 300;
}

.cookie-always-on {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  background: var(--green-l);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 0; left: 0; right: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0;
  }
  .cookie-inner { flex-direction: column; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-settings,
  .cookie-btn-reject,
  .cookie-btn-accept { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   UPGRADE HINTS — підказки апгрейду плану
   ═══════════════════════════════════════════════════════ */
.upgrade-hint {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(201,168,76,.08), rgba(201,168,76,.04));
  border: 1px solid rgba(201,168,76,.25);
  border-left: 3px solid var(--gold-b);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.uh-icon { font-size: 28px; flex-shrink: 0; }
.uh-body { flex: 1; min-width: 200px; }
.uh-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.uh-desc  { font-size: 12px; color: var(--gray); font-weight: 300; line-height: 1.5; }
.uh-btn   { font-size: 11px !important; padding: 8px 16px !important; white-space: nowrap; flex-shrink: 0; border-radius: var(--radius) !important; }

@media (max-width: 600px) {
  .upgrade-hint { flex-direction: column; align-items: flex-start; }
  .uh-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════
   DASHBOARD — trend indicators
   ═══════════════════════════════════════════════════════ */
.dsc-trend {
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
}

.dsc-trend--up      { color: var(--green); background: var(--green-l); }
.dsc-trend--down    { color: var(--red);   background: var(--red-l); }
.dsc-trend--neutral { color: var(--gray);  background: var(--lav-s); }

/* ── Plan status bar ─────────────────────────────────── */
.dash-plan-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.dps-left   { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dps-name   { font-size: 14px; font-weight: 700; color: var(--black); }
.dps-expiry { font-size: 12px; color: var(--gray); }

.dps-limit {
  font-size: 12px;
  color: var(--gray);
  background: var(--lav-s);
  padding: 3px 10px;
  border: 0.5px solid var(--lav-d);
  border-radius: var(--radius-sm);
}

.plan-badge-free     { background: var(--lav-s); color: var(--lav-m); font-size: 10px; font-weight: 700; padding: 2px 8px; letter-spacing: 1px; text-transform: uppercase; border-radius: var(--radius-full); }
.plan-badge-pro      { background: var(--gold-b); color: var(--black); font-size: 10px; font-weight: 700; padding: 2px 8px; letter-spacing: 1px; text-transform: uppercase; border-radius: var(--radius-full); }
.plan-badge-business { background: var(--black); color: var(--gold-b); font-size: 10px; font-weight: 700; padding: 2px 8px; letter-spacing: 1px; text-transform: uppercase; border-radius: var(--radius-full); }

/* ── Mobile filters panel ───────────────────────────── */
.mobile-filters-panel {
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  border-left: 3px solid var(--gold);
  margin-bottom: 16px;
  border-radius: var(--radius);
}

.mfp-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--lav-s);
  border-bottom: 0.5px solid var(--lav-d);
}

.mfp-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.mfp-close {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
}

.mfp-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mfp-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mfp-group-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  .mfp-row { grid-template-columns: 1fr; }
}

/* ── Salon fav button ────────────────────────────────── */
.salon-fav-btn.saved {
  background: var(--lav) !important;
  border-color: var(--lav-m) !important;
  color: var(--black) !important;
}

.salon-fav-btn.saved .save-icon { color: #C0392B; }


/* ═══════════════════════════════════════════════════════
   SALON DASHBOARD
   ═══════════════════════════════════════════════════════ */
.salon-dash-page { margin-top: var(--nav-h); min-height: calc(100vh - var(--nav-h)); background: var(--lav-s); }
.admin-bar .salon-dash-page { margin-top: calc(var(--nav-h) + 32px); }
.salon-dash-header { background: var(--black); padding: 32px 0; }
.sdh-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.sdh-left { display: flex; align-items: center; gap: 16px; }
.sdh-salon-img { width: 60px; height: 60px; border-radius: 50%; background: var(--lav); display: flex; align-items: center; justify-content: center; font-size: 28px; overflow: hidden; flex-shrink: 0; }
.sdh-salon-img img { width: 100%; height: 100%; object-fit: cover; }
.sdh-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.sdh-name { font-family: var(--serif); font-size: 24px; color: var(--white); margin-bottom: 4px; }
.sdh-meta { font-size: 13px; color: rgba(255,255,255,.5); }
.sdh-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sdh-alert { background: rgba(255,215,0,.15); border: 1px solid rgba(255,215,0,.3); color: var(--gold-b); font-size: 13px; padding: 8px 16px; font-weight: 700; border-radius: var(--radius-sm); }
.salon-dash-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding: 32px 0 80px; align-items: start; }
.dash-tab { display: none; }
.dash-tab.on { display: block; animation: fadeIn .2s ease; }
.dash-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--lav-d); margin-bottom: 28px; }
.dash-stat-card { background: var(--white); padding: 24px 20px; text-align: center; transition: transform var(--t-fast); }
.dash-stat-card:hover { transform: translateY(-2px); }
.dash-stat-card--pending   { border-top: 3px solid var(--gold-b); }
.dash-stat-card--confirmed { border-top: 3px solid var(--green); }
.dash-stat-card--revenue   { border-top: 3px solid var(--lav-m); }
.dsc-icon { font-size: 24px; margin-bottom: 8px; }
.dsc-num  { font-family: var(--serif); font-size: 28px; color: var(--black); margin-bottom: 4px; line-height: 1; }
.dsc-label{ font-size: 11px; color: var(--gray); }
.dash-section { margin-top: 24px; }
.dash-section-title { font-size: 13px; font-weight: 700; color: var(--black); padding: 12px 16px; background: var(--lav-s); border: 0.5px solid var(--lav-d); border-bottom: none; }
.dash-empty { display: flex; align-items: center; gap: 10px; padding: 20px; background: var(--green-l); border: 0.5px solid var(--green); font-size: 14px; color: var(--green); font-weight: 700; margin-top: 16px; border-radius: var(--radius-sm); }
.bc-confirm-btn { display: inline-flex; align-items: center; gap: 4px; font-family: var(--sans); font-size: 11px; font-weight: 700; padding: 6px 12px; background: var(--green-l); color: var(--green); border: 1px solid var(--green); text-decoration: none; transition: all var(--t-fast); border-radius: var(--radius-sm); }
.bc-confirm-btn:hover { background: var(--green); color: var(--white); }
.bc-decline-link { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; padding: 6px 12px; color: var(--red); border: 1px solid var(--red); text-decoration: none; transition: all var(--t-fast); border-radius: var(--radius-sm); }
.bc-decline-link:hover { background: var(--red); color: var(--white); }
.booking-card--pending { border-left: 3px solid var(--gold-b); }
.dash-reviews-list { display: flex; flex-direction: column; gap: 1px; background: var(--lav-d); margin-bottom: 16px; }
.dash-review { background: var(--white); padding: 16px 20px; }
.dash-review--pending { background: rgba(201,168,76,.08); }
.dr-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.dr-author { font-weight: 700; font-size: 14px; color: var(--black); flex: 1; }
.dr-stars  { color: var(--gold-b); font-size: 14px; letter-spacing: 1px; }
.dr-date   { font-size: 11px; color: var(--gray-l); }
.dr-content{ font-size: 14px; color: var(--gray); font-style: italic; line-height: 1.7; }
.dash-reviews-note { font-size: 12px; color: var(--gray); padding: 12px 16px; background: var(--lav-s); border: 0.5px solid var(--lav-d); }
.dash-edit-note { font-size: 13px; color: var(--gray); padding: 12px 16px; background: var(--lav-s); border: 0.5px solid var(--lav-d); border-left: 3px solid var(--gold); margin-bottom: 20px; }
.schedule-row { display: flex; align-items: center; gap: 16px; padding: 12px 0; border-bottom: 0.5px solid var(--lav-d); }
.schedule-row:last-of-type { border-bottom: none; }
.schedule-day-toggle { display: flex; align-items: center; gap: 10px; cursor: pointer; min-width: 140px; flex-shrink: 0; }
.schedule-day-toggle input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--black); flex-shrink: 0; }
.schedule-day-name { font-size: 14px; font-weight: 700; color: var(--black); }
.schedule-times { display: flex; align-items: center; gap: 8px; flex: 1; }
.schedule-times--closed { opacity: .3; pointer-events: none; }
.schedule-time-input { width: 110px !important; padding: 8px 12px !important; font-size: 14px !important; }
.schedule-sep { color: var(--gray); font-weight: 700; }
.schedule-closed-label { font-size: 13px; color: var(--gray-l); font-style: italic; }
.hidden { display: none !important; }
@media (max-width: 900px) { .salon-dash-layout { grid-template-columns: 1fr; } .dash-stats-grid { grid-template-columns: repeat(2, 1fr); } .sdh-inner { flex-direction: column; align-items: flex-start; } }
@media (max-width: 600px) { .salon-dash-header { padding: 20px 0; } .dash-stats-grid { grid-template-columns: repeat(2, 1fr); } .sdh-name { font-size: 18px; } .schedule-row { flex-wrap: wrap; } .schedule-times { width: 100%; } }

/* ═══════════════════════════════════════════════════════
   BOOKING ACTION PAGE
   ═══════════════════════════════════════════════════════ */
.booking-action-page { margin-top: var(--nav-h); min-height: calc(100vh - var(--nav-h)); background: var(--lav-s); }
.admin-bar .booking-action-page { margin-top: calc(var(--nav-h) + 32px); }
.baction-wrap { display: flex; justify-content: center; padding: 48px 0 80px; }
.baction-box { background: var(--white); border: 0.5px solid var(--lav-d); padding: 48px; max-width: 560px; width: 100%; text-align: center; box-shadow: var(--shadow-md); border-radius: var(--radius-lg); }
.baction-box--success  { border-top: 4px solid var(--green); }
.baction-box--declined { border-top: 4px solid var(--gray); }
.baction-box--error    { border-top: 4px solid var(--red); }
.baction-icon { font-size: 56px; margin-bottom: 16px; display: block; }
.baction-box h1 { font-family: var(--serif); font-size: 28px; color: var(--black); margin-bottom: 10px; }
.baction-box > p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.baction-details { background: var(--lav-s); border: 0.5px solid var(--lav-d); padding: 16px; margin: 20px 0; text-align: left; border-radius: var(--radius-sm); }
.bad-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 0.5px solid var(--lav-d); font-size: 14px; }
.bad-row:last-child { border-bottom: none; }
.bad-row span { color: var(--gray); }
.bad-row strong { color: var(--black); }
.baction-buttons { display: flex; gap: 12px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.baction-confirm-btn { background: var(--green) !important; font-size: 13px; padding: 14px 28px; border-radius: var(--radius) !important; }
.baction-confirm-btn:hover { background: #1a5e2e !important; }
.baction-decline-btn { border-color: var(--red) !important; color: var(--red) !important; border-radius: var(--radius) !important; }
.baction-decline-btn:hover { background: var(--red) !important; color: var(--white) !important; }
.baction-form { text-align: left; margin-top: 20px; }
.baction-alt-section { background: rgba(201,168,76,.08); border: 0.5px solid var(--gold); border-left: 3px solid var(--gold); padding: 16px 20px; margin: 20px 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.baction-alt-title { font-size: 14px; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.baction-alt-desc  { font-size: 13px; color: var(--gray); margin-bottom: 16px; font-weight: 300; }
@media (max-width: 600px) { .baction-box { padding: 28px 20px; } .baction-buttons { flex-direction: column; } .baction-buttons .btn { width: 100%; justify-content: center; } }

/* ═══════════════════════════════════════════════════════
   SALON ONBOARDING
   ═══════════════════════════════════════════════════════ */
.salon-onboard-page { margin-top: var(--nav-h); background: var(--lav-s); min-height: calc(100vh - var(--nav-h)); }
.admin-bar .salon-onboard-page { margin-top: calc(var(--nav-h) + 32px); }
.salon-onboard-header { background: var(--black); padding: 40px 0 32px; text-align: center; }
.salon-onboard-header h1 { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); color: var(--white); margin-bottom: 10px; }
.salon-onboard-header p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.onboard-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-top: 24px; }
.os-step { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: rgba(255,255,255,.3); }
.os-step span { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.os-step--active { color: var(--gold-b); }
.os-step--active span { background: var(--gold-b); color: var(--black); }
.os-line { width: 40px; height: 1px; background: rgba(255,255,255,.15); margin: 0 8px; }
.salon-onboard-layout { display: grid; grid-template-columns: 1fr 280px; gap: 32px; padding: 40px 0 80px; align-items: start; }
.salon-onboard-form { display: flex; flex-direction: column; gap: 0; }
.onboard-section { background: var(--white); border: 0.5px solid var(--lav-d); padding: 28px; margin-bottom: 16px; border-radius: var(--radius); }
.onboard-section-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 0.5px solid var(--lav-d); }
.onboard-section-desc { font-size: 13px; color: var(--gray); font-weight: 300; margin-bottom: 16px; line-height: 1.6; }
.onboard-cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.onboard-cat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 16px 8px; border: 1.5px solid var(--lav-d); cursor: pointer; transition: all var(--t-fast); text-align: center; position: relative; border-radius: var(--radius); }
.onboard-cat-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.onboard-cat-item:has(input:checked) { border-color: var(--black); background: var(--lav-s); box-shadow: 0 0 0 2px var(--black); }
.onboard-cat-item:hover { border-color: var(--lav-m); }
.oci-icon { font-size: 28px; }
.oci-name { font-size: 11px; font-weight: 700; color: var(--black); }
.onboard-photo-upload { border: 2px dashed var(--lav-d); height: 180px; cursor: pointer; overflow: hidden; transition: border-color var(--t-fast); border-radius: var(--radius); }
.onboard-photo-upload:hover { border-color: var(--lav-m); }
.opu-inner { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.opu-icon { font-size: 36px; }
.opu-text { font-size: 14px; font-weight: 700; color: var(--black); }
.opu-hint { font-size: 12px; color: var(--gray); }
.onboard-tips { position: sticky; top: calc(var(--nav-h) + 20px); display: flex; flex-direction: column; gap: 1px; background: var(--lav-d); border-radius: var(--radius); overflow: hidden; }
.admin-bar .onboard-tips { top: calc(var(--nav-h) + 20px + 32px); }
.onboard-tips-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); padding: 14px 16px; background: var(--black); }
.onboard-tip { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--white); }
.ot-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ot-title { font-size: 13px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.ot-desc  { font-size: 12px; color: var(--gray); font-weight: 300; line-height: 1.5; }
.onboard-tip-note { font-size: 12px; color: var(--gray); padding: 14px 16px; background: var(--lav-s); font-style: italic; line-height: 1.6; }
@media (max-width: 900px) { .salon-onboard-layout { grid-template-columns: 1fr; } .onboard-tips { position: static; } }
@media (max-width: 600px) { .onboard-section { padding: 20px; } .onboard-cats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── bsp-layout alias ───────────────────────────────── */
.bsp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  padding: 40px 0 80px;
  align-items: start;
}

@media (max-width: 900px) {
  .bsp-layout { grid-template-columns: 1fr; padding: 24px 0 60px; }
}

/* ── lushly-reviews-list alias ──────────────────────── */
.lushly-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--lav-d);
  margin-bottom: 32px;
}


/* ═══════════════════════════════════════════════════════
   FIXES — точкові виправлення
   ═══════════════════════════════════════════════════════ */

/* ── Hero: прибираємо білий відступ ─────────────────── */
/* Базовий .hero-left має background:white — перевизначаємо */
.hero-left {
  background: transparent !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Переконуємось що hero займає весь простір без gaps */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a30 60%, var(--black) 100%) !important;
}

/* Admin bar + hero — точний відступ */
.admin-bar .hero {
  margin-top: calc(var(--nav-h) + 32px) !important;
}

/* ── Catalog sidebar — filter-group аліас ───────────── */
/* archive-salon.php використовує .filter-group але базовий CSS має .filter-block */
.filter-group {
  border: 0.5px solid var(--lav-d);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.filter-group .fg-title,
.filter-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 0.5px solid var(--lav-d);
  user-select: none;
  transition: background var(--t-fast);
  background: var(--lav-s);
}

.filter-group .fg-body {
  padding: 8px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-group .fg-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray);
  min-height: 36px;
}

.filter-group .fg-check input[type="radio"] {
  accent-color: var(--black);
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.filter-group .fg-check-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  color: var(--black);
}

.filter-group .fg-count {
  font-size: 11px;
  color: var(--gray-l);
}

/* Кнопка застосування фільтрів в sidebar */
.catalog-sidebar-apply {
  padding: 14px 16px;
  border-top: 0.5px solid var(--lav-d);
  background: var(--white);
}

.catalog-sidebar-apply .btn {
  width: 100%;
  justify-content: center;
}

/* ── Catalog sort bar виправлення ───────────────────── */
.catalog-sort-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--lav-d);
  flex-wrap: wrap;
}

/* ── Testimonials — додаємо border-radius ───────────── */
.testimonial {
  border-radius: var(--radius) !important;
  box-shadow: 0 2px 12px rgba(13,13,13,.06) !important;
}

/* ── Catalog sidebar header fix ─────────────────────── */
.catalog-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 0.5px solid var(--lav-d);
  background: var(--lav-s);
}

.catalog-sidebar-close {
  display: none;
  width: 32px; height: 32px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}

/* Mobile: показуємо кнопку закриття */
@media (max-width: 768px) {
  .catalog-sidebar-close { display: flex !important; }
}

/* ── Catalog mobile toggle button ───────────────────── */
.catalog-filter-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid var(--lav-d);
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
  .catalog-filter-toggle { display: flex !important; }
  .catalog-layout { grid-template-columns: 1fr !important; }
}


/* ── Navbar: підтримка обох селекторів .nav та #navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(16px);
  border-bottom: 0.5px solid var(--lav-d);
  transition: box-shadow var(--t-base);
}

.admin-bar #navbar { top: 32px; }

#navbar.scrolled { box-shadow: var(--shadow-sm); }

/* ── Hero: точний fix для білого відступу ───────────── */
/* Коли .nav є fixed і hero має margin-top — не повинно бути gap */
.hero {
  margin-top: var(--nav-h) !important;
}

.admin-bar .hero {
  margin-top: calc(var(--nav-h) + 32px) !important;
}

/* ── WordPress admin bar fix ────────────────────────── */
@media screen and (max-width: 782px) {
  .admin-bar .hero { margin-top: calc(var(--nav-h) + 46px) !important; }
  .admin-bar #navbar { top: 46px !important; }
}


/* ═══════════════════════════════════════════════════════
   BOOKING CARDS — dashboard та account
   ═══════════════════════════════════════════════════════ */

.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--lav-d);
  margin-bottom: 16px;
}

.booking-card {
  background: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--t-fast);
}

.booking-card:hover { background: var(--lav-s); }
.booking-card--pending { border-left: 3px solid var(--gold-b); }

.bc-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.bc-salon-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--lav);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.bc-salon-ava img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.bc-info { flex: 1; min-width: 0; }

.bc-salon {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--black);
  display: block;
  margin-bottom: 2px;
  text-decoration: none;
}

.bc-salon:hover { color: var(--gold); }

.bc-service {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
}

.bc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--gray);
}

.bc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.bc-price {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--black);
  font-weight: 500;
}

.bc-cancel-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border: 0.5px solid var(--red);
  background: transparent;
  cursor: pointer;
  color: var(--red);
  transition: all var(--t-fast);
  border-radius: var(--radius-sm);
}

.bc-cancel-btn:hover { background: var(--red); color: var(--white); }

.bc-review-btn {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border: 0.5px solid var(--lav-d);
  background: transparent;
  cursor: pointer;
  color: var(--gray);
  transition: all var(--t-fast);
  border-radius: var(--radius-sm);
}

.bc-review-btn:hover { background: var(--lav); border-color: var(--lav-m); color: var(--black); }

.bc-decline-reason {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
  margin-top: 6px;
  padding: 8px 12px;
  background: var(--gray-ll);
  border-left: 3px solid var(--gray-l);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bc-alt-time {
  font-size: 12px;
  color: var(--gold);
  margin-top: 6px;
  padding: 8px 12px;
  background: rgba(201,168,76,.08);
  border-left: 3px solid var(--gold-b);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── Widget head (single salon booking widget) ───────── */
.widget-head {
  background: var(--black);
  padding: 20px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.widget-title {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.widget-sub { font-size: 11px; color: rgba(255,255,255,.45); }

/* ═══════════════════════════════════════════════════════
   SINGLE SALON — виправлення sidebar
   ═══════════════════════════════════════════════════════ */

/* Sidebar widgets стики */
.salon-content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.admin-bar .salon-content-sidebar {
  top: calc(var(--nav-h) + 20px + 32px);
}

/* Side widget base */
.side-widget {
  border: 0.5px solid var(--lav-d);
  background: var(--white);
  overflow: hidden;
  border-radius: var(--radius);
}

.side-widget--dark {
  background: var(--black);
  border-color: var(--black);
}

.sw-head {
  padding: 12px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 0.5px solid var(--lav-d);
  background: var(--lav-s);
}

.side-widget--dark .sw-head {
  background: rgba(255,255,255,.05);
  border-bottom-color: rgba(255,255,255,.1);
  color: var(--gold);
}

.sw-body { padding: 16px; }

/* ═══════════════════════════════════════════════════════
   BOOKING SIMPLE PAGE — повні стилі
   ═══════════════════════════════════════════════════════ */

.booking-simple-page {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  background: var(--lav-s);
}

.admin-bar .booking-simple-page {
  margin-top: calc(var(--nav-h) + 32px);
}

/* Topbar */
.booking-topbar {
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 0.5px solid var(--lav-d);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-bar .booking-topbar { top: 32px; }

.booking-logo {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--black);
  text-decoration: none;
}

.booking-logo span { color: var(--gold); }

.booking-back {
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--t-fast);
}

.booking-back:hover { color: var(--black); }

/* Layout */
.bsp-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 48px 80px;
  align-items: start;
}

.bsp-form-col { display: flex; flex-direction: column; gap: 24px; }
.bsp-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.admin-bar .bsp-info-col { top: calc(var(--nav-h) + 20px + 32px); }

/* Summary box */
.bsp-summary-box {
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  overflow: hidden;
  border-radius: var(--radius);
}

.bsp-summary-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 12px 20px;
  border-bottom: 0.5px solid var(--lav-d);
  background: var(--lav-s);
}

.bsp-summary-rows { padding: 4px 0; }

.bsp-summary-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 0.5px solid var(--lav-d);
  font-size: 14px;
}

.bsp-summary-row:last-child { border-bottom: none; }
.bsp-summary-row--price { background: var(--lav-s); }
.bsr-icon  { font-size: 16px; flex-shrink: 0; }
.bsr-label { color: var(--gray); min-width: 80px; flex-shrink: 0; font-size: 12px; }
.bsr-val   { color: var(--black); font-weight: 700; flex: 1; }
.bsr-price { font-family: var(--serif); font-size: 18px; color: var(--gold); }

/* Contact form box */
.bsp-contact-form {
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  padding: 28px;
  border-radius: var(--radius);
}

.bsp-section-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.bsp-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 13px;
  margin-top: 16px;
  animation: ctaPulse 3s infinite;
}

.bsp-error {
  background: var(--red-l);
  border: 0.5px solid var(--red);
  border-left: 3px solid var(--red);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--red);
  margin-top: 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Salon card in booking */
.bsp-salon-card {
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  overflow: hidden;
  border-radius: var(--radius);
}

.bsp-salon-img {
  width: 100%; height: 160px;
  object-fit: cover; display: block;
}

.bsp-salon-img-placeholder {
  width: 100%; height: 160px;
  background: var(--lav-s);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
}

.bsp-salon-body { padding: 16px 18px; }
.bsp-salon-name { font-family: var(--serif); font-size: 18px; color: var(--black); margin-bottom: 6px; display: block; }
.bsp-salon-loc  { font-size: 13px; color: var(--gray); display: block; margin-bottom: 4px; }
.bsp-salon-phone{ font-size: 13px; color: var(--gray); display: block; }
.bsp-salon-phone a { color: var(--gray); text-decoration: none; }
.bsp-salon-phone a:hover { color: var(--black); }

/* Why box */
.bsp-why-box {
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  padding: 20px;
  border-radius: var(--radius);
}

.bsp-why-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.bsp-why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray);
  padding: 8px 0;
  border-bottom: 0.5px solid var(--lav-d);
  line-height: 1.5;
}

.bsp-why-item:last-child { border-bottom: none; }
.bsp-why-item span { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* Success */
.bsp-success-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.bsp-success-overlay.visible { display: flex; }

.bsp-success-box {
  background: var(--white);
  max-width: 480px; width: 100%;
  padding: 48px 40px;
  text-align: center;
  animation: fadeUp .3s ease;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

.bsp-success-icon { font-size: 64px; margin-bottom: 16px; display: block; }
.bsp-success-box h2 { font-family: var(--serif); font-size: 28px; color: var(--black); margin-bottom: 10px; }
.bsp-success-box p  { font-size: 14px; color: var(--gray); font-weight: 300; line-height: 1.7; margin-bottom: 20px; }

.bsp-success-details {
  background: var(--lav-s);
  border: 0.5px solid var(--lav-d);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
  border-radius: var(--radius-sm);
}

.bsp-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Inline success */
.bsp-success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 60px 20px;
}

.bsp-success-box-inline {
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  max-width: 520px; width: 100%;
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

/* Consent row */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 14px;
  background: var(--lav-s);
  border: 0.5px solid var(--lav-d);
  margin-top: 4px;
  border-radius: var(--radius-sm);
}

.consent-box {
  width: 18px; height: 18px;
  border: 1.5px solid var(--lav-d);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: all var(--t-fast);
  border-radius: 3px;
}

.consent-row.checked .consent-box { background: var(--black); border-color: var(--black); }
.consent-tick { color: var(--white); font-size: 11px; display: none; }
.consent-row.checked .consent-tick { display: block; }
.consent-text { font-size: 12px; color: var(--gray); line-height: 1.6; }
.consent-text a { color: var(--lav-m); }

/* Responsive */
@media (max-width: 900px) {
  .bsp-layout { grid-template-columns: 1fr; padding: 24px 24px 60px; }
  .bsp-info-col { position: static; }
}

@media (max-width: 600px) {
  .booking-topbar { padding: 0 16px; }
  .bsp-layout { padding: 16px 16px 40px; }
  .bsp-contact-form { padding: 20px; }
  .bsp-success-box { padding: 32px 20px; }
  .bsp-success-box-inline { padding: 32px 20px; }
  .bsp-success-actions { flex-direction: column; }
  .bsp-success-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .booking-card { flex-direction: column; gap: 12px; }
  .bc-right { flex-direction: row; flex-wrap: wrap; justify-content: flex-start; }
}


/* ═══════════════════════════════════════════════════════
   TARGETED FIXES — 13 квітня
   ═══════════════════════════════════════════════════════ */

/* ── 1. Navbar — кнопки авторизації ─────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  font-size: 11px;
  padding: 8px 18px;
  border-radius: var(--radius) !important;
}

.nav-actions .btn-primary {
  background: var(--black);
  color: var(--white);
}

.nav-actions .btn-ghost {
  border: 1px solid var(--lav-d);
  color: var(--gray);
  background: transparent;
}

.nav-actions .btn-ghost:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* ── 2. Quick tags — відступ під пошуком ─────────────── */
.quick-tags {
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}

/* ── 3. Hero CTA — прибираємо floating badges ────────── */
.hvc-float { display: none !important; }

/* ── 4. Testimonials — відступ між заголовком і картками */
.testimonials-grid {
  margin-top: 32px !important;
}

/* ── 5. Catalog quick cats — прибираємо ─────────────── */
.catalog-quick-cats { display: none !important; }

/* ── 6. Catalog results — прибираємо сірий фон ──────── */
.catalog-results,
.catalog-layout > div:last-child {
  background: transparent !important;
}

/* Фон за салон картками в каталозі */
.salons-grid,
.catalog-grid {
  background: transparent !important;
  gap: 16px !important;
}

.catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ── 7. Gallery button — сучасний стиль ─────────────── */
.gallery-btn-all {
  background: rgba(255,255,255,.9) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255,255,255,.6) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--sans) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .5px !important;
  text-transform: uppercase !important;
  padding: 8px 16px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  transition: all var(--t-fast) !important;
}

.gallery-btn-all:hover {
  background: var(--white) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,.15) !important;
}

/* ── 8. Salon header — прибираємо зайвий простір ────── */
.salon-header-left {
  padding: 24px 48px 20px !important;
}

.salon-actions {
  margin-bottom: 0 !important;
}

/* ── 9. Bookings list — прибираємо зайвий фон ────────── */
.bookings-list {
  background: transparent !important;
  gap: 8px !important;
}

.booking-card {
  border: 0.5px solid var(--lav-d) !important;
  border-radius: var(--radius) !important;
  background: var(--white) !important;
}

.booking-card--pending {
  border-left: 3px solid var(--gold-b) !important;
}

/* ── 10. Account nav — стилізація кнопок меню ────────── */
.account-nav {
  background: var(--white) !important;
  border: 0.5px solid var(--lav-d) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
}

.account-nav-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 13px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--gray) !important;
  cursor: pointer !important;
  transition: all var(--t-fast) !important;
  border-left: 3px solid transparent !important;
  text-decoration: none !important;
  border-bottom: 0.5px solid var(--lav-d) !important;
  font-family: var(--sans) !important;
}

.account-nav-item:last-child {
  border-bottom: none !important;
}

.account-nav-item:hover {
  background: var(--lav-s) !important;
  color: var(--black) !important;
  border-left-color: var(--lav-m) !important;
}

.account-nav-item.on {
  color: var(--black) !important;
  font-weight: 700 !important;
  border-left-color: var(--black) !important;
  background: var(--lav-s) !important;
}

.account-nav-badge {
  font-size: 10px !important;
  font-weight: 700 !important;
  background: var(--gold-b) !important;
  color: var(--black) !important;
  padding: 2px 7px !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
  border-radius: var(--radius-full) !important;
}

.account-nav-divider {
  height: 0 !important;
  display: none !important;
}

.account-nav-logout {
  color: var(--red) !important;
}

.account-nav-logout:hover {
  background: var(--red-l) !important;
  border-left-color: var(--red) !important;
}

/* ── 11. Bsp change link — стилізація ───────────────── */
.bsp-change-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  color: var(--gray) !important;
  text-decoration: none !important;
  padding: 6px 14px !important;
  border: 1px solid var(--lav-d) !important;
  border-radius: var(--radius-sm) !important;
  background: var(--white) !important;
  transition: all var(--t-fast) !important;
  margin-top: 8px !important;
}

.bsp-change-link:hover {
  border-color: var(--black) !important;
  color: var(--black) !important;
  background: var(--lav-s) !important;
}

/* ── 12. Booking page — менш однотонна ──────────────── */
.booking-simple-page {
  background: var(--lav-s) !important;
}

.bsp-contact-form {
  box-shadow: 0 4px 20px rgba(13,13,13,.06) !important;
}

.bsp-summary-box {
  box-shadow: 0 4px 20px rgba(13,13,13,.06) !important;
}

/* Секції форми — виділення заголовків */
.bsp-section-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  margin-bottom: 16px !important;
  padding-bottom: 10px !important;
  border-bottom: 1px solid var(--lav-d) !important;
}

/* Mobile account nav */
@media (max-width: 600px) {
  .account-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    border-radius: 0 !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .account-nav-item {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    border-left: none !important;
    border-bottom: none !important;
    border-bottom: 2px solid transparent !important;
    padding: 12px 14px !important;
  }
  .account-nav-item.on {
    border-left: none !important;
    border-bottom: 2px solid var(--black) !important;
  }
  .account-nav-divider { display: none !important; }
}



/* ── Logout button — visible red color ──────────────── */
.account-nav-logout { color: var(--red) !important; }
.account-nav-logout:hover { background: var(--red-l) !important; }

/* ═══════════════════════════════════════════════════════
   ACCOUNT PAGE — відновлення
   ═══════════════════════════════════════════════════════ */
.account-page { margin-top: var(--nav-h); min-height: calc(100vh - var(--nav-h)); }
.admin-bar .account-page { margin-top: calc(var(--nav-h) + 32px); }

.account-login-wall { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; background: var(--lav-s); }
.alw-inner { max-width: 520px; margin: 0 auto; text-align: center; padding: 80px 20px; }
.alw-icon  { font-size: 56px; margin-bottom: 20px; display: block; }
.alw-title { font-family: var(--serif); font-size: 32px; color: var(--black); margin-bottom: 12px; }
.alw-sub   { font-size: 15px; color: var(--gray); font-weight: 300; line-height: 1.7; margin-bottom: 28px; }
.alw-actions { display: flex; gap: 12px; justify-content: center; margin-bottom: 36px; flex-wrap: wrap; }
.alw-benefits { display: flex; flex-direction: column; gap: 10px; text-align: left; background: var(--white); border: 0.5px solid var(--lav-d); padding: 20px 24px; border-radius: var(--radius); }
.alw-benefit { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gray); }

.account-header { background: var(--black); padding: 40px 0; }
.account-header-inner { display: flex; align-items: center; gap: 20px; }
.account-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--lav-m); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 28px; color: var(--white); flex-shrink: 0; }
.account-name  { font-family: var(--serif); font-size: 26px; color: var(--white); margin-bottom: 4px; }
.account-email { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.account-since { font-size: 12px; color: rgba(255,255,255,.35); }
.account-header-stats { display: flex; gap: 24px; margin-left: auto; flex-shrink: 0; }
.ahs-stat  { text-align: center; }
.ahs-num   { font-family: var(--serif); font-size: 28px; color: var(--gold-b); line-height: 1; }
.ahs-label { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 3px; }

.account-body { padding: 40px 0 80px; }
.account-grid { display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start; }

.account-nav { background: var(--white); border: 0.5px solid var(--lav-d); overflow: hidden; position: sticky; top: calc(var(--nav-h) + 20px); border-radius: var(--radius); }
.admin-bar .account-nav { top: calc(var(--nav-h) + 20px + 32px); }
.account-nav-item { display: flex; align-items: center; gap: 10px; padding: 13px 18px; font-size: 13px; color: var(--gray); cursor: pointer; transition: all var(--t-fast); border-left: 3px solid transparent; text-decoration: none; border-bottom: 0.5px solid var(--lav-d); font-family: var(--sans); font-weight: 600; }
.account-nav-item:last-child { border-bottom: none; }
.account-nav-item:hover { background: var(--lav-s); color: var(--black); border-left-color: var(--lav-m); }
.account-nav-item.on { color: var(--black); font-weight: 700; border-left-color: var(--black); background: var(--lav-s); }
.account-nav-badge { font-size: 10px; font-weight: 700; background: var(--gold-b); color: var(--black); padding: 2px 7px; margin-left: auto; flex-shrink: 0; border-radius: var(--radius-full); }
.account-nav-divider { height: 0.5px; background: var(--lav-d); }
.account-nav-logout { color: var(--red); }
.account-nav-logout:hover { background: var(--red-l); border-left-color: var(--red); }

.account-content { }
.account-tab { display: none; }
.account-tab.on { display: block; animation: fadeIn .2s ease; }
.account-tab-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.account-tab-head h2 { font-family: var(--serif); font-size: 24px; color: var(--black); }

.booking-filter-tabs { display: flex; gap: 0; border-bottom: 0.5px solid var(--lav-d); margin-bottom: 20px; }
.bft { font-family: var(--sans); font-size: 12px; font-weight: 700; padding: 10px 20px; cursor: pointer; color: var(--gray); border: none; border-bottom: 2px solid transparent; background: none; transition: all var(--t-fast); }
.bft.on { color: var(--black); border-bottom-color: var(--black); }
.bft:hover { color: var(--black); }

.favorites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fav-card { border: 0.5px solid var(--lav-d); overflow: hidden; text-decoration: none; transition: transform var(--t-base), box-shadow var(--t-base); border-radius: var(--radius); }
.fav-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fav-img { height: 120px; background: var(--lav-s); display: flex; align-items: center; justify-content: center; font-size: 40px; overflow: hidden; }
.fav-img img { width: 100%; height: 100%; object-fit: cover; }
.fav-info { padding: 12px; }
.fav-name { font-family: var(--serif); font-size: 14px; color: var(--black); margin-bottom: 3px; }
.fav-meta { font-size: 11px; color: var(--gray); }

.empty-state { text-align: center; padding: 60px 20px; border: 0.5px dashed var(--lav-d); grid-column: 1 / -1; border-radius: var(--radius); }
.es-icon  { font-size: 48px; margin-bottom: 14px; display: block; }
.es-title { font-family: var(--serif); font-size: 20px; color: var(--black); margin-bottom: 8px; }
.es-sub   { font-size: 14px; color: var(--gray); font-weight: 300; margin-bottom: 20px; }

.profile-form { display: flex; flex-direction: column; gap: 0; max-width: 560px; }
.profile-success { background: var(--green-l); border: 0.5px solid var(--green); border-left: 3px solid var(--green); padding: 12px 16px; font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

.notif-settings { display: flex; flex-direction: column; gap: 1px; background: var(--lav-d); border-radius: var(--radius); overflow: hidden; }
.notif-row { background: var(--white); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.notif-info  { flex: 1; }
.notif-title { font-size: 14px; font-weight: 700; color: var(--black); margin-bottom: 3px; }
.notif-desc  { font-size: 12px; color: var(--gray); font-weight: 300; }

/* Responsive */
@media (max-width: 900px) {
  .account-header-stats { display: none; }
}
@media (max-width: 600px) {
  .account-grid { grid-template-columns: 1fr; gap: 0; }
  .account-nav { display: flex; flex-wrap: nowrap; overflow-x: auto; position: static; border-radius: 0; border: none; border-bottom: 0.5px solid var(--lav-d); }
  .account-nav-item { white-space: nowrap; flex-shrink: 0; border-left: none; border-bottom: 2px solid transparent; padding: 12px 14px; border-bottom: none; }
  .account-nav-item.on { border-left: none; border-bottom: 2px solid var(--black); }
  .account-nav-divider { display: none; }
  .favorites-grid { grid-template-columns: 1fr 1fr; }
  .account-body { padding: 20px 0 40px; }
}


/* ═══════════════════════════════════════════════════════
   SALON PAGE — новий layout (header одноколонковий)
   ═══════════════════════════════════════════════════════ */

/* Header — тільки одна колонка (без widget) */
.salon-header-wrap {
  display: block !important;
  border-bottom: 0.5px solid var(--lav-d) !important;
}

.salon-header-left {
  padding: 24px 48px 20px !important;
  max-width: 800px !important;
}

/* Content grid — більше місця для sidebar (widget) */
.salon-content-grid {
  display: grid !important;
  grid-template-columns: 1fr 360px !important;
  gap: 32px !important;
  align-items: start !important;
}

/* Sidebar — sticky з booking widget зверху */
.salon-content-sidebar {
  position: sticky !important;
  top: calc(var(--nav-h) + 16px) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.admin-bar .salon-content-sidebar {
  top: calc(var(--nav-h) + 16px + 32px) !important;
}

/* Booking widget в sidebar — без border-left */
.salon-content-sidebar .salon-booking-widget {
  position: static !important;
  border-left: none !important;
  border: 0.5px solid var(--lav-d) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-md) !important;
}

/* Прибираємо старий sticky booking widget */
.salon-booking-widget {
  border-left: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .salon-header-left { padding: 20px !important; }
  .salon-content-grid { grid-template-columns: 1fr !important; }
  .salon-content-sidebar { position: static !important; }
}

@media (max-width: 600px) {
  .salon-header-left { padding: 16px !important; }
}

/* ── Navbar кнопки авторизації ───────────────────────── */
/* Для незалогіненого користувача */
.nav-actions .btn-secondary {
  background: transparent !important;
  color: var(--black) !important;
  border: 1.5px solid var(--lav-d) !important;
  border-radius: var(--radius) !important;
  font-size: 11px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
}

.nav-actions .btn-secondary:hover {
  background: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}

.nav-actions .btn-gold {
  background: linear-gradient(135deg, var(--gold-b), var(--gold)) !important;
  color: var(--black) !important;
  border-radius: var(--radius) !important;
  font-size: 11px !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(201,168,76,.3) !important;
}

.nav-actions .btn-gold:hover {
  background: linear-gradient(135deg, #FFE44D, var(--gold-b)) !important;
  box-shadow: 0 4px 16px rgba(201,168,76,.4) !important;
}
/* ═══════════════════════════════════════════════════════
   SALON PAGE — НОВИЙ LAYOUT (2-колонка від самого верху)
   ═══════════════════════════════════════════════════════ */

/* Галерея — повна ширина, без змін */
.salon-gallery-wrap { position: relative; }

/* Основна обгортка після галереї */
.salon-main-wrap {
  padding: 0 0 80px;
}

/* 2-колонковий grid: ліво=контент, право=sticky sidebar */
.salon-main-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  align-items: start;
}

/* ЛІВА КОЛОНКА */
.salon-main-left {
  min-width: 0;
  border-right: 0.5px solid var(--lav-d);
}

/* Блок з інфо про салон */
.salon-info-header {
  padding: 36px 48px 32px;
  border-bottom: 0.5px solid var(--lav-d);
}

/* Таби — sticky в лівій колонці */
.salon-main-left .salon-tabs-bar {
  position: sticky;
  top: var(--nav-h);
  z-index: 80;
  background: var(--white);
  border-bottom: 0.5px solid var(--lav-d);
  padding: 0 48px;
}
.admin-bar .salon-main-left .salon-tabs-bar {
  top: calc(var(--nav-h) + 32px);
}

/* Контент табів */
.salon-tabs-content {
  padding: 40px 48px;
}

/* ПРАВА КОЛОНКА — звичайний flow, без sticky */
.salon-main-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  align-self: start;
}

/* Booking widget в правій колонці — позиціонування без override стилів */
.salon-main-right .salon-booking-widget {
  position: static;
}

/* Прибираємо старий salon-header-wrap якщо залишився */
.salon-header-wrap { display: none !important; }
.salon-content-wrap { display: none !important; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .salon-main-grid {
    grid-template-columns: 1fr;
  }
  .salon-main-left {
    border-right: none;
  }
  .salon-main-right {
    position: static;
    max-height: none;
    overflow-y: visible;
    padding: 0 20px 40px;
    border-top: 0.5px solid var(--lav-d);
  }
  .salon-info-header {
    padding: 24px 20px;
  }
  .salon-main-left .salon-tabs-bar {
    padding: 0 20px;
    position: static;
  }
  .salon-tabs-content {
    padding: 24px 20px;
  }
}

@media (max-width: 600px) {
  .salon-main-right .side-widget:not(:first-child) {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════
   ÄHNLICHE SALONS — повна ширина знизу сторінки салону
   ═══════════════════════════════════════════════════════ */
.salon-similar-section {
  border-top: 0.5px solid var(--lav-d);
  background: var(--lav-s);
  padding: 64px 0 80px;
}

.salon-similar-head {
  margin-bottom: 36px;
}

.salon-similar-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--black);
  margin-top: 8px;
}

.salon-similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.similar-card {
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--t-base), transform var(--t-base);
  display: block;
}

.similar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.similar-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--lav-s);
}

.similar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.similar-card:hover .similar-card-img img {
  transform: scale(1.04);
}

.similar-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  background: var(--lav-s);
}

.similar-card-body {
  padding: 16px 18px 20px;
}

.similar-card-cats {
  font-size: 11px;
  color: var(--lav-m);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.similar-card-name {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.similar-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 8px;
}

.similar-card-rating {
  color: var(--gold);
  font-weight: 700;
}

.similar-card-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}

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

@media (max-width: 500px) {
  .salon-similar-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .salon-similar-section { padding: 40px 0 60px; }
}

/* ═══════════════════════════════════════════════════════
   NAVBAR — права частина (user menu, кнопки)
   ═══════════════════════════════════════════════════════ */

/* Обгортка user menu */
.nav-user-menu {
  position: relative;
}

/* Кнопка з аватаром */
.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--lav-d);
  padding: 6px 12px 6px 6px;
  cursor: pointer;
  transition: all var(--t-fast);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--black);
  border-radius: var(--radius-full);
}

.nav-user-btn:hover {
  border-color: var(--lav-m);
  background: var(--lav-s);
}

/* Аватар — круглий з ініціалами */
.nav-user-ava {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lav-m);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.nav-user-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-user-arrow {
  font-size: 9px;
  color: var(--gray);
  transition: transform var(--t-fast);
}

.nav-user-menu.open .nav-user-arrow {
  transform: rotate(180deg);
}

/* Dropdown меню */
.nav-user-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 0.5px solid var(--lav-d);
  border-radius: var(--radius);
  min-width: 200px;
  z-index: 200;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  animation: fadeUp .2s ease;
}

.nav-user-menu.open .nav-user-dropdown {
  display: block;
}

/* Пункти dropdown */
.nud-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13px;
  color: var(--gray);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
  border-bottom: 0.5px solid var(--lav-s);
}

.nud-item:last-child {
  border-bottom: none;
}

.nud-item:hover {
  background: var(--lav-s);
  color: var(--black);
}

.nud-divider {
  height: 0.5px;
  background: var(--lav-d);
  margin: 4px 0;
}

/* Кнопки Anmelden / Registrieren */
.nav-actions .btn-secondary {
  border-color: var(--lav-d);
  color: var(--black);
  font-size: 11px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
}

.nav-actions .btn-secondary:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.nav-actions .btn-gold {
  background: var(--gold-b);
  color: var(--black);
  font-size: 11px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: none;
}

.nav-actions .btn-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* Кнопка Anmelden (незалогінений) — ghost стиль в navbar */
.nav-actions .btn-ghost {
  border-color: var(--lav-d);
  color: var(--black);
  font-size: 11px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
}

.nav-actions .btn-ghost:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

/* nud-item logout — злегка виділений */
.nud-item--logout {
  color: var(--red) !important;
}
.nud-item--logout:hover {
  background: var(--red-l) !important;
  color: var(--red) !important;
}