/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold:    #c5a880;
    --dark:    #1a1613;
    --red-bg:  #470f0a;
    --white:   #ffffff;
    --cream:   #e0dcd3;
    --gold-light: #d4b896;
    --border:  rgba(197,168,128,0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--red-bg);
    color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================================
   SCROLL FIX FOR HOME
   ========================================= */
#home {
    scroll-margin-top: 115px;
}

/* =========================================
   LOGO WRAPPER
   ========================================= */
.logo-wrapper {
    background-color: var(--red-bg);
    display: flex;
    justify-content: center;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1100;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 60px;
}

.logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* =========================================
   HEADER / NAVBAR
   ========================================= */
header {
    background-color: var(--dark);
    position: sticky;
    top: 60px;
    z-index: 1000;
    border-bottom: 1px solid var(--gold);
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: var(--gold);
}

/* Burger */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: 0.3s;
}

/* =========================================
   LANGUAGE SWITCHER
   ========================================= */
.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background-color: var(--dark);
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.lang-btn:hover {
    background-color: var(--gold);
    color: var(--dark);
}

.lang-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--dark);
    border: 1px solid var(--gold);
    list-style: none;
    padding: 5px 0;
    margin-top: 5px;
    border-radius: 4px;
    min-width: 160px;
    z-index: 1010;
    max-height: 340px;
    overflow-y: auto;
}

.lang-dropdown.show {
    display: block;
}

.lang-dropdown li button {
    background: none;
    border: none;
    color: var(--white);
    width: 100%;
    text-align: left;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
    white-space: nowrap;
}

.lang-dropdown li button:hover {
    background-color: var(--gold);
    color: var(--dark);
}

/* =========================================
   HERO
   ========================================= */
#home.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 70px 20px 50px;
    background: radial-gradient(ellipse at center, #6b1510 0%, var(--red-bg) 70%);
}

.hero h1 {
    color: var(--gold);
    font-size: 42px;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 18px;
    max-width: 620px;
    margin-bottom: 40px;
    color: var(--cream);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 360px;
    margin-bottom: 0;
}

/* =========================================
   SALON PHOTO SCROLL (Hero)
   ========================================= */
.salon-gallery {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 40px;
    text-align: center;
}

.salon-scroll-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255,255,255,0.05);
    max-width: 100%;
    width: 100%;   /* ← добавь эту строку */
}

.salon-scroll-track::-webkit-scrollbar {
    height: 4px;
}
.salon-scroll-track::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
}
.salon-scroll-track::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 2px;
}

.salon-thumb {
    flex: 0 0 320px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.25s, transform 0.25s;
    position: relative;
    background: rgba(255,255,255,0.04);
}

.salon-thumb:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.salon-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.salon-thumb:hover img {
    transform: scale(1.05);
}

.salon-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}

.salon-thumb:hover .salon-thumb-overlay {
    background: rgba(0,0,0,0.25);
}

.salon-thumb-overlay svg {
    opacity: 0;
    transition: opacity 0.25s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.salon-thumb:hover .salon-thumb-overlay svg {
    opacity: 1;
}

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 10px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 9001;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--dark);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 9001;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--dark);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    letter-spacing: 1px;
}

/* =========================================
   BTN
   ========================================= */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn:active {
    transform: scale(0.98);
}

.btn-whatsapp {
    background-color: #14a649;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-telegram {
    background-color: #0088CC;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

/* =========================================
   SECTIONS
   ========================================= */
.section {
    padding: 70px 20px;
}

.section-dark {
    background-color: rgba(0,0,0,0.25);
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    color: var(--gold);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gold);
}

/* =========================================
   PRICE LIST
   ========================================= */
.price-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    overflow: hidden;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.price-tab {
    background: none;
    border: none;
    color: var(--gold);
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.price-tab.active {
    background-color: var(--gold);
    color: var(--dark);
}

.price-tab:hover:not(.active) {
    background-color: rgba(197,168,128,0.1);
}

.price-table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    overflow: hidden;
}

.price-table thead {
    background-color: var(--gold);
    color: var(--dark);
}

.price-table th,
.price-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 15px;
}

.price-table th:first-child,
.price-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.price-table th {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.price-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: rgba(197,168,128,0.08);
}

.price-table tbody td {
    color: var(--cream);
}

.price-table tbody td:not(:first-child) {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.price-currency {
    text-align: center;
    margin-top: 16px;
    color: rgba(197,168,128,0.7);
    font-size: 13px;
    font-style: italic;
}

/* =========================================
   THERAPISTS
   ========================================= */
.therapists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.therapist-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.therapist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Slider */
.therapist-slider {
    position: relative;
    overflow: hidden;
    height: 280px;
    user-select: none;
}

.therapist-slides {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

.therapist-slide {
    min-width: 100%;
    height: 100%;
    cursor: pointer;
}

.therapist-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    position: relative;
}

.therapist-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zoom icon on therapist slide hover */
.therapist-slide-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    transition: background 0.25s;
    pointer-events: none;
}

.therapist-slide:hover .therapist-slide-zoom {
    background: rgba(0,0,0,0.25);
}

.therapist-slide-zoom svg {
    opacity: 0;
    transition: opacity 0.25s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.therapist-slide:hover .therapist-slide-zoom svg {
    opacity: 1;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.45);
    border: none;
    color: var(--white);
    font-size: 22px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
    padding: 0;
    padding-bottom: 2px;
    z-index: 2;
}

.slide-btn:hover {
    background: rgba(197,168,128,0.7);
}

.slide-btn.prev { left: 8px; padding-right: 2px; }
.slide-btn.next { right: 8px; padding-left: 2px; }

.slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transition: background 0.3s;
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
}

/* Therapist Info */
.therapist-info {
    padding: 18px;
}

.therapist-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.therapist-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.therapist-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--cream);
}

.english-level {
    font-size: 13px;
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.eng-bar {
    flex: 1;
    min-width: 60px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
}

.eng-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #e8c878);
    border-radius: 3px;
    transition: width 0.5s ease;
}

.eng-label {
    font-weight: 600;
    color: var(--gold);
    font-size: 12px;
    min-width: 40px;
}

/* =========================================
   TREATMENTS
   ========================================= */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.treatment-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.treatment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: var(--gold);
}

.treatment-icon {
    font-size: 40px;
    margin-bottom: 14px;
}

.treatment-card h3 {
    font-size: 17px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 700;
}

.treatment-card p {
    font-size: 13px;
    color: var(--cream);
    line-height: 1.65;
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-top: 20px;
}

.faq-intro {
    padding-top: 8px;
}

.faq-intro p {
    color: var(--cream);
    opacity: 0.75;
    line-height: 1.7;
    font-size: 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
    border-top: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    gap: 16px;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-question[aria-expanded="true"] {
    color: var(--gold);
}

.faq-icon {
    font-size: 0.75rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-question[aria-expanded="false"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-answer.open {
    max-height: 400px;
}

.faq-answer p {
    color: var(--cream);
    opacity: 0.85;
    line-height: 1.75;
    padding-bottom: 20px;
    font-size: 0.95rem;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--cream);
    font-size: 15px;
}

.contact-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    flex: 1;
    min-width: 140px;
    padding: 12px 16px;
    font-size: 14px;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

/* =========================================
   LANG MODAL (mobile language picker)
   ========================================= */
#lang-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

#lang-modal.show {
    display: flex;
}

#lang-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

#lang-modal-list {
    position: relative;
    z-index: 1;
    background: rgba(20, 17, 15, 0.96);
    border: 1px solid var(--gold);
    border-radius: 14px;
    list-style: none;
    padding: 8px 0;
    width: 240px;
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

#lang-modal-list li button {
    background: none;
    border: none;
    color: var(--white);
    width: 100%;
    text-align: left;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.15s;
    white-space: nowrap;
}

#lang-modal-list li button:hover,
#lang-modal-list li button:active {
    background-color: var(--gold);
    color: var(--dark);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
    background-color: var(--dark);
    text-align: center;
    padding: 24px 20px;
    color: rgba(197,168,128,0.6);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

/* =========================================
   MOBILE STICKY "BOOK NOW" BUTTON
   На десктопе скрыта, на мобильных — фиксирована снизу.
   Логика появления — в мобильном @media ниже.
   ========================================= */
.mobile-book-now {
    display: none; /* по умолчанию скрыта (десктоп) */
}

/* =========================================
   MOBILE (@media max-width: 768px)
   ========================================= */
@media (max-width: 768px) {

    .logo-wrapper {
        top: 0;
        padding: 0;
    }

    .logo { height: 50px; }

    header {
        top: 50px;
    }

    /* --- Sticky Book Now: показываем только на мобильных --- */
    .mobile-book-now {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1100;
        padding: 14px 20px;
        background-color: #14a649; /* фирменный зелёный WhatsApp */
        color: var(--white);
        text-decoration: none;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        border-top: 2px solid var(--gold);
        box-shadow: 0 -4px 16px rgba(0,0,0,0.35);
        /* учёт safe-area на iPhone с «чёлкой» */
        padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
        transition: background-color 0.25s;
    }

    .mobile-book-now:hover,
    .mobile-book-now:active {
        background-color: #0e8a3c;
    }

    .mobile-book-now svg {
        flex-shrink: 0;
    }

    /* Чтобы sticky-кнопка не перекрывала футер и нижний контент */
    body {
        padding-bottom: 70px;
    }

    /* Скрываем обычные WhatsApp-кнопки и их контейнеры на мобильных
       (верхняя в hero и нижняя в блоке контактов) — их заменяет sticky-кнопка.
       Если в будущем в эти блоки добавятся другие кнопки (например, Telegram),
       прячьте только .btn-whatsapp, а .cta-buttons / .contact-buttons оставьте. */
    .cta-buttons,
    .contact-buttons {
        display: none;
    }

    .navbar {
        justify-content: center;
        padding: 18px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.90);
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        text-align: center;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item a {
        color: var(--dark);
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(197,168,128,0.2);
        font-size: 15px;
    }

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

    .nav-item a:hover {
        background-color: var(--gold);
        color: var(--white);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile lang switcher */
    .lang-switcher {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 15px 0;
        position: relative;
    }

    .lang-btn {
        padding: 10px 20px;
        margin: 0 auto;
    }

    .lang-dropdown {
        position: absolute;
        bottom: calc(100% - 5px);
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(20, 17, 15, 0.92);
        border: 1px solid var(--gold);
        width: 200px;
        margin-bottom: 8px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.4);
        border-radius: 8px;
    }

    .lang-dropdown li button {
        color: var(--white);
    }

    .lang-dropdown li button:hover {
        background-color: var(--gold);
        color: var(--dark);
    }

    /* Lang overlay backdrop - handled by #lang-modal now */

    /* Hero */
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 15px; }

    /* Sections */
    .section { padding: 50px 16px; }
    .section-title { font-size: 24px; }

    /* Price */
    .price-tab { padding: 11px 24px; font-size: 13px; }
    .price-table th, .price-table td { padding: 10px 12px; font-size: 13px; }

    /* Therapists */
    .therapists-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .therapist-slider { height: 320px; }
    .therapist-photo-placeholder img { object-position: top center; }

    /* Treatments */
    .treatments-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .treatment-card { padding: 20px 16px; }

    /* FAQ */
	.faq-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Salon gallery */
    .salon-thumb {
        flex: 0 0 240px;
        height: 170px;
    }

    /* Lightbox nav on mobile */
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

@media (max-width: 480px) {
    .therapists-grid { grid-template-columns: 1fr; }
    .therapist-slider { height: 380px; }
    .treatments-grid { grid-template-columns: 1fr; }
    .price-tab { padding: 10px 18px; }
}