/* ============================================
   COSMOS HOTEL — Dark Cosmic Theme
   Based on batucada-design-boost
   ============================================ */

/* === VARIABLES === */
:root {
    /* Colors */
    --cosmic-deep: hsl(222, 47%, 6%);
    --cosmic-surface: hsl(222, 40%, 10%);
    --cosmic-card: hsl(222, 40%, 14%);
    --cosmic-border: hsl(222, 25%, 18%);
    --gold: hsl(38, 90%, 55%);
    --gold-light: hsl(38, 80%, 70%);
    --gold-dark: hsl(38, 90%, 40%);
    --text-light: hsl(210, 40%, 96%);
    --text-muted: hsl(215, 20%, 55%);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(38, 90%, 55%), hsl(38, 80%, 70%));
    --gradient-hero: linear-gradient(180deg, hsla(222, 47%, 6%, 0) 0%, hsla(222, 47%, 6%, 0.7) 50%, hsl(222, 47%, 6%) 100%);

    /* Glass */
    --glass-bg: hsla(222, 40%, 12%, 0.6);
    --glass-gold: hsla(222, 40%, 12%, 0.7);
    --glass-border: hsla(38, 90%, 55%, 0.1);
    --glass-gold-border: hsla(38, 90%, 55%, 0.2);

    /* Shadows */
    --shadow-gold: 0 4px 30px hsla(38, 90%, 55%, 0.15);
    --shadow-card: 0 8px 32px hsla(222, 60%, 4%, 0.5);

    /* Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cosmic-deep);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
input, select { font-family: var(--font-body); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* === ANIMATIONS === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.animate-fade-up { animation: fadeUp 0.8s ease-out forwards; opacity: 0; }
.animate-fade-in { animation: fadeIn 1s ease-out forwards; opacity: 0; }
.delay-100 { animation-delay: 0.1s; }
.delay-300 { animation-delay: 0.3s; }
.delay-500 { animation-delay: 0.5s; }

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

/* === GLASS EFFECTS === */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.glass-gold {
    background: var(--glass-gold);
    backdrop-filter: blur(24px);
    border: 1px solid var(--glass-gold-border);
    box-shadow: var(--shadow-card), inset 0 1px 0 hsla(38, 90%, 55%, 0.1);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s;
}
.navbar.scrolled {
    background: var(--glass-gold);
    padding: 0.75rem 0;
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-img { height: 2.5rem; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    opacity: 0.7;
    transition: color 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-phone {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold) !important;
    opacity: 1 !important;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cosmic-deep);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    opacity: 0.7;
    transition: color 0.3s;
}
.mobile-menu a:hover { opacity: 1; color: var(--gold); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}
.hero-logo { margin-bottom: 1rem; }
.hero-logo img {
    margin: 0 auto;
    width: 20rem;
    filter: drop-shadow(0 0 40px hsla(38, 90%, 55%, 0.3));
}
@media (min-width: 768px) { .hero-logo img { width: 30rem; } }
@media (min-width: 1024px) { .hero-logo img { width: 35rem; } }

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    opacity: 0.6;
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* Booking form */
.booking-form {
    background: var(--glass-gold);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    max-width: 42rem;
    margin: 0 auto;
}
@media (min-width: 768px) { .booking-form { padding: 2rem; } }

.booking-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .booking-fields { grid-template-columns: 1fr 1fr 1fr; }
}
.booking-field label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.booking-field input,
.booking-field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid hsla(38, 90%, 55%, 0.3);
    padding-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}
.booking-field input:focus,
.booking-field select:focus {
    border-bottom-color: var(--gold);
}
.booking-field select option { background: var(--cosmic-card); }

.btn-book-hero {
    margin-top: 2.6rem;
    padding: 0.75rem 2.5rem;
    background: var(--gold);
    color: var(--cosmic-deep);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius);
    transition: all 0.3s;
}
.btn-book-hero:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
    z-index: 10;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.hero-scroll svg {
    width: 1.25rem;
    height: 1.25rem;
    animation: bounce 2s infinite;
}

/* === SECTION HEADERS === */
.section-header { margin-bottom: 4rem; }
.section-label {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: hsla(38, 90%, 55%, 0.8);
    margin-bottom: 1rem;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 1rem;
}
.text-center { text-align: center; }

/* === FEATURES === */
.features-section {
    padding: 6rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all 0.5s;
}
.feature-card:hover {
    border-color: hsla(38, 90%, 55%, 0.3);
    box-shadow: 0 4px 30px hsla(38, 90%, 55%, 0.1);
}
.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(38, 90%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.3s;
}
.feature-card:hover .feature-icon { background: hsla(38, 90%, 55%, 0.2); }
.feature-icon svg { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}
.feature-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* === VIDEO SECTION === */
.video-section {
    padding: 6rem 0;
}
.video-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* === ROOMS === */
.rooms-section {
    padding: 6rem 0;
}
.rooms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
@media (min-width: 768px) { .rooms-grid { grid-template-columns: repeat(3, 1fr); } }

.room-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.5s;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.room-card .room-bottom {
    margin-top: auto;
}
.room-card:hover {
    border-color: hsla(38, 90%, 55%, 0.3);
    box-shadow: 0 8px 40px hsla(38, 90%, 55%, 0.12);
}
.room-card.popular .room-badge { display: block; }
.room-badge {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    padding: 0.25rem 0.75rem;
    background: var(--gold);
    color: var(--cosmic-deep);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 9999px;
}

.room-image-wrap {
    position: relative;
    height: 14rem;
    overflow: hidden;
}
.room-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.room-card:hover .room-image-wrap img { transform: scale(1.1); }
.room-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cosmic-card) 0%, transparent 100%);
}
.room-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cosmic-card);
    display: flex;
    align-items: center;
    justify-content: center;
}
.room-placeholder span { color: var(--text-muted); font-size: 0.875rem; }

.room-info { padding: 1.5rem; }
.room-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.room-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.room-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.badge {
    padding: 0.25rem 0.5rem;
    background: var(--cosmic-surface);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.room-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.room-price .from {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.room-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--gold);
    margin-left: 0.25rem;
}
.room-price .per {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.price-row-small {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 2px;
    font-family: var(--font-body);
}
.price-row-small .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c4900a;
    margin-left: 0.5rem;
    font-family: var(--font-heading);
}

/* Аккредитация */
.accreditation-section {
    padding: 60px 0;
    background: var(--cosmic-surface);
    border-top: 1px solid var(--cosmic-border);
}
.accreditation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.accreditation-text {
    flex: 1;
}
.accreditation-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-accreditation {
    display: inline-block;
    padding: 12px 24px;
    background: var(--gradient-gold);
    color: var(--cosmic-deep);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.btn-accreditation:hover {
    box-shadow: 0 4px 15px hsla(38, 90%, 55%, 0.3);
    transform: translateY(-2px);
}
.accreditation-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.accreditation-qr img {
    border-radius: var(--radius);
    border: 2px solid var(--cosmic-border);
}
.qr-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
@media (max-width: 768px) {
    .accreditation-inner {
        flex-direction: column;
        text-align: center;
    }
}
.btn-details {
    padding: 0.5rem 1.25rem;
    background: hsla(38, 90%, 55%, 0.1);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.3s;
}
.btn-details:hover {
    background: var(--gold);
    color: var(--cosmic-deep);
}

/* === RESTAURANT === */
.restaurant-section {
    padding: 6rem 0;
}
.restaurant-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) { .restaurant-grid { grid-template-columns: 1fr 1fr; } }
.restaurant-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.restaurant-image img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}
@media (min-width: 1024px) { .restaurant-image img { height: 31.25rem; } }
.restaurant-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cosmic-deep) 0%, transparent 50%);
}
@media (min-width: 1024px) { .restaurant-image::after {
    background: linear-gradient(to right, var(--cosmic-deep) 0%, transparent 40%);
}}
.restaurant-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.restaurant-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.restaurant-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-light);
    opacity: 0.8;
}
.dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

/* === CONTACTS === */
.contacts-section {
    padding: 6rem 0;
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .contacts-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.5s;
}
.contact-card:hover {
    border-color: hsla(38, 90%, 55%, 0.3);
}
.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: hsla(38, 90%, 55%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}
.contact-icon svg { width: 1.5rem; height: 1.5rem; color: var(--gold); }
.contact-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.contact-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.contact-card a {
    color: var(--gold);
    transition: color 0.3s;
}
.contact-card a:hover { color: var(--gold-light); }
.contact-note {
    font-size: 0.75rem !important;
    margin-top: 0.25rem;
}
.contacts-map {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 18.75rem;
}
.contacts-map iframe {
    width: 100%;
    height: 100%;
    filter: invert(0.9) hue-rotate(180deg) brightness(0.8) contrast(1.2);
    border: none;
}

/* === FOOTER === */
.footer {
    border-top: 1px solid var(--cosmic-border);
    padding: 3rem 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}
.footer-copy {
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-nav {
    display: flex;
    gap: 1.5rem;
}
.footer-nav a {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }

/* === ROOM MODAL === */
.room-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.room-modal.active { display: flex; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: hsla(222, 60%, 4%, 0.9);
    backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    z-index: 10;
    background: var(--cosmic-card);
    border: 1px solid var(--cosmic-border);
    border-radius: var(--radius-xl);
    max-width: 60rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px hsla(0, 0%, 0%, 0.5);
}
.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    width: 2.5rem;
    height: 2.5rem;
    background: hsla(222, 40%, 12%, 0.8);
    border: 1px solid hsla(38, 90%, 55%, 0.3);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.modal-close:hover { background: var(--gold); color: var(--cosmic-deep); }
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
@media (max-width: 768px) { .modal-body { grid-template-columns: 1fr; } }
.modal-gallery { padding: 1.5rem; border-right: 1px solid var(--cosmic-border); }
.modal-main-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--cosmic-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.modal-main-image img { width: 100%; height: 100%; object-fit: cover; }
.modal-thumbs { display: flex; gap: 0.5rem; overflow-x: auto; }
.thumb {
    flex-shrink: 0;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.2s;
}
.thumb.active, .thumb:hover { border-color: var(--gold); opacity: 1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 2rem; display: flex; flex-direction: column; }
.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}
.modal-specs { display: flex; gap: 1.25rem; margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-muted); }
#modalDesc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.modal-amenities { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.modal-amenities .amenity {
    padding: 0.375rem 0.75rem;
    background: var(--cosmic-surface);
    border: 1px solid var(--cosmic-border);
    border-radius: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.modal-prices { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 1.5rem; margin-top: auto; }
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--cosmic-surface);
    border-radius: 0.625rem;
    border-left: 3px solid transparent;
}
.price-row.standard { border-left-color: var(--gold); }
.price-row span:first-child { font-size: 0.9rem; color: var(--text-muted); }
.price-row .price-value { font-size: 1.1rem; font-weight: 700; color: var(--text-light); }
.btn-book-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.875rem;
    background: var(--gradient-gold);
    color: var(--cosmic-deep);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
}
.btn-book-modal:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }

/* Booking form in modal */
.booking-form-modal {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--cosmic-border);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

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

.booking-form-modal .form-field input,
.booking-form-modal .form-field select {
    width: 100%;
    padding: 10px 12px;
    background: var(--cosmic-surface);
    border: 1px solid var(--cosmic-border);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s;
}

.booking-form-modal .form-field input:focus,
.booking-form-modal .form-field select:focus {
    border-color: var(--gold);
    outline: none;
}

.booking-actions {
    display: flex;
    gap: 10px;
}

.btn-book,
.btn-pay {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.btn-book {
    background: var(--cosmic-surface);
    border: 1px solid var(--cosmic-border);
    color: var(--text-light);
}

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

.btn-pay {
    background: var(--gradient-gold);
    color: var(--cosmic-deep);
}

.btn-pay:hover {
    box-shadow: 0 4px 15px hsla(38, 90%, 55%, 0.3);
    transform: translateY(-1px);
}

/* Guest counter */
.guest-counter {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--cosmic-surface);
    border: 1px solid var(--cosmic-border);
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

.guest-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guest-btn:hover {
    background: var(--cosmic-border);
}

.guest-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.guest-count {
    min-width: 40px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    border-left: 1px solid var(--cosmic-border);
    border-right: 1px solid var(--cosmic-border);
    padding: 8px 0;
}

@media (max-width: 600px) {
    .booking-form-grid { grid-template-columns: 1fr; }
    .booking-actions { flex-direction: column; }
}
