/*Horizontal Scroll Structure*/

#best-seller-hotels {
    background-color: #F9F9F9;
    position: relative;
}


#hotels-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#hotels-scroll-container::-webkit-scrollbar {
    display: none;
}

.hotel-card-wrapper {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 576px) {
    .hotel-card-wrapper {
        width: 48%;
    }
}

@media (min-width: 992px) {
    .hotel-card-wrapper {
        width: 32%;
    }
}

@media (min-width: 1200px) {
    .hotel-card-wrapper {
        width: 300px;
    }
}

/*Card Styles*/

.hotel-card-wrapper .card {
    border: 0 transparent;
    box-shadow: none;
    height: 100%;
    background: white;
    position: relative;
}

.hotel-card-wrapper .card .card-img-top {
    height: 275px;
    object-fit: cover;
    width: 100%;
    border-radius: 0.25rem 0.25rem 0 0;
}

.hotel-card-wrapper .card .rating {
    position: absolute;
    background: white;
    height: fit-content;
    padding: 6px 10px;
    left: 10px;
    top: 10px;
    border-radius: 50rem;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.hotel-card-wrapper .card .favorites {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.hotel-card-wrapper .card .favorites button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.2s ease;
    outline: none;
}

.hotel-card-wrapper .card .favorites button .icon {
    color: #fff;
    font-size: 16px;
}

.hotel-card-wrapper .card .favorites button.checked {
    background-color: #FF4F3E !important;
    border-color: #FF4F3E;
}

.hotel-card-wrapper .card .card-body .card-title {
    font-family: "Mont bold", sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.5rem;
}

.hotel-card-wrapper .card .card-body .highlight {
    color: #FF4F3E;
    font-size: 24px;
    /* Ajustado un poco */
    font-family: "Mont Bold", sans-serif;
    font-weight: 900;
}

.hotel-card-wrapper .card .card-body p {
    color: #757B8A;
    margin-bottom: 0.5rem;
}

.stars-reviews {
    font-size: 0.9rem;
    color: #757B8A;
}

/*Navigation Buttons*/
.scroll-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FFE2DF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s, background-color 0.3s;
}

.scroll-nav-btn::after {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
}

.prev-btn {
    left: 0px;
}

.prev-btn::after {
    background-image: url("../../images/arrow_prev.svg");
}

.next-btn {
    right: 0px;
}

.next-btn::after {
    background-image: url("../../images/arrow_next.svg");
}

.scroll-nav-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 576px) {
    .scroll-nav-btn {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 226, 223, 0.9);
        /* Un poco más transparente */
    }
}