/* --- 1. THEME VARIABLES --- */
:root {
    --bg: #1E1A17;              
    --surface: #2C2624;         
    --text-main: #F5F0EB;       
    --text-mute: #BCAAA4;       
    --border: #443B38;          
    --accent: #D6C0A6;          
    --accent-bg: #3E3634;       
    --feature-bg: #26211F;
    --cool-gold: linear-gradient(135deg, #E8DCC4 0%, #C4A484 100%);
    --spotlight: #2A2522;
    --success: #4CAF50;
}

[data-theme="light"] {
    --bg: #FFFFFF; --surface: #F4F4F4; --text-main: #111111; 
    --text-mute: #555555; --border: #CCCCCC; --accent: #9E7E5B; 
    --accent-bg: #E0E0E0; --feature-bg: #FFFFFF; --spotlight: transparent;
}

html { font-size: 18px; }
* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body { 
    background: var(--bg); color: var(--text-main); 
    font-family: 'Manrope', sans-serif; 
    overflow-x: hidden; overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--text-main); }
a { text-decoration: none; color: inherit; }
button { font-family: 'Manrope'; cursor: pointer; }

/* --- 2. LAYOUT --- */
.app-shell { display: flex; width: 100%; max-width: 1920px; margin: 0 auto; flex-direction: column; min-height: 100vh; }
.desktop-only { display: none !important; }
.mobile-only { display: flex !important; }

/* SIDEBAR - Compacted for Desktop viewing */
.sidebar { 
    width: 280px; flex-direction: column; padding: 20px; 
    height: 100vh; border-right: 1px solid var(--border); 
    overflow-y: auto; justify-content: space-between;
    position: fixed; left: 0; top: 0; background: var(--bg); z-index: 50;
    display: none; 
}
.sidebar-top { margin-bottom: 15px; text-align: center; }
.brand-area { margin-bottom: 10px; text-align: center; position: relative; }

/* LOGO FIX */
.sidebar-logo { width: 140px; filter: brightness(0) invert(1); } 
[data-theme="light"] .sidebar-logo { filter: none; }

.mini-theme-btn { position: absolute; right: 0; top: 0; background: transparent; border: none; color: var(--text-mute); cursor: pointer; transform: scale(1.1); }

/* --- SIDEBAR SCROLLBAR FIX --- */
.sidebar-nav-wrap { 
    flex: 1; 
    overflow-y: auto; 
    min-height: 0; 
    display: flex; 
    flex-direction: column; 
    padding-right: 12px; /* Prevent button overlap */
}
/* Elegant Custom Scrollbar for the Navigation */
.sidebar-nav-wrap::-webkit-scrollbar { width: 4px; }
.sidebar-nav-wrap::-webkit-scrollbar-track { background: transparent; margin-block: 5px; }
.sidebar-nav-wrap::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.sidebar-nav-wrap::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.side-nav { display: flex; flex-direction: column; gap: 2px; justify-content: flex-start; min-height: min-content; margin-top: 5px; }
.nav-item { 
    background: transparent; border: none; color: var(--text-mute); 
    text-align: left; padding: 8px 12px; font-size: 0.8rem; 
    border-radius: 6px; transition: 0.2s; display: block; width: 100%;
    text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
}
.nav-item:hover, .nav-item.active { color: var(--accent); background: rgba(255,255,255,0.03); }
[data-theme="light"] .nav-item:hover, [data-theme="light"] .nav-item.active { background: rgba(0,0,0,0.05); }

/* BOOK BUTTON SPACING FIX */
.nav-book-link { 
    display: flex; justify-content: center; align-items: center; gap: 10px; 
    background: var(--accent); color: #000; text-align: center; 
    padding: 12px; border-radius: 4px; font-weight: 700; 
    text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; 
    margin-top: 25px; margin-bottom: 10px;
}
[data-theme="light"] .nav-book-link { color: #FFF; }

.sidebar-footer { 
    flex-shrink: 0; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 10px; 
    display: flex; flex-direction: column; gap: 8px; padding-left: 5px; text-align: left;
}
.footer-info { font-size: 0.75rem; color: var(--text-mute); line-height: 1.4; opacity: 0.9; }
.legal-link { background: none; border: none; color: var(--text-mute); text-decoration: underline; cursor: pointer; font-size: 0.75rem; margin-top: 5px; text-align: left; padding: 0; }

.cred-stack { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; margin-top: 5px; }
.mobile-stack { align-items: center; margin-bottom: 20px; } 

.glam-badge { display: flex; align-items: center; gap: 10px; font-size: 0.7rem; color: var(--text-main); opacity: 1; }
.glam-logo-img { height: 16px; width: auto; object-fit: contain; filter: none !important; } 

.jdn-secure-badge { background: rgba(255,255,255,0.1); padding: 5px 10px; border-radius: 4px; }
.jdn-secure-badge a { display: flex; align-items: center; gap: 8px; opacity: 1; color: var(--text-main); text-decoration: none; }
.jdn-logo-img { height: 18px; width: auto; object-fit: contain; filter: none !important; } 

.jdn-meta { display: flex; flex-direction: column; font-size: 7px; letter-spacing: 1px; line-height: 1.2; text-align: left; }
.jdn-role { font-weight: 700; }
.jdn-status { color: #00ff41; }
.pwr { opacity: 0.6; }

/* CONTENT */
.content-stage { flex: 1; height: auto; overflow: visible; background: radial-gradient(circle at top right, var(--spotlight) 0%, var(--bg) 60%); position: relative; padding-top: 90px; }
.page-view { display: none; padding: 40px 20px 80px; width: 100%; animation: fadeIn 0.5s ease forwards; }
.page-view.active { display: block; opacity: 1; }

/* MOBILE HEADER & MENU */
.mobile-header { position: fixed; top: 0; left: 0; width: 100%; height: 90px; background: rgba(28, 25, 23, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; padding: 0 20px; z-index: 1000; }
[data-theme="light"] .mobile-header { background: rgba(255, 255, 255, 0.95); }
.mob-logo { width: 160px; height: auto; filter: brightness(0) invert(1); } 
[data-theme="light"] .mob-logo { filter: none; }

.mob-controls { display: flex; gap: 15px; }
.theme-btn, .menu-btn { background: transparent; border: 1px solid var(--border); width: 45px; height: 45px; border-radius: 50%; color: var(--text-main); display: flex; align-items: center; justify-content: center; }

.mobile-menu-overlay { position: fixed; inset: 0; background: var(--bg); z-index: 2000; display: flex; flex-direction: column; opacity: 0; pointer-events: none; transition: 0.3s; }
.mobile-menu-overlay.active { opacity: 1; pointer-events: auto; }
.mm-header { height: 90px; display: flex; justify-content: space-between; padding: 0 20px; align-items: center; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.mm-logo { width: 160px; height: auto; filter: brightness(0) invert(1); }
[data-theme="light"] .mm-logo { filter: none; }

.mm-close { background: transparent; border: 1px solid var(--border); width: 45px; height: 45px; border-radius: 50%; color: var(--text-main); font-size: 1.2rem; display: flex; align-items: center; justify-content: center; }
.mm-scroll-content { overflow-y: auto; flex: 1; display: flex; flex-direction: column; width: 100%; }
.mm-links { display: flex; flex-direction: column; gap: 25px; text-align: center; margin-top: 40px; }
.mm-links span { font-family: 'Cormorant Garamond'; font-size: 2.2rem; color: var(--text-mute); cursor: pointer; display: block; }
.mm-links span:hover, .mm-links span.active { color: var(--accent); }
.mm-book-btn { display: block; margin: 40px; padding: 20px; background: var(--accent); color: #000; font-weight: 700; border-radius: 50px; text-align: center; font-size: 1.2rem; }
[data-theme="light"] .mm-book-btn { color: #FFF; }
.mm-footer-info { margin-top: auto; padding: 40px 20px; text-align: center; border-top: 1px solid var(--border); background: var(--surface); width: 100%; }
.mm-footer-info p { margin-bottom: 10px; color: var(--text-mute); font-size: 0.9rem; }
.mm-logos { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-top: 20px; }

/* VIEWS */
.hero-layout { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; padding-top: 20px; min-height: 70vh; justify-content: center; }
.arch-frame { width: 220px; height: 220px; border-radius: 50%; overflow: hidden; border: 1px solid var(--border); background: var(--accent); }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-text { max-width: 500px; width: 100%; margin: 0 auto; }
.hero-badge { display: inline-block; border: 1px solid var(--accent); color: var(--accent); padding: 8px 20px; border-radius: 50px; font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-btns { display: flex; flex-direction: column; gap: 15px; width: 100%; margin-top: 20px; }
.action-btn { padding: 18px 35px; background: var(--accent); color: #000; border: none; width: 100%; font-weight: 700; cursor: pointer; border-radius: 6px; transition: 0.3s; font-size: 1rem; text-align: center; }
[data-theme="light"] .action-btn { color: #FFF; }
.action-btn.outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
[data-theme="light"] .action-btn.outline { color: var(--accent); }

/* ZIG ZAG */
.zigzag-block { display: flex; flex-direction: column; gap: 30px; margin-bottom: 80px; }
.zz-text { background: var(--surface); padding: 40px; border-radius: 16px; border: 1px solid var(--border); }
.ls-badge { color: var(--accent); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 15px; }
.zz-text h3 { font-size: 2.2rem; margin-bottom: 20px; }
.zz-text p { color: var(--text-mute); margin-bottom: 25px; font-size: 1.1rem; line-height: 1.7; }
.ls-btn { display: inline-block; background: var(--text-main); color: var(--bg); padding: 14px 30px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; }
.ls-benefits { list-style: none; margin-bottom: 30px; }
.ls-benefits li { font-size: 1rem; display: flex; align-items: center; gap: 10px; color: var(--text-main); margin-bottom: 10px; }
.zz-visual { width: 100%; }
.zz-caption { text-align: center; font-size: 0.9rem; color: var(--text-mute); margin-top: 15px; text-transform: uppercase; letter-spacing: 1px; }

/* --- SLIDER ENGINE --- */
.slider-wrapper { 
    position: relative; width: 100%; height: auto; 
    aspect-ratio: 1 / 1; 
    border-radius: 16px; overflow: hidden; 
    border: 1px solid var(--border); cursor: col-resize; 
    --container-w: 100%;
}
.slider-image { display: block; height: 100%; width: var(--container-w, 100%); max-width: none; object-fit: cover; }
.after-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
.after-container .slider-image { object-position: 100% center; }
.before-container { position: absolute; top: 0; left: 0; width: 50%; height: 100%; z-index: 2; overflow: hidden; border-right: 2px solid #FFF; will-change: width; }
.before-container .slider-image { object-position: 0% center; }
.slider-range { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: col-resize; z-index: 10; margin: 0; }
.handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 50px; height: 50px; background: rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; pointer-events: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 5; color: #000; font-size: 1.2rem; }
.slide-label { position: absolute; top: 20px; font-size: 0.8rem; color: #FFF; background: rgba(0,0,0,0.6); padding: 5px 15px; border-radius: 20px; pointer-events: none; font-weight: 700; backdrop-filter: blur(4px); z-index: 3; }
.lbl-l { left: 20px; } .lbl-r { right: 20px; }

/* GALLERY GRID */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.slider-wrapper.small { aspect-ratio: 4 / 3; }
.handle.mini { width: 40px; height: 40px; font-size: 1rem; }
.evidence-divider { text-align: center; margin: 60px 0 40px; border-bottom: 1px solid var(--border); line-height: 0; }
.evidence-divider span { background: var(--bg); padding: 0 15px; font-family: 'Manrope'; letter-spacing: 2px; font-size: 0.9rem; color: var(--text-mute); }

/* --- CUSTOM EVENTS UI --- */
.events-container { display: flex; flex-direction: column; gap: 30px; max-width: 800px; margin: 0 auto; }
.event-preview { 
    background: var(--surface); 
    border: 1px solid var(--border); 
    border-radius: 16px; 
    padding: 30px;
    transition: 0.3s;
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.event-preview:hover { border-color: var(--accent); transform: translateY(-3px); }

/* --- PAST EVENTS GUI --- */
.ended-event {
    opacity: 0.5;
    filter: grayscale(100%);
}
.ended-event:hover {
    opacity: 0.8;
    filter: grayscale(50%);
    transform: translateY(0);
    border-color: var(--border);
}
.status-badge {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(255, 68, 68, 0.15);
    color: #FF4444;
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-right: 8px;
    vertical-align: text-bottom;
}

.ev-pre-date { font-family: 'Fira Code', monospace; color: var(--accent); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 1px; }
.ev-pre-title { font-size: 1.8rem; margin-bottom: 10px; color: var(--text-main); font-family: 'Cormorant Garamond'; }
.ev-pre-desc { font-size: 1rem; color: var(--text-mute); margin-bottom: 20px; line-height: 1.5; font-family: 'Manrope'; }
.ev-pre-btn { display: inline-block; padding: 10px 25px; border: 1px solid var(--accent); border-radius: 50px; color: var(--accent); font-size: 0.85rem; font-weight: 700; cursor: pointer; transition: 0.2s; background: transparent; }
.ev-pre-btn:hover { background: var(--accent); color: #000; }

/* --- THE FULL SCREEN EVENT MODAL (Popup) --- */
.event-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); z-index: 2500;
    display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.event-modal.active { display: flex; animation: fadeIn 0.3s ease; }
.em-card {
    background: var(--surface);
    border: 1px solid var(--accent);
    border-radius: 20px;
    width: 100%; max-width: 600px;
    max-height: 90vh; overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* CUSTOM MODAL SCROLLBAR FOR WINDOWS DESKTOP */
.em-card::-webkit-scrollbar { width: 6px; }
.em-card::-webkit-scrollbar-track { background: transparent; }
.em-card::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.em-card::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.em-header {
    background: var(--cool-gold);
    color: #2B2421;
    padding: 30px; text-align: center;
}
.em-title { font-size: 2.2rem; margin-bottom: 5px; font-weight: 400; font-family: 'Cormorant Garamond'; line-height: 1.1; }
.em-subtitle { font-family: 'Fira Code'; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.em-body { padding: 30px; }
.em-section { margin-bottom: 25px; border-bottom: 1px dashed var(--border); padding-bottom: 20px; }
.em-section:last-child { border: none; }
.em-label { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; font-weight: 700; font-family: 'Manrope'; }
.em-text { color: var(--text-main); font-size: 1.1rem; line-height: 1.5; font-family: 'Manrope'; }
.em-price { font-size: 2rem; color: var(--accent); font-family: 'Cormorant Garamond'; font-weight: 700; margin: 15px 0; display: block; text-align: center; }
.em-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.em-btn { padding: 15px; text-align: center; border-radius: 8px; font-weight: 700; cursor: pointer; text-decoration: none; font-family: 'Manrope'; }
.em-btn.primary { background: var(--accent); color: #000; }
.em-btn.secondary { border: 1px solid var(--accent); color: var(--accent); background: transparent; }
.em-close { position: absolute; top: 15px; right: 15px; background: rgba(0,0,0,0.2); border: none; color: #2B2421; width: 35px; height: 35px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* MENU & TABS */
.cat-tabs { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 30px; }
.cat-tab { background: var(--surface); border: 1px solid var(--border); color: var(--text-mute); padding: 12px 25px; border-radius: 50px; font-size: 0.95rem; white-space: nowrap; cursor: pointer; transition: 0.3s; }
.cat-tab.active { background: var(--text-main); color: var(--bg); }
.menu-grid { display: none; grid-template-columns: 1fr; gap: 20px; padding-bottom: 80px; max-width: 600px; margin: 0 auto; }
.menu-grid.active { display: grid; }

/* TICKET CARD OVERLAP FIX */
.ticket-card { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: 0.3s; cursor: pointer; text-decoration: none; color: inherit; min-height: 100px; justify-content: space-between; }
.tk-stub { width: 80px; height: 100%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.03); border-right: 2px dashed var(--border); font-size: 1.8rem; color: var(--accent); flex-shrink: 0; }
.tk-content { flex: 1; padding: 15px; min-width: 0; padding-right: 10px; }
.tk-content h4 { font-family: 'Manrope'; font-size: 1.1rem; margin-bottom: 2px; font-weight: 700; white-space: normal; word-break: break-word; }
.tk-content p { font-size: 0.95rem; color: var(--text-mute); }
.tk-action { padding: 0 15px; font-family: 'Fira Code'; font-size: 0.85rem; color: var(--accent); font-weight: 700; letter-spacing: 1px; flex-shrink: 0; white-space: nowrap; margin-left: auto; }
.highlight-ticket { border-color: var(--accent); background: linear-gradient(90deg, rgba(214,192,166,0.05), transparent); }

/* BENTO, PAY, GIFT, INSIDER, REVIEWS, RADAR, LEGAL */
.bento-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.glass-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); backdrop-filter: blur(10px); padding: 30px; border-radius: 16px; position: relative; overflow: hidden; transition: 0.3s; }
.glass-card:hover { transform: translateY(-5px); border-color: var(--accent); background: rgba(255,255,255,0.05); }
.proto-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 15px; }
.text-item h4 { color: var(--text-main); margin-bottom: 10px; font-size: 1.3rem; font-family: 'Cormorant Garamond'; }
.text-item p { font-size: 1rem; color: var(--text-mute); }
.text-item.dark-accent { background: var(--accent-bg); }
.payment-layout { display: flex; flex-direction: column; gap: 30px; }
.pay-option h3 { font-size: 1.4rem; margin-bottom: 10px; color: var(--accent); }
.pay-btn-std { display: block; text-align: center; background: var(--surface); border: 1px solid var(--border); padding: 15px; border-radius: 6px; font-weight: 700; font-size: 0.9rem; }
.payment-grid { display: grid; grid-template-columns: 1fr; gap: 15px; }
.pay-card { background: var(--surface); border: 1px solid var(--border); padding: 20px; border-radius: 12px; text-align: center; cursor: pointer; }
.pay-logo-row { font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 10px; }
.pay-mini { width: 30px; border-radius: 4px; }
.pay-cta { color: var(--accent); font-size: 0.8rem; letter-spacing: 2px; }
.gift-fullscreen { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 70vh; gap: 40px; }
.gold-card-visual { width: 85vw; max-width: 400px; aspect-ratio: 1.58; background-color: #D6C0A6; background-image: var(--cool-gold); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 20px 50px rgba(0,0,0,0.5); color: #2B2421; }
.card-top { font-size: 0.9rem; letter-spacing: 3px; font-weight: 700; opacity: 0.8; }
.card-chip { width: 50px; height: 35px; background: rgba(0,0,0,0.1); border-radius: 6px; border: 1px solid rgba(0,0,0,0.2); }
.card-value { font-size: 2.5rem; font-family: 'Cormorant Garamond'; font-weight: 600; }
.card-bottom { display: flex; justify-content: space-between; align-items: flex-end; }
.card-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.7; }
.gift-actions { text-align: center; width: 100%; max-width: 400px; }
.purchase-btn { display: block; width: 100%; text-align: center; padding: 18px; background: var(--accent); color: #000; border-radius: 6px; font-weight: 700; font-size: 1.1rem; box-shadow: 0 5px 20px rgba(214,192,166,0.3); transition: 0.3s; }
[data-theme="light"] .purchase-btn { color: #FFF; }
.gatekeeper-card { padding: 40px; text-align: center; border: 1px solid var(--accent); border-radius: 16px; background: var(--surface); }
.gk-row input { padding: 15px; width: 100%; margin-bottom: 10px; border-radius: 4px; border: 1px solid var(--border); background: var(--bg); color: var(--text-main); font-size: 1.1rem; text-align: center; }
.gk-btn { padding: 15px; width: 100%; border-radius: 4px; background: var(--accent); color: #000; border: none; font-weight: 700; font-size: 1rem; margin-top: 15px; }
[data-theme="light"] .gk-btn { color: #FFF; }
.legal-checkbox { text-align: left; font-size: 0.8rem; color: var(--text-mute); margin: 10px 0; display: flex; gap: 10px; align-items: flex-start; }
.legal-checkbox input { margin-top: 3px; }
.resend-link { margin-top: 15px; color: var(--text-mute); text-decoration: underline; font-size: 0.8rem; cursor: pointer; }
.success-badge { font-size: 3rem; color: var(--success); margin-bottom: 15px; }
.discount-box { background: rgba(255,255,255,0.1); border: 1px dashed var(--accent); padding: 15px; font-family: 'Fira Code'; font-size: 1.5rem; letter-spacing: 2px; margin: 15px 0; color: var(--accent); }
.inquiry-box { background: var(--surface); border: 1px solid var(--border); padding: 40px; border-radius: 16px; text-align: left; }
.inquiry-box h3 { font-size: 1.8rem; margin-bottom: 10px; }
.inquiry-box p { color: var(--text-mute); margin-bottom: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.contact-form input, .contact-form textarea { padding: 15px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; color: var(--text-main); font-size: 1rem; }
.send-btn { padding: 15px; background: var(--text-main); color: var(--bg); font-weight: 700; border: none; border-radius: 4px; cursor: pointer; }
.rev-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px; text-align: center; margin: 0 auto; max-width: 600px; }
.rev-display h3 { font-size: 2rem; margin: 20px 0; color: var(--text-main); }
.review-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.review-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 25px; border-radius: 12px; width: 100%; text-align: left; }
.rc-stars { color: var(--accent); margin-bottom: 10px; font-size: 0.9rem; }
.rc-text { font-style: italic; color: var(--text-main); font-size: 1rem; line-height: 1.6; margin-bottom: 10px; }
.rc-author { font-weight: 700; color: var(--text-mute); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; }
.rev-buttons { display: flex; flex-direction: column; gap: 15px; margin-top: 30px; }
.rev-btn { padding: 18px; border-radius: 6px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--surface); border: 1px solid var(--border); color: var(--text-main); }
.rev-btn:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.zone-radar-card { background: var(--surface); border: 1px solid var(--border); padding: 30px; border-radius: 20px; text-align: center; margin: 0 auto; max-width: 600px; }
.radar-visual { font-size: 3rem; color: var(--accent); margin-bottom: 20px; }
.zone-list { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; text-align: left; }
.zone-item { display: flex; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 10px; font-size: 1.1rem; }
.zip-check-row { display: flex; gap: 10px; width: 100%; flex-wrap: nowrap; }
.zip-check-row input { flex: 1; min-width: 0; padding: 15px; background: var(--bg); border: 1px solid var(--border); color: var(--text-main); font-size: 1rem; border-radius: 4px; }
.zip-check-row button { padding: 0 20px; background: var(--text-main); color: var(--bg); font-weight: 700; border: none; border-radius: 4px; white-space: nowrap; flex-shrink: 0; }
.zip-output { margin-top: 15px; font-weight: 700; color: var(--accent); }
.ooz-options { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); animation: fadeIn 0.3s; }
.ooz-btns { display: flex; gap: 10px; margin-top: 15px; }
.ooz-btn { flex: 1; padding: 12px; background: var(--accent); color: #000; text-decoration: none; font-weight: 700; border-radius: 4px; font-size: 0.9rem; }
#view-legal h3 { color: var(--accent); border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 15px; margin-top: 30px; font-size: 1.5rem; }
#view-legal p { margin-bottom: 15px; line-height: 1.6; color: var(--text-mute); }
#view-legal b { color: var(--text-main); }
#splash { position: fixed; inset: 0; background: var(--bg); z-index: 3000; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 1; transition: opacity 0.8s; }
.splash-logo { width: 70vw; max-width: 600px; filter: brightness(0) invert(1); animation: grow 1.5s forwards; } 
[data-theme="light"] .splash-logo { filter: none; }
@keyframes grow { 0% { transform: scale(0.8); } 50% { transform: scale(1.05); } }
#lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 4000; display: none; align-items: center; justify-content: center; flex-direction: column; }
#lb-img { max-width: 90vw; max-height: 80vh; }
.modal-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; display: none; }
.modal-backdrop.active { display: block; }
.sms-sheet { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--surface); padding: 40px; border-radius: 20px 20px 0 0; z-index: 2100; transform: translateY(100%); transition: 0.3s; max-height: 80vh; overflow-y: auto; }
.sms-sheet.active { transform: translateY(0); }

/* DESKTOP OVERRIDES */
@media (min-width: 1024px) {
    .desktop-only { display: flex !important; }
    .mobile-only { display: none !important; }
    .app-shell { flex-direction: row; height: 100vh; overflow: hidden; }
    
    /* SIDEBAR COMPRESSION FOR LAPTOPS */
    .sidebar { display: flex; width: 280px; }
    .content-stage { padding: 0; margin-left: 280px; height: 100vh; overflow-y: auto; }
    
    /* FIX: HIDE INACTIVE TABS ON DESKTOP */
    .page-view { position: relative; inset: auto; padding: 120px 8%; opacity: 1; pointer-events: auto; max-width: 1400px; margin: 0 auto; display: none; }
    .page-view.active { display: block; }
    
    .hero-layout { flex-direction: row-reverse; text-align: left; }
    .hero-btns { flex-direction: row; width: auto; }
    .action-btn { width: auto; margin-right: 15px; margin-bottom: 0; }
    
    /* LASER SHOWCASE SIZE CAPPING */
    .zigzag-block { flex-direction: row; align-items: center; gap: 60px; }
    .zigzag-block.reverse { flex-direction: row-reverse; }
    .zz-visual { flex: 1; max-width: 450px; }
    .zz-text { flex: 1; }
    
    /* MULTI-COLUMN IMAGE GALLERY */
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    
    /* TREATMENT GRID EXPANSION */
    .menu-grid { display: none; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; } 
    .menu-grid.active { display: grid; }
    
    .travel-layout { flex-direction: row; }
    .insider-layout { flex-direction: row; align-items: stretch; gap: 40px; }
    .rev-buttons { flex-direction: row; }
}
