/* ═══════════════════════════════════════════════
 * Boutique Hotel Room Block Coordinator — Public CSS
 * ═══════════════════════════════════════════════ */

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

/* ── Base ────────────────────────────────────── */
.bhrbc-fe-booking-portal,
.bhrbc-fe-client-portal,
.bhrbc-fe-rooms-grid {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Room Cards Grid ─────────────────────────── */
.bhrbc-fe-rooms-grid {
    display: grid;
    grid-template-columns: repeat(var(--bhrbc-cols, 3), 1fr);
    gap: 24px;
    padding: 8px 0;
}

.bhrbc-fe-room-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

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

.bhrbc-fe-room-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bhrbc-fe-room-no-img {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bhrbc-fe-room-icon {
    font-size: 48px;
}

.bhrbc-fe-room-type {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bhrbc-fe-room-body {
    padding: 20px;
}

.bhrbc-fe-room-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #0f172a;
}

.bhrbc-fe-room-excerpt {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 12px 0;
}

.bhrbc-fe-room-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.bhrbc-fe-room-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.bhrbc-fe-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.bhrbc-fe-amenity {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 20px;
}

.bhrbc-fe-room-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.bhrbc-fe-room-price {
    display: flex;
    flex-direction: column;
}

.bhrbc-fe-price-from {
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bhrbc-fe-price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
}

.bhrbc-fe-price-unit {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 400;
}

/* ── Buttons ─────────────────────────────────── */
.bhrbc-fe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.bhrbc-fe-btn-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(99,102,241,0.35);
}

.bhrbc-fe-btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(99,102,241,0.4);
    color: #fff;
}

.bhrbc-fe-btn-outline {
    background: transparent;
    color: #6366f1;
    border-color: #6366f1;
}

.bhrbc-fe-btn-outline:hover {
    background: #6366f1;
    color: #fff;
}

.bhrbc-fe-btn-lg {
    padding: 14px 32px;
    font-size: 16px;
    border-radius: 12px;
    width: 100%;
}

.bhrbc-fe-btn-sm {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 8px;
}

.bhrbc-fe-btn-xs {
    padding: 3px 8px;
    font-size: 11px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #6366f1;
}

.bhrbc-fe-btn-xs:hover {
    background: #6366f1;
    color: #fff;
}

/* ── Access Code Entry ───────────────────────── */
.bhrbc-fe-code-entry {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.bhrbc-fe-code-card {
    text-align: center;
    max-width: 480px;
    background: #fff;
    padding: 48px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.bhrbc-fe-code-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.bhrbc-fe-code-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #0f172a;
}

.bhrbc-fe-code-card p {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 24px;
}

.bhrbc-fe-code-form {
    display: flex;
    gap: 10px;
}

.bhrbc-fe-code-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'SF Mono', monospace;
    transition: border-color 0.2s;
}

.bhrbc-fe-code-input:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

/* ── Block Header ────────────────────────────── */
.bhrbc-fe-block-header {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.bhrbc-fe-block-header h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.bhrbc-fe-block-info {
    display: flex;
    gap: 24px;
    font-size: 14px;
    opacity: 0.9;
}

/* ── Perks ────────────────────────────────────── */
.bhrbc-fe-perks {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
}

.bhrbc-fe-perks h3 {
    margin: 0 0 12px;
    font-size: 16px;
    color: #92400e;
}

.bhrbc-fe-perks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bhrbc-fe-perk {
    display: inline-block;
    padding: 4px 12px;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #78350f;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* ── Room Selection ──────────────────────────── */
.bhrbc-fe-room-select h3 {
    font-size: 18px;
    margin: 0 0 16px;
}

.bhrbc-fe-room-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.bhrbc-fe-room-option {
    cursor: pointer;
}

.bhrbc-fe-room-option input[type="radio"] {
    display: none;
}

.bhrbc-fe-room-option-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    transition: all 0.25s;
}

.bhrbc-fe-room-option input:checked + .bhrbc-fe-room-option-inner {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15), 0 4px 12px rgba(99,102,241,0.1);
    background: #fafaff;
}

.bhrbc-fe-room-option-inner:hover {
    border-color: #a5b4fc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.bhrbc-fe-room-option-img {
    width: 100px;
    height: 72px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.bhrbc-fe-room-option-info {
    flex: 1;
}

.bhrbc-fe-room-option-info h4 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
}

.bhrbc-fe-room-option-guests {
    font-size: 12px;
    color: #64748b;
}

.bhrbc-fe-amenities-mini {
    font-size: 11px;
    color: #94a3b8;
    margin-top: 4px;
}

.bhrbc-fe-room-option-price {
    text-align: right;
    flex-shrink: 0;
}

.bhrbc-fe-price-original {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
}

.bhrbc-fe-price-block {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
}

.bhrbc-fe-discount-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    border-radius: 4px;
    margin-top: 4px;
}

/* ── Booking Form ────────────────────────────── */
.bhrbc-fe-booking-form h3 {
    font-size: 18px;
    margin: 0 0 16px;
}

.bhrbc-fe-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.bhrbc-fe-full {
    grid-column: 1 / -1;
}

.bhrbc-fe-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bhrbc-fe-field label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.bhrbc-fe-field .required {
    color: #ef4444;
}

.bhrbc-fe-field input,
.bhrbc-fe-field select,
.bhrbc-fe-field textarea {
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}

.bhrbc-fe-field input:focus,
.bhrbc-fe-field select:focus,
.bhrbc-fe-field textarea:focus {
    border-color: #6366f1;
    outline: none;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}

.bhrbc-fe-field textarea {
    min-height: 80px;
    resize: vertical;
}

/* ── Price Summary ───────────────────────────── */
.bhrbc-fe-price-summary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.bhrbc-fe-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #64748b;
}

.bhrbc-fe-summary-total {
    border-top: 2px solid #e2e8f0;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

/* ── Success ─────────────────────────────────── */
.bhrbc-fe-success {
    text-align: center;
    padding: 48px 24px;
}

.bhrbc-fe-success-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.bhrbc-fe-success h2 {
    font-size: 28px;
    font-weight: 700;
    color: #059669;
    margin-bottom: 8px;
}

/* ── Notices ─────────────────────────────────── */
.bhrbc-fe-notice {
    padding: 16px 20px;
    border-radius: 12px;
    margin: 16px 0;
}

.bhrbc-fe-notice-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.bhrbc-fe-notice-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.bhrbc-fe-notice-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; font-size: 13px; padding: 10px 16px; border-radius: 8px; margin-bottom: 16px; }

.bhrbc-fe-empty {
    text-align: center;
    padding: 48px 24px;
    color: #94a3b8;
}

.bhrbc-fe-muted { color: #94a3b8; font-size: 14px; }

/* ── Client Portal ───────────────────────────── */
.bhrbc-fe-portal-header {
    margin-bottom: 24px;
}

.bhrbc-fe-portal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 4px;
}

.bhrbc-fe-portal-header p {
    color: #64748b;
    margin: 0;
}

.bhrbc-fe-block-switcher {
    margin-bottom: 24px;
}

.bhrbc-fe-block-switcher select {
    padding: 8px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
}

/* ── Countdown ───────────────────────────────── */
.bhrbc-fe-countdown {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid #93c5fd;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.bhrbc-fe-countdown-urgent {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-color: #fca5a5;
    animation: bhrbc-pulse 2s ease-in-out infinite;
}

@keyframes bhrbc-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
    50% { box-shadow: 0 0 0 8px rgba(239,68,68,0.1); }
}

.bhrbc-fe-countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.bhrbc-fe-countdown-number {
    font-size: 48px;
    font-weight: 800;
    color: #1e40af;
    line-height: 1;
}

.bhrbc-fe-countdown-urgent .bhrbc-fe-countdown-number {
    color: #dc2626;
}

.bhrbc-fe-countdown-text {
    text-align: left;
}

.bhrbc-fe-countdown-text strong {
    display: block;
    font-size: 16px;
    color: #1e293b;
}

.bhrbc-fe-countdown-text span {
    font-size: 13px;
    color: #64748b;
}

.bhrbc-fe-countdown-note {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

/* ── Occupancy Bar ───────────────────────────── */
.bhrbc-fe-section {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
}

.bhrbc-fe-section h3 {
    margin: 0 0 16px;
    font-size: 17px;
    font-weight: 600;
}

.bhrbc-fe-occupancy-bar {
    height: 28px;
    background: #f1f5f9;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.bhrbc-fe-occupancy-fill {
    height: 100%;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.8s ease;
    min-width: 48px;
}

.bhrbc-fe-occupancy-fill span {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

.bhrbc-fe-rag-green { background: linear-gradient(90deg, #10b981, #34d399); }
.bhrbc-fe-rag-amber { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.bhrbc-fe-rag-red   { background: linear-gradient(90deg, #ef4444, #f87171); }

.bhrbc-fe-occupancy-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.bhrbc-fe-occ-stat {
    text-align: center;
}

.bhrbc-fe-occ-val {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.bhrbc-fe-occ-lbl {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ── Share Link ──────────────────────────────── */
.bhrbc-fe-link-box {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.bhrbc-fe-link-box input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 13px;
    background: #f8fafc;
    color: #475569;
    font-family: 'SF Mono', monospace;
}

.bhrbc-fe-code-display {
    font-size: 14px;
    color: #64748b;
}

.bhrbc-fe-code-display strong {
    font-family: 'SF Mono', monospace;
    letter-spacing: 2px;
    color: #6366f1;
    font-size: 16px;
}

/* ── Guest Table ─────────────────────────────── */
.bhrbc-fe-table-wrap {
    overflow-x: auto;
}

.bhrbc-fe-table {
    width: 100%;
    border-collapse: collapse;
}

.bhrbc-fe-table th {
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    padding: 10px 14px;
    border-bottom: 2px solid #e2e8f0;
}

.bhrbc-fe-table td {
    padding: 12px 14px;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.bhrbc-fe-table td small {
    color: #94a3b8;
}

.bhrbc-fe-table tbody tr:hover {
    background: #f8fafc;
}

/* ── VIP Toggle ──────────────────────────────── */
.bhrbc-fe-vip-toggle {
    cursor: pointer;
    display: inline-flex;
}

.bhrbc-fe-vip-toggle input {
    display: none;
}

.bhrbc-fe-vip-star {
    opacity: 0.3;
    filter: grayscale(1);
    transition: all 0.2s;
    font-size: 18px;
}

.bhrbc-fe-vip-toggle input:checked + .bhrbc-fe-vip-star {
    opacity: 1;
    filter: grayscale(0);
}

.bhrbc-fe-request-text {
    font-size: 12px;
    color: #64748b;
    display: block;
    margin-bottom: 4px;
}

/* ── Details Grid ────────────────────────────── */
.bhrbc-fe-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.bhrbc-fe-detail-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.bhrbc-fe-detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
}

.bhrbc-fe-status-active    { color: #2563eb; }
.bhrbc-fe-status-released  { color: #d97706; }
.bhrbc-fe-status-completed { color: #059669; }
.bhrbc-fe-status-cancelled { color: #dc2626; }

/* ── Modal ───────────────────────────────────── */
.bhrbc-fe-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.bhrbc-fe-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.bhrbc-fe-modal-content h3 {
    margin: 0 0 16px;
    font-size: 18px;
}

.bhrbc-fe-modal-content textarea {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.bhrbc-fe-modal-content textarea:focus {
    border-color: #6366f1;
    outline: none;
}

.bhrbc-fe-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
    .bhrbc-fe-rooms-grid {
        grid-template-columns: 1fr !important;
    }
    .bhrbc-fe-form-grid {
        grid-template-columns: 1fr;
    }
    .bhrbc-fe-block-info {
        flex-direction: column;
        gap: 4px;
    }
    .bhrbc-fe-room-option-inner {
        flex-direction: column;
        text-align: center;
    }
    .bhrbc-fe-room-option-price {
        text-align: center;
    }
    .bhrbc-fe-occupancy-stats {
        gap: 20px;
    }
    .bhrbc-fe-countdown-inner {
        flex-direction: column;
        gap: 8px;
    }
    .bhrbc-fe-countdown-text {
        text-align: center;
    }
    .bhrbc-fe-details-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bhrbc-fe-code-form {
        flex-direction: column;
    }
    .bhrbc-fe-link-box {
        flex-direction: column;
    }
    .bhrbc-sr-content-grid {
        grid-template-columns: 1fr;
    }
    .bhrbc-sr-gallery-main img {
        height: 240px;
    }
    .bhrbc-sr-sidebar {
        position: static;
    }
}

/* ═══════════════════════════════════════════════
 * Single Room Page
 * ═══════════════════════════════════════════════ */
.bhrbc-single-room {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* ── Gallery ──────────────────────────────────── */
.bhrbc-sr-gallery {
    margin-bottom: 32px;
}

.bhrbc-sr-gallery-main {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #0f172a;
}

.bhrbc-sr-gallery-main img {
    width: 100%;
    height: 480px;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
}

.bhrbc-sr-type-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.bhrbc-sr-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.bhrbc-sr-gallery-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.bhrbc-sr-gallery-prev { left: 16px; }
.bhrbc-sr-gallery-next { right: 16px; }

.bhrbc-sr-gallery-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 2;
}

.bhrbc-sr-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

.bhrbc-sr-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 56px;
    border: 3px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: all 0.2s;
    opacity: 0.6;
}

.bhrbc-sr-thumb:hover {
    opacity: 0.85;
}

.bhrbc-sr-thumb.active {
    border-color: #6366f1;
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(99,102,241,0.3);
}

.bhrbc-sr-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bhrbc-sr-no-gallery {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 16px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
}

.bhrbc-sr-no-gallery-inner {
    text-align: center;
}

.bhrbc-sr-room-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 8px;
}

/* ── Content Grid ─────────────────────────────── */
.bhrbc-sr-content-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* ── Main Content ─────────────────────────────── */
.bhrbc-sr-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px;
    line-height: 1.2;
}

.bhrbc-sr-excerpt {
    font-size: 17px;
    color: #64748b;
    margin: 0 0 28px;
    line-height: 1.7;
}

.bhrbc-sr-section {
    margin-bottom: 32px;
}

.bhrbc-sr-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
}

/* ── Amenities ────────────────────────────────── */
.bhrbc-sr-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bhrbc-sr-amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #15803d;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #bbf7d0;
}

.bhrbc-sr-amenity-tag svg {
    color: #10b981;
    flex-shrink: 0;
}

/* ── Description ──────────────────────────────── */
.bhrbc-sr-description {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

.bhrbc-sr-description p {
    margin: 0 0 16px;
}

/* ── Day-of-Week Pricing ──────────────────────── */
.bhrbc-sr-pricing-table {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.bhrbc-sr-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.bhrbc-sr-price-row:last-child {
    border-bottom: none;
}

.bhrbc-sr-price-override {
    background: #fefce8;
}

.bhrbc-sr-price-day {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.bhrbc-sr-price-val {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bhrbc-sr-price-note {
    font-size: 11px;
    font-weight: 500;
    color: #d97706;
    background: #fef3c7;
    padding: 2px 8px;
    border-radius: 4px;
}

/* ── Sidebar ──────────────────────────────────── */
.bhrbc-sr-sidebar {
    position: sticky;
    top: 100px;
}

.bhrbc-sr-price-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}

.bhrbc-sr-price-head {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.bhrbc-sr-price-from {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.bhrbc-sr-price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.bhrbc-sr-price-per {
    font-size: 15px;
    color: #94a3b8;
    font-weight: 400;
}

.bhrbc-sr-details-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.bhrbc-sr-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.bhrbc-sr-detail svg {
    color: #6366f1;
    flex-shrink: 0;
}

.bhrbc-sr-detail small {
    display: block;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.bhrbc-sr-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(99,102,241,0.35);
}

.bhrbc-sr-book-btn:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99,102,241,0.45);
    color: #fff;
}

.bhrbc-sr-no-booking {
    font-size: 14px;
    color: #64748b;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* ── Quick Amenities Sidebar ──────────────────── */
.bhrbc-sr-quick-amenities {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
}

.bhrbc-sr-quick-amenities h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 14px;
    color: #0f172a;
}

.bhrbc-sr-quick-amenities ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.bhrbc-sr-quick-amenities li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
}

.bhrbc-sr-quick-amenities li:last-child {
    border-bottom: none;
}

.bhrbc-sr-quick-amenities li svg {
    flex-shrink: 0;
}

/* ── Hotel Contact in Sidebar ────────────────── */
.bhrbc-sr-hotel-contact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bhrbc-sr-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6366f1;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.bhrbc-sr-contact-link:hover {
    color: #4f46e5;
}

.bhrbc-sr-contact-link svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
 * INLINE RESERVATION WIDGET (Single Room Page)
 * ═══════════════════════════════════════════════ */

.bhrbc-sr-reserve-widget {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    border: 1px solid #e0e7ff;
    border-radius: 14px;
}

.bhrbc-sr-reserve-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1rem;
}

.bhrbc-sr-reserve-title svg {
    color: #4f46e5;
}

/* Date fields */
.bhrbc-sr-dates {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bhrbc-sr-date-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bhrbc-sr-date-field label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.bhrbc-sr-date-field input[type="date"] {
    padding: 0.6rem 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #1e293b;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.bhrbc-sr-date-field input[type="date"]:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Check availability button */
.bhrbc-sr-check-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    font-family: 'Inter', sans-serif;
}

.bhrbc-sr-check-btn:hover {
    background: #334155;
    transform: translateY(-1px);
}

.bhrbc-sr-check-btn:active {
    transform: translateY(0);
}

.bhrbc-sr-check-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Spinner */
.bhrbc-sr-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: bhrbc-spin 0.6s linear infinite;
}

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

/* Availability result */
.bhrbc-sr-avail-result {
    margin-top: 0.75rem;
    padding: 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    animation: bhrbc-fadeIn 0.3s ease;
}

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

.bhrbc-sr-avail-success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.bhrbc-sr-avail-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 0.75rem 1rem;
}

.bhrbc-sr-avail-unavailable {
    background: #fffbeb;
    border: 1px solid #fde68a;
}

.bhrbc-sr-avail-badge {
    display: inline-block;
    background: #22c55e;
    color: #fff;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bhrbc-sr-no-badge {
    display: inline-block;
    background: #f59e0b;
    color: #fff;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bhrbc-sr-avail-pricing {
    margin-top: 0.25rem;
}

.bhrbc-sr-avail-row {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #15803d;
    font-size: 1rem;
}

.bhrbc-sr-avail-no p {
    margin: 0.25rem 0 0;
    font-size: 0.85rem;
    color: #92400e;
}

.bhrbc-sr-avail-no a {
    color: #4f46e5;
    font-weight: 600;
}

/* Reservation form */
.bhrbc-sr-reserve-form {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e7ff;
    animation: bhrbc-fadeIn 0.3s ease;
}

.bhrbc-sr-form-field {
    margin-bottom: 0.75rem;
}

.bhrbc-sr-form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.bhrbc-sr-form-field label .required {
    color: #ef4444;
}

.bhrbc-sr-form-field input,
.bhrbc-sr-form-field textarea {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #1e293b;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.bhrbc-sr-form-field input:focus,
.bhrbc-sr-form-field textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.bhrbc-sr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Success */
.bhrbc-sr-success {
    text-align: center;
    padding: 1.5rem 1rem;
    animation: bhrbc-fadeIn 0.4s ease;
}

.bhrbc-sr-success-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bhrbc-sr-success h4 {
    font-size: 1.1rem;
    color: #15803d;
    margin: 0 0 0.5rem;
}

.bhrbc-sr-success p {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════
 * AVAILABILITY SEARCH PAGE
 * ═══════════════════════════════════════════════ */

.bhrbc-avail-wrap {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.bhrbc-avail-search-inner {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: #fff;
    box-shadow: 0 20px 60px rgba(30, 27, 75, 0.3);
}

.bhrbc-avail-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.bhrbc-avail-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    margin: 0 0 1.5rem;
}

.bhrbc-avail-form {
    display: grid;
    grid-template-columns: 1fr 1fr 140px auto;
    gap: 1rem;
    align-items: end;
}

.bhrbc-avail-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.35rem;
}

.bhrbc-avail-field input[type="date"],
.bhrbc-avail-field select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.bhrbc-avail-field input[type="date"]:focus,
.bhrbc-avail-field select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.18);
}

.bhrbc-avail-field select option {
    background: #1e1b4b;
    color: #fff;
}

/* Fix date input icon in dark theme */
.bhrbc-avail-field input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.bhrbc-avail-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.bhrbc-avail-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.bhrbc-avail-search-btn:active {
    transform: translateY(0);
}

/* Loading */
.bhrbc-avail-loading {
    text-align: center;
    padding: 3rem 1rem;
}

.bhrbc-avail-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #e2e8f0;
    border-top-color: #4f46e5;
    border-radius: 50%;
    animation: bhrbc-spin 0.6s linear infinite;
    margin-bottom: 1rem;
}

.bhrbc-avail-loading p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Results Header */
.bhrbc-avail-results-header {
    margin-top: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.bhrbc-avail-results-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem;
}

.bhrbc-avail-results-info p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Results Grid */
.bhrbc-avail-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* Room Card */
.bhrbc-avail-room-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bhrbc-avail-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.bhrbc-avail-room-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bhrbc-avail-room-no-img {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bhrbc-avail-room-icon {
    font-size: 3rem;
    opacity: 0.4;
}

.bhrbc-avail-room-type {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    backdrop-filter: blur(4px);
}

.bhrbc-avail-room-body {
    padding: 1.25rem;
}

.bhrbc-avail-room-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.bhrbc-avail-room-excerpt {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bhrbc-avail-room-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.bhrbc-avail-room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.bhrbc-avail-amenity {
    padding: 0.2rem 0.5rem;
    background: #f0fdf4;
    color: #15803d;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
}

.bhrbc-avail-amenity-more {
    padding: 0.2rem 0.5rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
}

/* Room Footer (price + CTA) */
.bhrbc-avail-room-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.bhrbc-avail-room-pricing {
    display: flex;
    flex-direction: column;
}

.bhrbc-avail-price-from {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
}

.bhrbc-avail-price-from small {
    font-size: 0.75rem;
    font-weight: 400;
    color: #94a3b8;
}

.bhrbc-avail-price-total {
    font-size: 0.8rem;
    color: #64748b;
}

.bhrbc-avail-reserve-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}

.bhrbc-avail-reserve-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
    color: #fff;
}

/* No Vacancy State */
.bhrbc-avail-no-vacancy {
    margin-top: 2rem;
}

.bhrbc-avail-no-vacancy-inner {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid #fde68a;
    border-radius: 20px;
}

.bhrbc-avail-no-vacancy-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.bhrbc-avail-no-vacancy h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    margin: 0 0 0.5rem;
}

.bhrbc-avail-no-vacancy p {
    color: #a16207;
    font-size: 1rem;
    margin: 0 0 1.5rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.bhrbc-avail-retry-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: 'Inter', sans-serif;
}

.bhrbc-avail-retry-btn:hover {
    background: #334155;
    transform: translateY(-1px);
}

.bhrbc-avail-contact-fallback {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.bhrbc-avail-contact-fallback a {
    color: #4f46e5;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
}

.bhrbc-avail-contact-fallback a:hover {
    text-decoration: underline;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 900px) {
    .bhrbc-avail-form {
        grid-template-columns: 1fr 1fr;
    }

    .bhrbc-avail-search-btn {
        grid-column: 1 / -1;
    }

    .bhrbc-avail-results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .bhrbc-avail-search-inner {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .bhrbc-avail-heading {
        font-size: 1.25rem;
    }

    .bhrbc-avail-form {
        grid-template-columns: 1fr;
    }

    .bhrbc-avail-room-img {
        height: 160px;
    }

    .bhrbc-sr-form-row {
        grid-template-columns: 1fr;
    }
}
