﻿/* General styles for detail-room */
.detail-room {
    position: relative;
}

    .detail-room:before {
        content: "";
        position: absolute;
        background: #f2fbff;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
/* Container tổng */
.chinhsachvcn-content {
    font-family: 'Segoe UI', Arial, sans-serif;
    padding: 10px 0;
    line-height: 1.6;
}

    /* Ẩn dấu chấm tròn mặc định của danh sách chính */
    .chinhsachvcn-content > div > ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        /* Khoảng cách giữa các mục lớn (Phòng ngủ, Giường, Sức chứa) */
        .chinhsachvcn-content > div > ul > li {
            margin-bottom: 15px;
        }

            /* TÔ ĐẬM TIÊU ĐỀ CHÍNH: 6 phòng ngủ, 10 giường ngủ, Sức chứa... */
            .chinhsachvcn-content > div > ul > li > p {
                font-weight: 700; /* Tô đậm */
                color: #0f4e8dcf; /* Màu xanh đậm chuyên nghiệp */
                font-size: 1.15rem;
                margin: 0 0 5px 0;
                display: flex;
                align-items: center;
            }

                /* Thêm icon chấm tròn nhỏ phía trước tiêu đề cho trang trọng */
                .chinhsachvcn-content > div > ul > li > p::before {
                    content: "●";
                    font-size: 0.8rem;
                    margin-right: 10px;
                    color: #0f4e8d;
                }

    /* ĐỊNH DẠNG DANH SÁCH CON: Các loại phòng bên trong */
    .chinhsachvcn-content ul ul {
        list-style: none;
        padding-left: 25px; /* Thụt lề vào trong */
        margin: 5px 0;
    }

        .chinhsachvcn-content ul ul li {
            position: relative;
            padding-left: 15px;
            margin-bottom: 5px;
        }

            /* Tạo dấu gạch đầu dòng nhẹ nhàng cho danh sách con */
            .chinhsachvcn-content ul ul li::before {
                content: "-";
                position: absolute;
                left: 0;
                color: #888;
            }

            .chinhsachvcn-content ul ul li p {
                font-weight: normal; /* Danh sách con không tô đậm */
                color: #555;
                font-size: 1rem;
                margin: 0;
                font-size: 17px;
                font-weight: bold;
            }

/* Mobile: Căn chỉnh lại kích thước chữ cho vừa màn hình */
@media (max-width: 768px) {
    .chinhsachvcn-content > div > ul > li > p {
        font-size: 1.05rem;
    }

    .chinhsachvcn-content ul ul {
        padding-left: 20px;
    }
}
/* --- BẮT ĐẦU CSS CHO SWIPER HERO --- */
.swiper-container {
    width: 100%;
    /* height: 600px; */ /* Chiều cao tổng của slider */
    position: relative;
    overflow: hidden;
}

.w-640px {
    width: 640px !important; /* Quan trọng: Đặt chiều rộng cố định cho mỗi slide */
    flex-shrink: 0;
}

.bg-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

    .bg-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Giúp ảnh không bị méo khi co giãn */
        transition: transform 0.5s ease;
    }

    .bg-img:hover img {
        transform: scale(1.05); /* Hiệu ứng zoom nhẹ khi di chuột */
    }

/* Ẩn placeholder nếu có */
.img-placeholder {
    display: none;
}

/* Tùy chỉnh nút Next/Prev cho đẹp hơn */
.swiper-button-next, .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .swiper-button-next:hover, .swiper-button-prev:hover {
        background-color: #fff;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .swiper-button-next::after, .swiper-button-prev::after {
        display: none; /* Ẩn icon mặc định để dùng icon FontAwesome */
    }
/* --- KẾT THÚC CSS CHO SWIPER HERO --- */
/* Detail room banner */
.detail-room-banner {
    height: 475px;
    position: relative;
}

    .detail-room-banner::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        content: "";
    }

    .detail-room-banner img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Detail room container */
.detail-room-container {
    padding: 60px 0 30px;
    position: relative;
}

    .detail-room-container .title {
        margin: 0 0 13px;
        color: var(--default-color-1);
        letter-spacing: 4px;
        font-family: 'MontserratAlternates-Regular';
        font-size: 32px;
        font-weight: 400;
        line-height: 139%;
        background: linear-gradient(180deg, #0AE8EA 0%, #0046ED 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .detail-room-container .options {
        display: flex;
        align-items: center;
    }

        .detail-room-container .options .item svg path {
            fill: #0AE8EA; /* Hoặc bất kỳ màu tĩnh nào */
        }

        .detail-room-container .options .item {
            color: #6C8F9C;
            font-family: 'WixMadeforDisplay-Regular';
            font-size: 18px;
            font-weight: 400;
            line-height: 150%;
            margin-left: 6px;
        }

        .detail-room-container .options span {
            margin: 0 5px;
            font-size: 14px;
        }

.wjfvclv-left {
    box-shadow: 0 5px 30px rgba(80, 57, 24, 0.15);
    border-radius: 10px;
    height: fit-content;
    padding: 20px 30px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(80, 57, 24, 0.15);
    border-radius: 15px;
    background-color: #2b5db500;
    height: fit-content;
    padding: 20px 30px;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    padding-top: 43px;
    margin-bottom: 33px;
}

.bjkjasd-right {
    position: relative !important;
    display: block;
    min-height: 100%; /* Quan trọng để sidebar có đường chạy */
    padding-left: 30px;
}

.is-sticky {
    position: fixed !important;
    top: 20px;
    z-index: 1000;
}

.detail-room-container .info {
    display: flex;
    align-items: center;
}

    .detail-room-container .info .item {
        display: flex;
        margin-right: 23px;
        align-items: center;
    }

        .detail-room-container .info .item img,
        .detail-room-container .info .item svg {
            width: 22px;
        }

            .detail-room-container .info .item svg path {
                fill: #0AE8EA; /* Hoặc bất kỳ màu tĩnh nào */
            }

        .detail-room-container .info .item span {
            color: #6C8F9C;
            font-family: 'WixMadeforDisplay-Regular';
            font-size: 18px;
            font-weight: 400;
            line-height: 150%;
            margin-left: 6px;
        }

.askjdhjas {
    display: flex;
    justify-content: center;
}

.btnn-datphong:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 68px;
    transition: .3s;
    animation: zoomin 2s infinite linear;
}

.detail-room-container .descript {
    font-weight: 100;
    color: #333632;
    font-size: 18px;
    line-height: 29px;
    margin: 15px 0 25px;
    text-align: justify;
}

.btnn-datphong {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    width: fit-content;
    transition: all linear .2s;
    border-radius: 50px;
    padding: 7px 12px;
    box-shadow: 0 0 10px 0 #33333342;
    border: solid 1px #d5d5d5;
    background: linear-gradient(90deg, #43A7AE 0%, #2F78B1 29.5%, #4463DD 79.5%, #2B5DB5 100%);
    margin-top: 20px;
    cursor: pointer;
}

.wrap-content2 {
    display: flex;
    justify-content: space-between;
}
/* Container chính sử dụng Flexbox */
.asc-content {
    display: flex;
    flex-wrap: wrap;
    font-family: 'Segoe UI', Arial, sans-serif;
    gap: 14px;
}

    /* Định dạng chung cho mỗi ô nội dung */
    .asc-content .asc-card {
        flex: 1 1 calc(50% - 20px); /* Chia 2 ô trên một hàng */
        min-width: 300px;
        /* padding: 25px; */
        /* background: #ffffff; */
        border-radius: 15px;
        /* box-sizing: border-box; */
        /* border: 1px solid #eee; */
        /* box-shadow: 0 4px 12px rgba(0,0,0,0.03); */
        transition: transform 0.3s ease;
        padding: 19px;
    }

        /* Hiệu ứng khi hover vào ô */
        .asc-content .asc-card:hover {
            transform: translateY(-5px);
            /* box-shadow: 0 8px 20px rgba(0,0,0,0.08); */
        }

    /* Ô đặc biệt rộng 100% */
    .asc-content .full-width {
        flex: 1 1 100%;
        /* background: #e9f5ee; */
    }

    /* Tiêu đề H3 trong mỗi ô */
    .asc-content .asc-card h3 {
        margin-top: 0;
        color: #0f4e8d;
        font-size: 1.25rem;
        border-bottom: 2px solid #0f4e8d;
        padding-bottom: 10px;
    }

    /* Danh sách UL bên trong */
    .asc-content .asc-card ul {
        margin: 15px 0 0 0;
        padding-left: 20px;
        color: #333;
        line-height: 1.7;
    }

    .asc-content .asc-card li {
        margin-bottom: 10px;
    }

    .asc-content .asc-card b {
        color: #0f4e8d;
    }

    /* Container cho các tag điểm đến */
    .asc-content .tag-container {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 15px;
    }

        .asc-content .tag-container span {
            background: #fff;
            padding: 6px 18px;
            border-radius: 25px;
            border: 1px solid #0f4e8d;
            color: #0f4e8d;
            font-size: 0.9rem;
            font-weight: 500;
        }

/* Responsive cho thiết bị di động */
@media (max-width: 768px) {
    .asc-content .asc-card {
        flex: 1 1 100%; /* Trên mobile tự chuyển thành 1 cột */
    }
}

.detail-room-container .wrap1 {
    padding: 25px 0;
    border-top: 1px solid #d5d5d5;
}

.detail-room-container .wrap-title {
    margin: 0;
    font-size: 22px;
    letter-spacing: 1px;
    color: var(--default-color-1);
    font-family: 'MonM';
    font-weight: 500;
    line-height: 157%;
    text-transform: uppercase;
    background: linear-gradient(180deg, #0AE8EA 0%, #0046ED 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.detail-room-container .wrap-content {
    margin-top: 25px;
}
/* Container cha */
.chinhsasach-content {
    /* padding: 30px 0; */
    font-family: 'Segoe UI', Roboto, sans-serif;
    /* background-color: #fcfcfc; */
}

    /* Thẻ div trực tiếp (Grid container) chia 2 cột */
    .chinhsasach-content > div {
        display: grid;
        /* Chia 2 cột bằng nhau */
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

        /* Định dạng các ô nội dung (Card) */
        .chinhsasach-content > div > div {
            box-sizing: border-box;
            transition: all 0.3s ease;
            /* Đảm bảo ô lẻ không bị giãn ra full width */
            justify-self: start;
            width: 100%;
        }

            /* Ô lẻ cuối cùng sẽ chỉ chiếm đúng 1 cột thay vì giãn ra */
            .chinhsasach-content > div > div:last-child {
                grid-column: span 1;
            }

            /* Hiệu ứng Hover */
            .chinhsasach-content > div > div:hover {
                transform: translateY(-5px);
                /* box-shadow: 0 15px 40px rgba(0,0,0,0.1); */
            }

    /* Tiêu đề H3 */
    .chinhsasach-content h3 {
        font-size: 20px;
        font-weight: bold;
        margin: 0 0 20px 0;
        color: #1a1a1a;
        border-bottom: 2px solid #0f4e8d;
        padding-bottom: 12px;
        display: inline-block;
    }

    /* Danh sách UL/LI */
    .chinhsasach-content ul {
        list-style: none;
        padding: 0;
        margin: 10px 0 0 0;
    }

    .chinhsasach-content li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px dashed #f0f0f0;
        font-size: 15px;
    }

        .chinhsasach-content li:last-child {
            border-bottom: none;
        }

        /* Khoảng cách KM (span thứ 2 trong li) */
        .chinhsasach-content li span:nth-child(2) {
            font-weight: 700;
            color: #444;
            background: #0f4e8d4d;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 13px;
        }

/* Responsive: Trên Mobile hiển thị 1 cột */
@media (max-width: 768px) {
    .chinhsasach-content > div {
        grid-template-columns: 1fr;
    }
}

.detail-room-container .tien-ich-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 10px;
    column-gap: 24px;
    padding-top: 15px;
    width: 100%;
    white-space: nowrap;
}

.detail-room-container .tien-ich-item {
    display: flex;
    align-items: center;
}

    .detail-room-container .tien-ich-item img {
        width: 35px;
        margin: 0 !important;
    }

    .detail-room-container .tien-ich-item span {
        color: black;
        font-size: 16px;
        margin-left: 15px;
        font-weight: bold;
    }

.detail-room-album .btn {
    position: relative;
    z-index: 9;
}
/* Container chính chứa content và sidebar nên có display: flex */
.main-content-wrapper {
    display: flex;
    gap: 30px;
}

.sidebar-right {
}

.sidebar-title {
    font-size: 20px;
    font-weight: bold;
    border-bottom: 2px solid #2B5DB5;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #333;
}

.side-product-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
    padding: 8px;
    border-radius: 8px;
}

    .side-product-item:hover {
        background: #f9f9f9;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

.side-product-img {
    width: 90px;
    height: 70px;
    flex-shrink: 0;
}

    .side-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
    }

.side-product-info {
    flex: 1;
    overflow: hidden;
}

.side-product-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #2B5DB5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'MonM';
    font-weight: bold;
}

.side-product-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'MontserratAlternates-Regular';
}

.side-product-price {
    font-weight: bold;
    color: #d32f2f;
    font-size: 14px;
}

/* Responsive cho mobile */
@media (max-width: 991px) {
    .main-content-wrapper {
        flex-direction: column;
    }

    .sidebar-right {
        width: 100%;
    }
}
/* Detail room album */
.detail-room-album {
    margin-top: 20px;
    padding-bottom: 40px;
    position: relative;
}

    .detail-room-album:after {
        content: "";
        position: absolute;
        background-size: 100% 100%;
        width: 100%;
        height: 609px;
        left: 0;
        bottom: 0;
        z-index: -1;
    }

    .detail-room-album .btn {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        pointer-events: none;
    }

        .detail-room-album .btn .btn-prev.btn-item.flex-center,
        .detail-room-album .btn .btn-next.btn-item.flex-center {
            padding: 10px 20px;
            cursor: pointer;
            pointer-events: auto;
        }

            .detail-room-album .btn .btn-prev.btn-item.flex-center img,
            .detail-room-album .btn .btn-next.btn-item.flex-center img {
                filter: brightness(0) invert(1);
                width: 16px;
                height: auto;
            }

.btn-next svg path, .btn-prev svg path {
    fill: var(--default-color-2);
}

.detail-room-album .btn .btn-prev.btn-item.flex-center:hover,
.detail-room-album .btn .btn-next.btn-item.flex-center:hover {
    color: var(--default-color-1);
}

    .detail-room-album .btn .btn-prev.btn-item.flex-center:hover img,
    .detail-room-album .btn .btn-next.btn-item.flex-center:hover img {
        filter: brightness(0);
    }

.detail-room-album .item {
    border-radius: 10px;
    overflow: hidden;
    /* margin-right: 15px !important; */
}

    .detail-room-album .item a {
        display: block;
        width: 100%;
        height: 249px;
        position: relative;
    }

        .detail-room-album .item a::before {
            content: '';
            background: rgba(255, 255, 255, 0.3);
            position: absolute;
            top: 50%;
            bottom: 50%;
            left: 0;
            right: 0;
            opacity: 1;
            z-index: 3;
            pointer-events: none;
            transition: all 600ms linear;
        }

    .detail-room-album .item:hover a::before {
        top: 0;
        bottom: 0;
        opacity: 0;
    }

    .detail-room-album .item a img {
        width: 100%;
        height: 248px;
        object-fit: cover;
        transition: all linear 0.2s;
    }

/* Detail room form */
.detail-room-form {
    /* Ẩn ban đầu */
    /* box-shadow: 0 5px 30px rgba(80, 57, 24, 0.15); */
    border-radius: 10px;
    /* height: fit-content; */
    /* padding: 20px 30px; */
    /* overflow: hidden; */
    /* box-shadow: 0 5px 30px rgba(80, 57, 24, 0.15); */
    /* border-radius: 15px; */
    background-color: #2b5db500;
    height: fit-content;
    padding: 20px 30px;
    overflow: hidden;
    height: 100%;
    /* max-width: 100%; */
    width: 326px;
    padding-top: 43px;
    margin-bottom: 33px;
}

    .detail-room-form.show {
        display: block !important; /* Hiển thị khi có lớp show */
    }

    .detail-room-form > div[style*="width: 300px"][style*="height: 326px"] {
        display: none !important; /* Ẩn thẻ div trung gian */
    }

    .detail-room-form .price {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* display: none; */
    }

    .detail-room-form h3 {
        margin: 0;
        font-size: 28px;
        letter-spacing: 2px;
        font-family: 'WixMadeforDisplay-Regular';
        color: var(--default-color-1);
        font-weight: 500;
        font-weight: bold;
    }

.close-mobile-form, .mobile-book-btn {
    display: none;
}

.detail-room-form span {
    font-family: 'MontserratAlternates-Regular';
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #0A2D7C 0%, #071E8A 29.5%, #4463DD 79.5%, #072582 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .detail-room-form span strong {
        position: relative;
        top: 4px;
        font-family: 'MonR';
        font-size: 20px;
        font-weight: 400;
        background: linear-gradient(90deg, #0A2D7C 0%, #071E8A 29.5%, #4463DD 79.5%, #072582 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
        width: 100%;
        display: block;
    }

.detail-room-form .btn {
    width: 70%;
    font-family: 'WixMadeforDisplay-SemiBold';
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-transform: uppercase;
    margin: 25px auto 0;
    color: #FFD05C;
    border-radius: 34px;
    /* border: 1px solid #D49C03; */
    /* box-shadow: 0 4px 4px rgba(7, 37, 130, 0.38); */
    background: linear-gradient(90deg, #43A7AE 0%, #2F78B1 29.5%, #4463DD 79.5%, #2B5DB5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 0;
    /* transition: all linear 0.2s; */
    /* height: unset !important; */
    height: 46px !important;
}

    .detail-room-form .btn:hover {
        color: var(--default-color-1);
        /* border: 1px solid var(--default-color-2); */
        background: linear-gradient(94deg, rgba(255, 133, 85, 1) 0%, rgba(255, 208, 92, 1) 41%);
        /* box-shadow: 0 4px 4px rgba(7, 37, 130, 0.38); */
    }

.detail-room-form .choice {
    /* margin-top: 26px; */
    position: relative;
    z-index: 3;
    white-space: nowrap;
}

.detail-room-form .choice-item {
    border: 1px solid #33333340;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    cursor: pointer;
    z-index: 10;
    padding: 0 12px;
    color: #072582;
    font-family: 'WixMadeforDisplay-SemiBold';
    font-size: 15px;
    font-weight: 500;
}

    .detail-room-form .choice-item > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .detail-room-form .choice-item span {
        font-size: 15px;
        color: #072582;
        font-family: 'WixMadeforDisplay-SemiBold';
        font-weight: 500;
    }

    .detail-room-form .choice-item i {
        position: absolute;
        right: 41px;
        color: #2c2c2c;
        font-size: 12px;
    }

    .detail-room-form .choice-item:first-child .vis {
        right: 31px;
    }

    .detail-room-form .choice-item:first-child i {
        right: 24px;
    }

    .detail-room-form .choice-item .vis {
        outline: none;
        border: none;
        width: fit-content;
        margin-right: 15px;
        color: #072582;
        font-family: 'WixMadeforDisplay-SemiBold';
        font-size: 15px;
        font-weight: 500;
        position: relative;
        right: 44px;
    }

        .detail-room-form .choice-item .vis.vsao {
            right: 22px;
        }

    .detail-room-form .choice-item .txt {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
        color: #072582;
        font-family: 'WixMadeforDisplay-SemiBold';
        font-size: 15px;
        font-weight: 500;
    }

    .detail-room-form .choice-item .drop {
        position: absolute;
        left: 0;
        top: -37px;
        border: 1px solid #333;
        height: 34px;
        background-color: #FFF;
        box-shadow: 0 0 10px rgba(51, 51, 51, 0.22);
        padding: 0 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(15px);
        transition: all ease 0.3s;
    }

        .detail-room-form .choice-item .drop.show {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }

    .detail-room-form .choice-item .drop-btn {
        font-size: 21px;
        border: 1px solid #333;
        width: 25px;
        height: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all ease 0.2s;
        color: #333;
        position: relative;
    }

        .detail-room-form .choice-item .drop-btn:hover {
            background-color: #333;
        }

            .detail-room-form .choice-item .drop-btn:hover i {
                color: #fff !important;
            }

        .detail-room-form .choice-item .drop-btn i {
            font-size: 10px;
            \: 25px;
            left: 7px;
        }

    .detail-room-form .choice-item input {
        border: none;
        outline: none;
        background-color: transparent;
        text-align: right;
    }

    .detail-room-form .choice-item .count {
        width: 30px;
        text-align: center;
        margin: 0 10px;
    }

/* Detail room right */
.detail-room-right {
    /* float: right; */
    /* border-radius: 13px; */
    /* background: url(/Design/img/kigiresort/Ghee.png) no-repeat; */
    /* background-size: cover; */
    /* stroke-width: 1px; */
    /* stroke: red; */
    /* border: 1px solid #00000014; */
}

.sidebar-container {
    box-shadow: 0 5px 30px rgba(80, 57, 24, 0.15);
    border-radius: 10px;
    height: fit-content;
    padding: 20px 30px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(80, 57, 24, 0.15);
    border-radius: 15px;
    background-color: #2b5db500;
    height: fit-content;
    padding: 20px 30px;
    overflow: hidden;
    height: 100%;
    max-width: 100%;
    width: 326px;
    /* padding-top: 43px; */
    margin-bottom: 33px;
}

.detail-room-right.my-sticked {
    /* Ẩn ban đầu */
}

    .detail-room-right.my-sticked.show {
        /* Hiển thị khi có lớp show */
    }

    .detail-room-right.my-sticked.fixed-bottom-right {
        position: fixed;
        bottom: 20px !important;
        right: 20px;
        width: 500px;
        top: unset !important;
        z-index: 10000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border-radius: 8px;
        padding: 25px;
    }

/* Detail room same */
.detail-room-same {
    position: relative;
    padding: 116px 0 60px;
    /* background: url(../../../Design/img/KigiResort/qweqwc.jpg) no-repeat center center; */
}

    .detail-room-same:before {
        content: "";
        position: absolute;
        bottom: 46%;
        left: -143px;
        width: 29%;
        height: 67%;
        background: url(../../../Design/img/KigiResort/asd.png) no-repeat;
        z-index: 3;
    }

    .detail-room-same:after {
        content: "";
        position: absolute;
        top: -147px;
        right: -69%;
        width: 100%;
        height: 100%;
        background: url(../../../Design/img/KigiResort/wqee.png) no-repeat;
        z-index: 0;
    }

    .detail-room-same .p-title {
        margin-bottom: 35px;
    }

.decor-logo-room-child {
    position: absolute;
    top: -73px;
    right: 0;
    left: 0;
    bottom: 0;
    height: max-content;
    z-index: 1;
}

    .decor-logo-room-child img {
        width: 148px;
        height: 148px;
        border-radius: 50%;
        padding: 8px;
        border: 1.5px solid #DCEEF3;
        margin: auto;
        box-shadow: 0 5px 30px rgba(80, 57, 24, 0.15);
        background-color: #fff;
    }

.my-room-item:hover a.my-room-img img.d-img-hover {
    opacity: 1;
}

.my-room-img:hover::before {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 600ms linear;
}

.d-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Content detail room */
.content-detail-room-dd {
    position: relative;
}

.decor-img-childdd {
    position: absolute;
    right: -17%;
    top: 22%;
    display: none;
}

    .decor-img-childdd img {
        display: block;
        width: 100%;
        height: 100%;
    }

/* Policy content */
.chinhsach-content {
    line-height: 24px;
    text-align: justify;
}

    .chinhsach-content p {
        font-size: 16px;
    }

/* Room item */
.tt-room-item-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #d5d5d5;
}

/* Detail room left */
.detail-room-left {
    width: 100%;
    /* padding-right: 40px; */
    float: left;
    height: fit-content;
}

/* Media queries */
@media (min-width: 1390px) {
    .detail-room-album .item a img {
        /* height: 460px; */
    }
}

@media (max-width: 1023px) {
    .detail-room-left,
    .detail-room-right {
        width: 100%;
        float: unset;
        padding: 0;
    }

    .detail-room-form {
        margin: 0 auto;
        width: 100%;
    }

    .detail-room-right.my-sticked.show {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .detail-room-container .options .item {
        font-size: 12px;
        display: flex;
    }

        .detail-room-container .options .item svg {
            margin-right: 4px;
        }

    .detail-room-container .info .item span {
        font-size: 12px;
    }

    .detail-room-form h3 {
        font-size: 20px;
    }

    .chinhsach-content h3 {
        font-size: 17px;
        font-family: 'WixMadeforDisplay-Medium';
        font-weight: 400;
        line-height: 150%;
    }
}

@media (min-width: 740px) and (max-width: 1023px) {
    .detail-room-album .item {
        height: 200px;
    }
}

@media (max-width: 739px) {
    /* Ẩn sidebar gốc để tránh thừa ID trên Mobile */
    .bjkjasd-right { /* display: none; */
    }

    .cvnvxzz {
        display: none
    }
    /* Nút đặt phòng nổi bên TRÁI */
    .mobile-book-btn {
        position: fixed;
        bottom: 30px; /* Cách đáy 30px */
        left: 20px; /* NẰM BÊN TRÁI */
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        box-shadow: 0 10px 25px rgb(255 14 14 / 73%);
        z-index: 999;
        border: 2px solid #fff;
    }

    /* Overlay làm mờ nền */
    .mobile-form-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(4px);
        z-index: 1000;
        display: none;
    }

    /* Hiển thị Form khi kích hoạt class cha */
    .mobile-form-active .mobile-form-overlay {
        display: block;
    }

    .mobile-form-active .detail-room-form {
        display: block !important;
        position: fixed;
        top: 26%;
        left: 4%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 360px;
        z-index: 1001;
        background: #eaf6f9; /* Màu nền tối sang trọng */
        padding: 30px !important;
        border-radius: 24px;
        height: 50%;
        width: 100%;
    }

    .close-mobile-form {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 30px;
        color: #fff;
        line-height: 1;
        cursor: pointer;
    }
}

@media (max-width: 739px) {
    .detail-room-container {
        padding-top: 30px;
    }

    .wjfvclv-left {
        width: 100% !important;
        padding: 10px !important;
    }

    .sidebar-container {
        display: none;
    }

    .bjkjasd-right {
        /* display: none; */
    }

    .detail-room-album {
        margin-bottom: 0;
    }

    .slideshow-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .mySlides a {
        width: 100% !important
    }

    .detail-room-album .btn {
        display: none;
    }

    .detail-room-album .item {
        height: 150px;
    }

        .detail-room-album .item a img {
            height: 100%;
        }

    .detail-room-form {
        width: 100%;
        padding: 15px;
        display: none;
    }

    .detail-room-right.my-sticked.show {
        width: 95%;
        max-width: 100%;
        margin: 0 auto;
        bottom: 10px;
        right: 10px;
    }

    .detail-room-container .title {
        font-size: 20px;
    }

    .detail-room-container .descript {
        font-size: 16px;
    }

    .detail-room-container .wrap-title {
        font-size: 18px;
    }

    .detail-room-container .info {
        flex-wrap: wrap;
        justify-content: unset;
    }

        .detail-room-container .info .item {
            margin: 5px;
        }

    .detail-room-container .tien-ich-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 6px;
        row-gap: 14px;
        margin-top: 24px;
    }

    .detail-room-container .tien-ich-item img {
        width: 22px;
    }

    .detail-room-container .tien-ich-item span {
        font-size: 13px;
    }

    .bjkjasd-right .sidebar-right {
    }

    .chinhsach-content p {
        font-size: 14px;
    }

    .detail-room-banner {
        height: auto;
    }

    .decor-logo-room-child img {
        width: 100px;
        height: 100px;
        padding: 4px;
    }

    .detail-room-same {
        padding: 46px 0 25px;
    }

    .detail-room-right.my-sticked.fixed-bottom-right {
        width: 90%;
    }

    .decor-img-childdd {
        display: none
    }

    .wrap-content2 {
        flex-direction: column;
        gap: 20px
    }

    .detail-room-album .item a {
        height: 169px;
    }

    .detail-room-form .choice-item .vis {
        right: 0px !important;
        top: 0px;
    }

        .detail-room-form .choice-item .vis.vcasd {
            right: 11px !important;
        }

        .detail-room-form .choice-item .vis.vsao {
            right: -15px !important;
            top: -2px;
        }

    .detail-room-form .choice-item i {
        right: 11px;
        top: 6px;
    }

    .detail-room-form .choice-item:first-child i {
        right: 0px;
        top: 6px;
    }
}
