/* ─── Sort Header ─── */
.hotels-pagination-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin-top: -60px;
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .hotels-pagination-header {
        margin-top: -15px;
        margin-bottom: 0px;
        justify-content: unset;
    }
    .hotels-pagination-container .widget-block.block_url{
        height: auto !important;
    }
}
.hotels-pagination-header__sort {
    display: flex;
    align-items: center;
    gap: 8px;
}
.hotels-pagination-header__sort label {
    font-size: 14px;
    color: #333;
    margin: 0;
}
.hotel-sort-select {
    padding: 8px 32px 8px 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
    appearance: none;
    cursor: pointer;
    min-width: 140px;
    line-height: 1;
    width: unset;
}
.hotel-sort-select:hover {
    border-color: #999;
}
.hotel-sort-select:focus {
    outline: none;
    border-color: #F3A600;
    box-shadow: 0 0 0 2px rgba(243, 166, 0, 0.2);
}

/* ─── Hotels Grid ─── */
.hotels-pagination-content{
    padding-bottom: 48px;
}

.hotels-pagination-container {
    display: flex;
    flex-wrap: wrap;
}
@media (min-width: 767px){
    .hotels-pagination-container .widget-block{
        width: calc(33.333% - 7px);
        margin-top: 0;
    }
    .hotels-pagination-container .widget-block:nth-child(1),
    .hotels-pagination-container .widget-block:nth-child(3n+1) {
        margin-left: 0;
    }
}

/* ─── Show first 6, JS reveals next batches via inline style ─── */
.hotels-pagination-container .widget-block:nth-child(n+7) {
    display: none;
}

/* ─── Load More Button ─── */
.hotels-load-more-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 0 8px;
}
.hotels-load-more-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--th-ink, #1a1a1a);
    background: var(--th-white, #fff);
    border: 2px solid var(--th-rule, #e8e8e8);
    border-radius: var(--th-radius, 8px);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.hotels-load-more-btn:hover {
    border-color: var(--th-gold, #f1a502);
    color: var(--th-gold-dim, #c98a00);
    background: var(--th-gold-soft, #fff8e6);
}
.hotels-load-more-btn:focus-visible {
    outline: 2px solid var(--th-gold, #f1a502);
    outline-offset: 2px;
}
.hotels-load-more-wrap.is-hidden {
    display: none;
}

.no-hotels-found {
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.no-hotels-found h3 {
    font-size: 24px;
    margin: 0;
    color: #95a5a6;
}

@media (max-width: 480px) {
    .no-hotels-found {
        padding: 40px 15px;
    }
    .no-hotels-found h3 {
        font-size: 20px;
    }
}
