/* SECTION */
.location-post {
    padding: 60px 0;
}

/* CARD */
.location-card {
    display: block;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.location-thumb img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-card:hover img {
    transform: scale(1.08);
}

/* OVERLAY */
.location-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 20px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.2),
        transparent
    );
}

/* TITLE */
.location-overlay h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 5px;
}

/* COUNT */
.location-overlay span {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}






/* HERO */
.hotel-hero {
    padding: 50px 0;
    background: #f9fbfc;
}

.hotel-info h1 {
       font-size: 25px;
    margin-bottom: 10px;
    color: #000000;
}

.hotel-address {
    color: #6b7280;
    margin-bottom: 10px;
}

.hotel-address i {
    color: #ff5a5f;
}

.btn-map {
    background: #00B2C1;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
}

/* GALLERY */
.hotel-gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 25px;
}

.section-title h2 {
    font-size: 26px;
    color: #017077;
}

/* CONTENT BOX */
.content-box-wheretostay {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* HIGHLIGHTS */
.highlight-item {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.highlight-item .icon {
    font-size: 30px;
    margin-bottom: 10px;
}

/* ROOMS */
.room-list {
    border-right: 1px solid #eee;
}

.room-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
}

.room-item:hover {
    background: #f1f5f9;
}

.room-item.active {
    background: #e0f2f1;
}

.room-item img {
    width: 70px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.room-detail .room-content {
    display: none;
}

.room-detail .room-content.active {
    display: block;
}

.room-content h3 {
    margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hotel-gallery img {
        height: 250px;
    }

    .room-list {
        border: none;
    }
}

/* MAIN */
.hotel-slider img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}

/* NAV */
.hotel-slider .owl-nav button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.hotel-slider .owl-nav .owl-prev {
    left: 10px;
}

.hotel-slider .owl-nav .owl-next {
    right: 10px;
}

/* THUMB */
.hotel-thumb {
    margin-top: 10px;
}

.hotel-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    opacity: 0.6;
    cursor: pointer;
    transition: 0.3s;
}

/* ACTIVE */
.hotel-thumb .owl-item.current img {
    opacity: 1;
    border: 2px solid #00B2C1;
}

/* HOVER */
.hotel-thumb img:hover {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hotel-slider img {
        height: 250px;
    }

    .hotel-thumb img {
        height: 60px;
    }
}


/* LEFT LIST */
.room-list {
    border-right: 1px solid #eee;
}

/* ITEM */
.room-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px;
    margin-bottom: 10px;

    border-radius: 12px;
    cursor: pointer;

    transition: 0.3s;
}

/* HOVER */
.room-item:hover {
    background: #f1f5f9;
}

/* ACTIVE */
.room-item.active {
    background: #e0f2f1;
}

/* IMAGE */
.room-thumb img {
    width: 80px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
}

/* TITLE */
.room-info p {
    font-size: 15px;
    color: #111;
    margin: 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* RIGHT CONTENT */
.room-content {
    display: none;
}

.room-content.active {
    display: block;
}

/* TITLE */
.room-content h3 {
       font-size: 20px;
    margin-bottom: 10px;
    color: #000000;
}

/* DESC */
.room-desc {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}
.room-desc p
 {
    margin-bottom: 5px;
}

.room-desc ul li {
    list-style: disc;
    font-size: 16px;
    color: #000000;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .room-list {
        border-right: none;
        margin-bottom: 20px;
    }
}

h1.page-title-wheretostay {
    font-size: 26px;
    font-weight: 600;
    color: #070707;
    margin-bottom: 20px;
}

section.hotel-rooms {
    background: #ffffff;
}

.room-list-hotel {
    background: #f3f2f2ad;
    padding: 10px;
    border-radius: 10px;

    height: 400px;
    overflow-y: auto;   /* 👈 quan trọng */
}

.room-list-hotel {
    overflow-y: auto;
    scroll-behavior: smooth;
}

.room-list-hotel::-webkit-scrollbar {
    width: 6px;
}

.room-list-hotel::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.room-list-hotel::-webkit-scrollbar-thumb:hover {
    background: #00B2C1;
}


.room-content-wrap {
    background: #cde3e34f;
    padding: 10px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 10px;

    overflow-y: auto; /* 👈 quan trọng */
}
.room-content-wrap {
    scroll-behavior: smooth;
}

.room-content-wrap::-webkit-scrollbar {
    width: 6px;
}

.room-content-wrap::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}

.room-content-wrap::-webkit-scrollbar-thumb:hover {
    background: #00B2C1;
}


.content-box-wheretostay p {
    color: #000000;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 25px;
}

.content-box-wheretostay h2 {
    font-size: 25px;
    color: #000000;
    margin-bottom: 15px;
}
.content-box-wheretostay ul li {
    list-style: disc;
    margin-bottom: 6px;
    color: #000000;
}
.highlight-item p {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
}

.where_to_stay .owl-nav button i {
    font-size: 38px;
}

.content-box-wheretostay h1 {
    font-size: 28px;
    margin-bottom: 15px;
}
.hotel-rooms {
    background: #ffffff;
    padding-bottom: 30px;
}
a.location-single {
    font-weight: 700;
}

.hotel-rooms-table {
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 10px;
    padding: 5px;
}

.btn-book {
    background-color: #0071c2;
    border-color: #0071c2;
    color: #fff;
    font-weight: 600;
}

.btn-book:hover {
    background-color: #005999 !important;
    border-color: #005999 !important;
    color: #fff !important;
}

.room-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.room-table th, 
.room-table td {
    border: 1px solid #ddd;
    padding: 12px;
}

.room-table th {
    background: #0071c2;
    color: #fff;
    text-align: center;
}

@media (max-width: 768px) {

    .room-table thead {
        display: none; /* ẩn header */
    }

    .room-table, 
    .room-table tbody, 
    .room-table tr, 
    .room-table td {
        display: block;
        width: 100%;
    }

    .room-table tr {
        margin-bottom: 16px;
        border: 1px solid #eee;
        border-radius: 10px;
        padding: 8px;
        background: #fff;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }

    .room-table td {
        border: none;
        padding: 8px 0;
        position: relative;
        padding-left: 35%;
        font-size: 14px;
    }

    .room-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        top: 8px;
        font-weight: 600;
        color: #000000;
    }

    /* Button full width đẹp hơn */
    .room-table td:last-child {
        padding-left: 0;
        margin-top: 10px;
    }

    .room-table td:last-child::before {
        display: none;
    }
}
.badge-popular i {
    background: linear-gradient(45deg, #ff9800, #ff5722, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}