.rooms-header { min-height: 280px; }
.rooms-page { padding-bottom: 60px; }

/* ===== Мини-поиск ===== */
.rooms-search {
    margin-bottom: 30px;
}

.search-form {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.search-fields {
    display: flex;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    min-width: 150px;
}

.search-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s;
    background: white;
}

.search-field input:focus,
.search-field select:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.1);
}

.btn-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,0.4);
}

.btn-search .btn-icon { transition: transform 0.2s; }
.btn-search:hover .btn-icon { transform: translateX(4px); }

/* ===== Результаты поиска ===== */
.search-results { margin-bottom: 40px; }

.loading-indicator {
    display: none;
    margin-top: 15px;
    padding: 12px 20px;
    background: #f0f4ff;
    border-radius: 10px;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.loading-indicator.htmx-request { display: flex; }

.search-loading {
    display: none;
}

.search-loading.htmx-request {
    display: inline-flex;
}

.htmx-request .btn-search-text {
    display: none;
}

.spinner {
    width: 20px; height: 20px;
    border: 3px solid #d0d8e8;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== Все номера ===== */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.section-desc {
    font-size: 1rem;
    color: #7f8c8d;
}

.page-content .rooms-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.room-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s;
    display: grid;
    grid-template-columns: 350px 1fr;
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.room-card.featured {
    border: 2px solid #3498db;
}

.room-image,
.room-image-placeholder {
    height: 100%;
    min-height: 280px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.room-image-placeholder {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 1.2rem;
    font-weight: 600;
}

.room-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.room-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a2332;
    margin: 0 0 8px 0;
}

.room-info .room-desc {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 12px;
}

.room-info .room-details {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.room-info .room-size,
.room-info .room-guest {
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 500;
}

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

.room-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: #3498db;
    color: white;
    white-space: nowrap;
}

.room-desc {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.room-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.spec {
    font-size: 0.9rem;
    color: #2c3e50;
    font-weight: 500;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: auto;
}

.amenity {
    padding: 4px 12px;
    background: #f0f4ff;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #2c3e50;
}

.room-price-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 15px;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-from {
    font-size: 0.85rem;
    color: #6b7c93;
}

.room-card .price-value,
.price-info .price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e !important;
}

.price-night {
    font-size: 0.9rem;
    color: #6b7c93;
}

.btn-call {
    padding: 12px 28px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46,204,113,0.4);
}

.empty-rooms {
    text-align: center;
    padding: 60px 20px;
    color: #95a5a6;
    font-style: italic;
}

/* ===== Результаты поиска (grid) ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.result-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.result-card.featured {
    border: 2px solid #3498db;
}

.result-image,
.result-placeholder {
    height: 180px;
    overflow: hidden;
}

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

.result-placeholder {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
}

.result-info { padding: 20px; }

.result-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.result-top h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.result-badge {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    background: #3498db;
    color: white;
}

.result-desc {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 12px;
    line-height: 1.5;
}

.result-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.result-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #2c3e50;
}

.result-meta svg { flex-shrink: 0; }

.result-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.amenity-tag {
    padding: 3px 10px;
    background: #f0f4ff;
    border-radius: 10px;
    font-size: 0.75rem;
    color: #2c3e50;
}

.result-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Блок с несколькими ценами */
.result-prices {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8f9fa;
}

.price-row.standard {
    background: #e8f4fd;
    border-left: 3px solid #3498db;
}

.price-row.nonrefundable {
    background: #fef5e7;
    border-left: 3px solid #f39c12;
}

.price-row.breakfast {
    background: #eafaf1;
    border-left: 3px solid #2ecc71;
}

.price-row .price-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2c3e50;
    flex-shrink: 0;
}

.price-row .price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    flex-shrink: 0;
}

.price-row .price-per-night {
    font-size: 0.75rem;
    color: #95a5a6;
    margin-left: auto;
}

/* ============================================
   ВЫБОР ТАРИФА (кликабельные строки)
   ============================================ */

.price-row.selectable {
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
    border-left: 4px solid var(--border-color, #ddd);
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--bg-card, #fff);
}

.price-row.selectable:hover {
    border-color: var(--gold, #c4900a);
    background: rgba(196, 144, 10, 0.05);
}

.price-row.selectable.selected {
    border-color: var(--gold, #c4900a);
    border-left-color: var(--gold, #c4900a);
    background: rgba(196, 144, 10, 0.08);
    box-shadow: 0 0 0 1px var(--gold, #c4900a);
}

.price-row.selectable.selected .price-value {
    color: var(--gold, #c4900a);
}

/* ============================================
   ОПЦИЯ ЗАВТРАКА
   ============================================ */

.breakfast-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--bg-card, #fff);
    border: 2px solid transparent;
    border-left: 4px solid #ddd;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    flex-wrap: wrap;
}

.breakfast-option:hover {
    border-color: var(--gold, #c4900a);
    background: rgba(196, 144, 10, 0.03);
}

.breakfast-option.active {
    border-color: var(--gold, #c4900a);
    border-left-color: var(--gold, #c4900a);
    background: rgba(196, 144, 10, 0.05);
}

.breakfast-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.breakfast-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold, #c4900a);
    cursor: pointer;
}

.breakfast-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary, #2c3e50);
}

.breakfast-price {
    font-size: 0.85rem;
    color: var(--text-muted, #6b7c93);
    white-space: nowrap;
}

.breakfast-option.active .breakfast-price {
    color: var(--gold, #c4900a);
    font-weight: 600;
}

/* ============================================
   ИТОГОВАЯ ЦЕНА
   ============================================ */

.price-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--gold, #c4900a), #d4a017);
    color: #fff;
    font-weight: 700;
}

.price-total .total-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-total .total-value {
    font-size: 1.25rem;
}

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

.btn-details,
.btn-book-now {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
}

.btn-details {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
}

.btn-details:hover {
    background: var(--gold);
    color: var(--cosmic-deep);
}

.btn-book-now {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
}

.btn-book-now:hover {
    box-shadow: 0 4px 12px rgba(46,204,113,0.4);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.no-results svg { color: #e0e0e0; margin-bottom: 15px; }
.no-results h3 { color: #2c3e50; margin-bottom: 8px; }
.no-results p { color: #7f8c8d; }
.no-results a { color: #3498db; font-weight: 600; }

/* ===== Адаптивность ===== */
@media (max-width: 900px) {
    .room-card {
        grid-template-columns: 1fr;
    }
    .room-image,
    .room-image-placeholder {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .search-fields {
        flex-direction: column;
        align-items: stretch;
    }
    .search-field { min-width: auto; }
    .btn-search { justify-content: center; width: 100%; }
    .room-price-bar { flex-direction: column; gap: 12px; text-align: center; }
    .btn-call { width: 100%; text-align: center; }
    .results-grid { grid-template-columns: 1fr; }
    .result-bottom { flex-direction: column; gap: 12px; }
    .result-actions { width: 100%; }
    .btn-details, .btn-book-now { flex: 1; text-align: center; }
}

/* ===== Модальное окно ===== */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 16px;
    padding: 35px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover { background: #e0e0e0; }

.modal-content h3 {
    margin: 0 0 5px;
    font-size: 1.3rem;
    color: #2c3e50;
}

.modal-room-name {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin: 0 0 25px;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.form-row input {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.2s;
}

.form-row input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.booking-success {
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.booking-success p {
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .room-header { flex-direction: column; gap: 8px; }
    .room-header h3 { font-size: 1.1rem; }
    .price-value { font-size: 1.3rem; }
}

/* ===== ROOM MODAL ===== */
.room-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.room-modal.active {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: hsla(222, 60%, 4%, 0.9);
    backdrop-filter: blur(8px);
    -webkit-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: 950px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px hsla(0, 0%, 0%, 0.5);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    width: 40px;
    height: 40px;
    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;
}

/* Gallery */
.modal-gallery {
    padding: 24px;
    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: 12px;
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    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;
}

/* Info */
.modal-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.modal-info h2 {
    font-family: 'Playfair Display', serif;
    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: 16px;
}

.modal-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

#modalDesc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.modal-amenities .amenity {
    padding: 6px 12px;
    background: var(--cosmic-surface);
    border: 1px solid var(--cosmic-border);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.modal-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    margin-top: auto;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--cosmic-surface);
    border-radius: 10px;
    border-left: 3px solid transparent;
}

.price-row.standard { border-left-color: var(--gold); }
.price-row.nonrefundable { border-left-color: hsl(38, 90%, 45%); }
.price-row.breakfast { border-left-color: hsl(120, 60%, 50%); }

.price-row span:first-child {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.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: 10px;
    width: 100%;
    padding: 14px;
    background: var(--gradient-gold);
    color: var(--cosmic-deep);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-book-modal:hover {
    box-shadow: 0 4px 20px hsla(38, 90%, 55%, 0.3);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-gallery {
        border-right: none;
        border-bottom: 1px solid var(--cosmic-border);
    }
    .modal-info { padding: 20px; }
    .modal-info h2 { font-size: 1.5rem; }
    .modal-specs { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
    .room-modal { padding: 0; }
    .modal-content { border-radius: 0; max-height: 100vh; }
    .thumb { width: 50px; height: 50px; }
}

.btn-details-modal {
    display: inline-block;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid hsla(38, 90%, 55%, 0.3);
    color: var(--gold);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 8px;
}

.btn-details-modal:hover {
    background: var(--gold);
    color: var(--cosmic-deep);
}

/* ===== Форма бронирования в модалке ===== */
.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);
}

@media (max-width: 600px) {
    .room-modal { padding: 0; }
    .modal-content { border-radius: 0; max-height: 100vh; }
    .thumb { width: 50px; height: 50px; }
}

/* Лайтбокс фотографий */
.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
}

.photo-lightbox.active {
    display: flex;
}

.photo-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.photo-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
}

.photo-lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.photo-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-lightbox-close:hover {
    background: rgba(255,255,255,0.4);
}
    .booking-actions {
        flex-direction: column;
    }
}

/* Счётчик гостей */
.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;
}
