/* ==========================================================
   SOTHEAVY SALON - 100% Dark Noir & Gold Design
   Traditional Khmer Massage & Sothys Paris Luxury Wellness
   ========================================================== */

:root {
    --bg-dark: #0c0d10;
    --bg-surface: #13161d;
    --bg-card: #171a23;
    --bg-card-hover: #1c212d;
    --bg-card-alt: #101217;
    
    --gold: #d4af37;
    --gold-light: #f6e9b8;
    --gold-dark: #9e7d23;
    --gold-gradient: linear-gradient(135deg, #fceec5 0%, #d4af37 45%, #a68023 100%);
    --gold-gradient-subtle: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.02) 100%);
    --gold-glow: 0 0 30px rgba(212, 175, 55, 0.4);
    --gold-glow-subtle: 0 0 15px rgba(212, 175, 55, 0.2);

    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    
    --border-gold: rgba(212, 175, 55, 0.28);
    --border-gold-light: rgba(212, 175, 55, 0.6);
    --border-subtle: rgba(255, 255, 255, 0.08);

    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* ==========================================================================
   2. INTERACTIVE LUXURY EFFECTS (Mouse Glow, 3D Glare, Scroll Reveal)
   ========================================================================== */

/* Follow-cursor subtle golden ambient spotlight */
.mouse-spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 45%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 999;
    mix-blend-mode: screen;
    will-change: transform;
}

@media (max-width: 992px) {
    .mouse-spotlight {
        display: none; /* Disable cursor follower on touch screens */
    }
}

/* Scroll Reveal Transitions */
.reveal-item {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Card Dynamic Specular Glare (Moves with Mouse) */
.featured-card, .amenity-box {
    position: relative;
    overflow: hidden;
}

.featured-card::before, .amenity-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.12), transparent 40%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.featured-card:hover::before, .amenity-box:hover::before {
    opacity: 1;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-heading);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    line-height: 1.25;
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
}

p {
    color: var(--text-muted);
}

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

a:hover {
    color: var(--gold-light);
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 900px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0c0d10;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    border: 1px solid rgba(255, 235, 170, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(25deg);
    transition: none;
}

.btn-gold:hover::after {
    left: 140%;
    transition: left 0.65s ease-in-out;
}

.btn-gold:hover {
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    filter: brightness(1.08);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #ffffff;
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}

/* Badges */
.badge-gold {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
}

/* =========================================================================
   TOP ONLINE RELAXATION STUDIO BANNER (Teaser above Menu)
   ========================================================================= */
.zen-top-banner {
    background: linear-gradient(90deg, #12141a 0%, #201a0e 35%, #2a2211 50%, #201a0e 65%, #12141a 100%);
    border-bottom: 1px solid var(--border-gold);
    color: #e5e7eb;
    padding: 8px 0;
    font-size: 0.86rem;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.zen-top-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.zen-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
    white-space: nowrap;
}

.pulse-dot-gold {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
    animation: pulseGlow 1.8s infinite alternate;
}

.zen-top-text {
    flex: 1;
    margin: 0;
    color: #d1d5db;
    font-size: 0.86rem;
    line-height: 1.4;
}

.zen-top-text strong {
    color: var(--gold-light);
}

.zen-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-gradient);
    color: #0c0d10 !important;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

.zen-top-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
    filter: brightness(1.1);
}

.zen-top-btn span {
    transition: transform 0.2s ease;
}

.zen-top-btn:hover span {
    transform: translateX(3px);
}

/* =========================================================================
   HOMEPAGE CLIENT NOTICE BAR (Rychlé zprávy hned pod Hero)
   ========================================================================= */
.home-notice-section {
    background: #090a0d;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
}

.home-notice-bar {
    background: rgba(23, 26, 35, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-sm);
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.home-notice-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    flex: 1;
}

.home-notice-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-notice-text {
    color: #e2e8f0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.home-notice-text strong {
    color: #fff;
}

/* Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(12, 13, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-logo svg, .brand-logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    color: #d1d5db;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1.5px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

/* HERO SECTION (100% Dark Noir & Gold with Video Support) */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 80px;
    background-color: #0c0d10;
    border-bottom: 1px solid var(--border-gold);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.72; /* Vyvážený jas videa */
    filter: brightness(0.85) contrast(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(12, 13, 16, 0.25) 0%, rgba(12, 13, 16, 0.65) 75%, rgba(12, 13, 16, 0.9) 100%),
                linear-gradient(180deg, rgba(12, 13, 16, 0.5) 0%, rgba(12, 13, 16, 0.15) 40%, rgba(12, 13, 16, 0.8) 100%);
    pointer-events: none;
}

/* Subtle Watermark Apsara Logo Behind Hero Text (80% of Hero Height) */
.hero-watermark-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    height: 80vh;
    max-height: 85%;
    width: auto;
    max-width: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.08;
    filter: drop-shadow(0 0 35px rgba(212, 175, 55, 0.45));
    transition: opacity 0.5s ease;
    animation: watermarkBreathe 8s ease-in-out infinite alternate;
}

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

@keyframes watermarkBreathe {
    0% {
        transform: translate(-50%, -50%) scale(0.98);
        opacity: 0.08;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.02);
        opacity: 0.13;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 840px;
    margin: 0 auto;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.15rem;
    max-width: 680px;
    margin: 0 auto 36px;
    color: #d1d5db;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* SECTION COMMONS & BACKGROUND TEXTURES */
.section {
    padding: 90px 0;
    position: relative;
}

.section-alt {
    background-color: var(--bg-surface);
    background-image: radial-gradient(circle at center, rgba(19, 22, 29, 0.88) 0%, rgba(12, 13, 16, 0.97) 100%),
                      url('../../mockups/bg_angkor_pattern_1787573175446.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-botanical {
    position: relative;
    background-color: #0d0f14;
    background-image: radial-gradient(circle at center, rgba(13, 15, 20, 0.85) 0%, rgba(10, 11, 14, 0.98) 100%),
                      url('../../mockups/bg_botanical_zen_1787573185641.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-tag {
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
}

/* FEATURED SERVICES CARDS (As in Dark Noir Mockup) */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 2;
}

.featured-card {
    background: rgba(23, 26, 35, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    position: relative;
}

.featured-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-light);
    box-shadow: 0 20px 45px rgba(0,0,0,0.8), var(--gold-glow-subtle);
    background: rgba(28, 33, 45, 0.92);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #000;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.card-desc {
    font-size: 0.92rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.card-pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border-subtle);
    margin-top: auto;
}

.duration-pill {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-tag {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
}

/* INTERACTIVE CATALOG & PRICING TABLE */
.catalog-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--gold-gradient);
    color: #111;
    border-color: var(--gold);
    font-weight: 700;
}

.pricing-table-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border-subtle);
    gap: 20px;
    transition: var(--transition);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: rgba(212, 175, 55, 0.04);
}

.pricing-name-col h4 {
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 4px;
}

.pricing-name-col p {
    font-size: 0.85rem;
    max-width: 550px;
}

.variant-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.variant-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-subtle);
    color: #d1d5db;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.variant-btn.active, .variant-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.12);
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
    min-width: 110px;
    text-align: right;
}

/* AMENITIES & HERITAGE BANNER */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-box {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
}

.amenity-box:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    background: var(--bg-card);
}

.amenity-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid var(--border-gold);
}

.amenity-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* CTA BANNER (Golden Glow) */
.cta-banner {
    position: relative;
    background: linear-gradient(180deg, #161922 0%, #0d0e12 100%);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

/* FAQ ACCORDION */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-gold);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #fff;
}

.faq-icon {
    color: var(--gold);
    font-size: 1.4rem;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 22px;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.faq-item.active .faq-answer {
    display: block;
}

/* CONTACT & GEO SECTION */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 36px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 26px;
}

.contact-item-icon {
    color: var(--gold);
    font-size: 1.4rem;
    margin-top: 3px;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   SERVICE DETAIL INTERACTIVE STYLES
   ========================================================================== */
.detail-photo-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 15px 45px rgba(0,0,0,0.7);
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    background: #111215;
}

.detail-photo-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 175, 55, 0.2), transparent 45%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 3;
}

.detail-photo-container:hover {
    border-color: var(--gold-light);
    box-shadow: 0 25px 60px rgba(0,0,0,0.85), var(--gold-glow-subtle);
}

.detail-photo-container:hover::before {
    opacity: 1;
}

.detail-photo-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.detail-photo-container:hover .detail-photo-img {
    transform: scale(1.04);
}

.benefits-card {
    background: rgba(23, 26, 35, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 26px 32px;
    margin-top: 30px;
    transition: var(--transition);
}

.benefits-card:hover {
    border-color: var(--border-gold);
}

.benefit-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.96rem;
    color: #f3f4f6;
    transition: transform 0.25s ease, color 0.25s ease;
}

.benefit-item:hover {
    transform: translateX(6px);
    color: #fff;
}

.benefit-check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.25s ease;
}

.benefit-item:hover .benefit-check {
    transform: scale(1.25);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 45px;
    align-items: start;
}

.service-detail-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 18px;
    color: #fff;
    line-height: 1.25;
}

.booking-sidebar-card {
    background: rgba(23, 26, 35, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 32px;
    position: sticky;
    top: 100px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    transition: var(--transition);
}

@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .booking-sidebar-card {
        position: static;
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .service-detail-wrapper {
        padding-top: 25px !important;
        padding-bottom: 60px !important;
    }
    .booking-sidebar-card {
        padding: 20px 16px;
    }
    .detail-variant-pill {
        padding: 12px 16px;
    }
}

.detail-variant-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(0,0,0,0.35);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
}

.detail-variant-pill:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(4px);
}

.detail-variant-pill.selected {
    border-color: var(--gold-light);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.detail-variant-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-light);
    transition: transform 0.25s ease;
}

.detail-variant-pill.selected .detail-variant-price {
    transform: scale(1.08);
    color: var(--gold);
}

/* FOOTER */
.site-footer {
    background: #08090b;
    border-top: 1px solid var(--border-gold);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 1.1rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-dim);
    flex-wrap: wrap;
    gap: 15px;
}

/* REVIEWS */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px;
    position: relative;
}

.review-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #e5e7eb;
}

.review-author {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
}

.review-source {
    font-size: 0.75rem;
    color: var(--gold);
}

/* FLASH ALERTS */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #6ee7b7;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

.alert-info {
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #93c5fd;
}

/* FLOATING QUICK CONTACT FOR MOBILE */
.floating-contact-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: #000;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 25px rgba(212, 175, 55, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

.floating-contact-btn:hover {
    transform: scale(1.05);
    color: #000;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .pricing-amount {
        text-align: left;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Top Banner - Compact only button */
    .zen-top-banner {
        padding: 5px 0;
    }
    .zen-top-banner-inner {
        justify-content: center;
        gap: 0;
    }
    .zen-top-badge,
    .zen-top-text {
        display: none !important;
    }
    .zen-top-btn {
        font-size: 0.78rem;
        padding: 4px 14px;
        box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    }

    /* Mobile Navbar - Clean logo + Hamburger only (Remove Rezervovat button) */
    .nav-actions .btn {
        display: none !important;
    }
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        color: var(--gold);
        font-size: 1.8rem;
        line-height: 1;
        cursor: pointer;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 20, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px 20px;
        border-bottom: 1px solid var(--border-gold);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
        gap: 16px;
        z-index: 999;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links li a {
        font-size: 1.05rem;
        padding: 8px 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Footer & Hero Mobile Tweaks */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-section {
        min-height: 75vh;
        padding: 70px 0 60px;
    }
}

@media (max-width: 480px) {
    .brand-logo img {
        height: 38px !important;
    }
    .brand-title {
        font-size: 1.05rem !important;
    }
    .brand-subtitle {
        font-size: 0.65rem !important;
    }
}

/* ==========================================================================
   ZEN LOUNGE & AUDIO SANCTUARY STYLES
   ========================================================================== */
.zen-stage-container {
    position: relative;
    min-height: 48vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 55px 0 45px;
    background-color: #0c0d10;
    border-bottom: 1px solid var(--border-gold);
    overflow: hidden;
}

.zen-stage-compact {
    min-height: 44vh;
    padding: 45px 0 35px;
}

.zen-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.55;
}

.zen-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(12, 13, 16, 0.4) 0%, rgba(12, 13, 16, 0.85) 75%, rgba(12, 13, 16, 0.98) 100%),
                linear-gradient(180deg, rgba(12, 13, 16, 0.7) 0%, rgba(12, 13, 16, 0.3) 40%, rgba(12, 13, 16, 0.95) 100%);
}

.zen-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    height: 55vh;
    opacity: 0.06;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.4));
    animation: watermarkBreathe 8s ease-in-out infinite alternate;
}

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

.zen-stage-content {
    position: relative;
    z-index: 3;
    max-width: 840px;
}

.zen-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    margin-bottom: 14px;
}

.zen-title-compact {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    margin-bottom: 10px;
}

.zen-subtitle {
    font-size: 1.05rem;
    color: #e5e7eb;
    margin-bottom: 24px;
    line-height: 1.6;
}

.zen-subtitle-compact {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* SCENE CARDS TRIGGER BUTTONS IN HERO */
.zen-scene-cards-wrap {
    margin-top: 10px;
}

.scene-select-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 600;
}

.scene-buttons-grid {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.zen-scene-trigger-btn {
    background: rgba(23, 26, 35, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    text-decoration: none;
}

.zen-scene-trigger-btn:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: #f3e5ab;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.scene-btn-icon {
    font-size: 1.3rem;
}

.scene-btn-text {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
}

.scene-btn-arrow {
    font-size: 0.75rem;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.15);
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 4px;
}

/* =========================================================================
   90% x 90% CINEMATIC ZEN MODAL
   ========================================================================= */
.zen-cinema-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zen-cinema-modal-backdrop.is-open {
    display: flex;
    opacity: 1;
}

.zen-cinema-modal {
    width: 90vw;
    height: 90vh;
    max-width: 1600px;
    max-height: 950px;
    background: #090a0d;
    border: 1.5px solid var(--border-gold);
    border-radius: 18px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.9), 0 0 40px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zen-modal-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    opacity: 0.85;
}

.zen-modal-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: radial-gradient(circle at center, rgba(12, 13, 16, 0.15) 0%, rgba(12, 13, 16, 0.6) 75%, rgba(12, 13, 16, 0.95) 100%),
                linear-gradient(180deg, rgba(12, 13, 16, 0.75) 0%, rgba(12, 13, 16, 0.1) 25%, rgba(12, 13, 16, 0.1) 75%, rgba(12, 13, 16, 0.9) 100%);
}

.zen-modal-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    height: 60vh;
    opacity: 0.05;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
}

.zen-modal-watermark img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Modal Header Bar */
.zen-modal-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 26px;
    background: linear-gradient(180deg, rgba(12, 13, 16, 0.85) 0%, rgba(12, 13, 16, 0) 100%);
}

.zen-modal-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.zen-modal-logo-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.zen-modal-logo-text {
    display: flex;
    flex-direction: column;
}

.zen-modal-logo-brand {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-light);
    line-height: 1.1;
}

.zen-modal-logo-sub {
    font-size: 0.68rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.zen-modal-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(12, 13, 16, 0.7);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-subtle);
    flex-wrap: wrap;
}

.modal-scene-pill {
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-muted);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-scene-pill.active, .modal-scene-pill:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
    color: #fff;
}

.zen-modal-close-btn {
    background: rgba(12, 13, 16, 0.7);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.zen-modal-close-btn:hover {
    background: var(--gold);
    color: #0c0d10;
    transform: scale(1.1);
}

/* Modal Bottom Floating Control Bar */
.zen-modal-bottom-bar {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: linear-gradient(0deg, rgba(12, 13, 16, 0.95) 0%, rgba(12, 13, 16, 0.6) 80%, rgba(12, 13, 16, 0) 100%);
}

.modal-track-info {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
}

.modal-wave span {
    background: var(--gold-light);
}

.modal-main-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.modal-play-btn {
    padding: 14px 34px !important;
    font-size: 1.05rem !important;
    border-radius: var(--radius-full) !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5) !important;
}

.modal-right-actions {
    min-width: 240px;
    display: flex;
    justify-content: flex-end;
}

/* ZEN PANELS GRID */
.zen-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: start;
}

.zen-panel {
    background: rgba(23, 26, 35, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

.zen-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.now-playing-pill {
    display: none;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.now-playing-pill.show {
    display: inline-flex;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: pulseGlow 1.4s infinite alternate;
}

/* ACTIVE TRACK CARD */
.active-track-card {
    background: rgba(12, 13, 16, 0.7);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 22px;
    margin-bottom: 25px;
    position: relative;
}

.track-visual-wave {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 24px;
    margin-bottom: 12px;
}

.track-visual-wave span {
    display: block;
    width: 4px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    transition: height 0.2s ease;
}

.track-visual-wave.playing span {
    animation: waveBar 1.2s ease-in-out infinite alternate;
}

.track-visual-wave span:nth-child(2) { animation-delay: 0.2s; }
.track-visual-wave span:nth-child(3) { animation-delay: 0.4s; }
.track-visual-wave span:nth-child(4) { animation-delay: 0.1s; }
.track-visual-wave span:nth-child(5) { animation-delay: 0.5s; }
.track-visual-wave span:nth-child(6) { animation-delay: 0.3s; }
.track-visual-wave span:nth-child(7) { animation-delay: 0.6s; }
.track-visual-wave span:nth-child(8) { animation-delay: 0.25s; }

@keyframes waveBar {
    0% { height: 4px; opacity: 0.4; }
    100% { height: 22px; opacity: 1; }
}

.track-title-large {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.track-desc-subtle {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.track-controls-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.track-nav-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.track-nav-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.track-main-toggle {
    background: var(--gold-gradient);
    border: none;
    color: #0c0d10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.track-main-toggle:hover {
    transform: scale(1.08);
}

.track-volume-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.zen-slider {
    accent-color: var(--gold);
    width: 100px;
    cursor: pointer;
}

/* PLAYLIST LIST */
.zen-playlist-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zen-playlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(0,0,0,0.25);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.zen-playlist-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.zen-playlist-item.active {
    background: rgba(212, 175, 55, 0.14);
    border-color: var(--gold);
}

.playlist-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.playlist-item-num {
    font-size: 0.85rem;
    color: var(--text-dim);
    width: 18px;
}

.playlist-item-play-icon {
    font-size: 0.9rem;
    color: var(--gold);
}

.playlist-item-info strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
}

.playlist-item-info small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.playlist-item-duration {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* SOUND MIXER CARDS */
.sound-mixer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mixer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(0,0,0,0.25);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mixer-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.12);
}

.mixer-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mixer-icon {
    font-size: 1.5rem;
}

.mixer-info strong {
    display: block;
    font-size: 0.92rem;
    color: #fff;
}

.mixer-info small {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.mixer-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sound-slider {
    accent-color: var(--gold);
    width: 90px;
    cursor: pointer;
}

.sound-toggle-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.78rem;
    padding: 5px 10px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.sound-toggle-btn.active {
    background: var(--gold);
    color: #0c0d10;
    font-weight: 700;
    border-color: var(--gold);
}

/* SLEEP TIMER BOX */
.sleep-timer-box {
    background: rgba(12, 13, 16, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.timer-presets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.timer-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-size: 0.82rem;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.timer-btn.active, .timer-btn:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.1);
}

.zen-promo-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(12, 13, 16, 0.8) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
}

@media (max-width: 992px) {
    .zen-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    /* 1. Zen Stage Hero Compact */
    .zen-stage-compact {
        min-height: auto;
        padding: 26px 15px 20px;
    }
    .zen-badge {
        display: none !important; /* Hide long badge on mobile */
    }
    .zen-title-compact {
        font-size: 1.5rem !important;
        margin-bottom: 6px;
    }
    .zen-subtitle-compact {
        display: none !important; /* Hide long text on mobile to bring player immediately into view */
    }
    .scene-select-hint {
        font-size: 0.72rem;
        margin-bottom: 8px;
    }
    .scene-buttons-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 4px 4px 10px;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .scene-buttons-grid::-webkit-scrollbar {
        display: none;
    }
    .zen-scene-trigger-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        flex-shrink: 0;
    }
    .scene-btn-icon {
        font-size: 1.1rem;
    }

    /* 2. Main Workspace & Panels */
    .zen-grid {
        gap: 20px;
    }
    .zen-panel {
        padding: 20px 16px;
    }
    .zen-panel-header h2 {
        font-size: 1.15rem !important;
    }

    /* 3. Player Card on Mobile */
    .active-track-card {
        padding: 16px;
    }
    .track-title-large {
        font-size: 1.05rem;
    }
    .track-controls-row {
        gap: 12px;
        flex-wrap: wrap;
    }
    .track-volume-wrap {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        justify-content: space-between;
    }
    .zen-slider {
        flex: 1;
        width: auto;
        margin: 0 10px;
    }

    /* 4. Sound Mixer Cards on Mobile */
    .mixer-card {
        padding: 12px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .mixer-info {
        gap: 10px;
    }
    .mixer-controls {
        width: 100%;
        justify-content: space-between;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    .sound-slider {
        flex: 1;
        width: auto;
        margin-right: 12px;
    }

    /* 5. Sleep Timer & Promo Banner */
    .timer-buttons-row {
        gap: 6px;
    }
    .timer-btn {
        flex: 1;
        min-width: 55px;
        padding: 6px 4px;
        text-align: center;
        font-size: 0.75rem;
    }
    .zen-promo-banner {
        display: none !important; /* Hide non-essential promo banner on mobile to keep focus on audio */
    }

    /* 6. Fullscreen Cinema Modal on Mobile with Safe Area Insets */
    .zen-cinema-modal {
        width: 100vw !important;
        height: 100vh !important;
        border-radius: 0 !important;
        border: none !important;
        inset: 0 !important;
    }
    .zen-modal-header {
        padding-top: max(38px, calc(28px + env(safe-area-inset-top))) !important;
        padding-bottom: 16px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: linear-gradient(180deg, rgba(12, 13, 16, 0.95) 0%, rgba(12, 13, 16, 0.5) 75%, rgba(12, 13, 16, 0) 100%) !important;
    }
    .zen-modal-logo-wrap {
        gap: 10px !important;
    }
    .zen-modal-logo-icon {
        height: 36px !important;
    }
    .zen-modal-logo-brand {
        font-size: 1rem !important;
        letter-spacing: 0.5px !important;
    }
    .zen-modal-logo-sub {
        display: none !important;
    }
    .zen-modal-switcher {
        display: none !important; /* Hide scene pills in modal on mobile to leave clean space */
    }
    .zen-modal-close-btn {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
        background: rgba(18, 20, 26, 0.9) !important;
        border: 1px solid var(--gold) !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.7) !important;
    }
    .zen-modal-bottom-bar {
        padding-top: 16px !important;
        padding-bottom: max(34px, calc(20px + env(safe-area-inset-bottom))) !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        flex-direction: column !important;
        gap: 12px !important;
        background: linear-gradient(0deg, rgba(12, 13, 16, 0.98) 0%, rgba(12, 13, 16, 0.75) 60%, rgba(12, 13, 16, 0) 100%) !important;
    }
    .modal-track-info {
        display: none !important; /* Clean view on small mobile video */
    }
    .modal-main-actions {
        width: 100% !important;
        justify-content: center !important;
    }
    .modal-play-btn {
        width: 100% !important;
        max-width: 340px !important;
        padding: 13px 24px !important;
        font-size: 1rem !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5) !important;
    }
    .modal-right-actions {
        display: none !important;
    }
}

/* =========================================================================
   FLOATING ACTIONS BAR (WhatsApp & Phone Quick Access)
   ========================================================================= */
.floating-actions-bar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-btn-phone {
    background: var(--gold-gradient);
    color: #0c0d10 !important;
    border: 1px solid rgba(255, 235, 170, 0.4);
}

.floating-btn-phone:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.6);
    filter: brightness(1.1);
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.floating-btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
    filter: brightness(1.1);
}

@media (max-width: 576px) {
    .floating-actions-bar {
        bottom: 16px;
        right: 16px;
        flex-direction: row;
    }
    .floating-btn-text {
        display: none;
    }
    .floating-btn {
        padding: 12px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        justify-content: center;
    }
}

/* =========================================================================
   LUXURY GDPR COOKIE CONSENT BANNER
   ========================================================================= */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    max-width: 640px;
    margin: 0 auto;
    z-index: 10000;
    background: rgba(18, 20, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 25px rgba(212, 175, 55, 0.2);
    padding: 24px 28px;
    animation: slideUpCookie 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transition: opacity 0.3s ease;
}

.cookie-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-icon {
    font-size: 1.5rem;
}

.cookie-title {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.cookie-text {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.cookie-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 11px 18px;
    font-size: 0.85rem;
}

.btn-subtle-cookie {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1 !important;
    border: 1px solid var(--border-subtle);
    padding: 11px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    flex: 0 0 auto !important;
    min-width: auto !important;
}

.btn-subtle-cookie:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Granular Cookie Settings Panel */
.cookie-settings-panel {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-category-item {
    background: rgba(0, 0, 0, 0.35);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cookie-cat-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #fff;
}

.cookie-cat-label input[type="checkbox"] {
    accent-color: var(--gold);
    width: 17px;
    height: 17px;
    cursor: pointer;
}

.cookie-badge-locked {
    font-size: 0.72rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.cookie-badge-opt {
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    padding: 2px 8px;
    border-radius: 4px;
}

.cookie-cat-desc {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    padding-left: 27px;
}

.cookie-save-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

@keyframes slideUpCookie {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================================
   PWA LUXURY INSTALL DRAWER (Vertical Clean Layout for Mobile)
   ========================================================================= */
.pwa-install-drawer {
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    max-width: 420px;
    margin: 0 auto;
    z-index: 9999;
    background: rgba(18, 20, 26, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 22px 24px 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.95), 0 0 25px rgba(212, 175, 55, 0.35);
    animation: pwaSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pwaSlideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pwa-close-top-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.pwa-close-top-btn:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.pwa-drawer-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    padding-right: 36px;
}

.pwa-app-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.pwa-header-text {
    display: flex;
    flex-direction: column;
}

.pwa-badge {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pwa-title {
    display: block;
    font-size: 1.05rem;
    color: #fff;
    font-weight: 700;
    margin-top: 2px;
}

.pwa-desc {
    margin: 0 0 18px;
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.pwa-actions {
    display: flex;
    width: 100%;
}

.pwa-install-action-btn {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.4);
    text-align: center;
}

@media (max-width: 480px) {
    .pwa-install-drawer {
        bottom: 14px;
        left: 14px;
        right: 14px;
        padding: 18px 18px 16px;
    }
}



