/* ==========================================================================
   ROYAL PALACE - LUXURY NIGHTCLUB & KTV LANDING STYLES
   Design Palette: Obsidian Dark (#08070B), Champagne Gold (#D4AF37), Neon Purple (#A855F7)
   ========================================================================== */

:root {
    --bg-dark: #08070b;
    --bg-card: rgba(22, 17, 31, 0.72);
    --bg-card-hover: rgba(32, 24, 46, 0.88);
    --glass-border: rgba(212, 175, 55, 0.22);
    --glass-border-hover: rgba(212, 175, 55, 0.6);
    
    --gold-primary: #D4AF37;
    --gold-light: #F7E5A9;
    --gold-dark: #997A15;
    --gold-gradient: linear-gradient(135deg, #FFF2D1 0%, #D4AF37 45%, #997A15 100%);
    --gold-btn-gradient: linear-gradient(135deg, #E5C158 0%, #B38728 100%);
    
    --wechat-green: #07C160;
    --wechat-bg: rgba(7, 193, 96, 0.12);
    --wechat-border: rgba(7, 193, 96, 0.35);
    
    --whatsapp-green: #25D366;
    --whatsapp-bg: rgba(37, 211, 102, 0.12);
    --whatsapp-border: rgba(37, 211, 102, 0.35);
    
    --neon-purple: #A855F7;
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;

    --font-heading: 'Cinzel', serif, system-ui;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
    
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 8px;
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.15);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Background Particle Canvas */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Ambient Glow Backgrounds */
.ambient-glow {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.28;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    top: -50px;
    left: -50px;
    background: radial-gradient(circle, #D4AF37, transparent);
}

.glow-2 {
    bottom: 10%;
    right: -80px;
    background: radial-gradient(circle, #A855F7, transparent);
}

/* App Mobile Container */
.app-container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 16px 16px 110px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Top Nav */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(18, 14, 26, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.brand-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--wechat-green);
    box-shadow: 0 0 10px var(--wechat-green);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.status-text {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.3px;
}

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

/* Language Toggle Button */
.lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-toggle-btn:active {
    transform: scale(0.92);
    background: rgba(212, 175, 55, 0.3);
}

.lang-toggle-btn i {
    font-size: 13px;
    color: var(--gold-primary);
}

.icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--glass-border);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-btn:active {
    transform: scale(0.9);
}

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
    padding: 24px 20px 20px 20px;
    background: linear-gradient(180deg, rgba(30, 22, 45, 0.7) 0%, rgba(16, 12, 24, 0.85) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hero-avatar-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 14px;
}

.avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #D4AF37, #A855F7, #FFF2D1, #D4AF37);
    animation: rotate 6s linear infinite;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.4));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2b203c, #0a0812);
    border: 3px solid #08070b;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.logo-icon {
    font-size: 42px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.5));
}

.vip-tag {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--gold-btn-gradient);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    z-index: 3;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 4px;
    text-shadow: 0 4px 16px rgba(212, 175, 55, 0.25);
}

.hero-subtitle {
    font-size: 13.5px;
    font-weight: 600;
    color: #E2E8F0;
    margin-top: 2px;
}

.hero-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    font-style: italic;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.tag-pill {
    font-size: 10.5px;
    font-weight: 500;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Notice Card */
.notice-card {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.notice-card:active {
    transform: scale(0.98);
}

.notice-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gold-gradient);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.notice-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.notice-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-light);
}

.notice-sub {
    font-size: 11px;
    color: var(--text-muted);
}

.notice-arrow {
    color: var(--gold-primary);
    font-size: 20px;
}

/* Section Titles */
.section-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
}

.sub-link {
    font-size: 12px;
    color: var(--gold-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Links Matrix Grid */
.links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.link-card:active {
    transform: scale(0.97);
}

.gold-border {
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.gold-border:hover {
    border-color: var(--glass-border-hover);
    background: var(--bg-card-hover);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.wechat-icon {
    background: var(--wechat-bg);
    color: var(--wechat-green);
    border: 1px solid var(--wechat-border);
}

.wechat-group-icon {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    border: 1px solid var(--glass-border);
}

.whatsapp-icon {
    background: var(--whatsapp-bg);
    color: var(--whatsapp-green);
    border: 1px solid var(--whatsapp-border);
}

.whatsapp-group-icon {
    background: rgba(56, 189, 248, 0.12);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    color: #FFF;
}

.badge-recommend {
    font-size: 9.5px;
    font-weight: 800;
    background: var(--gold-btn-gradient);
    color: #000;
    padding: 1px 6px;
    border-radius: 8px;
}

.badge-hot {
    font-size: 9.5px;
    font-weight: 800;
    background: #EF4444;
    color: #FFF;
    padding: 1px 6px;
    border-radius: 8px;
}

.badge-online {
    font-size: 9.5px;
    font-weight: 700;
    background: var(--wechat-green);
    color: #FFF;
    padding: 1px 6px;
    border-radius: 8px;
}

.card-desc {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.card-action {
    color: var(--gold-primary);
    font-size: 18px;
}

/* Social Mini Grid */
.social-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mini-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.2s ease;
}

.mini-card:active {
    transform: scale(0.95);
    background: rgba(35, 26, 50, 0.8);
}

.mini-card i {
    font-size: 22px;
}

.mini-card span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
}

.phone-mini i { color: #F59E0B; }
.instagram-mini i { color: #E1306C; }
.telegram-mini i { color: #29B6F6; }
.fb-mini i { color: #1877F2; }
.line-mini i { color: #00B900; }
.tiktok-mini i { color: #25F4EE; }
.map-mini i { color: #EC4899; }

/* Suite Showcase Scrollable */
.suite-scroll-container {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.suite-scroll-container::-webkit-scrollbar {
    display: none;
}

.suite-card {
    flex: 0 0 270px;
    scroll-snap-align: start;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.suite-img-wrapper {
    position: relative;
    height: 140px;
    width: 100%;
}

.suite-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suite-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
}

.suite-details {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.suite-details h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: #FFF;
}

.suite-meta {
    font-size: 10.5px;
    color: var(--text-muted);
}

.suite-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.suite-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-primary);
}

.book-mini-btn {
    background: var(--gold-btn-gradient);
    color: #000;
    border: none;
    font-size: 10.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
    cursor: pointer;
}

/* Accordion Menu */
.menu-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-header {
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.gold-txt { color: var(--gold-primary); }

.accordion-icon {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

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

.accordion-body {
    display: none;
    padding: 0 14px 14px 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4px;
}

.accordion-item.active .accordion-body {
    display: block;
}

.package-desc {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 8px;
}

.package-price-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

.orig-price {
    font-size: 11px;
    text-decoration: line-through;
    color: #6B7280;
}

.special-price {
    font-size: 13px;
    font-weight: 800;
    color: var(--gold-light);
}

/* Share Box */
.share-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.share-btn, .save-contact-btn {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--glass-border);
    color: var(--gold-light);
}

.save-contact-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.share-btn:active, .save-contact-btn:active {
    transform: scale(0.97);
}

/* App Footer */
.app-footer {
    text-align: center;
    padding: 20px 10px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.footer-address, .footer-hours {
    font-size: 11px;
    color: var(--text-muted);
}

.footer-hours-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 2px;
}

.footer-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-copy {
    font-size: 9.5px;
    color: #4B5563;
    margin-top: 6px;
}

/* Bottom Action Bar (Sticky Mobile) */
.bottom-action-bar {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: rgba(12, 9, 18, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 8px;
    z-index: 99;
}

.bar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 10.5px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease;
}

.bar-btn:active {
    transform: scale(0.95);
}

.bar-btn i {
    font-size: 18px;
}

.btn-wechat {
    background: var(--wechat-bg);
    color: var(--wechat-green);
    border: 1px solid var(--wechat-border);
}

.btn-whatsapp {
    background: var(--whatsapp-bg);
    color: var(--whatsapp-green);
    border: 1px solid var(--whatsapp-border);
}

.btn-book {
    background: var(--gold-btn-gradient);
    color: #000;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

/* Modals */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.glass-modal {
    position: relative;
    width: 100%;
    max-width: 380px;
    background: linear-gradient(180deg, rgba(28, 20, 42, 0.96) 0%, rgba(12, 9, 18, 0.98) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .glass-modal {
    transform: translateY(0);
}

.drawer-modal {
    max-width: 440px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--text-muted);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.modal-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--wechat-bg);
    color: var(--wechat-green);
    border: 1px solid var(--wechat-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 6px;
}

.modal-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #FFF;
}

.modal-sub {
    font-size: 11.5px;
    color: var(--text-muted);
}

/* QR Code Container */
.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-frame {
    padding: 12px;
    background: #FFF;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.qr-code-box {
    width: 170px;
    height: 170px;
}

.qr-svg {
    width: 100%;
    height: 100%;
}

.qr-tip {
    font-size: 11px;
    color: var(--gold-light);
}

/* WeChat ID Box */
.wechat-id-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    padding: 10px 14px;
    border-radius: var(--radius-md);
}

.id-label {
    font-size: 12px;
    color: var(--text-muted);
}

.id-val {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--gold-light);
}

.copy-btn {
    background: var(--gold-btn-gradient);
    color: #000;
    border: none;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

.modal-footer-btns {
    display: flex;
    gap: 10px;
}

.modal-primary-btn {
    width: 100%;
    padding: 12px;
    background: var(--wechat-green);
    color: #FFF;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

/* Booking Form Elements */
#booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

.form-label {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gold-light);
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: #FFF;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.form-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.radio-pill-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.radio-pill-group.two-col {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: rgba(0, 0, 0, 0.45);
    padding: 5px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.radio-pill {
    position: relative;
    cursor: pointer;
}

.radio-pill input {
    position: absolute;
    opacity: 0;
}

.radio-pill-group.two-col .radio-pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-pill-group.two-col .radio-pill:hover span {
    color: #FFF;
}

.radio-pill-group.two-col .radio-pill input:checked + span {
    background: var(--gold-btn-gradient);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    border: 1px solid transparent;
}

.name-input-group {
    display: flex;
    gap: 8px;
}

.salutation-select {
    width: 122px;
    flex-shrink: 0;
    cursor: pointer;
    padding-right: 6px;
}

.name-input {
    flex: 1;
    min-width: 0;
}

input[type="date"].form-input,
input[type="time"].form-input {
    color-scheme: dark;
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.submit-booking-btn {
    width: 100%;
    padding: 14px;
    background: var(--gold-btn-gradient);
    color: #000;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    margin-top: 4px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(18, 14, 26, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 18px;
    color: var(--wechat-green);
}
