/* ═══════════════════════════════════════════
   Ann Thai Massage — Main Stylesheet
   ═══════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:            #FAF7F2;
  --fg:            #2C2420;
  --primary:       #3D2C23;
  --primary-fg:    #FAF7F2;
  --secondary:     #F0E8DC;
  --accent:        #C8A97E;
  --accent-dark:   #B8956A;
  --accent-darker: #9e7d52;
  --muted:         #8A7968;
  --border:        #E8DFD3;
  --card:          #FFFFFF;
  --radius:        0.75rem;
  --radius-lg:     1rem;
  --radius-full:   9999px;
  --shadow:        0 2px 16px rgba(61,44,35,.08);
  --shadow-lg:     0 8px 32px rgba(61,44,35,.14);
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Inter', system-ui, -apple-system, sans-serif;
  --header-h:      72px;
  --transition:    .25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body { font-family: var(--font-sans); background: var(--bg); color: var(--fg); line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; -webkit-tap-highlight-color: transparent; }
input, textarea, select { font-family: inherit; }
ul, ol { list-style: none; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, .logo, .footer-logo { font-family: var(--font-serif); font-weight: 300; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

/* ── Layout ────────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-light { background: var(--bg); }
.section-warm  { background: var(--secondary); }
.section-dark  { background: var(--primary); color: var(--primary-fg); }

/* ── Section header ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header-light .section-label,
.section-header-light .section-title { color: var(--primary-fg); }
.section-header-light .section-label { opacity: .75; }
.section-label { display: block; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.section-title { color: var(--primary); }
.section-dark .section-title { color: var(--primary-fg); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem; border-radius: var(--radius-full); font-weight: 500; font-size: .9rem; transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition); white-space: nowrap; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-accent { background: var(--accent-dark); color: #fff; }
.btn-accent:hover { background: #9e7d52; }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent-darker); color: var(--accent-darker); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; text-transform: uppercase; letter-spacing: .06em; }
.btn-lg { padding: .875rem 2.25rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.mt-4 { margin-top: 1.5rem; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--header-h); transition: background var(--transition), box-shadow var(--transition); }
.site-header.scrolled { background: rgba(250,247,242,.96); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 2rem; }
.logo { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 400; color: #fff; letter-spacing: .03em; transition: color var(--transition); flex-shrink: 0; display: flex; align-items: center; }
.logo-svg { height: 64px; width: auto; display: block; fill: currentColor; transition: fill var(--transition); }
.site-header.scrolled .logo { color: var(--primary); }
.nav-desktop { display: flex; gap: 2rem; margin-left: auto; }
.nav-desktop a { font-size: 1rem; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .06em; transition: color var(--transition); }
.nav-desktop a:hover { color: var(--accent); }
.site-header.scrolled .nav-desktop a { color: var(--primary); }
.site-header.scrolled .nav-desktop a:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.nav-desktop ~ .header-actions { margin-left: 0; }
.lang-switcher { display: flex; align-items: center; gap: .4rem; font-size: .8rem; }
.lang-switcher a { color: rgba(255,255,255,.7); transition: color var(--transition); }
.lang-switcher a:hover, .lang-switcher a.active { color: var(--accent); font-weight: 600; }
.site-header.scrolled .lang-switcher a { color: var(--muted); }
.site-header.scrolled .lang-switcher a:hover,
.site-header.scrolled .lang-switcher a.active { color: var(--accent); }
.lang-switcher span { color: rgba(255,255,255,.4); }
.site-header.scrolled .lang-switcher span { color: var(--border); }
.btn-icon-only { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: rgba(255,255,255,.85); transition: background var(--transition), color var(--transition); }
.btn-icon-only:hover { background: rgba(255,255,255,.1); color: #fff; }
.site-header.scrolled .btn-icon-only { color: var(--muted); }
.site-header.scrolled .btn-icon-only:hover { background: var(--secondary); color: var(--primary); }
.mobile-phone-btn { display: none; }

/* Burger */
.burger-btn { display: none; flex-direction: column; gap: 5px; width: 36px; height: 36px; justify-content: center; align-items: center; }
.burger-btn span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.site-header.scrolled .burger-btn span { background: var(--primary); }
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; top: 0; left: 0; right: 0; bottom: 0; background: var(--primary); z-index: 9999; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; padding: calc(var(--header-h) + 1.5rem) 1.5rem 1.5rem; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s ease, visibility .3s ease; overflow-y: auto; }
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: all; }
.mobile-menu-close { position: absolute; top: 1rem; right: 1rem; color: rgba(255,255,255,.7); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background var(--transition); }
.mobile-menu-close:hover { background: rgba(255,255,255,.1); color: #fff; }
.mobile-menu-nav { display: flex !important; flex-direction: column; gap: 0; flex: 0 0 auto; }
.mobile-link { display: block !important; font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: #ffffff !important; padding: .875rem 0; border-bottom: 1px solid rgba(255,255,255,.12); transition: color var(--transition); text-align: left; }
.mobile-link:hover { color: var(--accent) !important; }
.mobile-link-cta { color: var(--accent) !important; font-weight: 600; margin-top: .5rem; padding-top: 1rem; border-bottom: none; }
.mobile-lang { display: flex; gap: 1.5rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); flex: 0 0 auto; }
.mobile-lang a { font-size: .9rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.mobile-lang a:hover, .mobile-lang a.active { color: var(--accent); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.hero-video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    min-width: 100vw !important;
    min-height: 100vh !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(30,25,20,.40) 0%,
        rgba(30,25,20,.30) 40%,
        rgba(20,15,10,.72) 75%,
        rgba(15,10,8,.90)  100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: var(--header-h);
}
.hero-tagline { font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.hero-title { color: #fff; font-weight: 300; margin-bottom: 1.25rem; line-height: 1.1; }
.hero-subtitle { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.6); animation: bounce 2s infinite; z-index: 2; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ── Services ───────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow var(--transition); }
.service-card:hover { box-shadow: var(--shadow-lg); }
.service-card-header { display: flex; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; cursor: pointer; }
.service-icon { flex-shrink: 0; width: 44px; height: 44px; background: var(--secondary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.service-card-info { flex: 1; min-width: 0; }
.service-name { font-size: 1rem; font-weight: 500; margin-bottom: .15rem; }
.service-price-from { font-size: .8rem; color: var(--muted); }
.service-price-from strong { color: var(--accent); }
.service-toggle { flex-shrink: 0; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; color: var(--muted); border-radius: 50%; transition: background var(--transition), transform var(--transition); }
.service-toggle:hover { background: var(--secondary); }
.service-card.open .service-toggle { transform: rotate(180deg); }
.service-card-body { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.service-card.open .service-card-body { max-height: 500px; padding: 0 1.5rem 1.5rem; }
.service-desc { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.service-durations { border-top: 1px solid var(--border); margin-bottom: 1rem; }
.duration-row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .875rem; }
.duration-row:last-child { border-bottom: none; }

/* ── About ──────────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; }
.about-video,
.about-video-poster {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}
.about-video { display: none; }
.about-video-overlay {
    position: absolute;
    inset: 0;
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-video-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.25));
}
.about-video-play {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: rgba(250,247,242,.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3D2C23;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.about-video-play svg { margin-left: 2px; }
.about-image.is-playing .about-video { display: block; }
.about-image.is-playing .about-video-overlay { display: none; }
.about-image.is-playing .about-video-poster { display: none; }
.about-content p { color: var(--muted); margin-bottom: 1rem; }
.about-content .section-label { text-align: left; }
.about-content .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 2rem 0 1.5rem;
}
.about-badge {
    background: #FFFFFF;
    border: 1px solid #EDE8E0;
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    text-align: center;
}
.about-badge-icon {
    margin: 0 auto 1rem;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(201,169,110,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}
.about-badge-icon svg {
    width: 24px;
    height: 24px;
}
.about-badge strong {
    display: block;
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .25rem;
}
.about-badge p {
    margin: 0;
    font-size: .85rem;
    color: var(--muted);
}
.about-team-title { font-family: var(--font-serif); font-size: 2.3rem; font-weight: 300; color: var(--primary); margin: 1.75rem 0 2rem; text-align: center; }
.team-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 960px; margin: 0 auto; }
@media (max-width: 768px) { .team-cards { grid-template-columns: 1fr; } }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 12px rgba(61,44,35,.06); }
.team-card-photo { width: 100%; height: 193px; object-fit: contain; object-position: top center; display: block; background: #F5F0E8; }
.team-avatar { flex-shrink: 0; width: 72px; height: 72px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; color: var(--accent); font-family: var(--font-serif); font-size: 1.5rem; }
.team-card-inner { display: flex; flex: 1; }
.team-card-with-photo .team-card-inner { flex-direction: column; }
.team-card:not(.team-card-with-photo) .team-card-inner { flex-direction: row; padding: 1.75rem; gap: 1.25rem; }
.team-card-body { flex: 1; min-width: 0; }
.team-card-with-photo .team-card-body { padding: 1.75rem; }
.team-name { display: block; font-family: var(--font-serif); font-size: 1.6rem; font-weight: 600; color: var(--primary); margin-bottom: 0; }
.team-role { font-size: .85rem; font-weight: 600; color: var(--muted); margin: 0 0 .35rem; }
.team-exp { display: flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--muted); margin: 0 0 .75rem; }
.team-exp svg { flex-shrink: 0; color: var(--accent); }
.team-bio { font-size: .875rem; color: var(--muted); line-height: 1.55; margin: 0; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-wrapper { max-width: 680px; margin: 0 auto; text-align: center; }
.testimonials-track { position: relative; min-height: 180px; }
.testimonial-slide { display: none; animation: fadeIn .4s ease; }
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.stars { display: flex; justify-content: center; gap: .2rem; margin-bottom: 1.25rem; }
.testimonial-slide blockquote { font-family: var(--font-serif); font-size: 1.25rem; font-style: italic; font-weight: 300; color: rgba(250,247,242,.9); line-height: 1.6; margin-bottom: 1rem; }
.testimonial-slide cite { font-size: .85rem; color: var(--accent); font-style: normal; }
.testimonials-controls { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.testimonial-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center; transition: background var(--transition), color var(--transition); }
.testimonial-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.testimonial-dots { display: flex; gap: .5rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); transition: background var(--transition), width var(--transition); }
.dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ── Booking Wizard ─────────────────────────────────────────── */
.booking-wizard { max-width: 780px; margin: 0 auto; background: var(--card); border-radius: 1.75rem; box-shadow: var(--shadow-lg); overflow: hidden; scroll-margin-top: calc(var(--header-h) + 1rem); }
.wizard-steps { display: flex; align-items: center; padding: 1.4rem 1.5rem 1rem; gap: .5rem; overflow-x: auto; background: transparent; }
.wizard-step { display: flex; align-items: center; gap: .65rem; flex: 0 0 auto; opacity: 1; transition: opacity var(--transition); }
.step-separator { flex: 1 0 1.5rem; min-width: 1.5rem; height: 2px; background: var(--border); border-radius: 999px; }
.wizard-step.done + .step-separator { background: var(--accent); }
.step-num { flex-shrink: 0; width: 1.9rem; height: 1.9rem; border-radius: 999px; background: var(--secondary); color: var(--muted); display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 600; transition: background var(--transition), color var(--transition); }
.wizard-step.active .step-num { background: var(--primary); color: var(--primary-fg); }
.wizard-step.done .step-num { background: var(--accent); color: var(--primary); }
.step-label { font-size: .75rem; color: var(--muted); white-space: nowrap; font-weight: 500; }
.wizard-step.active .step-label { color: var(--primary); font-weight: 600; }
.wizard-step.done .step-label { color: var(--primary); }
.wizard-body { padding: 1rem 2.2rem 1rem; min-height: 200px; }
.wizard-panel { display: none; }
.wizard-panel.active { display: block; }
.wizard-nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem 1.5rem; border-top: 1px solid var(--border); }
.booking-wizard.step-date .wizard-nav { display: none !important; }
.booking-wizard.step-service .wizard-nav #btn-next,
.booking-wizard.step-duration .wizard-nav #btn-next,
.booking-wizard.step-time .wizard-nav #btn-next,
.booking-wizard.step-therapist .wizard-nav #btn-next { display: none !important; }

/* Calendar */
.booking-step-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.75rem; }
.booking-step-icon { width: 2.5rem; height: 2.5rem; border-radius: .95rem; background: var(--accent); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-step-title { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--primary); line-height: 1.1; }
.booking-step-subtitle { font-size: .89rem; color: var(--muted); margin-top: .05rem; }
.calendar-wrapper { user-select: none; max-width: 100%; }
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.calendar-header h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: var(--primary); text-transform: capitalize; }
.calendar-nav { width: 3rem; height: 3rem; border-radius: 1rem; display: flex; align-items: center; justify-content: center; background: var(--secondary); color: var(--primary); transition: background var(--transition), transform var(--transition); }
.calendar-nav:hover { background: var(--border); transform: translateY(-1px); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: .35rem .45rem; }
.calendar-dow { text-align: center; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding: .35rem 0 .55rem; font-weight: 500; }
.cal-day { display: flex; align-items: center; justify-content: center; min-height: 3rem; border-radius: 1rem; font-size: .9rem; font-weight: 600; color: var(--primary); cursor: pointer; transition: background var(--transition), color var(--transition), transform var(--transition); }
.cal-day:hover:not(.disabled):not(.past) { background: var(--secondary); }
.cal-day.selected { background: var(--secondary); color: var(--primary); }
.cal-day.today:not(.selected) { background: rgba(240,232,220,.55); }
.cal-day.disabled, .cal-day.past { opacity: .3; cursor: not-allowed; }
.cal-day.empty { cursor: default; background: transparent; }
.calendar-note { min-height: 1.2rem; margin-top: .8rem; font-size: .82rem; color: var(--muted); text-align: center; }

/* Booking service list */
.booking-services-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .625rem; }
.booking-durations-list { display: flex; flex-wrap: wrap; gap: .75rem; }
.booking-durations-list .booking-duration-btn { flex: 1 1 0; min-width: 100px; flex-direction: column; align-items: center; text-align: center; padding: 1.25rem 1rem; }
.booking-durations-list .bdur-icon { width: 36px; height: 36px; background: var(--secondary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: .5rem; }
.booking-durations-list .bdur-text { display: flex; flex-direction: column; gap: .2rem; }
.booking-durations-list .bdur-duration { font-weight: 600; font-size: 1rem; }
.booking-durations-list .bdur-price { font-size: .9rem; color: var(--accent); font-weight: 500; }
/* Couples massage info box */
.booking-couples-info { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 1.25rem; margin-bottom: 1.25rem; background: rgba(200,169,126,.12); border-radius: var(--radius); border: 1px solid rgba(200,169,126,.25); }
.booking-couples-info-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; }
.booking-couples-info-icon svg { width: 24px; height: 24px; }
.booking-couples-info-text { flex: 1; min-width: 0; }
.booking-couples-info-title { font-weight: 600; font-size: 1rem; color: var(--primary); margin: 0 0 .35rem 0; }
.booking-couples-info-desc { font-size: .875rem; color: var(--muted); line-height: 1.45; margin: 0; }

.booking-therapists-list { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; }
.booking-therapists-list .booking-therapist-btn { flex: 1 1 0; min-width: 140px; flex-direction: column; align-items: center; text-align: center; padding: 1.25rem 1rem; }
.booking-therapists-list .bthr-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; display: flex; align-items: center; justify-content: center; margin-bottom: .5rem; flex-shrink: 0; overflow: hidden; }
.booking-therapists-list .bthr-avatar img { width: 100%; height: 100%; object-fit: cover; }
.booking-therapists-list .bthr-avatar svg { width: 24px; height: 24px; }
.booking-therapists-list .bthr-info { display: flex; flex-direction: column; gap: .25rem; }
.booking-therapists-list .bthr-name { font-weight: 600; font-size: 1rem; }
.booking-therapists-list .bthr-services { font-size: .8rem; color: var(--muted); line-height: 1.3; }
.booking-therapists-list .bthr-desc { font-size: .85rem; color: var(--muted); font-weight: 400; }
.booking-service-btn { display: flex; align-items: flex-start; gap: 1rem; padding: .875rem 1.25rem; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); text-align: left; color: var(--primary); -webkit-tap-highlight-color: transparent; transition: border-color var(--transition), background var(--transition); width: 100%; }
.booking-service-btn .bsvc-text { display: flex; flex-direction: column; gap: .2rem; flex: 1; min-width: 0; }
.booking-service-btn .bsvc-name { font-weight: 500; font-size: .9rem; color: var(--primary); }
.booking-service-btn .bsvc-price { font-size: .8rem; color: var(--muted); }
.booking-duration-btn, .booking-therapist-btn { display: flex; align-items: center; gap: 1rem; padding: .875rem 1.25rem; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); text-align: left; color: var(--primary); -webkit-tap-highlight-color: transparent; transition: border-color var(--transition), background var(--transition); width: 100%; }
.booking-service-btn:hover, .booking-duration-btn:hover, .booking-therapist-btn:hover { border-color: var(--accent); background: var(--secondary); }
.booking-therapist-btn.disabled:hover { border-color: var(--border); background: var(--bg); }
.booking-service-btn.selected, .booking-duration-btn.selected, .booking-therapist-btn.selected { border-color: var(--accent); background: rgba(200,169,126,.1); }
/* Active (available) therapist — brighter, stands out */
.booking-therapists-list .booking-therapist-btn:not(.disabled) {
    background: rgba(200,169,126,.15);
    border-color: rgba(200,169,126,.5);
    box-shadow: 0 2px 8px rgba(200,169,126,.12);
}
.booking-therapists-list .booking-therapist-btn:not(.disabled):hover {
    background: rgba(200,169,126,.22);
    border-color: var(--accent);
}
.booking-therapists-list .booking-therapist-btn:not(.disabled).selected {
    background: rgba(200,169,126,.25);
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(200,169,126,.2);
}
/* Unavailable therapist — muted (no opacity on card so button stays bright) */
.booking-therapist-btn.disabled { cursor: default; background: var(--bg); }
.booking-therapist-btn.disabled .bthr-avatar { opacity: .5; }
.booking-therapist-btn.disabled .bthr-name { opacity: .65; }
.booking-therapist-btn.disabled .bthr-services { opacity: .5; }
.booking-therapist-btn.disabled .bthr-available-hint { display: block; font-size: .8rem; color: var(--muted); margin-top: .35rem; opacity: .9; }
/* View schedule — bright button on inactive card */
.booking-therapist-btn.disabled .bthr-view-schedule {
    display: flex; align-items: center; justify-content: center; margin-top: .75rem; padding: 0 1.25rem; min-height: 40px;
    background: var(--accent-dark);
    color: #fff; border: none; border-radius: var(--radius); font-size: .85rem; font-weight: 500;
    text-decoration: none; text-transform: uppercase; letter-spacing: .06em; text-align: center;
    cursor: pointer; pointer-events: auto; transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(200,169,126,.4);
    touch-action: manipulation; -webkit-tap-highlight-color: rgba(0,0,0,.1);
}
.booking-therapist-btn.disabled .bthr-view-schedule:hover {
    background: #b8956a;
    color: #fff; transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200,169,126,.5);
}
.bthr-view-schedule { display: inline-block; margin-top: .5rem; font-size: .85rem; font-weight: 600; color: var(--accent); text-decoration: underline; -webkit-tap-highlight-color: transparent; }
.bthr-view-schedule:hover { color: var(--accent-dark); }
.bsvc-icon { flex-shrink: 0; width: 36px; height: 36px; background: var(--secondary); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.bsvc-name { font-weight: 500; font-size: .9rem; color: var(--primary); }
.bsvc-price { font-size: .8rem; color: var(--muted); }
.bdur-duration { flex: 1; font-weight: 500; font-size: .95rem; color: var(--primary); }
.bdur-price { font-size: 1rem; font-weight: 600; color: var(--accent); }

/* Time slots */
.booking-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: .625rem; }
.slot-btn { padding: .625rem; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .875rem; font-weight: 500; color: var(--primary); -webkit-tap-highlight-color: transparent; transition: border-color var(--transition), background var(--transition); }
.slot-btn:hover { border-color: var(--accent); background: var(--secondary); }
.slot-btn.selected { border-color: var(--accent); background: rgba(200,169,126,.1); color: var(--primary); }
.slots-loading, .no-slots { text-align: center; color: var(--muted); padding: 2rem 0; grid-column: 1 / -1; }

/* Time Slots Cards Grid (NEW) */
.slots-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; }
.slot-card { display: flex; flex-direction: column; align-items: center; gap: .6rem; padding: 1rem .75rem; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius-lg); cursor: pointer; transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition); -webkit-tap-highlight-color: transparent; text-align: center; }
.slot-card:hover { border-color: var(--accent); background: var(--secondary); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(200,169,126,.15); }
.slot-card.selected { border-color: var(--accent); background: rgba(200,169,126,.15); box-shadow: 0 4px 16px rgba(200,169,126,.2); }
.slot-card-time { font-size: 1.15rem; font-weight: 700; color: var(--primary); letter-spacing: .02em; }
.slot-card-therapists { display: flex; flex-direction: column; align-items: center; gap: .3rem; }
.slot-card-avatars { display: flex; gap: -.25rem; justify-content: center; }
.slot-card-avatar { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--card); object-fit: cover; display: block; flex-shrink: 0; }
.slot-card-avatar + .slot-card-avatar { margin-left: -.5rem; }
.slot-card-avatar-letter { background: var(--accent); color: #fff; font-size: .7rem; font-weight: 600; display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); }
.slot-card-therapist-name { font-size: .78rem; color: var(--muted); font-weight: 500; line-height: 1.2; }
.slot-card-therapist-count { font-size: .75rem; color: var(--accent-dark); font-weight: 600; }

/* Compare durations button */
.btn-compare-durations { display: none; align-items: center; gap: .5rem; margin: 1.25rem auto 0; padding: .6rem 1.25rem; background: transparent; border: 1.5px solid var(--border); border-radius: var(--radius-full); color: var(--muted); font-size: .85rem; font-weight: 500; cursor: pointer; transition: border-color var(--transition), color var(--transition), background var(--transition); }
.btn-compare-durations:hover { border-color: var(--accent); color: var(--accent-dark); background: rgba(200,169,126,.06); }
.btn-compare-durations svg { flex-shrink: 0; color: var(--accent); }

/* Duration comparison block */
.duration-compare { margin-top: 1rem; display: flex; flex-direction: column; gap: .75rem; animation: fadeIn .3s ease; }
.duration-compare-row { background: var(--secondary); border-radius: var(--radius); padding: 1rem 1.25rem; border: 1px solid var(--border); }
.duration-compare-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: .5rem; flex-wrap: wrap; gap: .5rem; }
.duration-compare-label { display: flex; align-items: center; gap: .5rem; }
.duration-compare-label strong { font-size: 1rem; color: var(--primary); }
.duration-compare-price { font-size: .875rem; color: var(--accent-dark); font-weight: 600; }
.duration-compare-count { font-size: .8rem; font-weight: 500; padding: .2rem .65rem; border-radius: var(--radius-full); }
.duration-compare-count.count-many { background: rgba(72,187,120,.15); color: #276749; }
.duration-compare-count.count-some { background: rgba(236,201,75,.15); color: #975a16; }
.duration-compare-count.count-none { background: rgba(229,62,62,.1); color: #c53030; }
.duration-compare-slots { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .25rem; }
.duration-compare-slot { padding: .4rem .75rem; background: var(--card); border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .82rem; font-weight: 500; color: var(--primary); cursor: pointer; transition: border-color var(--transition), background var(--transition), transform var(--transition); }
.duration-compare-slot:hover { border-color: var(--accent); background: rgba(200,169,126,.1); transform: translateY(-1px); }

/* After-hours hint banner */
.after-hours-hint { display: flex; align-items: flex-start; gap: 1rem; margin-top: 1.5rem; padding: 1.25rem 1.5rem; background: linear-gradient(135deg, rgba(200,169,126,.08), rgba(200,169,126,.15)); border: 1px solid rgba(200,169,126,.3); border-radius: var(--radius-lg); animation: fadeIn .4s ease; }
.after-hours-hint-icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: rgba(200,169,126,.2); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; }
.after-hours-hint-body { flex: 1; min-width: 0; }
.after-hours-hint-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--primary); margin: 0 0 .35rem; line-height: 1.3; }
.after-hours-hint-text { font-size: .875rem; color: var(--muted); line-height: 1.55; margin: 0 0 .85rem; }
.after-hours-hint-cta { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.25rem; background: var(--accent-dark); color: #fff; border-radius: var(--radius-full); font-size: .85rem; font-weight: 600; text-decoration: none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); letter-spacing: .02em; white-space: nowrap; }
.after-hours-hint-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.after-hours-hint-cta:hover { background: var(--accent-darker); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,169,126,.35); }
@media (max-width: 768px) {
    .after-hours-hint { flex-direction: column; align-items: center; text-align: center; gap: .75rem; padding: 1.25rem 1rem; }
    .after-hours-hint-body { display: flex; flex-direction: column; align-items: center; }
}

/* Nearest available days suggestion */
.nearest-days-suggest { margin-top: 1.25rem; animation: fadeIn .4s ease; }
.nearest-days-loading { display: flex; align-items: center; justify-content: center; gap: .6rem; text-align: center; color: var(--muted); font-size: .9rem; padding: 1rem 0; }
.nearest-days-spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: ndSpin .7s linear infinite; flex-shrink: 0; }
@keyframes ndSpin { to { transform: rotate(360deg); } }
.nearest-days-title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--primary); margin: 0 0 .75rem; text-align: center; }
.nearest-days-cards { display: flex; flex-direction: column; gap: .6rem; }
.nearest-day-card { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: linear-gradient(135deg, rgba(200,169,126,.06), rgba(200,169,126,.14)); border: 1.5px solid rgba(200,169,126,.3); border-radius: var(--radius-lg); cursor: pointer; transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition); -webkit-tap-highlight-color: transparent; text-align: left; width: 100%; }
.nearest-day-card:hover { border-color: var(--accent); background: rgba(200,169,126,.18); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(200,169,126,.2); }
.nearest-day-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: rgba(200,169,126,.2); color: var(--accent-dark); display: flex; align-items: center; justify-content: center; }
.nearest-day-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.nearest-day-name { font-weight: 600; font-size: .95rem; color: var(--primary); }
.nearest-day-count { font-size: .82rem; color: var(--accent-dark); font-weight: 500; }
.nearest-day-arrow { flex-shrink: 0; color: var(--accent); opacity: .6; transition: opacity var(--transition), transform var(--transition); }
.nearest-day-card:hover .nearest-day-arrow { opacity: 1; transform: translateX(3px); }
.nearest-days-empty { text-align: center; padding: .75rem 0; }
.nearest-days-empty-text { font-size: .9rem; color: var(--muted); margin: 0 0 .75rem; line-height: 1.5; }
.nearest-days-call-btn { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1.25rem; background: var(--accent-dark); color: #fff; border-radius: var(--radius-full); font-size: .85rem; font-weight: 600; text-decoration: none; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.nearest-days-call-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.nearest-days-call-btn:hover { background: var(--accent-darker); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(200,169,126,.35); }

/* Duration switch modal */
.duration-switch-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.duration-switch-modal.visible { display: flex; }
.duration-switch-backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.5); backdrop-filter: blur(4px); }
.duration-switch-dialog { position: relative; z-index: 1; background: var(--card); border-radius: 1.5rem; box-shadow: 0 20px 60px rgba(61,44,35,.25); max-width: 420px; width: 100%; padding: 2.5rem 2rem 2rem; text-align: center; animation: fadeIn .25s ease; }
.duration-switch-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(200,169,126,.15); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.duration-switch-title { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: var(--primary); margin: 0 0 .75rem; }
.duration-switch-text { font-size: .9rem; color: var(--muted); line-height: 1.55; margin: 0 0 1.5rem; }
.duration-switch-actions { display: flex; flex-direction: column; gap: .75rem; }
.duration-switch-actions .btn { width: 100%; justify-content: center; }

/* Booking summary */
.booking-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.booking-summary-box { background: var(--secondary); border-radius: var(--radius); padding: 1.5rem; height: fit-content; }
.booking-summary-box h4 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; margin-bottom: 1rem; color: var(--primary); }
.summary-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .85rem; }
.summary-row:last-child { border-bottom: none; }
.summary-row .summary-label { display: flex; align-items: center; gap: .5rem; color: var(--muted); }
.summary-row .summary-label svg { flex-shrink: 0; color: var(--accent); }
.summary-row span:last-child { font-weight: 500; }

/* Form */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .8rem; font-weight: 500; color: var(--primary); margin-bottom: .35rem; }
.form-group input,
.form-group textarea,
.form-group select { width: 100%; padding: .625rem .875rem; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--bg); color: var(--fg); font-size: .9rem; transition: border-color var(--transition); outline: none; }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input.error { border-color: #e53e3e; }
.form-group textarea { resize: vertical; min-height: 80px; }

/* Booking success */
.booking-success { padding: 3rem 2rem; text-align: center; display: none; }
.booking-success.visible { display: block; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(200,169,126,.15); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.booking-success h3 { font-family: var(--font-serif); font-size: 1.75rem; color: var(--primary); margin-bottom: .75rem; }
.booking-success p { color: var(--muted); max-width: 400px; margin: 0 auto .75rem; }
.success-calendar-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; margin: 1.25rem 0 1.5rem; }
.success-calendar-actions .btn { display: inline-flex; align-items: center; gap: .5rem; }

/* ── Gift certificates ───────────────────────────────────────── */
.gift-section { position: relative; overflow: hidden; }
.gift-section-line { position: absolute; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(61,44,35,.2), transparent); }
.gift-section-line--top { top: 0; }
.gift-section-line--bottom { bottom: 0; }
.gift-container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.gift-header { margin-bottom: 3rem; }
.gift-header-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(200,169,126,.15); color: var(--accent); margin-bottom: 1rem; }
.gift-header-icon svg { width: 28px; height: 28px; }
.gift-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 300; color: var(--primary); margin-bottom: .75rem; }
.gift-title-underline { width: 80px; height: 2px; background: var(--primary); margin: 0 auto 1.25rem; }
.gift-desc { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.gift-main-card { background: var(--card); border: 1px solid rgba(61,44,35,.15); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 3rem; box-shadow: var(--shadow); }
.gift-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.gift-visual { position: relative; }
.gift-visual-inner { background: linear-gradient(135deg, rgba(61,44,35,.08), rgba(61,44,35,.04)); border: 1px solid rgba(61,44,35,.2); border-radius: var(--radius); padding: 2rem; position: relative; overflow: hidden; }
.gift-visual-sparkle { position: absolute; top: 1rem; right: 1rem; color: rgba(200,169,126,.5); }
.gift-visual-brand { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(61,44,35,.6); margin-bottom: .5rem; }
.gift-visual-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--primary); margin-bottom: .75rem; }
.gift-visual-line { width: 48px; height: 2px; background: rgba(61,44,35,.35); margin-bottom: 1rem; }
.gift-visual-text { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.gift-visual-validity { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--muted); }
.gift-visual-validity svg { flex-shrink: 0; color: var(--accent); }
.gift-no-refund { margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(61,44,35,.1); font-size: .8rem; color: var(--muted); line-height: 1.5; text-align: center; max-width: 420px; }
.gift-no-refund-star { color: var(--accent); font-weight: 500; margin-right: .25em; }
.gift-info-title { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; color: var(--primary); margin-bottom: .75rem; }
.gift-info-desc { color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.gift-info-address { display: flex; align-items: center; gap: .75rem; color: var(--primary); font-size: .95rem; }
.gift-info-address svg { flex-shrink: 0; color: var(--accent); }
.gift-packages { margin-bottom: 3rem; }
.gift-packages-header { text-align: center; margin-bottom: 2rem; }
.gift-packages-title { font-family: var(--font-serif); font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 400; color: var(--primary); margin-bottom: .5rem; display: flex; align-items: center; justify-content: center; gap: .75rem; }
.gift-packages-title svg { color: var(--accent); flex-shrink: 0; }
.gift-packages-desc { color: var(--muted); font-size: .95rem; }
.gift-packages-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.gift-package-card { background: var(--card); border: 1px solid rgba(61,44,35,.15); border-radius: var(--radius); padding: 2rem; text-align: center; position: relative; transition: border-color var(--transition), box-shadow var(--transition); }
.gift-package-card:hover { border-color: rgba(200,169,126,.4); box-shadow: var(--shadow); }
.gift-package-card--featured { border-color: rgba(200,169,126,.4); background: linear-gradient(180deg, rgba(200,169,126,.06), var(--card)); }
.gift-package-badge-top { position: absolute; top: .75rem; right: .75rem; background: var(--primary); color: var(--primary-fg); font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: .35rem .65rem; border-radius: var(--radius-full); }
.gift-package-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(200,169,126,.15); color: var(--accent); margin-bottom: 1rem; }
.gift-package-icon-inner { display: inline-flex; align-items: center; gap: 0.08em; font-family: var(--font-sans); font-size: 1.45rem; font-weight: 500; }
.gift-package-icon .gift-package-times { font-size: 1.45rem; font-weight: 500; line-height: 1; }
.gift-package-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--primary); margin-bottom: .75rem; }
.gift-package-badge { display: inline-block; padding: .4rem 1rem; border-radius: var(--radius-full); font-size: .8rem; font-weight: 600; margin-bottom: 1rem; }
.gift-package-badge--5 { background: rgba(200,169,126,.2); color: var(--accent-darker); }
.gift-package-badge--10 { background: rgba(61,44,35,.15); color: var(--primary); }
.gift-package-desc { font-size: .9rem; color: var(--muted); line-height: 1.6; margin: 0; }
.gift-occasions { text-align: center; }
.gift-occasions-label { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.gift-occasions-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.gift-occasion-tag { padding: .5rem 1.25rem; background: var(--secondary); border: 1px solid rgba(61,44,35,.1); border-radius: var(--radius-full); font-size: .875rem; color: var(--muted); transition: border-color var(--transition), color var(--transition); }
.gift-occasion-tag:hover { border-color: var(--accent); color: var(--primary); }
@media (max-width: 768px) {
    .gift-main-grid { grid-template-columns: 1fr; }
    .gift-packages-grid { grid-template-columns: 1fr; }
    .gift-main-card { padding: 1.5rem; }
}

/* ── Contact ─────────────────────────────────────────────────── */
.contact-section { display: flex; flex-direction: column; gap: 2rem; }
.contact-header { text-align: center; margin-bottom: 0.5rem; }
.contact-header .section-label,
.contact-header .section-title { text-align: center; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.contact-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; padding: 1.5rem 1rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); text-decoration: none; color: inherit; transition: border-color var(--transition), box-shadow var(--transition); }
.contact-card:hover { border-color: rgba(200,169,126,.4); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.contact-card strong { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--primary); }
.contact-card p { font-size: .9rem; color: var(--muted); margin: 0; line-height: 1.4; }
.contact-card a { color: inherit; }
.contact-card-icon { flex-shrink: 0; width: 56px; height: 56px; border-radius: 0.75rem; background: rgba(200,169,126,.15); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.contact-card-icon svg { width: 24px; height: 24px; }
.contact-map { width: 100%; margin-top: 0.5rem; }
.contact-map iframe { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--primary); color: rgba(250,247,242,.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: var(--primary-fg); display: inline-block; margin-bottom: .75rem; }
.footer-brand p { font-size: .875rem; max-width: 280px; line-height: 1.6; }
.footer-nav strong, .footer-contact strong { display: block; color: var(--primary-fg); font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 1rem; }
.footer-nav nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav a { font-size: .875rem; transition: color var(--transition); }
.footer-nav a:hover { color: var(--accent); }
.footer-contact p { font-size: .875rem; margin-bottom: .4rem; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: center; align-items: center; padding: 1.25rem 0; font-size: .8rem; opacity: .5; text-align: center; }

/* Therapist schedule modal */
.therapist-schedule-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.therapist-schedule-modal.visible { display: flex; }
.therapist-schedule-backdrop { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,.5); }
.therapist-schedule-dialog { position: relative; z-index: 1; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 480px; width: 100%; max-height: 85vh; overflow: hidden; display: flex; flex-direction: column; }
.therapist-schedule-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.therapist-schedule-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--primary); margin: 0; }
.therapist-schedule-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; line-height: 1; color: var(--muted); background: none; border: none; cursor: pointer; border-radius: 50%; transition: color var(--transition), background var(--transition); }
.therapist-schedule-close:hover { color: var(--fg); background: var(--secondary); }
.therapist-schedule-body { padding: 1.5rem; overflow-y: auto; flex: 1; }
.therapist-schedule-loading { text-align: center; color: var(--muted); margin: 0; }
.therapist-schedule-days { display: flex; flex-direction: column; }
.therapist-schedule-day { padding: 1rem; background: var(--secondary); border-radius: var(--radius); margin-bottom: 1.25rem; }
.therapist-schedule-day:last-child { margin-bottom: 0; }
.therapist-schedule-day-empty .therapist-schedule-day-title { opacity: .75; }
.therapist-schedule-no-slots { font-size: .875rem; color: var(--muted); font-style: italic; }
.therapist-schedule-day-title { font-weight: 600; font-size: .95rem; color: var(--primary); margin-bottom: .75rem; }
.therapist-schedule-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(4.5rem, 1fr)); gap: .5rem; }
.therapist-schedule-slot { padding: .5rem .5rem; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); font-size: .875rem; font-weight: 500; color: var(--primary); cursor: pointer; transition: border-color var(--transition), background var(--transition); text-align: center; min-width: 0; }
.therapist-schedule-slot:hover { border-color: var(--accent); background: rgba(200,169,126,.1); }
.therapist-schedule-empty { text-align: center; color: var(--muted); font-size: .9rem; padding: 2rem 0; }

/* Cookie consent banner */
/* Cookie settings icon — закреплённая иконка для повторного открытия баннера */
.cookie-settings-btn { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 54; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: var(--primary); color: var(--primary-fg); border-radius: 50%; box-shadow: 0 4px 16px rgba(61,44,35,.25); transition: transform .2s ease, box-shadow .2s ease; }
.cookie-settings-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(61,44,35,.35); }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 55; background: var(--primary); color: var(--primary-fg); padding: 1rem 0; box-shadow: 0 -4px 20px rgba(0,0,0,.15); transform: translateY(100%); transition: transform .35s ease; pointer-events: none; }
.cookie-banner.visible { transform: translateY(0); pointer-events: auto; }
.cookie-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner-text { margin: 0; font-size: .9rem; line-height: 1.5; opacity: .95; flex: 1; min-width: 200px; }
.cookie-banner-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.cookie-banner-link { color: rgba(250,247,242,.85); text-decoration: underline; font-size: .875rem; transition: color var(--transition); }
.cookie-banner-link:hover { color: var(--accent); }
.cookie-banner-accept { background: var(--accent-dark) !important; color: var(--primary) !important; }
.cookie-banner-accept:hover { background: var(--accent-darker) !important; color: var(--primary) !important; }
.cookie-btn-outline { border-color: rgba(250,247,242,.5) !important; color: var(--primary-fg) !important; }
.cookie-btn-outline:hover { border-color: var(--accent) !important; color: var(--accent) !important; }
.cookie-banner-inner { flex-wrap: wrap; }
.cookie-banner-settings { width: 100%; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.2); }
.cookie-settings-title { font-size: 1rem; font-weight: 600; margin: 0 0 1rem; color: var(--primary-fg); }
.cookie-setting-item { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.cookie-setting-item:last-of-type { border-bottom: none; }
.cookie-setting-info strong { display: block; font-size: .9rem; }
.cookie-setting-info p { margin: .25rem 0 0; font-size: .8rem; opacity: .85; }
.cookie-setting-badge { font-size: .75rem; opacity: .8; }
.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle span { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,.3); border-radius: 24px; transition: .3s; }
.cookie-toggle span:before { content: ''; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: .3s; }
.cookie-toggle input:checked + span { background: var(--accent); }
.cookie-toggle input:checked + span:before { transform: translateX(20px); }
.cookie-settings-actions { margin-top: 1rem; }
@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-banner-actions { justify-content: center; flex-wrap: wrap; }
    .cookie-setting-item { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ── Mobile CTA ─────────────────────────────────────────────── */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); padding: .875rem 1.25rem; display: none; gap: .75rem; z-index: 50; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-cta .btn { flex: 1; justify-content: center; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .nav-desktop { display: none; }
    .header-inner .header-actions { margin-left: auto !important; }
    .burger-btn { display: flex; }
    .mobile-phone-btn { display: flex; }
    .header-actions .btn-sm { display: none; }
    .about-image { order: -1; }
    .about-image img { height: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .cookie-settings-btn { bottom: 5rem; }
    .testimonials-track { min-height: 240px; height: 240px; }
    .hero-title { font-size: 8vw !important; font-weight: 600 !important; }
    .booking-services-list { grid-template-columns: 1fr; }
    .booking-wizard { border-radius: 1.25rem; }
    .wizard-steps { gap: .35rem; padding: 1rem 1rem .75rem; }
    .step-label { display: none; }
    .step-separator { min-width: 0.5rem; flex: 1 0 0.75rem; height: 1px; }
    .booking-step-head { margin-bottom: 1.25rem; }
    .booking-step-icon { width: 2.5rem; height: 2.5rem; border-radius: .85rem; }
    .booking-step-title { font-size: 1.2rem; }
    .calendar-nav { width: 2.75rem; height: 2.75rem; }
    .cal-day { min-height: 3.25rem; font-size: .98rem; border-radius: .9rem; }
    .booking-details-grid { grid-template-columns: 1fr; }
    .mobile-cta { display: flex; }
    body { padding-bottom: 70px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .booking-therapists-list { flex-direction: column; }
    .booking-therapists-list .booking-therapist-btn { flex: 0 0 auto; min-width: 100%; width: 100%; }
    .booking-therapist-btn.disabled .bthr-view-schedule { min-height: 40px; }
}

@media (max-width: 600px) {
    .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section { padding: 3.5rem 0; }
    .wizard-body { padding: 1.25rem 1.25rem .75rem; }
    .wizard-nav { padding: .875rem 1.25rem 1.25rem; }
    .calendar-grid { gap: .25rem; }
    .calendar-dow { font-size: .68rem; }
    .cal-day { min-height: 3rem; font-size: .92rem; border-radius: .8rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; justify-content: center; }
    .booking-therapists-list .booking-therapist-btn { min-width: 100%; width: 100%; }
    .booking-therapist-btn.disabled .bthr-view-schedule { min-height: 40px; }
}
