@font-face {
    font-family: 'Raleway'; 
    src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype'); 
}

@font-face {
    font-family: 'EB Garamond'; 
    src: url('../fonts/EBGaramond-VariableFont_wght.ttf') format('truetype');
}

*, *::before, *::after {
    box-sizing: border-box; 
}

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    color: #333;
    font-size: 1.0625rem; 
    line-height: 1.45;
}

.main-header {
    position: relative;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 33px;
    background: #f2f2f2;
    box-shadow: 0 3px 6px 0 rgba(51, 51, 51, .08);
    min-height: 77px;
    font-family: "Raleway", sans-serif;
    z-index: 99;
}

@media (max-width: 1200px) {
    .main-header {
        padding: 0 15px; 
    }
}

.main-header-logo img {
    height: 50px; 
    display: block; 
}

.main-header-nav {
    margin-left: auto;
}

.main-header-nav ul {
    display: flex;
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.main-header-nav li {
    margin-left: 25px; 
}

.main-header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600; 
    font-size: 15px;
    text-transform: uppercase; 
    display: flex;
    align-items: center;
}

.btn-book {
    background-color: #9FDDC7;
    color: #3C3C3B;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    padding: 12px 5px;
    width: 164px; 
    text-align: center; 
    border: none;
    text-transform: uppercase;
    font-weight: 700; 
    cursor: pointer;
    border-radius: 3px; 
}

.nav-item-dropdown {
    position: relative; 
}

.nav-item-dropdown > a {
    gap: 8px; 
}

.dropdown-menu {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0;
    background-color: #f2f2f2; 
    padding: 0; 
    border: 1px solid #e0e0e0; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: auto; 
    white-space: nowrap; 
    flex-direction: column;
    gap: 0; 
}

.dropdown-menu a {
    color: #535353;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    padding: 10px 19px; 
    font-weight: 500; 
    text-transform: none; 
}
.dropdown-menu a:not(:first-child) {
    border-top: 1px solid #ddd; 
}

.nav-item-dropdown:hover > .dropdown-menu {
    display: flex; 
}
.page-home .main-header-book {
    visibility: hidden;
}

.nav-item-dropdown > a::after {
    content: ''; 
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;  
    border-right: 5px solid transparent; 
    border-top: 5px solid #333;        
    transition: transform 0.2s ease; 
}

.nav-item-dropdown:hover > a::after {
    transform: rotate(180deg); 
}
.hero-slider {
    width: 100%;
    overflow: hidden;
    height: calc(100vh - 77px);
    position: relative;
    z-index: 1;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.hero-slide-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 3;
    color: white;
    max-width: 600px;
}

.hero-slide-content h3 {
    font-family: "Raleway", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-slide-content h4 {
    font-family: "EB Garamond", serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.hero-btn {
    display: inline-block;
    background-color: #9FDDC7;
    color: #3C3C3B;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    padding: 12px 24px;
    text-align: center;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
}

.hero-slider .slick-dots {
    bottom: 25px;
    right: 25px;
    width: auto;
    padding-right: 20px;
}

.hero-slider .slick-dots li {
    margin: 0 5px;
}

.hero-slider .slick-dots li button::before {
    font-size: 10px;
    color: white;
    opacity: 0.75;
}

.hero-slider .slick-dots li.slick-active button::before {
    color: white;
    opacity: 1;
}

.hero-slider .slick-list {
    height: 100%;
}

.hero-slider .slick-track {
    height: 100%;
}

.hero-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: transparent;
    border: none;
    cursor: pointer;
    color: transparent;
    width: 50px;
    height: 50px;
}

.hero-slider .slick-arrow::before {
    content: '‹';
    font-family: serif;
    font-size: 60px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    display: block;
    width: 100%;
    text-align: center;
}

.hero-slider .slick-next::before {
    content: '›';
}

.hero-slider .slick-prev {
    left: 25px;
}

.hero-slider .slick-next {
    right: 25px;
}

.hero-slider .slick-arrow:hover::before {
    opacity: 1;
}

/* ========= Стили Формы Бронирования ========= */
.booking-bar-container {
    background-color: #f2f2f2;
    padding: 20px 26px 18px 21px;
    margin: 0 auto;
    max-width: 1236px;
    
    position: relative;
    z-index: 2;
    margin-top: -39px;
}

.booking-bar-dialog {
    background-color: #FFFFFF;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

.booking-bar-field {
    position: relative;
    border: 1px solid #ddd;
    flex-grow: 1;
}

.booking-bar-field:not(:last-of-type) {
    border-right: none;
}

.booking-bar-field.with-icon input {
    padding: 4px 8px 4px 44px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #333;
    border: none;
    width: 100%;
    height: 100%;
}

.booking-bar-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: #333;
    opacity: 0.7;
}

.booking-bar-guests {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
}

.btn-book-bar {
    background-color: #9FDDC7;
    color: #3C3C3B;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    padding: 12px 24px;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}

.booking-bar-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid #ddd;
    border-left: none;
    flex-shrink: 0;
}

.booking-bar-mail svg {
    width: 22px;
    height: 15px;
}
/* ========= Стили Попапов Формы Бронирования ========= */
.booking-popup-wrapper {
    display: none;
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.hotel-result-wrapper {
    position: absolute;
    background: #f2f2f2;
    padding: 23px 39px 16px 43px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 101;
    
    width: 640px;
    height: 379px;
    bottom: 100%;
    left: 0;
    margin-bottom: 5px;

    display: flex;
    flex-direction: column;
}

.hotel-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.hotel-popup-title {
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    color: #00498D;
    font-weight: 600;
}

.hotel-popup-close {
    font-family: serif;
    font-size: 30px;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.hotel-popup-body {
    display: flex;
    gap: 40px;
    flex-grow: 1;
    overflow: hidden;
}

.hotel-popup-countries {
    height: 100%;
    overflow-y: auto;
}

.hotel-popup-hotels {
    height: 100%;
    overflow-y: auto;
    flex-grow: 1;
}

.countries-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
}

.countries-list a {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.countries-list a.active,
.countries-list a:hover {
    color: #00498D;
}

.hotels-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hotels-list .region-title {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
}
.hotels-list .region-title:first-child {
    margin-top: 0;
}

.hotels-list a {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    color: #333333;
    text-decoration: none;
    line-height: 1.8;
}

.hotels-list a:hover {
    text-decoration: underline;
}

.hotel-popup-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.hotel-popup-footer a {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #00498D;
    text-decoration: none;
    font-weight: 600;
}

/* ========= НОВЫЕ СТИЛИ ДЛЯ DateRangePicker (ВЕРСИЯ 2.0) ========= */

/* Главный контейнер (бывший .pika-single) */
.daterangepicker {
    background: #f2f2f2 !important;
    border: 1px solid #ddd !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    padding: 25px 30px !important;
    z-index: 9999 !important;
    width: 700px !important; /* Твоя ширина */
    border-radius: 0 !important;
    font-family: "Raleway", sans-serif !important;
}

/* Прячем боковую панель (Ranges), она не нужна в твоем дизайне */
.daterangepicker .ranges {
    display: none !important;
}



/* Один месяц (бывший .pika-lendar) */
.daterangepicker .drp-calendar {
   width: 300px !important; /* <-- ЗАДАЕМ ЖЕСТКУЮ ШИРИНУ */
   padding: 0 !important;
}

/* Специфично для ЛЕВОГО календаря */
.daterangepicker .drp-calendar.left {
   float: left;
}

/* Специфично для ПРАВОГО календаря */
.daterangepicker .drp-calendar.right {
   float: right;
}

/* Таблица (бывшая .pika-table) */
.daterangepicker .calendar-table {
    width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Заголовок месяца (бывший .pika-title) */
.drp-calendar .month {
    font-family: "Raleway", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    color: #333 !important;
}

/* Дни недели (бывшие .pika-table th) */
.daterangepicker .calendar-table th {
    background: transparent !important;
    color: #00498D !important;
    font-family: "Raleway", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 8px 0 !important;
    border: none !important;
}

/* Ячейки дней (бывшие .pika-button) */
.daterangepicker .calendar-table td {
    background: transparent !important;
    border: none !important;
    border-radius: 50% !important; /* Круглая форма по умолчанию */
    font-family: "Raleway", sans-serif !important;
    font-size: 14px !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    padding: 0 !important;
    color: #333;
}

/* Убираем ховер по умолчанию */
.daterangepicker .calendar-table td:hover {
    background: #e0e0e0 !important;
    color: #333 !important;
}

/* Сегодняшний день (бывший .is-today) */
.daterangepicker .calendar-table td.today {
    background: #e0e0e0 !important;
    color: #333 !important;
}

/* Внутри диапазона (бывший .is-inrange) */
.daterangepicker .calendar-table td.in-range {
    background: #656564 !important;
    color: white !important;
    border-radius: 0 !important; /* Прямоугольник */
}

/* Начало диапазона (бывший .is-startrange) */
.daterangepicker .calendar-table td.start-date {
    background: #3C3C3B !important;
    color: white !important;
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

/* Конец диапазона (бывший .is-endrange) */
.daterangepicker .calendar-table td.end-date {
    background: #3C3C3B !important;
    color: white !important;
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* Когда выбран только один день (старт=конец) */
.daterangepicker .calendar-table td.start-date.end-date {
    border-radius: 50% !important;
}

/* Недоступные дни */
.daterangepicker .calendar-table td.off,
.daterangepicker .calendar-table td.disabled {
    background: transparent !important;
    color: #ccc !important;
}

/* Навигация (бывшие .pika-prev, .pika-next) */
.daterangepicker .prev, .daterangepicker .next {
     background: transparent !important;
     border: none !important;
}

/* Отключаем выбор месяца/года (бывший .pika-select) */
.daterangepicker .month select {
    display: none !important;
}
.daterangepicker .month {
    pointer-events: none; /* Делаем заголовок некликабельным */
}

/* Прячем кнопки "Apply/Cancel", т.к. мы используем autoApply: true */
.daterangepicker .drp-buttons {
    display: none !important;
}

/* ========= Стили Попапа Гостей ========= */

/* Делаем триггер-контейнер точкой отсчета 
   и передвигаем старый счетчик */
   #rooms-guests-trigger {
    position: relative; /* Обязательно для позиционирования попапа */
}
#rooms-guests-trigger input {
    cursor: pointer;
}
#guests-count-display {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #333;
    pointer-events: none; /* Не мешает клику */
}

/* Сам Попап */
.rooms-guests-wrap {
    display: none; 
    position: absolute;
    width: 273px !important; /* Ширина со скрина {5CD7...}.jpg */
    background: #f2f2f2 !important; /* <-- Серый фон, как ты и сказал */
    border: none !important; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    z-index: 101;
    bottom: 100%; 
    left: 0;
    margin-bottom: 5px;
    padding: 35px 16.5px 23px !important; /* <-- Паддинг со скрина {5CD7...}.jpg */
}
.rooms-guests-wrap.js-expanded {
    display: block; /* Показываем по клику */
}

/* Кнопка "X" */
.bm-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.bm-popup-close svg {
    width: 15px;
    height: 15px;
    stroke: #555;
    stroke-width: 2;
}

/* Строки (Rooms, Adults, Children) */
.js-count-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff !important; /* <-- Белый фон для строки */
    padding: 0px 15px 0px 13px !important; /* <-- Паддинг со скрина {4446...}.jpg */
    border-bottom: none !important; /* Убираем старую линию */
    height: 40px; /* Высота со скрина {4446...}.jpg */
}
.rooms-guests-dropdown {
    display: flex;
    flex-direction: column;
    gap: 15px; /* <-- Это создаст серые отступы между строками */
}
.js-count-wrap:last-child {
    border-bottom: none;
}

.label-warp .rooms-lablel,
.label-warp .adults-lablel,
.label-warp .children-lablel {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

/* Блок с кнопками +/- */
.controlls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.controlls .input-span {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 20px;
    text-align: center;
}
.controlls .button {
    background: white;
    border: 1px solid #888;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.controlls .button svg {
    width: 18px;
    height: 18px;
    stroke: #2f2f2f;
}
.controlls .button:hover {
    background: #f5f5f5;
}

/* ========= Стили Интро-Текста ========= */
.intro-text-block {
    padding-top: 48px;
    padding-bottom: 30px;
    background-color: #fff;
    max-width: 944px;
    margin: 0 auto;
}
.intro-container {
    padding: 0 15px;
    text-align: center;
}

.intro-header h1 {
    font-family: "Raleway", sans-serif;
    font-size: 44px;
    color: #333333;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.intro-header h2 {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    color: #333333;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 8px 0;
}

.intro-paragraph p {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

/* ========= Стили Блока Рейтингов ========= */
.ratings-bar {
    background-color: #f7f7f7;
    padding: 16px 24px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    max-width: 1236px;
    margin: 0 auto;
}

.ratings-container {
    padding: 0 15px;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    max-width: 1196px;
    margin: 0 auto;
    font-family: system-ui, Arial, Helvetica, sans-serif;
    color: #000;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #ddd;
    padding: 0 20px;
    flex-grow: 1;
    flex-basis: 0;
    justify-content: center;
}

.rating-item:last-child {
    border-right: none;
}

/* Общий стиль для всех счетов (4.6/5, 9.3/10 и т.д.) */
.rating-item .rating-score {
    display: flex;
    align-items: flex-end; 
    color: #000;
}

/* Общий стиль для всех меток (Google, TripAdvisor) */
.rating-item .rating-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}

/* Общий стиль для цифры счета (4.6, 9.3) */
.rating-item .rating-score .score-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

/* Общий стиль для дроби (/5, /10) */
.rating-item .rating-score .score-max {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

/* --- СТИЛИ ДЛЯ ГЛАВНОГО РЕЙТИНГА (4.6/5 Excellent) --- */

.rating-item.main-rating {
    display: flex;
    flex-direction: row; /* Меняем на горизонтальный макет */
    align-items: center;
    justify-content: flex-start;
    flex-grow: 2;
    gap: 10px;
    padding: 0 30px 0 0; /* Увеличиваем правый отступ */
}

/* Размер крупной цифры 4.6 */
.rating-item.main-rating .rating-score .score-value {
    font-size: 32px;
    font-weight: 600;
}

/* Размер мелкой дроби /5 */
.rating-item.main-rating .rating-score .score-max {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

/* Контейнер для текста (Excellent и reviews) */
.rating-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}

/* Текст Excellent */
.rating-item.main-rating .rating-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

/* Текст based on reviews */
.rating-item.main-rating .rating-sublabel {
    font-size: 12px;
    color: #777;
    font-weight: 400;
}

/* Переопределяем выравнивание для остальных ячеек, где метка сверху */
.rating-item:not(.main-rating) {
    flex-direction: column;
    align-items: center;
}




/* ========= Стили Блока Highlights & Experience ========= */
.highlights-block {
    max-width: 1236px;
    margin: 40px auto;
    padding: 0;
    background-color: #f2f2f2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.highlights-container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    align-items: stretch;
}

.highlights-column {
    width: 50%;
    position: relative;
}

/* --- ЛЕВАЯ КОЛОНКА: Слайдер с картинками (Квадратный) --- */
.highlights-image-slider {
    position: relative;
    height: 100%;
}

.js-left-slider {
    width: 100%;
    height: 100%;
}

.js-left-slider .slick-list,
.js-left-slider .slick-track,
.js-left-slider .slick-slide {
    height: 100%;
}

.js-left-slider .slick-slide > div {
    height: 100%;
}

.js-left-slider .ratio-container {
    height: 100%;
}

.js-left-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Точки для левого слайдера */
.js-left-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.js-left-slider .slick-dots li {
    margin: 0;
}

.js-left-slider .slick-dots button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: white;
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
}

.js-left-slider .slick-dots .slick-active button {
    background: white;
    opacity: 1;
}

.js-left-slider .slick-dots li button::before {
   display: none;
}


/* --- ПРАВАЯ КОЛОНКА: Статичный текст --- */
.highlights-text-container {
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f2f2f2;
    height: 100%;
    width: 50%;
    min-height: 618px; 
}

.highlights-text-container .highlights-title {
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.highlights-list li {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 11.2px;
    position: relative;
    padding-left: 15.04px;
}

.highlights-list li::before {
    content: "•";
    color: #00498D;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.highlights-discover-link {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #68554A;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
}

/* --- СЕКЦИЯ 2: EXPERIENCE (Слайдер 50/50) --- */
.experience-slider-section {
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 0;
    max-width: 1236px;
    margin: 40px auto 80px auto;
}

.experience-slider-container {
    position: relative;
    background-color: #f0f8ff;
}

.experience-slider {
    position: relative;
}

.experience-slide {
    display: flex !important;
}

.experience-text-content {
    width: 50%;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-image {
    width: 50%;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-title {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
}

.experience-details p {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.experience-details strong {
    font-weight: 700;
}

/* Стрелки для Experience слайдера */
.experience-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0;
}

.experience-slider .slick-prev {
    left: 20px;
}

.experience-slider .slick-next {
    right: 20px;
}

.experience-slider .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    margin: 0 auto;
}

.experience-slider .slick-prev::before {
    transform: rotate(45deg);
    margin-left: 4px;
}

.experience-slider .slick-next::before {
    transform: rotate(-135deg);
    margin-right: 4px;
}

/* Точки для Experience слайдера */
.experience-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.experience-slider .slick-dots button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 0;
}

.experience-slider .slick-dots .slick-active button {
    background: rgba(0, 0, 0, 0.8);
}


/* ========= Блок Special Offers ========= */
.offers-block {
    padding: 50px 0;
    max-width: 1236px;
    margin: 40px auto;
}

.offers-header {
    text-align: center;
    margin-bottom: 40px;
}

.offers-header h2 {
    font-family: "Raleway", sans-serif;
    font-size: 44px;
    color: #333333;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.offers-header p {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    color: #333333;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.offers-slider-container {
    position: relative;
    padding: 0 40px;
}

.offers-slider .slick-slide {
    padding: 0 15px;
}

.offer-card {
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
}

.offer-image {
    width: 100%;
    height: auto;
    display: block;
}

.offer-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 380px;
}

.offer-period,
.offer-bookable {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #333333;
    margin-bottom: 12px;
}

.offer-title {
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    text-transform: uppercase;
    margin: 16px 0px 8px;
}

.offer-desc {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.5;
    margin: 0px 0px 16px;
    flex-grow: 1;
}

.offer-read-more {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #68554A;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0px 0px 8px;
}

.offer-price {
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}

.offer-content .btn-book-bar {
    width: 100%;
}

.offers-slider .slick-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0;
}

.offers-slider .slick-prev {
    left: -25px;
}

.offers-slider .slick-next {
    right: -25px;
}

.offers-slider .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    margin: 0 auto;
}

.offers-slider .slick-prev::before {
    transform: rotate(45deg);
    margin-left: 4px;
}

.offers-slider .slick-next::before {
    transform: rotate(-135deg);
    margin-right: 4px;
}

/* ========= Блок Purchase Ski Passes ========= */
.ski-pass-block {
    padding: 60px 0;
    background-color: #fff;
    max-width: 1236px;
    margin: 40px auto;
}

.ski-pass-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    padding: 0;
}

.ski-pass-text {
    width: 50%;
    background-color: #f2f2f2;
    padding: 50px;
}

.ski-pass-image {
    width: 50%;
}

.ski-pass-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ski-pass-text h3 {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: .01em;
}

.ski-pass-text p {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ski-pass-link {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #68554A;
    text-transform: uppercase;
    text-decoration: none;
}

/* ========= Блок-сетка (Wellness, Rooms, etc.) ========= */
.grid-block {
    padding: 0;
    background-color: #fff;
    max-width: 1236px;
    margin: 40px auto;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 10px;
}

.grid-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.grid-card.tall {
    grid-row: span 2;
    height: 610px;
}

.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.grid-card:hover .grid-image {
    transform: scale(1.05);
}

.grid-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 3;
}

.grid-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 2;
}

.grid-content h3 {
    font-family: "Raleway", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.grid-link {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}
/* ========= Эффект рамки для Блока-сетки ========= */

.grid-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid white;
    z-index: 4;
    
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease-in-out;
}

.grid-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* ========= Блок Галереи (50/50 Сетка + Кнопки) ========= */
.gallery-block {
    max-width: 1236px;
    margin: 40px auto;
    padding: 0;
}

.gallery-grid-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.gallery-card-large {
    width: 50%;
    height: 610px;
    overflow: hidden;
    display: block;
}

.gallery-grid-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gallery-card-small {
    height: 300px;
    overflow: hidden;
    display: block;
}

.gallery-card-large .grid-image,
.gallery-card-small .grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card-large:hover .grid-image,
.gallery-card-small:hover .grid-image {
    transform: scale(1.05);
}

.gallery-buttons-container {
    display: flex;
    gap: 10px;
}

.gallery-button-wrapper {
    width: 50%;
}

.btn-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.btn-gallery svg {
    margin-right: 10px;
    width: 21px;
    height: 21px;
}

.btn-gallery.btn-pictures {
    background-color: #9FDDC7;
    color: #3C3C3B;
}

.btn-gallery.btn-videos {
    background-color: #E0D9CB;
    color: #333;
}


/* ========= Блок "Other Hotels" ========= */
.hotel-recommendations-block {
    max-width: 1236px;
    margin: 40px auto;
    padding: 0 20px;
}

.recommendations-header {
    text-align: center;
    margin-bottom: 40px;
}

.recommendations-header h2 {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    color: #333333;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.recommendation-card {
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
}

.recommendation-image {
    width: 100%;
    height: auto;
    display: block;
}

.recommendation-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
}

.recommendation-title {
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin: 10px 0;
}

.recommendation-desc {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
    flex-grow: 1;
}

.recommendation-read-more {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #68554A;
    text-transform: uppercase;
    text-decoration: none;
    margin: 15px 0;
}

.recommendation-price {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.recommendation-content .btn-book-bar {
    width: 100%;
}

/* ========= Блок Наград/Партнеров ========= */
.awards-block {
    max-width: 1236px;
    margin: 40px auto;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}

.awards-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.award-item img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 120px;
}

/* ========= Футер (Footer) ========= */
.site-footer {
    background-color: #2a3b56;
    color: #fff;
    font-family: "Raleway", sans-serif;
}

.footer-container {
    max-width: 1236px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Секция 1: Основное содержимое */
.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}

.footer-col {
    width: 30%;
}

.footer-col h4 {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 20px 0;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.footer-col ul li a:hover {
    text-decoration: underline;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
}

.footer-contact svg {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Секция 2: Ссылки и Соцсети */
.footer-sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #4a5b76;
    padding: 25px 0;
}

.footer-sub-links a {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 20px;
}
.footer-sub-links a:hover {
    text-decoration: underline;
}

.footer-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
}

.footer-social-links a svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

/* Секция 3: Копирайт */
.footer-legal {
    text-align: center;
    padding: 25px 0;
    font-size: 13px;
    color: #aaa;
}

.footer-legal p {
    margin: 5px 0;
}

/* ========= Пре-футер (Instagram) ========= */
.pre-footer {
    background-color: #2a3b56;
    padding: 50px 0 40px 0;
}

.pre-footer-header {
    text-align: center;
    color: white;
    font-family: "Raleway", sans-serif;
    margin-bottom: 30px;
}

.pre-footer-header h3 {
    font-family: "Raleway", sans-serif;
    font-size: 33px;
    font-weight: 400;
    margin: 0 0 8px 0;
    text-transform: none;
    letter-spacing: .01em;
}

.pre-footer-header p {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0 0 0;
}

.pre-footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    grid-auto-rows: 250px;
}

.pre-footer-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


.main-header-book {
    margin-left: 40px; /* Вы можете изменить 40px на нужное вам значение */
}














/* ========= МОБИЛЬНЫЕ СТИЛИ (INDEX) ========= */

@font-face {
    font-family: 'Raleway'; 
    src: url('../fonts/Raleway-VariableFont_wght.ttf') format('truetype'); 
}

@font-face {
    font-family: 'EB Garamond'; 
    src: url('../fonts/EBGaramond-VariableFont_wght.ttf') format('truetype');
}

*, *::before, *::after {
    box-sizing: border-box; 
}

body {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif;
    color: #333;
    font-size: 1.0625rem; 
    line-height: 1.45;
}

/* (НОВОЕ) Класс для блокировки скролла при открытом меню */
body.mobile-menu-open {
    overflow: hidden;
}

.main-header {
    position: relative;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 0 33px;
    background: #f2f2f2;
    box-shadow: 0 3px 6px 0 rgba(51, 51, 51, .08);
    min-height: 77px;
    font-family: "Raleway", sans-serif;
    z-index: 99;
}





















@media (max-width: 1200px) {
    .main-header {
        padding: 0 15px; 
    }
}

.main-header-logo img {
    height: 50px; 
    display: block; 
}

/* (ИЗМЕНЕНО) Контейнер для меню и кнопки "Book" */
.mobile-nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto; /* Прижимаем вправо */
}

.main-header-nav {
    /* margin-left: auto; (Удалено, теперь в .mobile-nav-menu) */
}

.main-header-nav ul {
    display: flex;
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.main-header-nav li {
    margin-left: 25px; 
}

.main-header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600; 
    font-size: 15px;
    text-transform: uppercase; 
    display: flex;
    align-items: center;
}

.btn-book {
    background-color: #9FDDC7;
    color: #3C3C3B;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    padding: 12px 5px;
    width: 164px; 
    text-align: center; 
    border: none;
    text-transform: uppercase;
    font-weight: 700; 
    cursor: pointer;
    border-radius: 3px; 
}

.nav-item-dropdown {
    position: relative; 
}

.nav-item-dropdown > a {
    gap: 8px; 
}

.dropdown-menu {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0;
    background-color: #f2f2f2; 
    padding: 0; 
    border: 1px solid #e0e0e0; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: auto; 
    white-space: nowrap; 
    flex-direction: column;
    gap: 0; 
    z-index: 100; /* (НОВОЕ) */
}

.dropdown-menu a {
    color: #535353;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    padding: 10px 19px; 
    font-weight: 500; 
    text-transform: none; 
}
.dropdown-menu a:not(:first-child) {
    border-top: 1px solid #ddd; 
}

.nav-item-dropdown:hover > .dropdown-menu {
    display: flex; 
}
.page-home .main-header-book {
    visibility: hidden;
}

.nav-item-dropdown > a::after {
    content: ''; 
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;  
    border-right: 5px solid transparent; 
    border-top: 5px solid #333;        
    transition: transform 0.2s ease; 
}

.nav-item-dropdown:hover > a::after {
    transform: rotate(180deg); 
}

/* (НОВЫЙ БЛОК) Стили для кнопки "Сэндвич" */
.mobile-nav-toggle {
    display: none; /* Скрыт на десктопе */
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px; /* Отступ от логотипа */
    z-index: 1001; /* Выше чем .main-header */
}
.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-nav-toggle span:not(:last-child) {
    margin-bottom: 5px;
}

/* Анимация "Сэндвича" в "Крестик" */
.mobile-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* (Конец нового блока) */


.hero-slider {
    width: 100%;
    overflow: hidden;
    height: calc(100vh - 77px);
    position: relative;
    z-index: 1;
}

/* ... (пропускаем стили .hero-slider, .booking-bar и т.д. ... они без изменений) ... */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 2;
}
.hero-slide-content {
    position: absolute;
    bottom: 10%;
    left: 5%;
    z-index: 3;
    color: white;
    max-width: 600px;
}
.hero-slide-content h3 {
    font-family: "Raleway", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.hero-slide-content h4 {
    font-family: "EB Garamond", serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin: 0 0 20px 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}
.hero-btn {
    display: inline-block;
    background-color: #9FDDC7;
    color: #3C3C3B;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    padding: 12px 24px;
    text-align: center;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
}
.hero-slider .slick-dots {
    bottom: 25px;
    right: 25px;
    width: auto;
    padding-right: 20px;
}
.hero-slider .slick-dots li {
    margin: 0 5px;
}
.hero-slider .slick-dots li button::before {
    font-size: 10px;
    color: white;
    opacity: 0.75;
}
.hero-slider .slick-dots li.slick-active button::before {
    color: white;
    opacity: 1;
}
.hero-slider .slick-list {
    height: 100%;
}
.hero-slider .slick-track {
    height: 100%;
}
.hero-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: transparent;
    border: none;
    cursor: pointer;
    color: transparent;
    width: 50px;
    height: 50px;
}
.hero-slider .slick-arrow::before {
    content: '‹';
    font-family: serif;
    font-size: 60px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    transition: opacity 0.2s ease;
    display: block;
    width: 100%;
    text-align: center;
}
.hero-slider .slick-next::before {
    content: '›';
}
.hero-slider .slick-prev {
    left: 25px;
}
.hero-slider .slick-next {
    right: 25px;
}
.hero-slider .slick-arrow:hover::before {
    opacity: 1;
}
.booking-bar-container {
    background-color: #f2f2f2;
    padding: 20px 26px 18px 21px;
    margin: 0 auto;
    max-width: 1236px;
    
    position: relative;
    z-index: 2;
    margin-top: -39px;
}
.booking-bar-dialog {
    background-color: #FFFFFF;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.booking-bar-field {
    position: relative;
    border: 1px solid #ddd;
    flex-grow: 1;
}
.booking-bar-field:not(:last-of-type) {
    border-right: none;
}
.booking-bar-field.with-icon input {
    padding: 4px 8px 4px 44px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #333;
    border: none;
    width: 100%;
    height: 100%;
}
.booking-bar-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    fill: #333;
    opacity: 0.7;
}
.booking-bar-guests {
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
}
.btn-book-bar {
    background-color: #9FDDC7;
    color: #3C3C3B;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    padding: 12px 24px;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
}
.booking-bar-mail {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid #ddd;
    border-left: none;
    flex-shrink: 0;
}
.booking-bar-mail svg {
    width: 22px;
    height: 15px;
}
.booking-popup-wrapper {
    display: none;
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.hotel-result-wrapper {
    position: absolute;
    background: #f2f2f2;
    padding: 23px 39px 16px 43px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 101;
    
    width: 640px;
    height: 379px;
    bottom: 100%;
    left: 0;
    margin-bottom: 5px;

    display: flex;
    flex-direction: column;
}
.hotel-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.hotel-popup-title {
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    color: #00498D;
    font-weight: 600;
}
.hotel-popup-close {
    font-family: serif;
    font-size: 30px;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}
.hotel-popup-body {
    display: flex;
    gap: 40px;
    flex-grow: 1;
    overflow: hidden;
}
.hotel-popup-countries {
    height: 100%;
    overflow-y: auto;
}
.hotel-popup-hotels {
    height: 100%;
    overflow-y: auto;
    flex-grow: 1;
}
.countries-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
}
.countries-list a {
    display: block;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #333333;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}
.countries-list a.active,
.countries-list a:hover {
    color: #00498D;
}
.hotels-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hotels-list .region-title {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 5px;
}
.hotels-list .region-title:first-child {
    margin-top: 0;
}
.hotels-list a {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    color: #333333;
    text-decoration: none;
    line-height: 1.8;
}
.hotels-list a:hover {
    text-decoration: underline;
}
.hotel-popup-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}
.hotel-popup-footer a {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #00498D;
    text-decoration: none;
    font-weight: 600;
}
.daterangepicker {
    background: #f2f2f2 !important;
    border: 1px solid #ddd !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
    padding: 25px 30px !important;
    z-index: 9999 !important;
    width: 700px !important; /* Твоя ширина */
    border-radius: 0 !important;
    font-family: "Raleway", sans-serif !important;
}
.daterangepicker .ranges {
    display: none !important;
}
.daterangepicker .drp-calendar {
   width: 300px !important; /* <-- ЗАДАЕМ ЖЕСТКУЮ ШИРИНУ */
   padding: 0 !important;
}
.daterangepicker .drp-calendar.left {
   float: left;
}
.daterangepicker .drp-calendar.right {
   float: right;
}
.daterangepicker .calendar-table {
    width: 100% !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
}
.drp-calendar .month {
    font-family: "Raleway", sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0 !important;
    margin-bottom: 15px !important;
    text-align: center !important;
    color: #333 !important;
}
.daterangepicker .calendar-table th {
    background: transparent !important;
    color: #00498D !important;
    font-family: "Raleway", sans-serif !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    padding: 8px 0 !important;
    border: none !important;
}
.daterangepicker .calendar-table td {
    background: transparent !important;
    border: none !important;
    border-radius: 50% !important; /* Круглая форма по умолчанию */
    font-family: "Raleway", sans-serif !important;
    font-size: 14px !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    padding: 0 !important;
    color: #333;
}
.daterangepicker .calendar-table td:hover {
    background: #e0e0e0 !important;
    color: #333 !important;
}
.daterangepicker .calendar-table td.today {
    background: #e0e0e0 !important;
    color: #333 !important;
}
.daterangepicker .calendar-table td.in-range {
    background: #656564 !important;
    color: white !important;
    border-radius: 0 !important; /* Прямоугольник */
}
.daterangepicker .calendar-table td.start-date {
    background: #3C3C3B !important;
    color: white !important;
    border-top-left-radius: 50% !important;
    border-bottom-left-radius: 50% !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}
.daterangepicker .calendar-table td.end-date {
    background: #3C3C3B !important;
    color: white !important;
    border-top-right-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.daterangepicker .calendar-table td.start-date.end-date {
    border-radius: 50% !important;
}
.daterangepicker .calendar-table td.off,
.daterangepicker .calendar-table td.disabled {
    background: transparent !important;
    color: #ccc !important;
}
.daterangepicker .prev, .daterangepicker .next {
     background: transparent !important;
     border: none !important;
}
.daterangepicker .month select {
    display: none !important;
}
.daterangepicker .month {
    pointer-events: none; /* Делаем заголовок некликабельным */
}
.daterangepicker .drp-buttons {
    display: none !important;
}
#rooms-guests-trigger {
    position: relative; 
}
#rooms-guests-trigger input {
    cursor: pointer;
}
#guests-count-display {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #333;
    pointer-events: none; 
}
.rooms-guests-wrap {
    display: none; 
    position: absolute;
    width: 273px !important; 
    background: #f2f2f2 !important; 
    border: none !important; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
    z-index: 101;
    bottom: 100%; 
    left: 0;
    margin-bottom: 5px;
    padding: 35px 16.5px 23px !important; 
}
.rooms-guests-wrap.js-expanded {
    display: block; 
}
.bm-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.bm-popup-close svg {
    width: 15px;
    height: 15px;
    stroke: #555;
    stroke-width: 2;
}
.js-count-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff !important; 
    padding: 0px 15px 0px 13px !important; 
    border-bottom: none !important; 
    height: 40px; 
}
.rooms-guests-dropdown {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}
.js-count-wrap:last-child {
    border-bottom: none;
}
.label-warp .rooms-lablel,
.label-warp .adults-lablel,
.label-warp .children-lablel {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.controlls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.controlls .input-span {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 20px;
    text-align: center;
}
.controlls .button {
    background: white;
    border: 1px solid #888;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.controlls .button svg {
    width: 18px;
    height: 18px;
    stroke: #2f2f2f;
}
.controlls .button:hover {
    background: #f5f5f5;
}
.intro-text-block {
    padding-top: 48px;
    padding-bottom: 30px;
    background-color: #fff;
    max-width: 944px;
    margin: 0 auto;
}
.intro-container {
    padding: 0 15px;
    text-align: center;
}
.intro-header h1 {
    font-family: "Raleway", sans-serif;
    font-size: 44px;
    color: #333333;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.intro-header h2 {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    color: #333333;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 8px 0;
}
.intro-paragraph p {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}
.ratings-bar {
    background-color: #f7f7f7;
    padding: 16px 24px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    max-width: 1236px;
    margin: 0 auto;
}
.ratings-container {
    padding: 0 15px;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    max-width: 1196px;
    margin: 0 auto;
    font-family: system-ui, Arial, Helvetica, sans-serif;
    color: #000;
}
.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #ddd;
    padding: 0 20px;
    flex-grow: 1;
    flex-basis: 0;
    justify-content: center;
}
.rating-item:last-child {
    border-right: none;
}
.rating-item .rating-score {
    display: flex;
    align-items: flex-end; 
    color: #000;
}
.rating-item .rating-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 4px;
}
.rating-item .rating-score .score-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.rating-item .rating-score .score-max {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}
.rating-item.main-rating {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: flex-start;
    flex-grow: 2;
    gap: 10px;
    padding: 0 30px 0 0; 
}
.rating-item.main-rating .rating-score .score-value {
    font-size: 32px;
    font-weight: 600;
}
.rating-item.main-rating .rating-score .score-max {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}
.rating-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}
.rating-item.main-rating .rating-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}
.rating-item.main-rating .rating-sublabel {
    font-size: 12px;
    color: #777;
    font-weight: 400;
}
.rating-item:not(.main-rating) {
    flex-direction: column;
    align-items: center;
}
.highlights-block {
    max-width: 1236px;
    margin: 40px auto;
    padding: 0;
    background-color: #f2f2f2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.highlights-container {
    display: flex;
    justify-content: space-between;
    gap: 0;
    align-items: stretch;
}
.highlights-column {
    width: 50%;
    position: relative;
}
.highlights-image-slider {
    position: relative;
    height: 100%;
}
.js-left-slider {
    width: 100%;
    height: 100%;
}
.js-left-slider .slick-list,
.js-left-slider .slick-track,
.js-left-slider .slick-slide {
    height: 100%;
}
.js-left-slider .slick-slide > div {
    height: 100%;
}
.js-left-slider .ratio-container {
    height: 100%;
}
.js-left-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.js-left-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.js-left-slider .slick-dots li {
    margin: 0;
}
.js-left-slider .slick-dots button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: white;
    opacity: 0.5;
    cursor: pointer;
    padding: 0;
}
.js-left-slider .slick-dots .slick-active button {
    background: white;
    opacity: 1;
}
.js-left-slider .slick-dots li button::before {
   display: none;
}
.highlights-text-container {
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f2f2f2;
    height: 100%;
    width: 50%;
    min-height: 618px; 
}
.highlights-text-container .highlights-title {
    font-family: "Raleway", sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: 0;
}
.highlights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.highlights-list li {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 11.2px;
    position: relative;
    padding-left: 15.04px;
}
.highlights-list li::before {
    content: "•";
    color: #00498D;
    font-weight: 700;
    position: absolute;
    left: 0;
}
.highlights-discover-link {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #68554A;
    text-transform: uppercase;
    text-decoration: none;
    align-self: flex-start;
}
.experience-slider-section {
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 0;
    max-width: 1236px;
    margin: 40px auto 80px auto;
}
.experience-slider-container {
    position: relative;
    background-color: #f0f8ff;
}
.experience-slider {
    position: relative;
}
.experience-slide {
    display: flex !important;
}
.experience-text-content {
    width: 50%;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.experience-image {
    width: 50%;
}
.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.experience-title {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
}
.experience-details p {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.experience-details strong {
    font-weight: 700;
}
.experience-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 0;
}
.experience-slider .slick-prev {
    left: 20px;
}
.experience-slider .slick-next {
    right: 20px;
}
.experience-slider .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    margin: 0 auto;
}
.experience-slider .slick-prev::before {
    transform: rotate(45deg);
    margin-left: 4px;
}
.experience-slider .slick-next::before {
    transform: rotate(-135deg);
    margin-right: 4px;
}
.experience-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.experience-slider .slick-dots button {
    font-size: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 0;
}
.experience-slider .slick-dots .slick-active button {
    background: rgba(0, 0, 0, 0.8);
}
.offers-block {
    padding: 50px 0;
    max-width: 1236px;
    margin: 40px auto;
}
.offers-header {
    text-align: center;
    margin-bottom: 40px;
}
.offers-header h2 {
    font-family: "Raleway", sans-serif;
    font-size: 44px;
    color: #333333;
    font-weight: 400;
    margin: 0 0 8px 0;
    line-height: 1.2;
    letter-spacing: .01em;
    text-transform: uppercase;
}
.offers-header p {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    color: #333333;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}
.offers-slider-container {
    position: relative;
    padding: 0 40px;
}
.offers-slider .slick-slide {
    padding: 0 15px;
}
.offer-card {
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
}
.offer-image {
    width: 100%;
    height: auto;
    display: block;
}
.offer-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 380px;
}
.offer-period,
.offer-bookable {
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #333333;
    margin-bottom: 12px;
}
.offer-title {
    font-family: "Raleway", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #333333;
    text-transform: uppercase;
    margin: 16px 0px 8px;
}
.offer-desc {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.5;
    margin: 0px 0px 16px;
    flex-grow: 1;
}
.offer-read-more {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #68554A;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0px 0px 8px;
}
.offer-price {
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 20px;
}
.offer-content .btn-book-bar {
    width: 100%;
}
.offers-slider .slick-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 0;
}
.offers-slider .slick-prev {
    left: -25px;
}
.offers-slider .slick-next {
    right: -25px;
}
.offers-slider .slick-arrow::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    margin: 0 auto;
}
.offers-slider .slick-prev::before {
    transform: rotate(45deg);
    margin-left: 4px;
}
.offers-slider .slick-next::before {
    transform: rotate(-135deg);
    margin-right: 4px;
}
.ski-pass-block {
    padding: 60px 0;
    background-color: #fff;
    max-width: 1236px;
    margin: 40px auto;
}
.ski-pass-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    padding: 0;
}
.ski-pass-text {
    width: 50%;
    background-color: #f2f2f2;
    padding: 50px;
}
.ski-pass-image {
    width: 50%;
}
.ski-pass-image img {
    width: 100%;
    height: auto;
    display: block;
}
.ski-pass-text h3 {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: .01em;
}
.ski-pass-text p {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 25px;
}
.ski-pass-link {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #68554A;
    text-transform: uppercase;
    text-decoration: none;
}
.grid-block {
    padding: 0;
    background-color: #fff;
    max-width: 1236px;
    margin: 40px auto;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 10px;
}
.grid-card {
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}
.grid-card.tall {
    grid-row: span 2;
    height: 610px;
}
.grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.grid-card:hover .grid-image {
    transform: scale(1.05);
}
.grid-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: white;
    z-index: 3;
}
.grid-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index: 2;
}
.grid-content h3 {
    font-family: "Raleway", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}
.grid-link {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}
.grid-card::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid white;
    z-index: 4;
    
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.3s ease-in-out;
}
.grid-card:hover::before {
    opacity: 1;
    transform: scale(1);
}
.gallery-block {
    max-width: 1236px;
    margin: 40px auto;
    padding: 0 20px;
}
.gallery-grid-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.gallery-card-large {
    width: 50%;
    height: 610px;
    overflow: hidden;
    display: block;
}
.gallery-grid-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}
.gallery-card-small {
    height: 300px;
    overflow: hidden;
    display: block;
}
.gallery-card-large .grid-image,
.gallery-card-small .grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.gallery-card-large:hover .grid-image,
.gallery-card-small:hover .grid-image {
    transform: scale(1.05);
}
.gallery-buttons-container {
    display: flex;
    gap: 10px;
}
.gallery-button-wrapper {
    width: 50%;
}
.btn-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px;
    text-decoration: none;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}
.btn-gallery svg {
    margin-right: 10px;
    width: 21px;
    height: 21px;
}
.btn-gallery.btn-pictures {
    background-color: #9FDDC7;
    color: #3C3C3B;
}
.btn-gallery.btn-videos {
    background-color: #E0D9CB;
    color: #333;
}
.hotel-recommendations-block {
    max-width: 1236px;
    margin: 40px auto;
    padding: 0 20px;
}
.recommendations-header {
    text-align: center;
    margin-bottom: 40px;
}
.recommendations-header h2 {
    font-family: "Raleway", sans-serif;
    font-size: 32px;
    color: #333333;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
}
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.recommendation-card {
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
}
.recommendation-image {
    width: 100%;
    height: auto;
    display: block;
}
.recommendation-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 340px;
}
.recommendation-title {
    font-family: "Raleway", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    margin: 10px 0;
}
.recommendation-desc {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
    flex-grow: 1;
}
.recommendation-read-more {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2em;
    color: #68554A;
    text-transform: uppercase;
    text-decoration: none;
    margin: 15px 0;
}
.recommendation-price {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}
.recommendation-content .btn-book-bar {
    width: 100%;
}
.awards-block {
    max-width: 1236px;
    margin: 40px auto;
    padding: 40px 20px;
    border-top: 1px solid #eee;
}
.awards-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}
.award-item img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 120px;
}
.site-footer {
    background-color: #2a3b56;
    color: #fff;
    font-family: "Raleway", sans-serif;
}
.footer-container {
    max-width: 1236px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    padding: 60px 0;
}
.footer-col {
    width: 30%;
}
.footer-col h4 {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    margin: 0 0 20px 0;
    color: #fff;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}
.footer-col ul li a:hover {
    text-decoration: underline;
}
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
}
.footer-contact svg {
    width: 16px;
    height: 16px;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}
.footer-sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #4a5b76;
    padding: 25px 0;
}
.footer-sub-links a {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    margin-right: 20px;
}
.footer-sub-links a:hover {
    text-decoration: underline;
}
.footer-social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
}
.footer-social-links a svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}
.footer-legal {
    text-align: center;
    padding: 25px 0;
    font-size: 13px;
    color: #aaa;
}
.footer-legal p {
    margin: 5px 0;
}
.pre-footer {
    background-color: #2a3b56;
    padding: 50px 0 40px 0;
}
.pre-footer-header {
    text-align: center;
    color: white;
    font-family: "Raleway", sans-serif;
    margin-bottom: 30px;
}
.pre-footer-header h3 {
    font-family: "Raleway", sans-serif;
    font-size: 33px;
    font-weight: 400;
    margin: 0 0 8px 0;
    text-transform: none;
    letter-spacing: .01em;
}
.pre-footer-header p {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0 0 0;
}
.pre-footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
    grid-auto-rows: 250px;
}
.pre-footer-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .main-header {
        padding: 0 15px; 
    }
}

.main-header-logo img {
    height: 50px; 
    display: block; 
}

/* (ИЗМЕНЕНО) Контейнер для меню и кнопки "Book" */
.mobile-nav-menu {
    display: flex;
    align-items: center;
    margin-left: auto; /* Прижимаем вправо */
}

.main-header-nav {
    /* margin-left: auto; (Удалено, теперь в .mobile-nav-menu) */
}

.main-header-nav ul {
    display: flex;
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.main-header-nav li {
    margin-left: 25px; 
}

.main-header-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600; 
    font-size: 15px;
    text-transform: uppercase; 
    display: flex;
    align-items: center;
}

.btn-book {
    background-color: #9FDDC7;
    color: #3C3C3B;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    padding: 12px 5px;
    width: 164px; 
    text-align: center; 
    border: none;
    text-transform: uppercase;
    font-weight: 700; 
    cursor: pointer;
    border-radius: 3px; 
}

.nav-item-dropdown {
    position: relative; 
}

.nav-item-dropdown > a {
    gap: 8px; 
}

.dropdown-menu {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0;
    background-color: #f2f2f2; 
    padding: 0; 
    border: 1px solid #e0e0e0; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: auto; 
    white-space: nowrap; 
    flex-direction: column;
    gap: 0; 
    z-index: 100; /* (НОВОЕ) */
}

.dropdown-menu a {
    color: #535353;
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    padding: 10px 19px; 
    font-weight: 500; 
    text-transform: none; 
}
.dropdown-menu a:not(:first-child) {
    border-top: 1px solid #ddd; 
}

.nav-item-dropdown:hover > .dropdown-menu {
    display: flex; 
}
.page-home .main-header-book {
    visibility: hidden;
}

.nav-item-dropdown > a::after {
    content: ''; 
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;  
    border-right: 5px solid transparent; 
    border-top: 5px solid #333;        
    transition: transform 0.2s ease; 
}

.nav-item-dropdown:hover > a::after {
    transform: rotate(180deg); 
}

/* (НОВЫЙ БЛОК) Стили для кнопки "Сэндвич" */
.mobile-nav-toggle {
    display: none; /* Скрыт на десктопе */
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px; /* Отступ от логотипа */
    z-index: 1001; /* Выше чем .main-header */
}
.mobile-nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-nav-toggle span:not(:last-child) {
    margin-bottom: 5px;
}

/* Анимация "Сэндвича" в "Крестик" */
.mobile-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
.mobile-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
/* (Конец нового блока) */

/* ... (пропускаем стили .hero-slider, .booking-bar и т.д. до строки 1175) ... */

.pre-footer-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ========= (ПОЛНОСТЬЮ ЗАМЕНЕННЫЙ БЛОК) МОБИЛЬНЫЕ СТИЛИ (INDEX) ========= */

@media (max-width: 992px) {
    
    /* --- Шапка --- */
    .main-header {
        padding: 0 15px;
        /* (НОВОЕ) Логотип и кнопка всегда на одном уровне */
        justify-content: space-between;
    }
    .main-header-logo {
        z-index: 1002; /* Логотип над оверлеем */
        /* (НОВОЕ) Убедимся, что логотип не белый на белом */
        position: relative;
    }

    /* (НОВЫЙ) Показываем кнопку "Сэндвич" */
    .mobile-nav-toggle {
        display: block;
    }
    /* (НОВОЕ) Меняем цвет кнопки-крестика, когда меню открыто */
    .mobile-nav-toggle.is-active span {
        background: #333;
    }


    /* (ИЗМЕНЕНО) Стили для контейнера мобильного меню */
    .mobile-nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 100px 20px 40px 20px;
        background: #f2f2f2;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        
        /* Скрываем по умолчанию */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        overflow-y: auto;
    }
    .mobile-nav-menu.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* (ИЗМЕНЕНО) Стили для навигации внутри оверлея */
    .main-header-nav {
        margin: 0;
        width: 100%;
    }
    .main-header-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .main-header-nav li {
        margin: 0;
    }
    .main-header-nav a {
        font-size: 20px;
    }
    /* Отключаем ховер на мобильных */
    .nav-item-dropdown:hover > .dropdown-menu {
        display: none;
    }
    /* (НОВОЕ) Показываем/скрываем подменю по клику */
    .nav-item-dropdown > a::after {
        transition: transform 0.2s ease;
    }
    .nav-item-dropdown.is-open > a::after {
        transform: rotate(180deg);
    }
    .nav-item-dropdown .dropdown-menu {
        position: static;
        display: none; /* Скрыто по умолчанию */
        flex-direction: column;
        border: none;
        box-shadow: none;
        background: transparent;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
    .nav-item-dropdown.is-open .dropdown-menu {
        display: flex; /* Показываем по клику */
    }
    .dropdown-menu a {
        font-size: 16px;
        border-top: none !important;
        padding: 8px 0;
    }


    /* (ИЗМЕНЕНО) Стили для кнопки "Book Now" в оверлее */
    .main-header-book {
        width: 100%;
        max-width: 300px;
        margin-top: 30px;
    }
    /* Показываем кнопку на главной в мобильном меню */
    .page-home .main-header-book {
        visibility: visible;
    }
    .btn-book {
        width: 100%;
        padding: 15px;
        font-size: 15px;
    }
    /* --- Конец Шапки --- */


    /* --- Hero Слайдер --- */
    .hero-slider {
        height: 60vh; 
    }
    .hero-slide-content h3 {
        font-size: 1.8rem;
    }
    .hero-slide-content h4 {
        font-size: 1.2rem;
    }
    .hero-slider .slick-arrow {
        display: none !important; /* Прячем стрелки на мобильных */
    }

    /* --- Форма Бронирования --- */
    .booking-bar-container {
        max-width: 90%;
        margin-top: -60px; 
    }
    .booking-bar-dialog {
        flex-direction: column; 
    }
    .booking-bar-field:not(:last-of-type) {
        border-right: 1px solid #ddd;
        border-bottom: none;
    }
    .booking-bar-guests {
        border-left: 1px solid #ddd;
    }
    
    /* Попапы на мобильных */
    .hotel-result-wrapper,
    .daterangepicker,
    .rooms-guests-wrap {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        bottom: 100% !important;
        height: auto !important;
    }
    .hotel-popup-body {
        flex-direction: column;
    }
    .daterangepicker {
        padding: 10px !important; /* Уменьшаем отступы */
    }
    .daterangepicker .drp-calendar {
        width: 100% !important; /* 1 месяц в ряд */
    }
    .daterangepicker .drp-calendar.right {
        margin-top: 15px;
    }
    
    /* --- Интро-Текст --- */
    .intro-text-block {
        max-width: 100%;
        padding: 30px 15px;
    }
    .intro-header h1 {
        font-size: 30px;
    }
    .intro-header h2 {
        font-size: 22px;
    }

    /* --- Рейтинги --- */
    .ratings-bar {
        max-width: 100%;
    }
    .ratings-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .rating-item {
        border-right: none;
        padding: 0;
        width: 100%;
    }
    .rating-item.main-rating {
        padding: 0;
    }
    .rating-item:not(.main-rating) {
        align-items: flex-start;
    }
    .rating-item.main-rating .rating-score .score-value {
        font-size: 28px; /* Чуть меньше */
    }

    /* --- Блоки 50/50 --- */
    .highlights-block {
        max-width: 100%;
        padding: 0;
        margin: 20px 0;
    }
    .highlights-container {
        flex-direction: column;
    }
    .highlights-column {
        width: 100%;
    }
    .highlights-text-container {
        min-height: auto;
        padding: 30px;
    }
    .experience-slider-section {
        max-width: 100%;
    }
    .experience-slide {
        flex-direction: column !important;
    }
    .experience-text-content,
    .experience-image {
        width: 100%;
    }
    .experience-text-content {
        padding: 30px;
    }
    .ski-pass-container {
        flex-direction: column;
    }
    .ski-pass-text,
    .ski-pass-image {
        width: 100%;
    }
    .ski-pass-text {
        padding: 30px;
    }

    /* --- Слайдер Offers --- */
    .offers-block {
        max-width: 100%;
        padding: 30px 0;
    }
    .offers-slider-container {
        /* Строка padding: 0; удалена */
    }
    .offers-slider .slick-arrow {
        display: none !important; 
    }
    .offer-content {
        min-height: auto; /* Убираем фикс. высоту */
    }

    /* --- Сетка Grid --- */
    .grid-block {
        max-width: 100%;
        padding: 0 10px;
    }
    .grid-container {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 10px;
    }
    .grid-card.tall {
        grid-row: span 1;
        height: 250px;
    }

    /* --- Галерея --- */
    .gallery-block {
        max-width: 100%;
        padding: 0 10px;
    }
    .gallery-grid-container {
        flex-direction: column;
        gap: 10px;
    }
    .gallery-card-large,
    .gallery-grid-right {
        width: 100%;
    }
    .gallery-card-large {
        height: 300px;
    }
    .gallery-grid-right {
        grid-template-rows: 150px 150px;
    }
    .gallery-card-small {
        height: 150px;
    }
    .gallery-buttons-container {
        flex-direction: column;
    }
    .gallery-button-wrapper {
        width: 100%;
    }

    /* --- Рекомендации --- */
    .hotel-recommendations-block {
        max-width: 100%;
    }
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    .recommendation-content {
        min-height: auto; /* Убираем фикс. высоту */
    }

    /* --- Награды --- */
    .awards-block {
        max-width: 100%;
    }
    .awards-container {
        flex-direction: column;
        gap: 20px;
    }

    /* --- Футер --- */
    .footer-main {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0; /* (НОВОЕ) */
    }
    .footer-col {
        width: 100%;
    }
    .footer-sub {
        flex-direction: column;
        gap: 20px;
    }
    
    /* --- Пре-футер --- */
    .pre-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

}
