.catalog-page {
    padding-top: 84px;
    overflow: hidden;
}

.catalog-page .tours__filters-wrapper{
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Сообщение "Ничего не найдено" */
.no-results {
    width: 100%;
    text-align: center;
    padding: 60px 20px;
}

.no-results__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.no-results__text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.no-results__button {
    display: inline-block;
}

/* Пагинация: по умолчанию показываем обычную пагинацию, скрываем кнопку "Загрузить ещё" */
.no-js-pagination {
    display: block;
}

.js-pagination {
    display: none;
}

/* Если JS включен, скрываем обычную пагинацию и показываем кнопку "Загрузить ещё" */
html.js .no-js-pagination {
    display: none;
}

html.js .js-pagination {
    display: block;
}

/* Лоадер для популярных туров */
[data-popular-tours-section] .tours-list {
    position: relative;
    min-height: 300px;
}

[data-popular-tours-section] .catalog-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
}

.catalog-loader-spinner {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #008ce4;
    border-radius: 50%;
    animation: catalogLoaderRotate 1s linear infinite;
}

@keyframes catalogLoaderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Плавное исчезновение контента при загрузке */
.tours-list-loading {
    opacity: 0.3 !important;
    transition: opacity 0.3s ease-in-out;
}