@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #FAF9F6;       /* Warm Off-White */
    --bg-secondary: #F4F1EA;     /* Light Cream */
    --text-primary: #1A1A1A;     /* Obsidian Black */
    --text-secondary: #555555;   /* Muted Espresso */
    --text-light: #8E8A82;       /* Light Muted */
    --accent-gold: #C5A880;      /* Muted Gold */
    --accent-gold-hover: #A3875E;/* Darker Gold */
    --border-color: rgba(26, 26, 26, 0.08);
    --border-accent: rgba(197, 168, 128, 0.3);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* Custom Selection */
::selection {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* Premium Typography Rules */
h1, h2, h3, h4, h5, h6, .serif-font {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

p, span, li, a, button, input, select, textarea {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

/* Header Live Status Indicator */
.live-status {
    display: none; /* Hide on small mobile */
    align-items: center;
    gap: 8px;
    background-color: rgba(197, 168, 128, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(197, 168, 128, 0.2);
}

@media(min-width: 640px) {
    .live-status {
        display: flex;
    }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-dot::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulse-ring 1.8s infinite ease-in-out;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.live-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

/* Navigation Bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 8%;
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 16px 8%;
    background-color: rgba(250, 249, 246, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: -2px;
}

.nav-links {
    display: none; /* Hide on mobile */
    gap: 40px;
    list-style: none;
}

@media(min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Button & Link Styles */
.btn-primary {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border: 1px solid var(--text-primary);
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    background-color: var(--accent-gold);
    color: var(--text-primary);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.15);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none; /* Remove underline */
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                color 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 26, 26, 0.06);
    text-decoration: none;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.link-arrow svg {
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    color: var(--accent-gold);
}

.link-arrow:hover svg {
    transform: translateX(6px);
    stroke: var(--accent-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 180px 8% 100px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background-color: var(--bg-primary);
    overflow: hidden;
}

/* Decorative Background Elements for Hero */
.hero-decor-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.12); /* very soft gold border */
    pointer-events: none;
    z-index: 1;
}

/* Circle top right */
.circle-tr {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

/* Circle bottom left */
.circle-bl {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

/* Soft warm glow in the center-right behind card */
.hero-decor-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, rgba(250, 249, 246, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

@media(min-width: 1024px) {
    .hero {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.hero-content {
    max-width: 650px;
    z-index: 5;
    position: relative;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
    display: block;
}

.hero h1 {
    font-size: clamp(3rem, 6.5vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.hero-sub {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 550px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

/* Single 3D Tilting Hero Image */
.hero-single-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 480px;
    margin-top: 60px;
    z-index: 2;
    perspective: 1000px; /* Enable 3D perspective space */
}

@media(min-width: 1024px) {
    .hero-single-image-wrapper {
        margin-top: 0;
        height: 520px;
        width: 42%;
    }
}

.hero-3d-card {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.hero-single-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    filter: sepia(4%) brightness(99%);
    transform: translateZ(20px); /* Pushes image forward in 3D space */
}

.hero-3d-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Infinite Scrolling Typography Marquee */
.marquee-wrapper {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 10;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee-anim 25s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused; /* Pause animation on hover */
}

.marquee-content span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    padding: 0 30px;
}

.marquee-content .marquee-bullet {
    color: var(--accent-gold);
    padding: 0;
}

@keyframes marquee-anim {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Sections General */
section {
    padding: 120px 8%;
    position: relative;
}

.section-header {
    max-width: 650px;
    margin-bottom: 80px;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: var(--text-primary);
    margin-bottom: 24px;
}

.section-description {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* LOOKBOOK BENTO GRID */
.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media(min-width: 768px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .lookbook-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px; /* Reduced from 280px to 200px */
        gap: 24px;
    }
}

.bento-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 320px; /* Explicit default height on mobile so they don't collapse */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.08);
    border-color: var(--accent-gold);
}

/* Bento Card specific sizes */
@media(min-width: 1024px) {
    .bento-card {
        height: auto; /* Let grid system control height on desktop */
    }
    .bento-card.double-width {
        grid-column: span 2;
        grid-row: span 2;
    }
    .bento-card.tall {
        grid-row: span 2;
    }
    .bento-card.square {
        grid-row: span 2;
    }
    .bento-card.text-focus {
        grid-column: span 1;
        grid-row: span 2;
    }
}

/* Card 1: Before/After Slider Container */
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
}

.slider-img.img-before {
    filter: grayscale(10%) brightness(90%);
}

.slider-img.img-after {
    clip-path: rect(0px 100% 100% 50%); /* Dynamic via JS */
}

/* Custom overlay label on Slider */
.slider-label {
    position: absolute;
    bottom: 24px;
    padding: 8px 16px;
    background-color: rgba(26, 26, 26, 0.8);
    color: var(--bg-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 10;
    pointer-events: none;
}

.slider-label.label-before {
    left: 24px;
}

.slider-label.label-after {
    right: 24px;
}

/* Drag Handle */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%; /* Dynamic via JS */
    width: 40px; /* Expanded hit area (40px) */
    height: 100%;
    cursor: ew-resize;
    z-index: 15;
    transform: translateX(-50%);
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--accent-gold);
    pointer-events: none;
}

.slider-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--text-primary);
    border: 2.5px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    z-index: 16;
    pointer-events: none;
}

.slider-handle:hover .slider-handle-button {
    transform: translate(-50%, -50%) scale(1.12);
    background-color: var(--accent-gold);
    border-color: var(--text-primary);
    color: var(--text-primary);
}

/* Card Content Floating Overlays */
.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.85) 0%, rgba(26, 26, 26, 0.3) 70%, transparent 100%);
    color: var(--bg-primary);
    z-index: 8;
    transition: var(--transition-smooth);
}

.bento-card:hover .card-content-overlay {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.4) 75%, transparent 100%);
}

.card-title {
    font-size: 1.6rem; /* Slightly smaller title for alignment */
    margin-bottom: 8px;
    color: var(--bg-primary);
    transform: translateY(12px); /* Shifted down initially */
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .card-title {
    transform: translateY(0); /* Slides up on hover */
}

.card-title span {
    color: var(--accent-gold);
    font-style: italic;
}

.card-desc {
    font-size: 0.82rem;
    font-weight: 300;
    opacity: 0; /* Hidden initially */
    transform: translateY(15px); /* Slides up from below */
    line-height: 1.6;
    max-width: 90%;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .card-desc {
    opacity: 0.95;
    transform: translateY(0); /* Becomes visible on hover */
}

/* Card Image Styles (non-slider) */
.card-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .card-image-bg {
    transform: scale(1.08) rotate(0.01deg); /* Zooms in on hover */
}

/* Text Focus / Quiz Card styling */
.bento-card.text-focus {
    padding: 40px 30px;
    justify-content: flex-start;
    background-color: var(--bg-secondary);
}

.quiz-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quiz-step {
    animation: fadeIn 0.4s ease-out;
}

.quiz-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.quiz-step h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.quiz-step p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.quiz-progress {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    display: block;
    margin-bottom: 12px;
}

.quiz-question {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-opt-btn {
    text-align: left;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.quiz-opt-btn:hover {
    border-color: var(--accent-gold);
    background-color: var(--bg-secondary);
}

.quiz-result-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.quiz-result-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.quiz-reset-btn {
    background: none;
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    cursor: pointer;
    align-self: center;
    margin-top: 15px;
    transition: var(--transition-fast);
}

.quiz-reset-btn:hover {
    color: var(--text-primary);
}

/* Brand partners area */
.brands-section {
    padding: 60px 8%;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.brands-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-light);
    margin-bottom: 40px;
}

.brands-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(26, 26, 26, 0.45);
    transition: var(--transition-fast);
}

.brand-item small {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    display: block;
    margin-top: -5px;
}

.brand-item:hover {
    color: var(--text-primary);
}

/* SERVICES & PRICING */
.services-section {
    background-color: var(--bg-secondary);
    padding-top: 80px;
    padding-bottom: 80px;
}

.services-section .section-header {
    margin-bottom: 40px;
}

.pricing-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    padding: 10px 0;
    transition: var(--transition-fast);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.tab-btn.active {
    color: var(--text-primary);
}

.tab-btn.active::after {
    width: 100%;
}

/* Price List Grid */
.price-list-container {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.price-list-container.active {
    display: flex;
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
    .price-list-container.active {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 50px;
        row-gap: 20px;
    }
}

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

.price-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.price-item:hover {
    border-bottom-color: var(--accent-gold);
}

.price-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
}

.price-item-name {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

.price-item-line {
    flex-grow: 1;
    border-bottom: 1px dotted var(--border-color);
    margin: 0 10px;
    position: relative;
    top: -4px;
}

.price-item-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--accent-gold);
    white-space: nowrap;
    font-variant-numeric: lining-nums tabular-nums; /* Forces digits to align on the baseline and have equal width */
}

.price-prefix {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    text-transform: lowercase;
    margin-right: 4px;
    vertical-align: middle;
}

.price-item-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 90%;
    margin-top: 1px;
}

.services-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

.services-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* BOOKING & SCHEDULING WIDGET */
.booking-section {
    background-color: var(--bg-primary);
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
}

@media(min-width: 1024px) {
    .booking-section {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: flex-start;
    }
}

.booking-info {
    max-width: 550px;
}

.contact-card {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-text h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 6px;
}

.contact-text p, .contact-text a {
    font-size: 1.05rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 300;
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--accent-gold);
}

/* Booking Widget Interface */
.booking-widget {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.02);
}

.widget-step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.widget-step-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.widget-step-title {
    font-size: 1.4rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.widget-step-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

.widget-step-num {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.widget-flow-container {
    min-height: 320px;
}

/* Grid of options */
.options-grid-wrapper {
    position: relative;
    width: 100%;
}

.options-grid-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to top, var(--bg-secondary) 0%, rgba(250, 249, 246, 0) 100%);
    pointer-events: none;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.options-grid-wrapper.scrolled-bottom::after {
    opacity: 0;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 235px; /* Slices the 4th item in half to indicate scrollability */
    overflow-y: auto;
    padding-right: 12px; /* Extra space for the scrollbar */
    scrollbar-width: thin; /* Firefox */
    scrollbar-color: var(--accent-gold) rgba(26, 26, 26, 0.03); /* Firefox */
}

/* Styled custom scrollbar for Chrome, Safari, Edge */
.options-grid::-webkit-scrollbar {
    display: block;
    width: 6px;
}

.options-grid::-webkit-scrollbar-track {
    background: rgba(26, 26, 26, 0.02);
    margin-top: 6px;
    margin-bottom: 6px;
}

.options-grid::-webkit-scrollbar-thumb {
    background-color: rgba(197, 168, 128, 0.4); /* var(--accent-gold) with opacity */
    transition: background-color 0.2s ease;
}

.options-grid::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-gold);
}

/* Scroll Indicator Hint */
.scroll-indicator-hint {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-primary);
    color: var(--accent-gold);
    border: 1px solid var(--border-accent);
    padding: 8px 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 12;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.03);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.scroll-indicator-hint svg {
    animation: bounce-arrow 1.5s infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}

.options-grid-wrapper.scrolled-bottom .scroll-indicator-hint {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
}

.option-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

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

.option-card.selected {
    border-color: var(--text-primary);
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.option-card-title {
    font-size: 0.95rem;
    font-weight: 500;
}

.option-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-gold);
    font-variant-numeric: lining-nums tabular-nums; /* Align numbers flat on the baseline */
}

.option-card.selected .option-card-price {
    color: var(--bg-primary);
}

/* Calendar styling */
.calendar-grid-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin-bottom: 15px;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-primary);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calendar-day:hover:not(.disabled) {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.calendar-day.selected {
    background-color: var(--text-primary);
    color: var(--bg-primary) !important;
}

.calendar-day.disabled {
    color: var(--text-light);
    opacity: 0.25;
    cursor: not-allowed;
}

/* Time Slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--accent-gold);
}

.time-slot.selected {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

/* Form Styles */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group input {
    padding: 14px 18px;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--accent-gold);
}

/* Success Confirmation Screen */
.booking-success {
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--accent-gold);
}

.success-title {
    font-size: 2rem;
    color: var(--text-primary);
}

.success-details {
    background-color: var(--bg-primary);
    padding: 24px;
    border-left: 2px solid var(--accent-gold);
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.success-details strong {
    color: var(--text-primary);
}

/* Navigation buttons inside widget */
.widget-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.widget-nav-btn {
    padding: 12px 24px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.widget-nav-btn.btn-back {
    background-color: transparent;
    color: var(--text-light);
}

.widget-nav-btn.btn-back:hover {
    color: var(--text-primary);
}

.widget-nav-btn.btn-next {
    background-color: var(--text-primary);
    color: var(--bg-primary);
}

.widget-nav-btn.btn-next:hover {
    background-color: var(--accent-gold);
}

.widget-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* FOOTER SECTION */
footer {
    background-color: var(--text-primary);
    color: var(--bg-primary);
    padding: 80px 8% 40px 8%;
    border-top: 1px solid rgba(250, 249, 246, 0.05);
}

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

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg-primary);
}

.footer-logo-sub {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: -2px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.6);
    line-height: 1.8;
    max-width: 340px;
}

.footer-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(250, 249, 246, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid rgba(250, 249, 246, 0.1);
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

@media(min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }
    
    .footer-bottom .footer-copy {
        flex: 1 1 0;
        text-align: left;
    }
    
    .footer-bottom .rl-badge {
        flex: 0 0 auto;
        text-align: center;
    }
    
    .footer-bottom .footer-socials {
        flex: 1 1 0;
        display: flex;
        justify-content: flex-end;
    }
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.4);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: rgba(250, 249, 246, 0.6);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--accent-gold);
}

/* Reveal Scroll Animations styling */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Contact Section & Map layout */
.contact-section {
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
}

.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

@media(min-width: 1024px) {
    .contact-grid-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
        align-items: center; /* Center vertically relative to each other */
    }
}

.contact-editorial-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 15px;
}

.contact-studio-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-stylist-name {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-details-stacked {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-card-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.contact-card-item:hover {
    border-bottom-color: var(--accent-gold);
    transform: translateX(8px);
}

.card-item-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.card-item-value {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-primary);
}

.card-item-value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.card-item-value a:hover {
    color: var(--accent-gold);
}

.contact-map-block {
    width: 100%;
    max-width: 560px; /* Larger map layout width */
    height: 420px; /* Larger map layout height */
    border: 1px solid var(--border-color);
    padding: 10px;
    background-color: var(--bg-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.02);
    justify-self: center; /* Center horizontally in the grid column */
    display: flex;
}

.contact-map-block iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(10%) contrast(102%);
    transition: var(--transition-smooth);
}

.contact-map-block:hover iframe {
    filter: none;
}

/* Preloader Overlay */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.loader-logo {
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.loader-logo-sub {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.loader-bar-container {
    width: 120px;
    height: 1px;
    background-color: var(--border-color);
    position: relative;
    overflow: hidden;
}

.loader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--accent-gold);
    animation: load-progress 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes load-progress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Scroll to Top Button */
#scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease,
                border-color 0.3s ease,
                color 0.3s ease;
}

#scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-to-top:hover {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--bg-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(26, 26, 26, 0.08);
}

/* Stylist Section */
.stylist-section {
    background-color: var(--bg-primary);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}

.stylist-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
}

@media(min-width: 1024px) {
    .stylist-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.stylist-image {
    position: relative;
    width: 100%;
    max-width: 580px; /* Increased from 450px to align with text height */
}

@media(min-width: 1024px) {
    .stylist-image {
        width: 45%; /* Increased from 42% */
    }
}

.stylist-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.stylist-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #1a1a1a; /* Sleek pure dark background */
    color: #faf9f6;
    padding: 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.4); /* Elegant gold border */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stylist-experience-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

.stylist-experience-badge .exp-years {
    font-family: 'Outfit', 'Inter', sans-serif; /* Clean readable number */
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stylist-experience-badge .exp-text {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250, 249, 246, 0.85);
    white-space: nowrap;
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    padding-top: 6px;
    width: 100%;
    text-align: center;
}

.stylist-content {
    width: 100%;
}

@media(min-width: 1024px) {
    .stylist-content {
        width: 48%; /* Decreased from 50% to make room for larger image */
    }
}

.stylist-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: -10px;
    margin-bottom: 24px;
}

.stylist-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    border-left: 2px solid var(--accent-gold);
    padding-left: 20px;
    line-height: 1.4;
}

.stylist-bio p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.stylist-certifications {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.cert-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.cert-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media(min-width: 640px) {
    .cert-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cert-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 18px;
    line-height: 1.5;
}

.cert-list li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    top: -2px;
}

/* Riverlab Partner Badge */
.rl-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.5;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.rl-badge:hover {
  opacity: 1;
  color: #A78BFA;
}
.rl-badge svg { flex-shrink: 0; }

/* ============================================================
   RECENZNÍ SYSTÉM (Reviews Drawer)
============================================================ */

/* Sticky boční tlačítko */
.reviews-sticky-trigger {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 18px 8px;
    width: 52px;
    cursor: pointer;
    user-select: none;
    z-index: 999;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.reviews-sticky-trigger:hover {
    transform: translate(-4px, -50%);
    background-color: var(--bg-secondary);
}

.reviews-trigger-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.reviews-sticky-trigger:hover .reviews-trigger-icon-wrap {
    background-color: rgba(197, 160, 89, 0.2);
    transform: rotate(12deg);
}

.reviews-trigger-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
}

.reviews-trigger-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.reviews-trigger-star {
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.reviews-trigger-count {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-top: 4px;
}

.reviews-trigger-line {
    width: 24px;
    height: 1px;
    background-color: var(--border-color);
}

.reviews-trigger-text {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* Backdrop */
.reviews-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: pointer;
}

.reviews-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer panel */
.reviews-drawer-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: translateX(100%);
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-drawer-panel.active {
    transform: translateX(0);
}

/* Header */
.reviews-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.reviews-drawer-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 4px;
}

.reviews-drawer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.reviews-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.reviews-drawer-close:hover {
    background-color: var(--border-color);
    color: var(--text-primary);
}

/* Stats Card */
.reviews-stats-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    flex-shrink: 0;
}

@media(min-width: 400px) {
    .reviews-stats-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.reviews-stats-left {
    text-align: center;
}

@media(min-width: 400px) {
    .reviews-stats-left {
        text-align: left;
    }
}

.reviews-rating-overall {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

@media(min-width: 400px) {
    .reviews-rating-overall {
        justify-content: flex-start;
    }
}

.reviews-rating-big {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.reviews-rating-of {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.reviews-rating-stars-row {
    color: var(--accent-gold);
    font-size: 0.95rem;
    margin-bottom: 6px;
    letter-spacing: 0.1em;
}

.reviews-rating-total {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.reviews-clear-star-filter {
    margin-top: 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-gold);
    border: none;
    background: transparent;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width: 400px) {
    .reviews-clear-star-filter {
        margin-left: 0;
        margin-right: 0;
    }
}

.reviews-stars-distribution {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-grow: 1;
    max-width: 220px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media(min-width: 400px) {
    .reviews-stars-distribution {
        margin-right: 0;
    }
}

.reviews-dist-row {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 2px 4px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: background-color 0.2s ease, font-weight 0.2s ease;
    width: 100%;
}

.reviews-dist-row:hover {
    background-color: var(--bg-secondary);
}

.reviews-dist-row.active {
    background-color: rgba(197, 160, 89, 0.1);
    font-weight: 700;
}

.reviews-dist-label {
    width: 8px;
    text-align: right;
}

.reviews-dist-star {
    color: var(--accent-gold);
    font-size: 0.65rem;
}

.reviews-dist-bar-bg {
    flex-grow: 1;
    height: 6px;
    background-color: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.reviews-dist-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--accent-gold);
    border-radius: 3px;
    transition: width 0.8s ease;
}

.reviews-dist-pct {
    width: 28px;
    text-align: right;
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Search */
.reviews-search-wrap {
    position: relative;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.reviews-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    color: var(--text-muted);
}

#reviews-search-input {
    width: 100%;
    padding: 10px 36px 10px 36px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-radius: 12px;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

#reviews-search-input:focus {
    border-color: var(--accent-gold);
}

.reviews-search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 2px;
}

/* Categories Scroll */
.reviews-categories-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    flex-shrink: 0;
}

.reviews-categories-scroll::-webkit-scrollbar {
    display: none;
}

.reviews-tabs {
    display: flex;
    gap: 8px;
    white-space: nowrap;
}

.reviews-tab-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-muted);
}

.reviews-tab-btn.active {
    background-color: var(--text-primary);
    border-color: var(--text-primary);
    color: var(--bg-primary);
}

/* Reviews List */
.reviews-list {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 8px;
    margin-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) rgba(0, 0, 0, 0.05);
}

.reviews-list::-webkit-scrollbar {
    width: 3px;
}

.reviews-list::-webkit-scrollbar-thumb {
    background-color: var(--accent-gold);
    border-radius: 2px;
}

/* Review Item */
.review-item {
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.review-author-wrap {
    display: flex;
    gap: 12px;
    align-items: start;
    margin-bottom: 10px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.review-author-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.review-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.review-date {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.review-stars-row-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.review-stars-line {
    color: var(--accent-gold);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.review-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #065f46;
    background-color: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1px 6px;
    border-radius: 10px;
}

.review-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    margin: 0;
    padding-left: 2px;
    white-space: pre-line;
}

.reviews-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.reviews-no-results-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.reviews-no-results-btn:hover {
    background-color: rgba(197, 160, 89, 0.05);
}

/* Load More Button */
.reviews-load-more {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--accent-gold);
    border-radius: 24px;
    background: transparent;
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
    text-align: center;
}

.reviews-load-more:hover {
    background-color: rgba(197, 160, 89, 0.05);
}

.reviews-load-more-google {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 24px;
    background-color: rgba(197, 160, 89, 0.1);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: block;
    text-align: center;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.reviews-load-more-google:hover {
    background-color: rgba(197, 160, 89, 0.2);
}

/* Footer Panel */
.reviews-drawer-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    flex-shrink: 0;
}

.reviews-cta-button {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 24px;
    background-color: var(--text-primary);
    color: var(--bg-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reviews-cta-button:hover {
    background-color: var(--accent-gold);
    color: var(--text-primary);
}

