/* ========================================
   Real Ink Tattoo Herning - Stylesheet
   ======================================== */

/* --- CSS Variables --- */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f18;
    --bg-card: #12121e;
    --bg-card-hover: #1a1a2a;
    --bg-input: #151520;
    --text-primary: #f0f0f5;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent: #5ba4e6;
    --accent-hover: #7bbcf5;
    --accent-light: rgba(91, 164, 230, 0.12);
    --accent-glow: rgba(91, 164, 230, 0.35);
    --gold: #d4a844;
    --gold-light: rgba(212, 168, 68, 0.15);
    --premium-purple: #8b5cf6;
    --premium-light: rgba(139, 92, 246, 0.15);
    --success: #22c55e;
    --danger: #ef4444;
    --border: #1e1e2e;
    --border-light: #2a2a3a;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --transition: all 0.3s ease;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

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

img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 25px var(--accent-glow), 0 0 50px rgba(91, 164, 230, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-full { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #dc2626; }

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(91, 164, 230, 0.1);
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-real { color: var(--text-primary); }
.logo-ink { color: var(--accent); }

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

.nav-menu a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover, .nav-menu a.active { color: var(--text-primary); }

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}
.nav-menu a:hover::after { width: 100%; }

.nav-login-btn {
    background: var(--accent) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
}
.nav-login-btn:hover { background: var(--accent-hover) !important; }
.nav-login-btn::after { display: none !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0a0a0f url('../images/hero_bg.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 24px 80px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    letter-spacing: 8px;
    margin-bottom: 8px;
}

.hero-real { color: var(--text-primary); }
.hero-ink { color: var(--accent); text-shadow: 0 0 60px var(--accent-glow), 0 0 120px rgba(91, 164, 230, 0.15); }

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 12px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* --- Om Os Section --- */
.om-os {
    background: var(--bg-secondary);
}

.om-os-content {
    max-width: 800px;
    margin: 0 auto;
}

.om-os-history {
    text-align: center;
    margin-bottom: 48px;
}

.om-os-history p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

.owner-card {
    background: linear-gradient(135deg, var(--bg-card), rgba(91, 164, 230, 0.05));
    border: 1px solid rgba(91, 164, 230, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}

.owner-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
}

.owner-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.owner-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.owner-title h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.owner-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.owner-bio p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
}

.owner-achievements {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.owner-achievements .achievement {
    text-align: center;
}

.owner-achievements .achievement strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.owner-achievements .achievement span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.owner-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* --- Booking Tips --- */
.booking-tips {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.booking-tips h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.tips-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.tips-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.tip-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

/* --- Membership Explainer --- */
.membership-explainer {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.membership-explainer h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 32px;
    color: var(--accent);
}

.explainer-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.explainer-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.explainer-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.explainer-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Membership Value --- */
.membership-value {
    margin-top: 48px;
    text-align: center;
}

.membership-value h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.membership-value-subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.value-examples {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-example {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: left;
}

.value-example h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 16px;
}

.value-example p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 4px;
}

.value-total {
    color: var(--success) !important;
    font-weight: 700;
    margin-top: 12px !important;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

/* --- QR Membership Card --- */
.medlemskort-display {
    text-align: center;
}

.qr-card {
    background: linear-gradient(135deg, var(--bg-input) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    max-width: 320px;
    margin: 0 auto;
}

.qr-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.qr-card-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.qr-card-tier {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-card-tier.vip {
    background: var(--accent-light);
    color: var(--accent);
}

.qr-card-tier.premium {
    background: var(--premium-light);
    color: var(--premium-purple);
}

.qr-code-wrapper {
    background: #1a1a1a;
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
    display: inline-block;
}

.qr-code-img {
    display: block;
    border-radius: 4px;
}

.qr-card-info {
    margin-bottom: 16px;
}

.qr-member-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.qr-member-id {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.qr-member-since {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.qr-instruction {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
    padding: 12px;
    background: var(--accent-light);
    border-radius: var(--radius-sm);
}

/* --- Dashboard Stats --- */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.dash-stat {
    background: var(--bg-input);
    border-radius: var(--radius);
    padding: 20px 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.dash-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.dash-stat-text {
    font-size: 1rem !important;
}

.dash-stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Sections --- */
.section { padding: 100px 0; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 8px;
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 56px;
}

/* --- Artists --- */
.artists { background: var(--bg-secondary); }

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.artist-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.artist-card:hover { border-color: rgba(91, 164, 230, 0.2); box-shadow: 0 8px 32px rgba(91, 164, 230, 0.08); }

.artist-image-wrapper { position: relative; }

.artist-image {
    height: 300px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--bg-card));
}

.artist-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}
.artist-badge.apprentice { background: var(--gold); color: #000; }

.artist-info { padding: 24px 32px; }

.artist-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.artist-role {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.artist-pricing { margin-bottom: 24px; }

.artist-pricing h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.price-grid { display: grid; gap: 8px; }

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
}

.price-label { color: var(--text-secondary); font-size: 0.9rem; }

.price-value {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.05rem;
}

.btn-book-artist { width: 100%; margin-top: 8px; }

/* Artist Slideshow */
.artist-slideshow {
    padding: 24px 32px 32px;
    border-top: 1px solid var(--border);
}

.artist-slideshow h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.slideshow-container {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--bg-input);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.slide.active { opacity: 1; }

.slide img, .slide-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-input);
}

.slide-placeholder svg { width: 100%; height: 100%; }

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

.slide-prev, .slide-next {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.slide-prev:hover, .slide-next:hover { border-color: var(--accent); color: var(--accent); }

.slide-dots { display: flex; gap: 8px; }

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}
.slide-dot.active { background: var(--accent); transform: scale(1.2); }

/* --- Stick and Poke --- */
.stick-poke {
    background: linear-gradient(135deg, #0a0a0f 0%, #0e1020 50%, #0a0a0f 100%);
}

.stickpoke-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.stickpoke-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.stickpoke-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.stickpoke-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.stickpoke-features li {
    color: var(--text-secondary);
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.stickpoke-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.stickpoke-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stickpoke-video iframe {
    border-radius: var(--radius);
    max-width: 100%;
}

/* --- Video Gallery --- */
.video-gallery {
    background: var(--bg-secondary);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-card {
    text-align: center;
}

.video-card iframe {
    border-radius: var(--radius);
    max-width: 100%;
}

.video-caption {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .stickpoke-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stickpoke-video {
        order: -1;
    }
}

/* --- Booking --- */
.booking { background: var(--bg-primary); }

.booking-login-notice {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border-light);
}

.booking-login-notice p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.booking-system {
    max-width: 800px;
    margin: 0 auto;
}

.booking-step {
    display: none;
    animation: fadeIn 0.3s ease;
}
.booking-step.active { display: block; }

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

.booking-step h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-align: center;
}

/* Artist Selection */
.artist-select-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

.artist-select-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: var(--font-body);
    color: var(--text-primary);
}
.artist-select-card:hover, .artist-select-card.selected {
    border-color: var(--accent);
    background: var(--accent-light);
}

.asc-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.asc-info { display: flex; flex-direction: column; gap: 2px; }
.asc-info strong { font-size: 1.05rem; }
.asc-info span { font-size: 0.85rem; color: var(--text-secondary); }
.asc-price { color: var(--accent) !important; font-weight: 600; }

/* Session Selection */
.session-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.session-design { border-color: var(--accent); background: rgba(91, 164, 230, 0.05); }
.session-design .session-icon { font-size: 1.5rem; }

.session-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 20px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    color: var(--text-primary);
    text-align: center;
}
.session-card:hover, .session-card.selected {
    border-color: var(--accent);
    background: var(--accent-light);
}

.session-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.session-card strong { font-size: 1rem; }
.session-desc { font-size: 0.8rem; color: var(--text-muted); }
.session-price { color: var(--accent); font-weight: 700; font-size: 1.1rem; }

/* Calendar */
.calendar-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    max-width: 500px;
    margin: 0 auto 24px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-header h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.cal-nav {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cal-nav:hover { border-color: var(--accent); color: var(--accent); }

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px;
}

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

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    background: none;
    color: var(--text-primary);
    font-family: var(--font-body);
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--accent-light); color: var(--accent); }
.cal-day.selected { background: var(--accent); color: #fff; }
.cal-day.disabled { color: var(--text-muted); opacity: 0.3; cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.today { border: 1px solid var(--accent); }
.cal-day.has-slots::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--success);
}
.cal-day { position: relative; }

/* Time Slots */
.time-slots {
    max-width: 500px;
    margin: 0 auto;
}

.time-slots h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    text-align: center;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
}
.time-slot:hover, .time-slot.selected { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.time-slot.booked { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Booking Summary */
.booking-summary {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total { font-size: 1.2rem; font-weight: 700; color: var(--accent); border-top: 2px solid var(--border-light); margin-top: 8px; padding-top: 16px; }
.summary-row.discount span:last-child { color: var(--success); }
.summary-row.cashback span:last-child { color: var(--gold); }
.summary-row.premium-note { color: var(--premium-purple); font-style: italic; }
.summary-row.premium-note span { flex: 1; }

#bookingStep4 { text-align: center; }
#confirmBooking { margin-right: 12px; }

.booking-nav { text-align: center; margin-top: 24px; }

/* --- Design Upload --- */
.design-upload-form { max-width: 600px; margin: 0 auto; }
.design-upload-form .form-group { margin-bottom: 20px; }
.design-upload-form label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--text-primary); }
.design-upload-form input,
.design-upload-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
}
.design-upload-form input:focus,
.design-upload-form textarea:focus { border-color: var(--accent); outline: none; }
.upload-area {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s;
}
.upload-area:hover,
.upload-area.drag-over { border-color: var(--accent); background: rgba(91, 164, 230, 0.05); }
.upload-placeholder { color: var(--text-secondary); }
.upload-placeholder svg { margin-bottom: 12px; opacity: 0.5; }
.design-preview { max-width: 100%; max-height: 300px; border-radius: 8px; object-fit: contain; }

/* --- Membership --- */
.membership { background: var(--bg-secondary); }

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.membership-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    text-align: center;
}
.membership-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(91, 164, 230, 0.08); border-color: rgba(91, 164, 230, 0.2); }

.membership-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: scale(1.02);
}
.membership-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.membership-card.premium {
    border-color: var(--premium-purple);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.membership-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 4px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.premium-badge { background: var(--premium-purple); }

.membership-header { margin-bottom: 28px; }

.membership-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent);
}
.membership-card.premium .price-amount { color: var(--premium-purple); }

.price-period { color: var(--text-muted); font-size: 0.9rem; }

.membership-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.membership-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check { color: var(--success); font-weight: 700; font-size: 1.1rem; }
.cross { color: var(--text-muted); opacity: 0.4; }
.membership-features li:has(.cross) { opacity: 0.5; }

.membership-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    padding: 0 8px;
}

.btn-membership { width: 100%; }

/* FMX Banner */
.fmx-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(91, 164, 230, 0.1) 100%);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
}

.fmx-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.fmx-content p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

/* --- Contact --- */
.contact { background: var(--bg-primary); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    transition: var(--transition);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--accent); }

.contact-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-item p { color: var(--text-secondary); font-size: 0.9rem; }
.contact-item a { color: var(--text-secondary); }
.contact-item a:hover { color: var(--accent); }

.social-links { display: flex; gap: 12px; margin-top: 16px; }

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-secondary);
    font-size: 0.8rem;
}
.social-link svg { width: 20px; height: 20px; }
.social-link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

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

/* --- Footer --- */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 24px;
}

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

.footer-brand { }
.footer-brand .logo-real, .footer-brand .logo-ink {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 2px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; margin-top: 12px; line-height: 1.6; }

.footer-links h4, .footer-social h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links p { color: var(--text-muted); font-size: 0.9rem; }

.footer-social .social-links { flex-direction: column; }
.footer-social .social-link { width: auto; height: auto; border-radius: 0; background: none; border: none; justify-content: flex-start; color: var(--text-muted); font-size: 0.9rem; }
.footer-social .social-link:hover { color: var(--accent); background: none; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active { display: flex; }

.modal {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-lg { max-width: 700px; }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.modal-close:hover { color: var(--text-primary); background: var(--bg-input); }

.auth-form h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.auth-form > p { color: var(--text-secondary); margin-bottom: 28px; }

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-secondary);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Dashboard --- */
.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.dashboard-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 1px;
}

.dashboard-user-info { display: flex; align-items: center; gap: 12px; }

.dashboard-tier {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.dashboard-tier.free { background: var(--bg-input); color: var(--text-muted); }
.dashboard-tier.vip { background: var(--accent-light); color: var(--accent); }
.dashboard-tier.premium { background: var(--premium-light); color: var(--premium-purple); }

.dashboard-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.dash-tab {
    padding: 12px 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}
.dash-tab:hover { color: var(--text-secondary); }
.dash-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.dash-panel { display: none; }
.dash-panel.active { display: block; }

.dash-panel h3 { font-size: 1.1rem; margin-bottom: 16px; }

.empty-state { color: var(--text-muted); font-style: italic; text-align: center; padding: 24px; }

.savings-display { text-align: center; }

.savings-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.savings-progress { max-width: 400px; margin: 0 auto; }

.savings-bar {
    height: 12px;
    background: var(--bg-input);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.savings-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--accent));
    border-radius: 6px;
    transition: width 0.5s ease;
    width: 0%;
}

#savingsTarget { color: var(--text-muted); font-size: 0.85rem; }

.booking-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-input);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
}

.booking-item-info strong { display: block; margin-bottom: 4px; }
.booking-item-info span { font-size: 0.85rem; color: var(--text-muted); }
.booking-item-price { color: var(--accent); font-weight: 700; font-size: 1.1rem; }

.settings-form { max-width: 400px; }
.settings-form .btn { margin-top: 12px; margin-right: 8px; }

/* --- Chat Widget --- */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1500;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 25px var(--accent-glow), 0 0 50px rgba(91, 164, 230, 0.1);
    transition: var(--transition);
}
.chat-toggle:hover { transform: scale(1.05); background: var(--accent-hover); box-shadow: 0 4px 30px var(--accent-glow), 0 0 60px rgba(91, 164, 230, 0.15); }
.chat-toggle svg { width: 28px; height: 28px; }

.chat-window {
    display: none;
    position: absolute;
    bottom: 72px;
    right: 0;
    width: 380px;
    height: 520px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    flex-direction: column;
}
.chat-window.active { display: flex; }

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--accent);
    color: #fff;
}

.chat-header-info { display: flex; align-items: center; gap: 12px; }

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.chat-header-info strong { font-size: 0.95rem; display: block; }
.chat-status { font-size: 0.75rem; opacity: 0.8; }

.chat-minimize {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}
.chat-minimize:hover { opacity: 1; }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-msg {
    max-width: 80%;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.chat-msg.bot {
    background: var(--bg-input);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.chat-msg.user {
    background: var(--accent);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-input-area { padding: 12px 16px; border-top: 1px solid var(--border); }

.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.quick-reply {
    padding: 6px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.quick-reply:hover { border-color: var(--accent); color: var(--accent); }

.chat-upload-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    color: var(--text-secondary);
}
.chat-upload-btn:hover { border-color: var(--accent); color: var(--accent); }
.chat-upload-btn svg { width: 20px; height: 20px; pointer-events: none; }

.chat-msg img { max-width: 200px; margin-top: 4px; }

.chat-input-row { display: flex; gap: 8px; align-items: center; }

#chatInput {
    flex: 1;
    padding: 10px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 24px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
}
#chatInput:focus { outline: none; border-color: var(--accent); }

#chatSend {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
#chatSend:hover { background: var(--accent-hover); }
#chatSend svg { width: 18px; height: 18px; }

/* --- Toast --- */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    font-size: 0.9rem;
    transition: bottom 0.4s ease;
}
.toast.active { bottom: 32px; }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }

/* --- Responsive --- */
@media (max-width: 968px) {
    .artists-grid { grid-template-columns: 1fr; }
    .membership-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .membership-card.featured { transform: none; }
    .membership-card.featured:hover { transform: translateY(-4px); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .explainer-steps { grid-template-columns: 1fr; gap: 16px; }
    .value-examples { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }
    .nav-menu.active { transform: translateX(0); }

    .nav-menu a { font-size: 1.2rem; }

    .hero-stats { gap: 24px; }
    .hero-content h1 { letter-spacing: 4px; }

    .session-grid { grid-template-columns: repeat(2, 1fr); }

    .chat-window { width: calc(100vw - 48px); right: -12px; }

    .modal { padding: 28px 20px; }

    .footer-grid { grid-template-columns: 1fr; }

    .section { padding: 70px 0; }

    .fmx-banner { padding: 32px 20px; }
}

@media (max-width: 480px) {
    .hero { background-position: 25% center; }
    .hero-stats { gap: 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .session-grid { grid-template-columns: repeat(2, 1fr); }
    .artist-info { padding: 20px; }
    .artist-slideshow { padding: 20px; }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(91, 164, 230, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(91, 164, 230, 0.4); }

/* --- Selection --- */
::selection { background: var(--accent); color: #fff; }

/* --- Payment Pending Banner --- */
.payment-pending-banner {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    width: 90%;
    max-width: 500px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: 0 8px 32px rgba(91, 164, 230, 0.3);
    animation: slideUpBanner 0.4s ease;
}

@keyframes slideUpBanner {
    from { transform: translateX(-50%) translateY(100px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

.payment-pending-content strong {
    display: block;
    color: var(--accent);
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.payment-pending-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.payment-pending-content a { color: var(--accent); text-decoration: underline; }

/* --- Fade In Animation --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.section {
    animation: fadeInUp 0.8s ease both;
}

/* --- Section Separators --- */
.section + .section {
    border-top: 1px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--border-light), transparent) 1;
}

/* --- Contact Item Hover --- */
.contact-item:hover {
    border-color: rgba(91, 164, 230, 0.2);
    box-shadow: 0 8px 32px rgba(91, 164, 230, 0.08);
}

/* --- Reviews --- */
.reviews { text-align: center; }

.reviews-slideshow {
    position: relative;
    overflow: hidden;
    margin: 40px 0 30px;
}

.review-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.review-card {
    min-width: calc(33.333% - 16px);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: left;
    transition: var(--transition);
    flex-shrink: 0;
}

.review-card:hover {
    border-color: rgba(91, 164, 230, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(91, 164, 230, 0.08);
}

.review-stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.review-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.review-prev, .review-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-prev:hover, .review-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.reviews-cta {
    margin-top: 10px;
}

@media (max-width: 968px) {
    .review-card { min-width: calc(50% - 12px); }
}

@media (max-width: 480px) {
    .review-card { min-width: 100%; }
}

/* --- Inquiry Notice Style --- */
.inquiry-notice {
    background: var(--accent-light);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.inquiry-notice strong {
    color: var(--accent);
}

.booking-status {
    display: inline-block;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 4px;
    font-weight: 600;
}
.booking-status.pending {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}
.booking-status.confirmed {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

/* ========================================
   Masonry Gallery Section
   ======================================== */
.gallery-section {
    background: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 10px 24px;
    border: 2px solid var(--border-light);
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.gallery-filter.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.masonry-gallery {
    columns: 4;
    column-gap: 16px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ========================================
   Accordion (Aftercare & FAQ)
   ======================================== */
.aftercare, .faq-section {
    background: var(--bg-primary);
}

.faq-section {
    background: var(--bg-secondary);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--bg-card);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(91, 164, 230, 0.08);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--accent);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    max-height: 500px;
    padding: 0 24px 20px;
}

.accordion-body p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.accordion-body ul {
    list-style: none;
    padding: 0;
}

.accordion-body ul li {
    color: var(--text-secondary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.accordion-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ========================================
   Opening Hours
   ======================================== */
.opening-hours {
    margin-top: 30px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.opening-hours h4 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.hours-row span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.hours-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer hours */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-hours h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.footer-hours span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   Google Maps Dark Mode
   ======================================== */
.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    filter: grayscale(0.7) invert(0.92) contrast(1.1) hue-rotate(180deg);
}

.map-wrapper iframe {
    display: block;
}

/* ========================================
   Scroll Animations
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ========================================
   Responsive Fixes
   ======================================== */
@media (max-width: 968px) {
    .masonry-gallery {
        columns: 3;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        columns: 2;
    }

    .gallery-filters {
        gap: 8px;
    }

    .gallery-filter {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .artist-card {
        flex-direction: column;
    }

    .artist-image-wrapper {
        width: 100%;
    }

    .artist-image {
        height: 280px;
    }

    .artist-info {
        width: 100%;
    }

    .stickpoke-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-card iframe {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Membership table horizontal scroll on mobile */
    .membership-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 16px;
    }

    .membership-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .accordion-header {
        padding: 14px 16px;
        font-size: 0.9rem;
    }

    .accordion-item.active .accordion-body {
        padding: 0 16px 16px;
    }
}

@media (max-width: 480px) {
    .masonry-gallery {
        columns: 2;
        column-gap: 10px;
    }

    .gallery-item {
        margin-bottom: 10px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 0;
    }
}

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10001;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.footer-legal {
    margin-top: 8px;
    font-size: 0.8rem;
}

.footer-legal a {
    color: var(--text-muted);
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
