/* ==================================================
   StayEase Pro - Enhanced Rooms Page
   File: css/room.css
   ================================================== */

html {
    scroll-behavior: smooth;
}

/* ------------------------------
   Hero Section
------------------------------ */

.rooms-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
    background:
        radial-gradient(circle at top left, rgba(212, 165, 116, 0.24), transparent 34%),
        radial-gradient(circle at top right, rgba(45, 90, 107, 0.18), transparent 36%),
        linear-gradient(135deg, #f9f7f4 0%, #f3eee8 100%);
}

.rooms-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(249, 247, 244, 0.84), rgba(249, 247, 244, 0.94)),
        url('[images.unsplash.com](https://images.unsplash.com/photo-1566073771259-6a8506099945?q=80&w=1800&auto=format&fit=crop)');
    background-size: cover;
    background-position: center;
    opacity: 0.42;
    transform: scale(1.05);
}

.rooms-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.55;
    animation: roomsFloatOrb 8s ease-in-out infinite;
}

.rooms-orb-1 {
    width: 230px;
    height: 230px;
    background: rgba(212, 165, 116, 0.28);
    top: 8%;
    left: -80px;
}

.rooms-orb-2 {
    width: 280px;
    height: 280px;
    background: rgba(45, 90, 107, 0.18);
    bottom: 8%;
    right: -110px;
    animation-delay: 1.5s;
}

.rooms-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    align-items: center;
    gap: 4rem;
    min-height: 600px;
}

.rooms-hero-copy {
    animation: roomsFadeUp 0.8s ease both;
}

.rooms-kicker,
.rooms-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--primary);
    background: rgba(45, 90, 107, 0.08);
    border: 1px solid rgba(45, 90, 107, 0.12);
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.rooms-kicker .material-symbols-outlined {
    font-size: 1.05rem;
}

.rooms-hero-copy h1 {
    font-size: clamp(2.65rem, 5.5vw, 5.25rem);
    line-height: 1;
    letter-spacing: -0.065em;
    margin-bottom: 1.35rem;
    max-width: 820px;
}

.rooms-hero-copy p {
    color: var(--text-muted);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.85;
    max-width: 660px;
}

.rooms-hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.rooms-main-btn,
.rooms-secondary-btn {
    padding: 1rem 1.45rem;
    border-radius: 0.95rem;
    font-weight: 800;
}

.rooms-main-btn {
    box-shadow: 0 18px 42px rgba(45, 90, 107, 0.28);
}

.rooms-hero-stats {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2.3rem;
    margin-bottom: 4rem;
}

.rooms-hero-stats div {
    min-width: 130px;
    padding: 1rem 1.15rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 1rem;
    box-shadow: 0 12px 32px rgba(45, 90, 107, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.rooms-hero-stats strong {
    display: block;
    color: var(--primary);
    font-family: 'Sora', sans-serif;
    font-size: 1.45rem;
    line-height: 1;
}

.rooms-hero-stats span {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 0.35rem;
    font-weight: 600;
}

/* ------------------------------
   Hero Visual
------------------------------ */

.rooms-hero-visual {
    position: relative;
    min-height: 520px;
    animation: roomsFadeScale 0.9s ease 0.15s both;
}

.rooms-hero-image {
    position: absolute;
    inset: 0 0 0 4rem;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 34px 90px rgba(45, 90, 107, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.rooms-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.24));
}

.rooms-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: roomsHeroImageMove 12s ease-in-out infinite alternate;
}

.rooms-image-badge {
    position: absolute;
    z-index: 2;
    top: 1.3rem;
    right: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.rooms-floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: min(260px, 78%);
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 52px rgba(45, 90, 107, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.rooms-floating-card .material-symbols-outlined {
    width: 44px;
    height: 44px;
    border-radius: 0.9rem;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rooms-floating-card strong {
    display: block;
    font-size: 0.95rem;
}

.rooms-floating-card small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.15rem;
}

.rooms-floating-top {
    left: 0;
    top: 18%;
    animation: roomsFloatCard 4.5s ease-in-out infinite;
}

.rooms-floating-bottom {
    right: -0.75rem;
    bottom: 14%;
    animation: roomsFloatCard 4.5s ease-in-out infinite 0.8s;
}

/* ------------------------------
   Hero Info Strip
------------------------------ */

.rooms-info-strip {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 1rem;
    align-items: center;
    margin-top: -1.2rem;
    padding: 1rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 60px rgba(45, 90, 107, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.rooms-info-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(249, 247, 244, 0.72);
}

.rooms-info-item .material-symbols-outlined {
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 0.75rem;
    padding: 0.55rem;
}

.rooms-info-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

.rooms-info-item strong {
    display: block;
    font-size: 0.92rem;
}

.rooms-strip-btn {
    height: 100%;
    border-radius: 1rem;
    white-space: nowrap;
}

/* ------------------------------
   Explorer Section
------------------------------ */

.rooms-explorer-section {
    padding: 5rem 0;
}

.rooms-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.4rem;
}

.rooms-section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: -0.045em;
}

.rooms-heading-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: 1.1rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.rooms-heading-card .material-symbols-outlined {
    width: 44px;
    height: 44px;
    border-radius: 0.85rem;
    background: var(--secondary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.rooms-heading-card strong,
.rooms-heading-card small {
    display: block;
}

.rooms-heading-card small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

/* ------------------------------
   Layout
------------------------------ */

.rooms-page-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

/* ------------------------------
   Filter Panel
------------------------------ */

.rooms-filter-panel {
    position: sticky;
    top: calc(var(--nav-height) + 1.25rem);
    padding: 1.35rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 54px rgba(45, 90, 107, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.rooms-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-color);
}

.rooms-filter-header h3 {
    margin: 0;
}

.rooms-filter-header>.material-symbols-outlined {
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 0.8rem;
    padding: 0.6rem;
}

.rooms-filter-label {
    display: inline-flex;
    margin-bottom: 0.55rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    color: var(--primary);
    background: rgba(45, 90, 107, 0.08);
    border: 1px solid rgba(45, 90, 107, 0.12);
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rooms-input-icon {
    position: relative;
}

.rooms-input-icon .material-symbols-outlined {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1.2rem;
    pointer-events: none;
}

.rooms-input-icon .form-control {
    padding-left: 2.75rem;
}

.rooms-filter-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.rooms-check-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.8rem 0.85rem;
    border-radius: 0.95rem;
    background: var(--surface-alt);
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.rooms-check-card:hover {
    background: var(--secondary-light);
    border-color: rgba(212, 165, 116, 0.55);
    transform: translateY(-1px);
}

.rooms-check-card input {
    accent-color: var(--primary);
}

.rooms-check-card .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.25rem;
}

.rooms-check-card strong {
    font-size: 0.92rem;
}

.rooms-price-value {
    color: var(--primary);
    font-weight: 800;
    font-family: 'Sora', sans-serif;
}

.rooms-range {
    width: 100%;
    accent-color: var(--primary);
}

.rooms-range-labels {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.75rem;
    margin-top: 0.45rem;
}

.rooms-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 2rem;
}

.rooms-filter-actions .btn {
    padding: 0.8rem 1rem;
}

/* ------------------------------
   Results
------------------------------ */

.rooms-results-panel {
    min-width: 0;
}

.rooms-results-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    padding: 1.15rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.rooms-results-toolbar h3 {
    margin-bottom: 0.25rem;
}

.rooms-sort-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.rooms-sort-wrap .form-control {
    min-width: 190px;
    padding: 0.65rem 0.85rem;
}

.rooms-result-grid {
    animation: roomsFadeUp 0.65s ease both;
}

/* ------------------------------
   Benefits
------------------------------ */

.rooms-benefits-section {
    padding: 0 0 5rem;
}

.rooms-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.rooms-benefit-card {
    padding: 1.6rem;
    border-radius: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rooms-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.rooms-benefit-card .material-symbols-outlined {
    width: 54px;
    height: 54px;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.rooms-benefit-card h4 {
    margin-bottom: 0.55rem;
}

.rooms-benefit-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ------------------------------
   Footer Enhancements
------------------------------ */

.rooms-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.rooms-footer-top>div:first-child {
    max-width: 430px;
}

.rooms-footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.rooms-footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.rooms-footer-links a:hover {
    color: var(--primary);
}

/* ------------------------------
   Animations
------------------------------ */

@keyframes roomsFloatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.04);
    }
}

@keyframes roomsFloatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes roomsHeroImageMove {
    from {
        transform: scale(1.02) translateX(0);
    }

    to {
        transform: scale(1.09) translateX(-12px);
    }
}

@keyframes roomsFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes roomsFadeScale {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ------------------------------
   Responsive
------------------------------ */

@media (max-width: 1100px) {
    .rooms-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 3rem;
        padding-top: 2rem;
    }

    .rooms-hero-visual {
        min-height: 500px;
    }

    .rooms-hero-image {
        inset: 0;
    }

    .rooms-info-strip {
        grid-template-columns: 1fr 1fr;
        margin-top: 1.5rem;
    }

    .rooms-strip-btn {
        grid-column: span 2;
        width: 100%;
    }

    .rooms-page-layout {
        grid-template-columns: 1fr;
    }

    .rooms-filter-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        z-index: 1000;
        background: var(--surface);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        padding: var(--space-lg);
        margin: 0;
        border-radius: 0;
    }

    .rooms-filter-panel.active {
        transform: translateX(0);
    }

    .filter-tune-icon {
        display: none !important;
    }

    .filter-close-btn {
        display: block !important;
    }

    .rooms-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .rooms-hero {
        padding-top: 2.5rem;
    }

    .rooms-hero-copy h1 {
        font-size: clamp(2.35rem, 11vw, 4rem);
    }

    .rooms-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .rooms-hero-actions .btn {
        width: 100%;
    }

    .rooms-hero-stats {
        display: grid;
        grid-template-columns: 1fr;
    }

    .rooms-hero-visual {
        min-height: 420px;
    }

    .rooms-floating-card {
        width: 82%;
    }

    .rooms-floating-top {
        top: 8%;
        left: 0.75rem;
    }

    .rooms-floating-bottom {
        right: 0.75rem;
        bottom: 8%;
    }

    .rooms-info-strip {
        grid-template-columns: 1fr;
    }

    .rooms-strip-btn {
        grid-column: auto;
    }

    .rooms-explorer-section {
        padding: 3.5rem 0;
    }

    .rooms-section-heading {
        align-items: flex-start;
    }

    .rooms-heading-card {
        width: 100%;
    }

    .rooms-results-toolbar {
        align-items: stretch;
    }

    .rooms-sort-wrap {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .rooms-sort-wrap .form-control {
        width: 100%;
    }

    .rooms-filter-actions {
        grid-template-columns: 1fr;
    }

    .rooms-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .rooms-hero-visual {
        min-height: 350px;
    }

    .rooms-hero-image {
        border-radius: 1.35rem;
    }

    .rooms-floating-card {
        padding: 0.85rem;
    }

    .rooms-floating-card small {
        display: none;
    }

    .rooms-info-item {
        align-items: flex-start;
    }
}

/* ==================================================
   Enhanced Room Cards
   ================================================== */

.room-card-enhanced {
    overflow: hidden;
    border-radius: 1.35rem;
    background: var(--surface);
    border: 1px solid rgba(232, 230, 227, 0.95);
    box-shadow: 0 14px 40px rgba(45, 90, 107, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.room-card-enhanced:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(45, 90, 107, 0.16);
    border-color: rgba(212, 165, 116, 0.45);
}

.room-card-img-enhanced {
    height: 245px;
    position: relative;
    overflow: hidden;
    background: var(--surface-alt);
}

.room-card-img-enhanced::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.02) 48%,
            rgba(0, 0, 0, 0.18) 100%);
    pointer-events: none;
}

.room-card-img-enhanced .room-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-status-pill {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    z-index: 2;
    padding: 0.45rem 1.05rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.06em;
}

.room-card-body-enhanced {
    padding: 1.55rem 1.65rem 1.65rem;
}

.room-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.room-title {
    font-size: clamp(1.35rem, 2vw, 1.85rem);
    line-height: 1.15;
    margin-bottom: 0.45rem;
    letter-spacing: -0.03em;
}

.room-title span {
    color: var(--text-muted);
    font-size: 0.72em;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.room-floor {
    color: var(--text-muted);
    font-size: 0.96rem;
    margin: 0;
}

.room-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--text-main);
    font-size: 1rem;
    white-space: nowrap;
    padding-top: 0.15rem;
}

.room-rating .material-symbols-outlined {
    color: var(--secondary);
    font-size: 1.3rem;
    font-variation-settings: 'FILL' 1;
}

.room-feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1rem;
    color: var(--text-muted);
    margin-bottom: 1.45rem;
}

.room-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.2;
    white-space: nowrap;
}

.room-feature-chip .material-symbols-outlined {
    font-size: 1.05rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.room-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.25rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1.2rem;
}

.room-price-block {
    min-width: 0;
}

.room-price-meta {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: nowrap;
    margin-bottom: 0.45rem;
    min-width: 0;
}

.room-price-meta>span:first-child {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.room-demand-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.72rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.room-demand-pill .material-symbols-outlined {
    font-size: 0.95rem;
}

.room-demand-low {
    background: var(--success-bg);
    color: #047857;
}

.room-demand-high {
    background: var(--warning-bg);
    color: #b45309;
}

.room-price-line {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.room-price-main {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.85rem, 4vw, 2.55rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.room-price-old {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: line-through;
    white-space: nowrap;
}

.room-action-block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.room-book-btn {
    min-width: 118px;
    padding: 0.8rem 1.2rem;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
}

.room-book-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

/* Better room grid responsiveness */
.room-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

/* Medium screens */
@media (max-width: 1100px) {
    .room-card-footer {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .room-action-block {
        justify-content: stretch;
    }

    .room-book-btn {
        width: 100%;
    }
}

/* Mobile screens */
@media (max-width: 600px) {
    .room-card-img-enhanced {
        height: 215px;
    }

    .room-card-body-enhanced {
        padding: 1.25rem;
    }

    .room-card-top {
        gap: 0.75rem;
    }

    .room-title {
        font-size: 1.45rem;
    }

    .room-feature-row {
        gap: 0.6rem 0.8rem;
    }

    .room-feature-chip {
        font-size: 0.86rem;
    }

    .room-card-footer {
        gap: 1rem;
    }

    .room-price-meta {
        flex-wrap: wrap;
    }

    .room-demand-pill {
        font-size: 0.68rem;
        padding: 0.32rem 0.65rem;
    }

    .room-price-main {
        font-size: 2rem;
    }
}

/* Filter Backdrop Overlay */
.filter-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

.filter-overlay.active {
    opacity: 1;
    pointer-events: auto;
}