 /* ============================================================
       ROOM DETAILS PAGE — self-contained CSS
       Matches rooms.php theme: Poppins / Cormorant Garamond,
       Brown (#4b3128) + Gold (#c89b52) + Cream (#faf3e8)
    ============================================================ */

    .rd-banner {
        min-height: 42vh;
        position: relative;
        display: flex;
        align-items: center;
        background: url('assets/img/banner/10.png') center / cover no-repeat;
        overflow: hidden;
    }

    .rd-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, rgba(30,15,8,.90) 30%, rgba(30,15,8,.55) 65%, rgba(30,15,8,.20));
        z-index: 1;
    }

    .rd-banner-content {
        position: relative;
        z-index: 2;
        padding-top: var(--nav-h, 78px);
    }

    .rd-banner-content .page-eyebrow {
        display: inline-block;
        color: #c89b52;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .rd-banner-content h1 {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2.2rem, 4vw, 3.4rem);
        color: #fff;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .rd-banner-content p {
        color: rgba(255,255,255,.75);
        font-size: 14px;
    }

    .rd-banner-content p span {
        color: #c89b52;
        font-weight: 600;
    }

    .rd-section {
        padding: 60px 0 90px;
        background: #fdf9f3;
    }

    .rd-layout {
        display: grid;
        grid-template-columns: 1.15fr 1fr;
        gap: 48px;
        align-items: start;
    }

    @media (max-width: 991px) {
        .rd-layout { grid-template-columns: 1fr; }
    }

    /* ── Gallery ── */
    .rd-gallery-main {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 30px 70px rgba(75,49,40,.15);
        aspect-ratio: 4 / 3;
        background: #eee;
    }

    .rd-gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: opacity .3s ease;
    }

    .rd-badge-float {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #c89b52, #e8c98a);
        color: #2e1a10;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 2px;
        text-transform: uppercase;
        padding: 8px 16px;
        border-radius: 50px;
        box-shadow: 0 6px 18px rgba(200,155,82,.45);
    }

    .rd-thumbs {
        display: flex;
        gap: 12px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .rd-thumbs img {
        width: 84px;
        height: 64px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        opacity: .6;
        border: 2px solid transparent;
        transition: all .25s ease;
    }

    .rd-thumbs img:hover { opacity: .9; }

    .rd-thumbs img.active {
        opacity: 1;
        border-color: #c89b52;
    }

    /* ── Info column ── */
    .rd-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #c89b52;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 12px;
    }

    .rd-eyebrow::before {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: #c89b52;
    }

    .rd-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(2rem, 3.2vw, 2.8rem);
        font-weight: 700;
        color: #4b3128;
        margin-bottom: 10px;
        line-height: 1.15;
    }

    .rd-rating {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        font-weight: 600;
        color: #4b3128;
        margin-bottom: 18px;
    }

    .rd-rating i { color: #c89b52; }

    .rd-desc {
        font-size: 14.5px;
        color: #776a63;
        line-height: 1.9;
        margin-bottom: 28px;
    }

    .rd-specs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 20px;
        margin-bottom: 30px;
    }

    .rd-spec {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 13.5px;
        color: #4b3128;
        font-weight: 500;
    }

    .rd-spec i {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: #faf3e8;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c89b52;
        font-size: 14px;
        flex-shrink: 0;
    }

    .rd-amenities-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #c89b52;
        margin-bottom: 14px;
    }

    .rd-amenities {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 32px;
    }

    .rd-amenity {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #faf3e8;
        border: 1px solid rgba(200,155,82,.3);
        border-radius: 50px;
        padding: 8px 16px;
        font-size: 12.5px;
        color: #4b3128;
        font-weight: 500;
    }

    .rd-amenity i { color: #c89b52; }

    /* ── Price / booking card ── */
    .rd-book-card {
        background: #fff;
        border-radius: 20px;
        padding: 26px 28px;
        box-shadow: 0 20px 50px rgba(75,49,40,.10);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }

    .rd-price-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #c89b52;
        margin-bottom: 4px;
    }

    /* Plain, normal (non-superscript) price display with a rupee icon */
    .rd-price-amount {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2.4rem;
        font-weight: 700;
        color: #4b3128;
        line-height: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .rd-price-amount i {
        font-size: 1.5rem;
        color: #c89b52;
    }

    .rd-price-per {
        font-size: 12px;
        color: #776a63;
        font-weight: 500;
        margin-left: 6px;
    }

    .rd-book-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #4b3128, #c89b52);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        padding: 16px 34px;
        border-radius: 50px;
        text-decoration: none;
        transition: all .4s cubic-bezier(.23,1,.32,1);
        box-shadow: 0 8px 24px rgba(200,155,82,.35);
        border: none;
        cursor: pointer;
    }

    .rd-book-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(200,155,82,.5);
        color: #fff;
        gap: 14px;
    }

    .rd-back-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #776a63;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        margin-top: 24px;
    }

    .rd-back-link:hover { color: #c89b52; }

    /* ── Not found state ── */
    .rd-not-found {
        text-align: center;
        padding: 100px 20px;
    }

    .rd-not-found i {
        font-size: 3rem;
        color: #c89b52;
        margin-bottom: 20px;
    }

    .rd-not-found h2 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        color: #4b3128;
        margin-bottom: 10px;
    }

    .rd-not-found p {
        color: #776a63;
        margin-bottom: 24px;
    }

    /* ── Related rooms strip ── */
    .rd-related {
        margin-top: 90px;
    }

    .rd-related-head {
        text-align: center;
        margin-bottom: 36px;
    }

    .rd-related-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 14px 40px rgba(75,49,40,.10);
        transition: transform .35s ease, box-shadow .35s ease;
        height: 100%;
        cursor: pointer;
    }

    .rd-related-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 26px 60px rgba(75,49,40,.18);
    }

    .rd-related-card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
    }

    .rd-related-card .rd-related-body {
        padding: 20px 22px 24px;
    }

    .rd-related-badge {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #c89b52;
        display: block;
        margin-bottom: 10px;
    }

    .rd-related-toprow {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 18px;
    }

    .rd-related-toprow-left h4 {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.4rem;
        color: #4b3128;
        margin-bottom: 6px;
    }

    .rd-related-rating {
        font-size: 12px;
        color: #776a63;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .rd-related-rating i { color: #c89b52; }

    .rd-related-toprow-right {
        text-align: right;
        flex-shrink: 0;
    }

    .rd-related-icons {
        display: flex;
        gap: 8px;
        justify-content: flex-end;
        margin-bottom: 8px;
    }

    .rd-related-icons span {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: #faf3e8;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #c89b52;
        font-size: 12px;
    }

    .rd-related-price {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #4b3128;
        white-space: nowrap;
    }

    .rd-related-price i {
        font-size: .85rem;
        color: #c89b52;
        margin-right: 3px;
    }

    .rd-related-price small {
        font-size: 11px;
        font-weight: 500;
        color: #776a63;
    }

    .rd-related-card a.rd-related-link {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: #faf3e8;
        color: #4b3128;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        padding: 12px 20px;
        border-radius: 50px;
        transition: all .3s ease;
    }

    .rd-related-card a.rd-related-link:hover {
        background: linear-gradient(135deg, #4b3128, #c89b52);
        color: #fff;
    }

    @media (max-width: 575px) {
        .rd-book-card { flex-direction: column; align-items: flex-start; }
        .rd-book-btn { width: 100%; justify-content: center; }
    }