/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

*:focus {
    outline: 2px solid var(--gt-theme);
    outline-offset: 2px;
}

/* Arlux Theme Variables */
:root {
    --gt-theme: #AA8453;     /* Primary - Gold/Bronze */
    --gt-header: #1C1C1C;    /* Dark Header */
    --gt-text: #434343;      /* Body Text */
    --gt-white: #fff;
    --gt-black: #000;
    --gt-bg: #F8F8F8;        /* Light Background */
    --gt-bg2: #F8F8F8;
    --gt-bg3: #F7F3EE;       /* Warm Background */
    --gt-border: #FCFCFC;
    --gt-box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
    --gt-transition: all 0.3s ease;
}

/* Arlux Theme Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-in-left {
    animation: slideInLeft 0.5s ease forwards;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 20px;
}

.logo-animation {
    width: 80px;
    height: 80px;
    border: 3px solid var(--gt-theme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: rotate 2s linear infinite;
}

.logo-animation span {
    font-family: 'Gilda Display', serif;
    font-size: 2rem;
    color: var(--gt-theme);
    font-weight: 400;
}

.preloader-text {
    font-family: 'Gilda Display', serif;
    font-size: 1.2rem;
    color: var(--gt-header);
    margin-top: 10px;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gt-theme);
    color: var(--gt-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: var(--gt-box-shadow);
    transition: var(--gt-transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gt-header);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(170, 132, 83, 0.3);
}

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: var(--gt-text);
    background-color: var(--gt-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--gt-header);
    color: var(--gt-white);
    padding: 1rem 0;
    box-shadow: var(--gt-box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gt-theme);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gt-white);
    font-weight: bold;
}

.logo h1 {
    font-family: 'Gilda Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--gt-white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--gt-transition);
    position: relative;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav a:hover {
    color: var(--gt-theme);
    background: rgba(170, 132, 83, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--gt-theme) 0%, var(--gt-header) 100%);
    color: var(--gt-white);
    padding: 4rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Gilda Display', serif;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-search {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: var(--gt-white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 15px 35px rgba(170, 132, 83, 0.3);
    transition: var(--gt-transition);
}

.hero-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(170, 132, 83, 0.4);
}

.search-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 50px;
    outline: none;
    color: var(--gt-text);
    font-family: 'Barlow', sans-serif;
    transition: var(--gt-transition);
}

.search-input::placeholder {
    color: rgba(67, 67, 67, 0.6);
}

.search-btn {
    background: var(--gt-theme);
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    color: var(--gt-white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--gt-header);
}

/* Arlux Theme Button Styles */
.gt-theme-btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--gt-theme);
    color: var(--gt-white);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gt-theme-btn:hover {
    background: var(--gt-header);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(170, 132, 83, 0.3);
}

.gt-theme-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(170, 132, 83, 0.2);
}

.gt-theme-btn-outline {
    background: transparent;
    color: var(--gt-theme);
    border: 2px solid var(--gt-theme);
}

.gt-theme-btn-outline:hover {
    background: var(--gt-theme);
    color: var(--gt-white);
    transform: translateY(-2px);
}

/* Filters Section */
.filters {
    background: var(--gt-white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gt-border);
}

.filter-group {
    display: inline-block;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--gt-text);
}

.filter-group select {
    padding: 10px 15px;
    border: 2px solid var(--gt-border);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--gt-white);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--gt-theme);
}

/* Hotels Section */
.hotels-section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Gilda Display', serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gt-header);
    font-weight: 400;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hotel-card {
    background: var(--gt-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--gt-box-shadow);
    transition: var(--gt-transition);
    cursor: pointer;
    position: relative;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gt-theme), transparent);
    opacity: 0;
    transition: var(--gt-transition);
    z-index: 1;
    pointer-events: none;
}

.hotel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(170, 132, 83, 0.2);
}

.hotel-card:hover::before {
    opacity: 0.05;
}

.hotel-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, var(--gt-theme), var(--gt-header));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gt-white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.hotel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.hotel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--gt-header);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-name {
    font-family: 'Gilda Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--gt-header);
}

.hotel-location {
    color: var(--gt-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    color: #f39c12;
    font-size: 1.1rem;
}

.rating-text {
    color: var(--gt-text);
    font-size: 0.9rem;
}

.hotel-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gt-theme);
    font-weight: 600;
}

.hotel-price i {
    color: var(--gt-theme);
}

.hotel-rooms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--gt-text);
    font-size: 0.9rem;
}

.hotel-rooms i {
    color: var(--gt-text);
}

.hotel-amenities-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.amenity-tag {
    background: var(--gt-bg3);
    color: var(--gt-header);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.amenity-more {
    background: var(--gt-theme);
    color: var(--gt-white);
    padding: 0.25rem 0.6rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.hotel-description {
    color: var(--gt-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hotel-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 18px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gt-theme);
    color: var(--gt-white);
}

.btn-primary:hover {
    background: var(--gt-header);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gt-theme);
    border: 2px solid var(--gt-theme);
}

.btn-secondary:hover {
    background: var(--gt-theme);
    color: var(--gt-white);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #7f8c8d;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--gt-header);
    color: var(--gt-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Gilda Display', serif;
    margin-bottom: 1rem;
    color: var(--gt-theme);
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--gt-white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gt-theme);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gt-text);
    opacity: 0.8;
}

/* Hotel Detail Page Styles */
.hotel-detail-page {
    min-height: 100vh;
    background: var(--gt-bg);
}

.detail-header {
    background: var(--gt-theme);
    padding: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.detail-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.back-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.logo-img {
    width: 42px;
    height: 42px;
    background: white;
}

.detail-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--gt-theme), var(--gt-header));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/*.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: center;
}
*/

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* bikin gambar full cover */
    object-position: center; /* posisi tengah */
    display: block;
}

.hotel-emoji {
    font-size: 8rem;
    opacity: 0.3;
    position: absolute;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hotel-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hotel-location-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hotel-rating-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.detail-content {
    padding: 60px 0;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detail-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.detail-section h2 {
    color: var(--gt-theme);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 10px;
}

.hotel-description-full {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gt-text);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--gt-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.amenity-item i {
    color: var(--gt-theme);
    font-size: 1.1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--gt-bg);
    border-radius: 10px;
}

.contact-item i {
    color: var(--gt-theme);
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item strong {
    color: var(--gt-theme);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--gt-header);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.booking-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.booking-header {
    background: var(--gt-theme);
    color: white;
    padding: 20px;
    text-align: center;
}

.booking-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.booking-info {
    padding: 25px;
}

.price-info {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gt-border);
}

.price-label {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.price-range {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gt-theme);
}

.room-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px;
    background: var(--gt-bg);
    border-radius: 8px;
}

.room-info i {
    color: var(--gt-header);
}

.time-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.time-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gt-text);
}

.time-item i {
    color: var(--gt-theme);
    width: 16px;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
}

.btn-large {
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.category-badge-large {
    background: linear-gradient(135deg, #ffc107, #ffd700);
    color: var(--gt-theme);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(255, 193, 7, 0.3);
}

.category-badge-large i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-search {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .search-input,
    .search-btn {
        border-radius: 10px;
    }
    
    .filter-group {
        display: block;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-actions {
        flex-direction: column;
    }
    
    /* Detail page responsive */
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hotel-title {
        font-size: 2rem;
    }
    
    .detail-hero {
        height: 300px;
    }
    
    .hotel-emoji {
        font-size: 5rem;
    }
    
    .detail-section {
        padding: 20px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .back-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .header-logo span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hotel-card {
        margin: 0 10px;
    }
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.room-card {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  align-items: center; /* gambar & konten sama tinggi */
}

.room-image {
  flex-shrink: 0; /* biar gambar nggak mengecil */
}

.room-image img {
  width: 220px;
  height: auto;         /* tingginya menyesuaikan */
  object-fit: cover;
  display: block;
}

.room-content {
  display: flex;
  flex: 1;
  justify-content: space-between;
  padding: 15px;
}

.room-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;     /* pastikan rata kiri */
  align-items: flex-start;
}

.room-info h3 {
  margin: 0 0 8px;
  text-align: left;     /* jaga-jaga */
}

.room-features {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9em;
  color: #555;
}

.room-rates {
  min-width: 180px;
  border-left: 1px solid #eee;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.rate-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rate-price {
  font-weight: bold;
  color: #28a745;
}

.not-available {
  color: red;
  font-size: 0.9em;
}
