/* =====================================================
   PANA.PH — Hotel detail page modern styles
   ===================================================== */

/* ─── Hero section ─────────────────────────────────────────────────────── */
.hotel-hero-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(236, 72, 153, 0.06) 100%);
    padding: 20px 0 40px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}

[data-theme="dark"] .hotel-hero-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(236, 72, 153, 0.08) 100%);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--text-tertiary);
}
.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs-separator { color: var(--text-tertiary); opacity: 0.5; }
.breadcrumbs-current { color: var(--text-primary); font-weight: 600; }

.hotel-hero {
    max-width: 900px;
}

.hotel-hero-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.hotel-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.hotel-stars-badge {
    display: inline-flex;
    gap: 2px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.hotel-ribbon {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}
.hotel-ribbon-blue {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.hotel-title-modern {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 8px;
}

.hotel-formerly {
    color: var(--text-tertiary);
    font-size: 14px;
    margin-bottom: 12px;
    font-style: italic;
}

.hotel-location-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}
.hotel-location-modern svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hotel-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-card);
}
.hero-stat-pill-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}
.hero-stat-pill-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-stat-pill.rating-exceptional .hero-stat-pill-value,
.hero-stat-pill.rating-excellent .hero-stat-pill-value {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Page container ────────────────────────────────────────────────────── */
.hotel-page-container { padding-bottom: 60px; }
.ad-wrapper { margin: 32px auto; display: flex; justify-content: center; }

/* ─── Modern Gallery ────────────────────────────────────────────────────── */
.gallery-modern {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.gallery-main-img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bg-base);
    overflow: hidden;
    cursor: pointer;
}
.gallery-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}
.gallery-main-img:hover img {
    transform: scale(1.05);
}

.gallery-side-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gallery-side-img {
    position: relative;
    background: var(--bg-base);
    overflow: hidden;
    cursor: pointer;
}
.gallery-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}
.gallery-side-img:hover img {
    transform: scale(1.08);
}

.gallery-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}
.gallery-more-overlay:hover { background: rgba(15, 23, 42, 0.85); }
.gallery-more-overlay span {
    font-size: 2rem;
    font-weight: 800;
}
.gallery-more-overlay small {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 4px;
}

/* ─── Main content grid (2-col) ─────────────────────────────────────────── */
.hotel-content-modern {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    margin-bottom: 32px;
}

.hotel-main-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

.hotel-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

/* ─── Info cards ────────────────────────────────────────────────────────── */
.info-card-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s;
}
.info-card-modern:hover { box-shadow: var(--shadow-card-hover); }

.info-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}
.info-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--primary-glow);
    flex-shrink: 0;
}

/* Quick Info */
.quick-info-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 14px;
}
.quick-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-base);
    border-radius: 14px;
    border: 1px solid var(--border-subtle);
    transition: all 0.2s var(--ease-smooth);
}
.quick-info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}
.quick-info-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.quick-info-text { flex: 1; min-width: 0; }
.quick-info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-bottom: 2px;
}
.quick-info-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Amenities */
.amenities-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s var(--ease-smooth);
}
.amenity-pill:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.amenity-check {
    width: 22px;
    height: 22px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* About */
.hotel-description-modern {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 15px;
}
.hotel-description-modern p {
    margin-bottom: 16px;
}
.hotel-description-modern p:last-child { margin-bottom: 0; }

/* Map */
.map-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    box-shadow: var(--shadow-card);
    margin-bottom: 16px;
    background: var(--bg-base);
}

.map-leaflet {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: transparent;
}

.map-iframe-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.map-wrap.map-ready .map-iframe-fallback {
    display: none;
}

.map-approx-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: var(--bg-glass-strong);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
}

.map-placeholder {
    height: 220px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    border-radius: 16px;
    border: 1px dashed var(--border-default);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    gap: 12px;
}
.map-placeholder svg { opacity: 0.4; }

.address-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    margin-bottom: 16px;
    transition: all 0.2s var(--ease-smooth);
}
.address-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.address-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.address-info {
    flex: 1;
    min-width: 0;
}
.address-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-bottom: 2px;
}
.address-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    word-break: break-word;
}

.address-copy-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s var(--ease-smooth);
    flex-shrink: 0;
}
.address-copy-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: scale(1.05);
}
.address-copy-btn.copied {
    background: #10b981;
    border-color: #10b981;
    color: white;
    transform: scale(1);
}

.map-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.btn-map-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s var(--ease-smooth);
    box-shadow: 0 4px 12px var(--primary-glow);
}
.btn-map-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
    color: white;
}
.btn-map-secondary {
    background: var(--bg-base);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
    box-shadow: none;
}
.btn-map-secondary:hover {
    background: var(--bg-card);
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

/* ─── BOOKING SIDEBAR ──────────────────────────────────────────────────── */
.booking-card-modern {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.12);
    position: relative;
    overflow: hidden;
}

.booking-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hero);
}

.booking-rating-modern {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-subtle);
}
.booking-score {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}
.booking-score.rating-exceptional { background: linear-gradient(135deg, #6366f1, #a855f7); }
.booking-score.rating-excellent { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.booking-score.rating-good { background: linear-gradient(135deg, #14b8a6, #0ea5e9); }
.booking-score.rating-average { background: linear-gradient(135deg, #94a3b8, #64748b); }

.booking-rating-info { flex: 1; min-width: 0; }
.booking-rating-label {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.booking-rating-reviews {
    font-size: 13px;
    color: var(--text-secondary);
}

.booking-price-prompt {
    text-align: center;
    margin-bottom: 20px;
}
.booking-price-prompt-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.booking-price-prompt-sub {
    font-size: 13px;
    color: var(--text-secondary);
}

.btn-book-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    background: var(--gradient-hero);
    color: white;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: all 0.3s var(--ease-bounce);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}
.btn-book-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-smooth);
}
.btn-book-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px var(--primary-glow);
    color: white;
}
.btn-book-modern:hover::before { transform: translateX(100%); }
.btn-book-modern svg {
    transition: transform 0.3s var(--ease-bounce);
}
.btn-book-modern:hover svg { transform: translateX(4px); }

.booking-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}
.booking-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}
.booking-trust-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.booking-meta {
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}
.booking-meta-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}
.booking-meta-key { color: var(--text-tertiary); }
.booking-meta-val { color: var(--text-primary); font-weight: 600; text-align: right; }

.hotel-sidebar-ad {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

/* ─── Tours section (sightsee.pro) ──────────────────────────────────────── */
.tours-section {
    margin-top: 60px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
}

[data-theme="dark"] .tours-section {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
}

.tours-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.tours-section-header .section-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    margin: 4px 0;
}

.tours-see-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s var(--ease-smooth);
    white-space: nowrap;
}
.tours-see-all:hover {
    background: var(--gradient-secondary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.tour-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: var(--shadow-card);
    isolation: isolate;
}
.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.2);
    border-color: var(--accent);
    color: inherit;
}

.tour-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #14b8a6, #6366f1);
}
.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}
.tour-card:hover .tour-card-image img {
    transform: scale(1.08);
}
.tour-no-image::before {
    content: '🎟️';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.tour-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bg-glass-strong);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s var(--ease-smooth);
}
.tour-card:hover .tour-card-overlay {
    opacity: 1;
}

.tour-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #14b8a6;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: transform 0.3s var(--ease-smooth);
}
.tour-card:hover .tour-view-btn {
    transform: translateY(0);
}

.tour-card-body {
    padding: 16px 18px 18px;
}
.tour-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 41px;
}
.tour-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-secondary);
    flex-wrap: wrap;
}
.tour-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.tour-meta-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.tours-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
}
.tours-powered-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.tours-powered-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .tours-section {
        padding: 20px;
        margin-top: 40px;
        border-radius: 18px;
    }
    .tours-section-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .tours-see-all {
        justify-content: center;
    }
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ─── Attractions section ───────────────────────────────────────────────── */
.attractions-section-modern {
    margin-top: 60px;
}

.no-attractions {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-card);
    border: 1px dashed var(--border-default);
    border-radius: 20px;
    color: var(--text-tertiary);
}
.no-attractions-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
    opacity: 0.5;
}

/* ─── Reviews ───────────────────────────────────────────────────────────── */
.reviews-section-modern {
    margin-top: 60px;
}

.btn-write-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--gradient-hero);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--primary-glow);
    transition: all 0.2s var(--ease-smooth);
    font-family: inherit;
}
.btn-write-review:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.reviews-loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-tertiary);
}
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

.no-reviews {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-card);
    border: 1px dashed var(--border-default);
    border-radius: 20px;
    color: var(--text-secondary);
}
.no-reviews-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}
.no-reviews h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.no-reviews p { color: var(--text-secondary); }

.reviews-summary-modern {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 28px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-card);
    margin-bottom: 24px;
}
.reviews-score-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 32px;
    border-right: 1px solid var(--border-subtle);
}
.reviews-score-big {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.reviews-score-label {
    font-size: 13px;
    color: var(--text-tertiary);
}
.reviews-score-count {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 14px;
}

.reviews-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.rating-bar {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 12px;
}
.rating-bar-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.rating-bar-track {
    height: 8px;
    background: var(--bg-base);
    border-radius: 50px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 50px;
    transition: width 0.6s var(--ease-smooth);
}
.rating-bar-count {
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: right;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.review-card {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s;
}
.review-card:hover {
    box-shadow: var(--shadow-card);
    border-color: var(--primary);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 12px;
    margin-bottom: 14px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-hero);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}
.review-name {
    font-weight: 700;
    color: var(--text-primary);
}
.review-meta {
    font-size: 12px;
    color: var(--text-tertiary);
}
.review-rating {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
}
.review-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.review-content {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 14px;
}
.review-footer {
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}
.review-helpful-btn {
    background: var(--bg-base);
    border: 1px solid var(--border-default);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.review-helpful-btn:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* ─── Modal ─────────────────────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.modal-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 540px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: modal-pop 0.3s var(--ease-bounce);
}
@keyframes modal-pop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}
.modal-close {
    background: var(--bg-base);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.modal-close:hover {
    background: var(--primary-light);
    color: var(--primary);
    transform: rotate(90deg);
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-base);
    border: 1px solid var(--border-default);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 14px;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.star-rating-input { display: flex; gap: 4px; }
.star-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--border-default);
    cursor: pointer;
    transition: all 0.2s;
    padding: 4px;
}
.star-btn:hover, .star-btn.active {
    color: #fbbf24;
    transform: scale(1.15);
}
.btn-block {
    width: 100%;
    padding: 14px;
    background: var(--gradient-hero);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.btn-block:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--primary-glow); }

/* ─── Similar hotels ────────────────────────────────────────────────────── */
.similar-hotels-section { margin-top: 60px; }

/* ─── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hotel-content-modern {
        grid-template-columns: 1fr;
    }
    .hotel-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    .gallery-modern {
        grid-template-columns: 1fr;
    }
    .gallery-side-grid {
        grid-template-rows: 1fr;
        grid-template-columns: repeat(4, 1fr);
    }
    .gallery-side-grid .gallery-side-img {
        aspect-ratio: 1;
    }
}

@media (max-width: 768px) {
    .hotel-hero-section { padding: 16px 0 24px; }
    .hotel-hero-stats { gap: 8px; }
    .hero-stat-pill { padding: 8px 14px; font-size: 13px; }
    .hero-stat-pill-value { font-size: 16px; }
    .info-card-modern { padding: 20px; border-radius: 16px; }
    .info-card-title { font-size: 1.1rem; }
    .info-card-icon { width: 36px; height: 36px; }
    .quick-info-modern { grid-template-columns: 1fr; }
    .map-container-modern { height: 280px; }
    .reviews-summary-modern {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    .reviews-score-wrap {
        padding-right: 0;
        border-right: none;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-subtle);
    }
    .booking-card-modern { padding: 20px; }
    .modal-content { padding: 24px; border-radius: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-side-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
