.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--gold);
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--gold);
}

:root {
    --bg-main: #0d0e11;
    --bg-card: #16181d;
    --bg-card-hover: #1e2127;
    --gold: #d4af37;
    --gold-hover: #e5c158;
    --text-white: #f5f5f7;
    --text-gray: #a1a1aa;
    --whatsapp: #25d366;
    --border-color: rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 16px 0;
    background: rgba(13, 14, 17, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location-badge {
    font-size: 13px;
    color: var(--text-gray);
}

.btn-call-header {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-call-header:hover {
    background: var(--gold);
    color: #000;
}

/* Hero */
.hero {
    padding: 50px 0 40px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.badge-gold {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 25px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Happy Hours Banner */
.happy-hours-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(22, 24, 29, 0.9));
    border: 1px solid var(--gold);
    border-radius: 14px;
    max-width: 550px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.hh-badge {
    background: var(--gold);
    color: #000;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    white-space: nowrap;
}

.hh-content h3 {
    font-size: 15px;
    margin-bottom: 2px;
}

.hh-content p {
    font-size: 13px;
    color: var(--text-gray);
}

.hh-content strong {
    color: #22c55e;
}

.old-price {
    text-decoration: line-through;
    color: #ef4444;
}

/* Секция Команды */
.section-team {
    padding: 50px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 6px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 13px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    height: 330px;
    background: #111;
}

.team-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-online {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(13, 14, 17, 0.85);
    color: #22c55e;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(4px);
}

.team-info {
    padding: 18px 15px;
    text-align: center;
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 2px;
}

.team-role {
    display: block;
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 14px;
}

.btn-view-profile {
    width: 100%;
    padding: 9px 0;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-card:hover .btn-view-profile {
    background: var(--gold);
    color: #000;
}

/* Ценник */
.section-programs {
    padding: 50px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.price-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.price-box.featured {
    border-color: var(--gold);
    background: linear-gradient(180deg, #1f1c16 0%, var(--bg-card) 100%);
}

.badge-featured {
    position: absolute;
    top: -10px;
    right: 15px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    text-transform: uppercase;
}

.price-box h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.price-box .time {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.price-box .cost {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.price-box .cost span {
    font-size: 15px;
    color: var(--text-white);
}

.btn-book {
    display: inline-block;
    width: 100%;
    padding: 8px 0;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.btn-book-gold {
    background: var(--gold);
    color: #000;
    border: none;
}

/* Описание программ внутри ценника */
.price-desc {
    text-align: left !important;
    margin-bottom: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-grow: 1;
}

.program-type {
    font-size: 11.5px;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left !important;
}

.program-type strong {
    color: #fff;
}

.program-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: var(--text-gray) !important;
    text-align: left !important;
    letter-spacing: normal !important;
}

/* Конфиденциальность */
.section-privacy {
    padding: 40px 0 70px;
}

.privacy-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 30px;
    text-align: center;
}

.privacy-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 20px;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    text-align: left;
}

.privacy-item h4 {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 6px;
}

.privacy-item p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-gray);
}

/* Подвал */
.footer {
    padding: 20px 0 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 11px;
    color: var(--text-gray);
}

.footer .disclaimer-18 {
    color: #ff3333 !important;
    font-weight: 600;
    margin: 6px 0;
    letter-spacing: 0.5px;
}

.footer .disclaimer-legal {
    color: #888888;
    font-size: 0.8rem;
    max-width: 600px;
    margin: 6px auto 0 auto;
    line-height: 1.4;
}

/* Sticky Mobile */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 14, 17, 0.95);
    padding: 10px 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    z-index: 999;
    gap: 10px;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.sticky-whatsapp {
    background: var(--whatsapp);
    color: #fff;
}

.sticky-call {
    background: var(--gold);
    color: #000;
}

/* Модалка полного профиля */
.master-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.master-modal.active {
    display: flex;
}

.master-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.master-modal-content {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 3010;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3020;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-slider-box {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.modal-main-img {
    width: 100%;
    max-height: 70vh; 
    object-fit: contain;
    cursor: zoom-in; 
    display: block;
}

.modal-slider-controls {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 14, 17, 0.8);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(4px);
}

.modal-arrow {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 18px;
    cursor: pointer;
}

.modal-photo-counter {
    color: #fff;
    font-size: 12px;
}

.modal-profile-details {
    padding: 20px;
}

.modal-profile-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.status-pill {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.lang-pill {
    background: rgba(255, 255, 255, 0.08);
    color: #e4e4e7;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
}

.modal-params-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.param-item span {
    display: block;
    font-size: 10px;
    color: var(--text-gray);
    margin-bottom: 2px;
}

.param-item strong {
    font-size: 13px;
    color: var(--gold);
}

.modal-bio {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.btn-modal-book {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--whatsapp);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .header-contacts .location-badge {
        display: none;
    }
    .hero h1 {
        font-size: 24px;
    }
    .happy-hours-banner {
        flex-direction: column;
        text-align: center;
    }
    .mobile-sticky-bar {
        display: flex;
    }
    .hero-actions .btn {
        width: 100%;
    }
}
/* Language Switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
}

a.lang-btn {
    color: var(--text-gray);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

a.lang-btn:hover {
    color: #ffffff;
}

/* Активный язык - не ссылка, а обычный текст */
span.lang-btn.active {
    color: var(--gold);
    cursor: default;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}
/* Бейдж часов работы */
.hours-badge {
    font-size: 13px;
    color: var(--text-gray);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media (max-width: 900px) {
    .hours-badge {
        display: none;
    }
}

@media (max-width: 600px) {
    /* Сжимаем контейнер по краям */
    .header-container {
        padding: 0 8px !important;
        gap: 6px;
    }

    /* Компактный логотип */
    .logo-img {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
    }

    .logo-text {
        font-size: 13px !important;
        letter-spacing: 0.5px !important;
    }

    /* Правая контактная группа в одну линию */
    .header-contacts {
        gap: 6px !important;
        align-items: center;
    }

    /* Часы работы: возвращаем показ, делаем компактными */
    .hours-badge {
        display: inline-flex !important;
        font-size: 11px !important;
        white-space: nowrap;
    }

    /* Убираем гео-метку Gliwice Centrum на мобилках, чтобы освободить место под часы и кнопку */
    .location-badge {
        display: none !important;
    }

    /* Переключатель языка */
    .lang-switch {
        font-size: 11px !important;
        gap: 3px !important;
    }

    /* Кнопка звонка: превращаем в круглую иконку 32x32 px без длинного текста */
    .btn-call-header {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        padding: 0 !important;
        font-size: 0 !important; /* скрывает текст "Zadzwoń" / "Call Us" */
        border-radius: 50% !important;
    }

    /* Возвращаем саму иконку трубки внутри кнопки */
    .btn-call-header::before {
        content: '📞';
        font-size: 13px;
        line-height: 1;
    }
}
.image-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    touch-action: pan-y pinch-zoom; /* разрешает системный зум пальцами на смартфонах */
}

.image-lightbox.active {
    display: flex;
}

.lightbox-img-wrapper {
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightboxImg {
    max-width: 100%;
    max-height: 95vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 36px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 1000000;
}
/* Стили для SEO-блока FAQ */
.section-faq {
    padding: 50px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: left;
}

.faq-card h3 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}