@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Questrial&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #262626;
    --primary-hover: #111111;
    --brand-navy: #262626;
    --brand-gold: #c79619;
    --brand-gold-hover: #a77b10;
    --brand-gold-light: #e8d392;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 6px 14px rgba(26, 31, 58, 0.08);
    --shadow-md: 0 12px 26px rgba(26, 31, 58, 0.12);
    --shadow-lg: 0 24px 48px rgba(26, 31, 58, 0.16);
}

body {
    font-family: 'Manrope', 'Segoe UI', Tahoma, sans-serif;
    background: #fff;
    min-height: 100vh;
    color: var(--gray-900);
    padding: 32px 20px 60px;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
}

/* Header */
.header {
    margin-bottom: 30px;
    color: var(--brand-navy);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
    border-radius: 0;
    padding: 18px 24px;
    box-shadow: none;
    border: 0;
    border-bottom: 2px solid var(--brand-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-logo {
    width: 120px;
    height: auto;
    max-width: 40vw;
    border-radius: 0;
    background: white;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: none;
    box-shadow: none;
}

.auth-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: white;
}

.trust-pill {
    background: var(--brand-gold);
    color: #1a1a1a;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.trust-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.logo h1 {
    font-family: 'Questrial', sans-serif;
    font-size: 2rem;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.logo p {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.hero-banner {
    display: block;
    gap: 24px;
    margin: 28px 0 30px;
}

.hero-copy {
    background: transparent;
    color: var(--primary-color);
    padding: 20px 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
}

.hero-copy h2 {
    font-family: 'Questrial', sans-serif;
    font-size: 2rem;
    margin: 10px 0 12px;
}

.hero-copy p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0;
    color: #89650d;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.hero-badges span {
    background: rgba(212, 175, 55, 0.25);
    color: var(--brand-gold);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    cursor: default;
}

.hero-badges span:hover {
    background: rgba(212, 175, 55, 0.35);
    border-color: rgba(212, 175, 55, 0.6);
    transform: scale(1.05);
}

.hero-card {
    background: transparent;
    border-radius: 0;
    padding: 18px 0;
    box-shadow: none;
    border: 0;
    border-block: 1px solid var(--gray-200);
}

.hero-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-700);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-card li::before {
    content: "\2022";
    color: var(--brand-gold);
    font-weight: 700;
    margin-right: 8px;
}

/* Card */
.card {
    background: white;
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 20px 40px rgba(26, 31, 58, 0.15);
    transform: translateY(-2px);
}

/* Account */
.account-card {
    display: grid;
    gap: 20px;
}

.account-header h2 {
    font-size: 1.8rem;
}

.account-header p {
    color: var(--gray-600);
}

.account-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.account-tab {
    border: 1px solid var(--gray-200);
    background: white;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-700);
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.account-tab:hover {
    border-color: var(--brand-gold);
    color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.05);
}

.account-tab.active {
    background: var(--brand-gold);
    color: #1a1a1a;
    border-color: var(--brand-gold);
    font-weight: 700;
}

.account-menu-book-now {
    border: 1px solid var(--brand-gold);
    background: var(--brand-gold);
    color: #1a1a1a;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.9rem;
}

.account-menu-book-now:hover {
    background: var(--brand-gold-hover);
    border-color: var(--brand-gold-hover);
    transform: translateY(-1px);
}

.account-panels {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--gray-200);
}

.account-panel {
    display: none;
    scroll-margin-top: 100px;
}

.account-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

.account-details {
    margin: 12px 0 18px;
    display: grid;
    gap: 8px;
}

.account-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.profile-grid {
    display: grid;
    gap: 14px;
}

.profile-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.reservations-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.reservations-header h3 {
    margin: 0;
}

.btn-reserve-now {
    padding: 8px 14px;
    font-size: 0.95rem;
}

.reservations-tabs {
    display: inline-flex;
    gap: 8px;
    margin: 10px 0 14px;
    background: white;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid var(--gray-200);
}

.reservation-tab {
    border: none;
    background: transparent;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
}

.reservation-tab.active {
    background: var(--brand-gold);
    color: #1a1a1a;
    font-weight: 700;
}

.reservation-panel {
    display: none;
}

.reservation-panel.active {
    display: block;
}

.reservations-block {
    margin-top: 16px;
}

.reservations-block h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.reservation-list {
    display: grid;
    gap: 10px;
}

.reservation-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.reservation-item h5 {
    margin: 0;
    font-size: 1rem;
}

.reservation-meta {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.reservation-status {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.reservation-status.paid {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success-color);
}

.reservation-status.pending {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
}

.reservation-status.cancelled {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger-color);
}

.reservation-note {
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.reservation-note.expired {
    color: var(--danger-color);
    font-weight: 600;
}

.reservation-note.urgent {
    color: #f97316;
    font-weight: 600;
}

.reservation-note.cancelled-note {
    color: var(--danger-color);
    font-weight: 600;
    margin-top: 10px;
    padding: 8px 10px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--danger-color);
}

.reservation-badge {
    font-weight: 700;
    color: var(--brand-gold);
}

.reservation-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.reservation-details {
    display: none;
    flex-basis: 100%;
    margin-top: 10px;
    padding: 12px;
    border-radius: 10px;
    border: 1px dashed var(--gray-200);
    background: var(--gray-50);
}

.reservation-details.open {
    display: block;
}

.reservation-details-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    font-size: 0.9rem;
    color: var(--gray-700);
}

.reservation-details-grid span {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 2px;
}

.reservation-cancel {
    margin-top: 12px;
    width: 100%;
}

.reservation-empty {
    color: var(--gray-500);
    font-size: 0.9rem;
    padding: 8px 0;
}

.reservation-processing {
    color: var(--gray-600);
    font-size: 0.9rem;
    padding: 8px 0;
}

/* Auth */
.auth-card {
    overflow: hidden;
}

.auth-header {
    margin-bottom: 20px;
}

.auth-header h2 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.auth-header p {
    color: var(--gray-600);
}

.auth-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.auth-panel {
    background: white;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.auth-panel-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(160deg, #1a1f3a, #2a3050);
    color: white;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.auth-panel-social h3 {
    font-size: 1.1rem;
}

.auth-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.btn-social-slot {
    display: flex;
    justify-content: center;
}

.auth-tabs {
    display: inline-flex;
    background: white;
    border-radius: 999px;
    padding: 4px;
    gap: 6px;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
}

.auth-tab {
    border: none;
    background: transparent;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-600);
}

.auth-tab.active {
    background: var(--brand-gold);
    color: #1a1a1a;
    font-weight: 700;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.auth-skip {
    margin-top: 16px;
}

.auth-entry-modal {
    max-width: 520px;
    border-radius: 16px;
}

.auth-entry-modal .modal-header {
    padding-bottom: 18px;
}

.auth-entry-modal .modal-body {
    padding-inline: 54px;
}

.auth-modal-mark {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border: 1px solid var(--brand-gold);
    color: var(--brand-gold-hover);
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
}

.auth-email-label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray-800);
    font-size: 0.9rem;
    font-weight: 700;
}

.auth-email-entry input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
}

.auth-email-entry input:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.auth-email-submit {
    width: 100%;
    margin-top: 12px;
}

.auth-email-submit:disabled {
    cursor: wait;
    opacity: 0.65;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 16px;
    color: var(--gray-500);
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

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

.auth-social-row .btn-social-slot > div,
.auth-social-row .btn-social-slot iframe {
    width: 100% !important;
}

.auth-social-row .btn-apple {
    min-height: 44px;
    background: #111;
    border-radius: 6px;
}

.auth-legal {
    margin-top: 20px;
    color: var(--gray-500);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

.auth-email-confirmation {
    padding: 8px 0 12px;
    text-align: center;
}

.auth-email-confirmation[hidden],
.auth-email-entry[hidden] {
    display: none;
}

.auth-confirmation-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #ecf7ef;
    color: #287a45;
    font-size: 1.6rem;
    font-weight: 700;
}

.auth-email-confirmation h3 {
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.auth-email-confirmation p {
    margin-bottom: 22px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Steps */
.step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.step.active {
    display: block;
}

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

/* Forms */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group[hidden] {
    display: none;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-800);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* Room Tabs for Multiple Rooms */
.room-tabs-container {
    margin-bottom: 20px;
}

.room-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid var(--gray-200);
    flex-wrap: wrap;
}

.room-tab {
    background: none;
    border: none;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.room-tab:hover {
    color: var(--primary-color);
}

.room-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--brand-gold);
}

.room-tabs-content {
    position: relative;
}

.room-tab-panes {
    position: relative;
    margin-top: 15px;
}

.room-tab-pane {
    height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.room-tab-pane.active {
    height: auto;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.3s ease;
}

.room-class-display {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf5 100%);
    border-left: 4px solid var(--brand-gold);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.room-class-display strong {
    font-weight: 700;
}

.room-class-display span {
    color: var(--brand-gold);
    font-weight: 700;
}

/* Room Guest Card */
.room-guest-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.room-guest-note {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding: 10px 12px;
    background: var(--gray-50);
    border-left: 3px solid var(--brand-gold);
    border-radius: 4px;
}

.occupancy-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    color: var(--gray-800);
    font-weight: 700;
    cursor: pointer;
}

.occupancy-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-gold);
}

.occupancy-selectors {
    margin-bottom: 10px;
}

.pending-payment-pill {
    padding: 4px 8px;
    border: 1px solid #ffe69c;
    border-radius: 999px;
    background: #fff3cd;
    color: #856404;
    font-size: 0.78rem;
    font-weight: 600;
}

/* Companion Fields */
.companion-fields {
    background: #faf9f7;
    padding: 16px;
    border-radius: 8px;
    margin: 16px 0;
    border-left: 3px solid var(--brand-gold);
}
.document-status {
    margin-bottom: 12px;
}

.document-uploaded {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    color: #166534;
    font-size: 0.9rem;
}

.document-uploaded span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.document-actions {
    display: flex;
    gap: 8px;
}

.document-actions button {
    padding: 6px 12px;
    border: 1px solid #86efac;
    background-color: white;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #166534;
}

.document-actions button:hover {
    background-color: #dcfce7;
}

.document-missing {
    padding: 10px 14px;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-hover) 100%);
    color: #1a1a1a;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.35);
    font-weight: 700;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: 1px dashed var(--gray-300);
    width: 100%;
}

.btn-ghost:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-link {
    background: transparent;
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.btn-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-text {
    background: transparent;
    color: var(--brand-gold);
    border: none;
    padding: 8px 0 0;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-social {
    width: 100%;
    border-radius: 10px;
    padding: 12px 16px;
    font-weight: 600;
}

.btn-google {
    background: white;
    color: #111827;
}

.btn-apple {
    background: #0f172a;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--brand-gold-hover) 0%, #a17a15 100%);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.45);
}

.btn-success {
    background: var(--brand-gold);
    color: #1a1a1a;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.35);
}

.btn-warning {
    background: #f39c12;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.btn-warning:hover {
    background: #e67e22;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background: #95a5a6;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(149, 165, 166, 0.3);
}

.btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(149, 165, 166, 0.4);
}

.btn-success:hover {
    background: var(--brand-gold-hover);
    box-shadow: 0 14px 28px rgba(212, 175, 55, 0.45);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    width: 100%;
}

.btn-back {
    background: var(--gray-100);
    color: var(--gray-800);
    padding: 8px 16px;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 20px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-back:hover {
    background: var(--gray-200);
    border-color: var(--brand-gold);
}

/* Rooms List */
.rooms-list {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.room-card {
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.room-card:hover:not(.unavailable) {
    border-color: var(--brand-gold);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.04);
    transform: translateY(-3px);
}

.room-card.selected {
    border-color: var(--brand-gold);
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.room-card.unavailable {
    opacity: 0.55;
    cursor: not-allowed;
    background: var(--gray-100);
    border-color: var(--gray-300);
    pointer-events: none;
}

.room-card.unavailable h3 {
    color: var(--gray-500);
}

.room-content {
    flex: 1;
    position: relative;
}

.room-header-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.room-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.info-icon {
    font-size: 1rem;
    cursor: help;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.info-icon:hover {
    opacity: 1;
}

.room-tooltip {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: var(--gray-900);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.room-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border: 6px solid transparent;
    border-top-color: var(--gray-900);
}

.room-card:hover .room-tooltip {
    opacity: 1;
    visibility: visible;
}

.room-status {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--success-color);
}

.room-card.unavailable .room-status {
    color: var(--gray-500);
    font-weight: 500;
}

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

.room-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.room-code {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 4px;
}

.room-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-top: 6px;
    line-height: 1.4;
}

.room-price-inline {
    font-size: 0.85rem;
    color: var(--brand-gold);
    font-weight: 700;
    margin-left: 8px;
    white-space: nowrap;
}

.room-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.95rem;
}

.room-pricing span {
    color: var(--gray-600);
    font-weight: 500;
}

.room-pricing strong {
    color: var(--gray-900);
    font-weight: 700;
}

.room-extra {
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.room-rates-note {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 12px;
    color: var(--gray-700);
    font-size: 0.9rem;
    line-height: 1.4;
}

.room-availability {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.availability-badge {
    background: var(--success-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Summary */
.summary-box {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-box h3 {
    margin-bottom: 15px;
    color: var(--gray-800);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.summary-total {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    font-size: 1.2rem;
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Rooms Detail Summary */
.rooms-detail-summary {
    margin: 20px 0;
}

.rooms-detail-box {
    background: linear-gradient(135deg, #f5f7fb 0%, #e8ecf5 100%);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.rooms-detail-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.room-detail-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 12px;
    border-left: 4px solid var(--brand-gold);
    box-shadow: 0 2px 8px rgba(26, 31, 58, 0.06);
}

.room-detail-header {
    color: var(--primary-color);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.room-detail-header strong {
    font-size: 1rem;
}

.room-detail-info {
    font-size: 0.95rem;
}

.detail-line {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--gray-700);
}

.detail-line span:first-child {
    font-weight: 500;
    color: var(--gray-600);
}

.detail-line span:last-child {
    color: var(--gray-900);
    font-weight: 500;
}

.room-price {
    color: var(--primary-color) !important;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Payment Methods */
.payment-methods {
    margin: 20px 0;
}

.payment-methods h3 {
    margin-bottom: 15px;
    color: var(--gray-800);
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 18px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.04);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.payment-option:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.payment-option input[type="radio"] {
    margin-right: 14px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.payment-option label {
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    color: var(--gray-800);
}

.payment-icon {
    font-size: 1.5rem;
    display: inline-block;
    min-width: 30px;
    text-align: center;
}

.payment-label {
    font-size: 1rem;
    font-weight: 600;
}

.payment-label-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-sublabel {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.3;
}

/* Confirmation */
.confirmation-card {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
}

.confirmation-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 15px 0;
}

.confirmation-details {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.confirmation-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.reservation-number {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.confirmation-message {
    color: var(--gray-600);
    margin: 20px 0;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

.loading-overlay.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.loading-overlay p {
    color: white;
    margin-top: 20px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    text-align: center;
    color: var(--gray-600);
    margin-top: 30px;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 12px;
    }

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-banner {
        grid-template-columns: 1fr;
    }

    .logo h1 {
        font-size: 1.7rem;
    }

    .card {
        padding: 20px;
    }

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

    .room-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

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

    /* Mobile-specific alert styling */
    .alert {
        max-width: 90%;
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 0.9rem;
    }

    /* Mobile account menu improvements */
    .account-menu {
        max-height: 60vh;
        overflow-y: auto;
    }

    .account-panel {
        scroll-margin-top: 80px;
    }

    /* Featured room cards responsive sizing */
    .featured-rooms {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .featured-room-card {
        height: auto;
        min-height: 200px;
    }

    .featured-room-card h3 {
        font-size: 1.1rem;
    }

    /* Carousel buttons responsive sizing */
    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

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

/* Alert messages - Fixed position to stay visible */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 0;
    font-weight: 500;
    opacity: 1;
    transition: opacity 2.5s ease;
    z-index: 2000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(420px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert.fade-out {
    opacity: 0;
}

.alert-error {
    background: #fee;
    border: 1px solid var(--danger-color);
    color: var(--danger-color);
}

.alert-success {
    background: #efe;
    border: 1px solid var(--success-color);
    color: var(--success-color);
}

.alert-info {
    background: #e0f2fe;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

/* Featured Rooms Section */
.featured-rooms-section {
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.featured-header {
    text-align: center;
    margin-bottom: 36px;
}

.featured-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.featured-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
}

.featured-rooms-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    overflow: hidden;
}

.featured-rooms-grid {
    display: flex;
    gap: 20px;
    padding: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* Hide scrollbar */
    -ms-overflow-style: none;  
    scrollbar-width: none;
    flex: 1;
    flex-wrap: nowrap;
}

.featured-rooms-grid::-webkit-scrollbar {
    display: none;
}

.carousel-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-gold);
    color: white;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
    min-width: 48px;
}

.carousel-btn:hover {
    background: var(--brand-gold-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.45);
}

.featured-room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 320px;
    min-width: 320px;
}

.featured-room-card:hover {
    border-color: var(--brand-gold);
    box-shadow: 0 8px 20px rgba(26, 31, 58, 0.15);
    transform: translateY(-4px);
}

.room-image-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.featured-room-card .room-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.featured-room-card:hover .room-image {
    transform: scale(1.05);
}

.room-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--brand-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.room-badge-vip {
    background: var(--primary-color);
}

.room-badge-deal {
    background: #10b981;
}

.room-badge-luxury {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-hover) 100%);
}

.room-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.room-info h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.room-score {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    flex-shrink: 0;
}

.score-badge {
    background: var(--primary-color);
    color: white;
    padding: 6px 10px;
    border-radius: 8px 8px 8px 0;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    min-width: 40px;
    text-align: center;
}

.score-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.score-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.score-reviews {
    font-size: 0.75rem;
    color: var(--gray-600);
    line-height: 1;
}

.room-features {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

.room-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.room-price-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.room-night {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.room-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Manrope', sans-serif;
    line-height: 1;
}

.btn-see-availability {
    background: var(--brand-gold);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.3);
}

.btn-see-availability:hover {
    background: var(--brand-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

@media (max-width: 1024px) {
    .featured-rooms-carousel {
        padding: 0 10px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .featured-room-card {
        width: 280px;
        min-width: 280px;
    }

    .room-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .featured-header h2 {
        font-size: 1.8rem;
    }

    .featured-rooms-carousel {
        position: relative;
        padding: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .featured-room-card {
        width: 260px;
        min-width: 260px;
    }

    .room-image-wrapper {
        height: 160px;
    }

    .room-info {
        padding: 12px;
    }

    .room-info h3 {
        font-size: 1rem;
    }

    .room-features {
        font-size: 0.82rem;
    }

    .room-price {
        font-size: 1.3rem;
    }

    .btn-see-availability {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 1;
}

.modal-content-small {
    max-width: 500px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gray-100);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 20px;
    text-align: center;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.modal-header p {
    color: var(--gray-600);
    font-size: 1rem;
}

.modal-body {
    padding: 0 40px 40px;
}

.btn-primary-header {
    background: var(--brand-gold);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary-header:hover {
    background: var(--brand-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.45);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .modal-header {
        padding: 30px 20px 15px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 0 20px 30px;
    }

    .auth-entry-modal .modal-body {
        padding-inline: 24px;
    }

    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
}

.lang-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.lang-btn.active {
    background: rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.8);
    color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .language-selector {
        order: -1;
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

body, button, input, select, textarea { letter-spacing: 0; }
button, input, select, textarea { font-family: 'Manrope', sans-serif; }
h1, h2, .featured-header h2, .modal-header h2, .auth-modal-mark,
.auth-email-confirmation h3 { font-family: 'Questrial', sans-serif; font-weight: 400; letter-spacing: 0; }
.container { max-width: 1200px; }
.header-inner { padding-inline: 0; }
.logo { min-width: 0; }
.logo h1 { font-size: 26px; }
.header-actions { min-width: 0; gap: 10px; }
.auth-status { background: transparent; color: var(--primary-color); border-radius: 0; padding: 0; flex-wrap: wrap; }
.auth-status .btn-link, .lang-btn { color: var(--primary-color); }
.lang-btn { background: #fff; border: 1px solid var(--gray-200); }
.lang-btn.active { background: #c79619; color: #171717; border-color: #c79619; box-shadow: none; }
.trust-pill { background: transparent; color: var(--gray-600); border-radius: 0; box-shadow: none; padding: 8px 0; }
.trust-pill:hover { transform: none; box-shadow: none; }
.btn, .btn-primary-header, .btn-see-availability, .lang-btn { border-radius: 4px; }
.btn-primary, .btn-success, .btn-primary-header, .btn-see-availability {
    background: var(--brand-gold); color: #171717; box-shadow: none;
}
.btn-primary:hover, .btn-success:hover, .btn-primary-header:hover, .btn-see-availability:hover {
    background: var(--brand-gold-hover); color: #111; box-shadow: none; transform: none;
}
.btn:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid #89650d; outline-offset: 3px; }
.hero-badges span { background: transparent; color: var(--gray-600); border: 0; border-left: 2px solid var(--brand-gold); border-radius: 0; padding: 4px 12px; }
.hero-badges span:hover { background: transparent; transform: none; }
.hero-copy h2 { max-width: 850px; }
.hero-card h3 { font-size: 15px; }
.card { border: 0; border-top: 2px solid var(--brand-gold); border-radius: 0; box-shadow: none; padding-inline: 0; }
.card:hover { box-shadow: none; transform: none; }
.featured-room-card, .room-card, .reservation-item, .modal-content, .auth-panel,
.room-guest-card, .summary-box { border-radius: 8px; }
.auth-panel-social { background: #262626; }
.room-class-display { background: #f5f5f5; border-color: #ddd; color: #262626; }
.featured-rooms-section { background: transparent; border-radius: 0; box-shadow: none; }
.hotel-room-overview { display: block; width: 100%; max-width: 720px; height: auto; margin: 0 auto 28px; }
.featured-room-card .room-image-wrapper { display: none; }
.room-night, .reservation-status { letter-spacing: 0; }
@media (max-width: 900px) {
    .header-inner { flex-wrap: wrap; }
    .header-actions { width: 100%; justify-content: flex-start; }
}
@media (max-width: 600px) {
    body { padding: 16px 16px 40px; }
    .hero-copy h2 { font-size: 26px; }
    .hero-card ul { grid-template-columns: 1fr; }
    .brand-logo { width: 88px; }
    .logo h1 { font-size: 22px; }
    .logo p { font-size: 12px; }
    .auth-status { width: 100%; justify-content: space-between; }
    .header-inner { gap: 16px; }
    .card { padding: 20px 0; }
    .featured-rooms-carousel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .featured-rooms-grid { grid-column: 1 / -1; grid-row: 1; min-width: 0; scroll-snap-type: x mandatory; }
    .featured-room-card { width: 100%; min-width: 0; scroll-snap-align: start; }
    .carousel-prev { grid-column: 1; grid-row: 2; justify-self: end; }
    .carousel-next { grid-column: 2; grid-row: 2; justify-self: start; }
    .room-footer { flex-wrap: wrap; }
    .room-info h3 { overflow-wrap: anywhere; }
}

