/* 1. ВЗЛАМЫВАЕМ СЕТКУ CASSIOPEIA */
/* Заставляем родительские контейнеры шаблона растянуться и сменить цвет */
header.header, 
.container-header, 
.container-header.full-width,
.grid-child.container-nav {
    display: block !important;    /* Отключаем Grid */
    width: 100% !important;
    max-width: 100% !important;
    background: #1a2a1f !important; /* Убираем синий */
    background-image: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Убираем отступы у самого модуля */
.mod-custom.custom, #mod-custom118 {
    padding: 0 !important;
    margin: 0 !important;
}

/* 2. НАША ШАПКА */
.meire-full-header {
    background-color: #1a2a1f;
    border-bottom: 2px solid #c5a059;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center; /* Центрируем содержимое внутри */
}

.header-inner {
    width: 100%;
    max-width: 1400px; /* Ограничиваем только контент, а не фон */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

/* Логотип */
.logo-box img {
    height: 80px;
    width: auto;
}

/* Навигация */
.nav-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.nav-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: 0.3s;
}

.nav-box a:hover {
    color: #c5a059;
}

/* Контакты */
.info-box {
    text-align: right;
}

.contact-text {
    font-size: 12px;
    color: #c5a059;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.lang-box {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.lang-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    opacity: 0.6;
}

.lang-box a.active, .lang-box a:hover {
    opacity: 1;
    color: #c5a059;
    font-weight: bold;
}

/* Мобилка */
@media (max-width: 992px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .info-box { text-align: center; }
    .lang-box { justify-content: center; }
}
/* 1. Снова пробиваем сетку Joomla для этого блока */
.meire-hero-section {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 80vh; /* Высота - 80% экрана */
    min-height: 500px;
    background: url('/images/hipica de meire.png') no-repeat center center; /* ИСПОЛЬЗУЕМ ВАШ ПУТЬ */
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

/* Затемнение картинки, чтобы текст читался */
.meire-hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4); /* Полупрозрачное затемнение */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Кнопки */
.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-meire {
    padding: 15px 35px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s;
    border: 2px solid #c5a059; /* Золотой бордюр */
}

.btn-gold {
    background-color: #c5a059;
    color: #1a2a1f; /* Темно-зеленый текст на золотом */
}

.btn-gold:hover {
    background-color: transparent;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: #1a2a1f;
    border-color: #ffffff;
}

/* Подключаем шрифты, если еще не подключены */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&family=Playfair+Display:wght@700&display=swap');

/* Адаптивность */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; gap: 10px; }
}
.container-component>*+* {
    margin-top: 0px;
}	
/* Настройки секции */
.meire-services-clean {
    padding: 100px 0;
    background-color: #fdfaf1; /* Светло-кремовый фон */
    font-family: 'Montserrat', sans-serif;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a2a1f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-header .line {
    width: 60px;
    height: 2px;
    background-color: #c5a059;
    margin: 0 auto;
}

/* Сетка карточек */
.services-flex {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.service-item {
    flex: 1;
    background: #ffffff;
    padding: 50px 35px;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Золотая полоса, которая появляется при наведении */
.service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background-color: #c5a059;
    transition: all 0.4s ease;
}

.service-item:hover::before {
    height: 6px;
}

.service-item:hover {
    box-shadow: 0 20px 50px rgba(26, 42, 31, 0.1);
    border-color: transparent;
    transform: translateY(-5px);
}

/* Номер услуги вместо иконки */
.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #c5a059;
    margin-bottom: 25px;
    display: block;
    font-weight: bold;
}

.service-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a2a1f;
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-item ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.service-item ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

/* Маленький квадрат вместо буллита */
.service-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #c5a059;
}

.service-link {
    color: #1a2a1f;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #c5a059;
    padding-bottom: 5px;
    align-self: flex-start;
    transition: 0.3s;
}

.service-link:hover {
    color: #c5a059;
    border-color: #1a2a1f;
}

/* Мобильная версия */
@media (max-width: 1024px) {
    .services-flex {
        flex-direction: column;
    }
}
.meire-history-v3 {
    padding: 100px 0;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.history-container-v3 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

/* Текст занимает 60% */
.text-side {
    flex: 1.6;
}

/* Фото занимает 40% */
.image-side {
    flex: 1;
    position: sticky;
    top: 100px;
}

.text-side .label {
    font-family: 'Playfair Display', serif;
    color: #c5a059;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
}

.text-side h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a2a1f;
    margin-bottom: 35px;
    line-height: 1.1;
}

.text-side p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Список объектов */
.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px 0;
}

.facility-box {
    padding: 20px;
    background: #fdfaf1;
    border-left: 3px solid #c5a059;
}

.facility-box strong {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #1a2a1f;
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.facility-box span {
    font-size: 0.9rem;
    color: #666;
}

/* Фото с рамкой */
.photo-wrapper {
    position: relative;
    width: 100%;
}

.photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 15px 15px 0px 0px #1a2a1f; /* Темная подложка в цвет бренда */
}

.photo-wrapper::after {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid #c5a059;
    z-index: -1;
}

@media (max-width: 1024px) {
    .history-container-v3 { flex-direction: column; }
    .image-side { order: -1; width: 100%; position: static; margin-bottom: 40px; }
    .facilities-grid { grid-template-columns: 1fr; }
}
/* 1. СИЛОВОЙ РАЗРЫВ КОНТЕЙНЕРА ДЛЯ ФОНА */
.meire-hospitality-fixed {
    position: relative;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background-color: #1a2a1f !important; /* Наш глубокий зеленый */
    color: #ffffff !important;
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.hosp-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.hosp-header-v3 {
    text-align: center;
    margin-bottom: 70px;
}

.hosp-header-v3 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #c5a059 !important; /* Золотой заголовок */
    margin-bottom: 20px;
}

.hosp-header-v3 p {
    font-size: 1.1rem;
    color: #e0e0e0 !important;
    max-width: 700px;
    margin: 0 auto;
}

/* Сетка карточек */
.hosp-grid-v3 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.hosp-card-v3 {
    flex: 1;
    background: rgba(255, 255, 255, 0.05); /* Легкий отсвет */
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 45px 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.hosp-card-v3:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c5a059;
    transform: translateY(-10px);
}

.hosp-card-v3 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #c5a059 !important;
    margin-bottom: 20px;
}

.hosp-card-v3 p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ffffff !important; /* Явно белый текст */
    margin-bottom: 30px;
    min-height: 80px;
}

.hosp-list-v3 {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.hosp-list-v3 li {
    color: #c5a059 !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.hosp-list-v3 li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c5a059;
    margin-right: 15px;
}

.btn-action-v3 {
    margin-top: auto;
    display: block;
    padding: 15px;
    border: 1px solid #c5a059;
    color: #ffffff !important;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-action-v3:hover {
    background: #c5a059;
    color: #1a2a1f !important;
}

/* Мобилка */
@media (max-width: 1024px) {
    .hosp-grid-v3 { flex-direction: column; }
    .meire-hospitality-fixed { width: 100% !important; margin: 0 !important; left: 0 !important; }
}
/* 1. СБРОС КОНТЕЙНЕРА ДЛЯ ФОНА НА ВСЮ ШИРИНУ */
.meire-reviews-slider {
    position: relative;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background-color: #fdfaf1 !important;
    padding: 90px 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
}

.rev-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.rev-top {
    text-align: center;
    margin-bottom: 50px;
}

.rev-top h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a2a1f;
    margin-bottom: 15px;
}

.g-maps-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #1a2a1f;
    font-weight: 600;
}

.g-stars { color: #c5a059; letter-spacing: 2px; font-size: 1.1rem; }
.g-num { font-weight: 700; font-size: 1.1rem; }

/* 2. ЧИСТЫЙ CSS СЛАЙДЕР */
.slider-viewport {
    overflow-x: auto;
    display: flex;
    gap: 25px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* для плавности на iOS */
    padding-bottom: 20px; /* отступ для скроллбара */
    /* Прячем стандартный скроллбар */
    -ms-overflow-style: none;  /* IE и Edge */
    scrollbar-width: none;  /* Firefox */
}

.slider-viewport::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slide-item {
    flex: 0 0 calc(33.333% - 17px); /* Для десктопа: 3 слайда в ряд */
    scroll-snap-align: start;
    background: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.slide-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 42, 31, 0.08);
}

/* Стилизация карточки под Google Maps */
.g-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.g-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
}

.g-info b { display: block; font-size: 0.95rem; color: #1a2a1f; }
.g-info span { font-size: 0.8rem; color: #999; }

.g-rev-stars { color: #c5a059; font-size: 0.8rem; margin-bottom: 15px; }

.g-rev-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.g-source {
    font-size: 0.7rem;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.g-icon { width: 14px; opacity: 0.7; }

/* Кнопка "Все отзывы" */
.rev-bottom {
    text-align: center;
    margin-top: 50px;
}

.btn-all-google {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    border: 1px solid #1a2a1f;
    color: #1a2a1f !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s;
}

.btn-all-google:hover {
    background-color: #1a2a1f;
    color: #ffffff !important;
}

/* Адаптация для мобильных: 1 слайд на весь экран */
@media (max-width: 1024px) {
    .slider-viewport { padding: 0 20px 20px 20px; gap: 15px; }
    .slide-item { flex: 0 0 calc(100% - 30px); }
    .rev-inner { padding: 0; }
}
/* 1. СТРУКТУРА И ФОН */
.meire-reviews-full-slider {
    position: relative;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background-color: #fdfaf1 !important;
    padding: 90px 0;
    font-family: 'Montserrat', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
}

.rev-container-v5 {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.rev-header-v5 {
    text-align: center;
    margin-bottom: 50px;
}

.rev-header-v5 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a2a1f;
    margin-bottom: 10px;
}

/* 2. СЛАЙДЕР */
.slider-viewport-v5 {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 20px 5px;
}

.slider-viewport-v5::-webkit-scrollbar { display: none; }

.rev-card-v5 {
    flex: 0 0 calc(33.333% - 17px); /* 3 карточки на десктопе */
    scroll-snap-align: start;
    background: #ffffff;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    min-height: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

/* 3. КНОПКИ */
.nav-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #1a2a1f;
    color: #c5a059;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.nav-arrow:hover { background: #c5a059; color: #1a2a1f; }
.arrow-prev { left: -10px; }
.arrow-next { right: -10px; }

/* 4. КОНТЕНТ КАРТОЧКИ */
.g-user-v5 { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.g-avatar-v5 {
    width: 42px; height: 42px; border-radius: 50%; color: #fff;
    display: flex; align-items: center; justify-content: center; font-weight: bold;
}
.g-info-v5 b { display: block; font-size: 0.9rem; color: #1a2a1f; }
.g-info-v5 span { font-size: 0.75rem; color: #999; }
.g-stars-v5 { color: #c5a059; font-size: 0.8rem; margin: 10px 0; }
.g-text-v5 { font-size: 0.88rem; line-height: 1.6; color: #444; font-style: italic; flex-grow: 1; }

.g-footer-v5 {
    display: flex; align-items: center; gap: 8px; font-size: 0.7rem; 
    color: #aaa; text-transform: uppercase; margin-top: 15px; border-top: 1px solid #f0f0f0; padding-top: 15px;
}
.g-svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
    .rev-card-v5 { flex: 0 0 85%; }
    .nav-arrow { display: none; }
}
.meire-contact-precise {
    position: relative;
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background-color: #ffffff!important;
    color: #ffffff;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.contact-container-precise {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.info-column-precise { flex: 1; }

.map-column-precise { 
    flex: 1.2; 
    height: 480px; 
    border: 1px solid #c5a059;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-column-precise h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #c5a059;
    margin-bottom: 35px;
}

.data-row-precise {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.data-row-precise b {
    color: #c5a059;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.data-row-precise span, .data-row-precise a { 
    font-size: 1.1rem; 
    color: #000; 
    text-decoration: none;
}

.hours-box-precise {
    margin-top: 30px; 
    padding: 25px; 
    border-left: 2px solid #c5a059; 
    background: rgba(255,255,255,0.05);
}

.hours-box-precise b { color: #c5a059; display: block; margin-bottom: 10px; font-size: 0.8rem; }

.hours-list-precise {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    color: #000;
}

/* Карта без фильтров для максимальной четкости */
.map-column-precise iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 1024px) {
    .contact-container-precise { flex-direction: column; }
    .map-column-precise { width: 100%; height: 350px; }
}
/* 1. СНЯТИЕ ОГРАНИЧЕНИЙ ШАБЛОНА */
.container-footer .grid-child, 
.footer .grid-child,
.container-footer .mod-custom {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* 2. ОСНОВНОЙ БЛОК ФУТЕРА */
.meire-footer-final {
    background-color: #1a2a1f !important;
    color: #fdfaf1 !important;
    padding: 70px 0 40px 0;
    font-family: 'Montserrat', sans-serif;
    border-top: 3px solid #c5a059 !important;
    width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
}

.footer-inner-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}

/* СЕТКА НА 4 КОЛОНКИ */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr; /* Соотношение ширины колонок */
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.footer-col h3, .footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: #c5a059;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h3 { font-size: 1.7rem; }
.footer-col h4 { font-size: 1rem; border-bottom: 1px solid rgba(197, 160, 89, 0.3); padding-bottom: 10px; }

.footer-col p, .footer-links a {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #bbbbbb;
    text-decoration: none;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { transition: 0.3s; }
.footer-links a:hover { color: #c5a059; padding-left: 5px; }

.footer-contact-info b {
    color: #c5a059;
    display: block;
    font-size: 0.7rem;
    margin-bottom: 3px;
    margin-top: 12px;
    text-transform: uppercase;
}

.footer-bottom-line {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.7rem;
    color: #666666;
    letter-spacing: 1px;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; } /* 2х2 на планшетах */
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; } /* В одну колонку на телефонах */
    .footer-col h4 { border-bottom: none; }
}
/* Добавьте эти стили в ваш CSS, чтобы ссылка не была синей */
.contact-text a.phone-link {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.contact-text a.phone-link:hover {
    color: #c5a059; /* Ваш золотой цвет */
}

.sep {
    margin: 0 10px;
    color: #c5a059;
}
.meire-heritage {
    font-family: 'Montserrat', sans-serif;
    color: #1a2a1f;
    background-color: #fdfaf1;
    line-height: 1.8;
    
    /* Эти строки заставляют весь блок игнорировать ширину родителя */
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
}

/* 2. ВОЗВРАЩАЕМ КОНТЕНТ В ЦЕНТР */
.ht-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Оформление шапки */
.ht-header {
    padding: 120px 0 60px;
    text-align: center;
}
.ht-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    margin: 0;
}
.ht-header .gold-seal {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c5a059;
    display: block;
    margin-bottom: 10px;
}

/* Секции */
.ht-section {
    padding: 80px 0;
    display: flex;
    align-items: center;
    gap: 60px;
}

.ht-content { flex: 1.2; }
.ht-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 25px;
}

.ht-image-frame {
    flex: 1;
    border: 1px solid #c5a059;
    padding: 10px;
    background: #fff;
}
.ht-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Список преимуществ */
.ht-points {
    list-style: none;
    padding: 20px 0;
}
.ht-points li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
.ht-points li::before {
    content: '◈';
    position: absolute;
    left: 0;
    color: #c5a059;
}

/* Цитата/Футер страницы */
.ht-quote {
    padding: 100px 0;
    text-align: center;
    background: #1a2a1f;
    color: #fdfaf1;
    margin-top: 60px;
}
.ht-quote blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    max-width: 800px;
    margin: 0 auto;
    border: none;
}

/* Адаптив для мобилок */
@media (max-width: 900px) {
    .ht-section { flex-direction: column; text-align: center; }
    .ht-header h1 { font-size: 2.5rem; }
    .meire-heritage {
        width: 100% !important;
        margin: 0 !important;
        left: 0 !important;
    }
}
.footer {
    margin-top: 0px;
}
.meire-service-page {
    font-family: 'Montserrat', sans-serif;
    color: #1a2a1f;
    background-color: #fdfaf1;
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    margin-left: -50vw !important;
    overflow-x: hidden;
}

.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ВЕРХНИЙ БЛОК (HERO) */
.sp-hero {
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-color: #1a2a1f;
    color: #fdfaf1;
}
.sp-hero-text { flex: 1; padding: 80px 40px; }
.sp-hero-img { flex: 1.2; height: 70vh; background: url('/images/entrenador1.jpg') center/cover; }

.sp-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #c5a059;
    margin-bottom: 20px;
}
.sp-hero-text p { font-size: 1.2rem; line-height: 1.7; opacity: 0.9; }

/* СПИСОК ХАРАКТЕРИСТИК (ПОДРОБНО) */
.sp-details { padding: 100px 0; background: #fff; }
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}
.detail-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #c5a059;
    display: inline-block;
}
.detail-item ul { list-style: none; padding: 0; }
.detail-item li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}
.detail-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #c5a059;
    font-weight: bold;
}

/* ФИНАЛЬНЫЙ ПРИЗЫВ */
.sp-cta {
    padding: 80px 0;
    text-align: center;
    background-color: #fdfaf1;
}
.btn-gold {
    display: inline-block;
    padding: 18px 40px;
    background-color: #c5a059;
    color: #1a2a1f;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s;
}
.btn-gold:hover { background-color: #1a2a1f; color: #c5a059; }

@media (max-width: 900px) {
    .sp-hero { flex-direction: column; }
    .sp-hero-img { width: 100%; height: 40vh; }
    .details-grid { grid-template-columns: 1fr; }
}
.meire-cta-premium {
    background-color: #1a2a1f; /* Фирменный зеленый */
    color: #fdfaf1;
    padding: 100px 0;
    text-align: center;
    
    /* Фул-скрин фикс */
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    margin-left: -50vw !important;
    box-sizing: border-box;
    
    /* Тонкая золотая рамка сверху и снизу */
    border-top: 1px solid rgba(197, 160, 89, 0.4);
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
}

.cta-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.meire-cta-premium h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #c5a059; /* Золотой заголовок */
    margin-bottom: 30px;
}

.cta-divider {
    width: 60px;
    height: 2px;
    background: #c5a059;
    margin: 0 auto 40px;
}

.meire-cta-premium p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.cta-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fdfaf1;
    display: block;
}

/* ЭЛЕГАНТНАЯ КНОПКА */
.btn-premium {
    display: inline-block;
    padding: 20px 50px;
    background-color: transparent;
    color: #c5a059;
    border: 2px solid #c5a059;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-premium:hover {
    background-color: #c5a059;
    color: #1a2a1f;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .meire-cta-premium h2 { font-size: 2.2rem; }
}
/* АКЦЕНТНЫЙ БЛОК CTA */
.meire-cta-premium {
    background-color: #1a2a1f; /* Фирменный зеленый */
    color: #fdfaf1;
    padding: 100px 0;
    text-align: center;
    
    /* Фул-скрин фикс */
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    margin-left: -50vw !important;
    box-sizing: border-box;
    
    /* Тонкая золотая рамка сверху и снизу */
    border-top: 1px solid rgba(197, 160, 89, 0.4);
    border-bottom: 1px solid rgba(197, 160, 89, 0.4);
}

.cta-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}

.meire-cta-premium h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #c5a059; /* Золотой заголовок */
    margin-bottom: 30px;
}

.cta-divider {
    width: 60px;
    height: 2px;
    background: #c5a059;
    margin: 0 auto 40px;
}

.meire-cta-premium p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    font-family: 'Montserrat', sans-serif;
}

.cta-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fdfaf1;
    display: block;
}

/* ЭЛЕГАНТНАЯ КНОПКА */
.btn-premium {
    display: inline-block;
    padding: 20px 50px;
    background-color: transparent;
    color: #c5a059;
    border: 2px solid #c5a059;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-premium:hover {
    background-color: #c5a059;
    color: #1a2a1f;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .meire-cta-premium h2 { font-size: 2.2rem; }
}
Для этих трех страниц — Отеля, Автодомов и Хостела — мы сменим концепцию. Если страницы услуг были более «техническими» и строгими, то страницы проживания мы сделаем в стиле Lifestyle Editorial.

Это дизайн с крупной типографикой, элементами «карточек» и встроенной сеткой галереи, чтобы гости могли сразу почувствовать атмосферу отдыха.

Общий CSS (Один для всех трех страниц)
Этот код обеспечивает современную верстку, галерею и фул-скрин эффект. Вставьте его один раз в ваш CSS-файл или в начало каждой страницы.

CSS
<style>
:root {
    --meire-gold: #c5a059;
    --meire-dark: #1a2a1f;
    --meire-bg: #fdfaf1;
}

.meire-accommodation-page {
    font-family: 'Montserrat', sans-serif;
    color: var(--meire-dark);
    background-color: var(--meire-bg);
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    margin-left: -50vw !important;
}

/* ГЕРО-БЛОК С ЗАГОЛОВКОМ ПОВЕРХ */
.acc-hero {
    height: 80vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.acc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,42,31,0.8), transparent);
}
.hero-title-box {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}
.hero-title-box h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: #fff;
    margin: 0;
}
.hero-title-box span {
    color: var(--meire-gold);
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* БЛОК ОПИСАНИЯ */
.acc-info { padding: 100px 0; }
.acc-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.acc-description h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.acc-description p { line-height: 1.8; font-size: 1.1rem; color: #444; }

/* ГАЛЕРЕЯ */
.acc-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0 40px;
}
.gal-img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; transition: 0.5s; }
.gal-img:hover { filter: brightness(1.1); }
.gal-1 { grid-row: span 2; }

/* ТАБЛИЦА УДОБСТВ */
.acc-amenities {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    padding: 0;
}
.amenities-list li { padding-left: 25px; position: relative; font-size: 0.9rem; font-weight: 500; }
.amenities-list li::before { content: '◈'; position: absolute; left: 0; color: var(--meire-gold); }

@media (max-width: 900px) {
    .acc-info-grid, .acc-gallery { grid-template-columns: 1fr; }
    .hero-title-box h1 { font-size: 3rem; }
    .acc-gallery { grid-template-rows: auto; }
}
:root {
    --meire-gold: #c5a059;
    --meire-dark: #1a2a1f;
    --meire-bg: #fdfaf1;
}

.meire-accommodation-page {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--meire-bg);
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    margin-left: -50vw !important;
    color: var(--meire-dark);
}

/* 1. КОМПАКТНАЯ ШАПКА */
.acc-hero-tiny {
    height: 18vh; min-height: 140px;
    display: flex; align-items: center;
    background-size: cover; background-position: center; position: relative;
}
.acc-hero-tiny::after { content: ''; position: absolute; inset: 0; background: rgba(26, 42, 31, 0.7); }

/* 2. БЛОК ОПИСАНИЯ И ЦЕН */
.main-info-grid {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px;
    max-width: 1200px; margin: 0 auto; padding: 40px;
}
.acc-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-top: 0; }
.acc-text p { line-height: 1.7; color: #444; }

.amenities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; list-style: none; padding: 0; font-size: 0.9rem; margin-top: 20px;}
.amenities li::before { content: '◈ '; color: var(--meire-gold); }

/* 3. КАЛЬКУЛЯТОР БРОНИРОВАНИЯ */
.booking-widget {
    background: var(--meire-dark); color: #fff; padding: 30px;
    border-radius: 4px; position: sticky; top: 20px;
}
.booking-widget h4 { color: var(--meire-gold); margin-top: 0; text-align: center; }
.calc-field { margin-bottom: 15px; }
.calc-field label { display: block; font-size: 0.75rem; color: var(--meire-gold); margin-bottom: 5px; }
.calc-field input, .calc-field select {
    width: 100%; padding: 10px; background: rgba(255,255,255,0.1); border: 1px solid #444; color: #fff; outline: none;
}
.total-box {
    margin-top: 20px; padding: 15px; background: rgba(197, 160, 89, 0.2);
    border: 1px dashed var(--meire-gold); text-align: center;
}
.total-price { font-size: 1.5rem; font-weight: 700; color: var(--meire-gold); }

/* 4. ГАЛЕРЕЯ И МОДАЛКА */
.acc-gallery-mini {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
    max-width: 1200px; margin: 20px auto 60px; padding: 0 40px;
}
.gal-thumb { width: 100%; height: 120px; object-fit: cover; cursor: pointer; transition: 0.3s; }
.gal-thumb:hover { filter: brightness(1.2); }

.meire-modal {
    display: none; position: fixed; z-index: 10000; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.modal-content-wrap { position: relative; max-width: 90%; }
.modal-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(197, 160, 89, 0.4); color: #fff; border: none; font-size: 30px;
    padding: 15px; cursor: pointer; border-radius: 50%;
}
.prev-btn { left: -70px; } .next-btn { right: -70px; }
.close-modal { position: absolute; top: -50px; right: 0; color: #fff; font-size: 40px; cursor: pointer; }

@media (max-width: 900px) {
    .main-info-grid { grid-template-columns: 1fr; }
    .acc-gallery-mini { grid-template-columns: repeat(3, 1fr); }
    .prev-btn { left: 10px; } .next-btn { right: 10px; }
}
.meire-contact-page {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--meire-bg);
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    margin-left: -50vw !important;
    color: var(--meire-dark);
    overflow-x: hidden;
}

/* ШАПКА */
.contact-hero {
    height: 18vh;
    min-height: 140px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(26, 42, 31, 0.7), rgba(26, 42, 31, 0.7)), url('/images/entorno.jpg') center/cover;
}

/* СЕТКА КОНТАКТОВ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-top: 0; }
.contact-method { margin-bottom: 30px; }
.contact-method h4 { color: var(--meire-gold); text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 5px; }
.contact-method p { font-size: 1.1rem; margin: 0; }
.contact-method a { color: var(--meire-dark); text-decoration: none; transition: 0.3s; }
.contact-method a:hover { color: var(--meire-gold); }

/* ФОРМА ОБРАТНОЙ СВЯЗИ */
.contact-form-box {
    background: var(--meire-dark);
    padding: 40px;
    color: #fff;
    border-radius: 4px;
}
.contact-form-box h3 { color: var(--meire-gold); font-family: 'Playfair Display', serif; margin-top: 0; margin-bottom: 25px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.7rem; color: var(--meire-gold); margin-bottom: 5px; text-transform: uppercase; }
.form-group input, .form-group textarea {
    width: 100%; padding: 12px; background: rgba(255,255,255,0.05); border: 1px solid #444; color: #fff; outline: none; box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--meire-gold); }

.btn-send {
    width: 100%; padding: 15px; background: var(--meire-gold); border: none; color: var(--meire-dark); font-weight: 700; text-transform: uppercase; cursor: pointer; transition: 0.3s;
}
.btn-send:hover { background: #fff; }

/* КАРТА */
.map-full {
    width: 100%;
    height: 450px;
    filter: grayscale(0.3) contrast(1.1);
    border-top: 2px solid var(--meire-gold);
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .meire-contact-page { width: 100% !important; margin-left: 0 !important; left: 0 !important; }
}
/* --- Стили секции CTA --- */
.me-ev-cta-section {
    background-color: #f4f1ea !important;
    padding: 80px 20px !important;
    text-align: center !important;
}

.me-ev-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.me-ev-cta-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.5rem !important;
    color: #1a2a1f !important;
    margin-bottom: 20px !important;
}

.me-ev-cta-subtitle {
    margin-bottom: 40px !important;
    font-size: 1.1rem !important;
    color: #555 !important;
}

.me-ev-btn-open {
    background: #1a2a1f !important;
    color: #c5a059 !important;
    padding: 18px 40px !important;
    border: 1px solid #c5a059 !important;
    font-size: 1rem !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    transition: 0.3s ease !important;
}

.me-ev-btn-open:hover {
    background: #c5a059 !important;
    color: #1a2a1f !important;
}

/* --- Стили Модального окна (Overlay) --- */
.me-ev-modal-overlay {
    display: none;
    position: fixed;
    z-index: 999999 !important; /* Максимальный приоритет */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 42, 31, 0.96) !important;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.me-ev-modal-box {
    background: #fdfaf1 !important;
    padding: 45px !important;
    width: 95% !important;
    max-width: 650px !important;
    position: relative !important;
    border: 1px solid #c5a059 !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
}

.me-ev-modal-close {
    position: absolute !important;
    top: 15px !important;
    right: 20px !important;
    font-size: 35px !important;
    color: #1a2a1f !important;
    cursor: pointer !important;
    line-height: 1;
}

/* --- Стили самой Формы --- */
.me-ev-modal-header { text-align: center; margin-bottom: 30px; }
.me-ev-modal-header h2 { 
    font-family: 'Playfair Display', serif !important; 
    font-size: 2.2rem !important; 
    margin: 0 !important; 
    color: #1a2a1f !important;
}

.me-ev-divider {
    width: 50px;
    height: 2px;
    background: #c5a059;
    margin: 15px auto;
}

.me-ev-form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
}

.me-ev-form-group {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 15px !important;
    text-align: left !important;
}

.me-ev-form-group label {
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 8px !important;
    color: #888 !important;
    letter-spacing: 1px;
}

.me-ev-form-group input, 
.me-ev-form-group textarea {
    padding: 12px !important;
    border: 1px solid #ddd !important;
    background: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    outline: none !important;
    font-size: 0.95rem !important;
}

.me-ev-form-group input:focus {
    border-color: #c5a059 !important;
}

.me-ev-btn-submit {
    width: 100% !important;
    padding: 18px !important;
    background: #1a2a1f !important;
    color: #c5a059 !important;
    border: none !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    margin-top: 15px !important;
    transition: 0.3s !important;
}

.me-ev-btn-submit:hover {
    background: #c5a059 !important;
    color: #1a2a1f !important;
}

/* Адаптивность */
@media (max-width: 600px) {
    .me-ev-form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
    .me-ev-modal-box { padding: 30px 20px !important; }
    .me-ev-cta-title { font-size: 1.8rem !important; }
    .meire-full-header .info-box .contact-text{
        position: absolute;
        top: 0;
        height: 20px;
        width: 100%;
        text-align: center;
        left: 0;
    }
    .meire-full-header .header-inner{
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        align-content: center;
        flex-wrap: nowrap;
    }
    .meire-full-header .header-inner .logo-box{
        order: 1;
        width: 100%;
        max-width: 33%;
        text-align: center;
    }
    .meire-full-header .header-inner .mobile-menu-toggle{
       order:2;
       width: 100%;
       max-width: 33%;
   }
    .info-box {
        text-align: center;
        max-width: 33%;
        width: 100%;
    }
}
body{
    overflow-x: hidden!important;
}
/* Кнопка бургер */
.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: none;
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 10003;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 10000;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* offcanvas */
.mobile-offcanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 86%;
    height: 100vh;
    background: #1a2a1f;
    transform: translateX(-100%);
    transition: transform .35s ease;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 24px rgba(0,0,0,.18);
}
.container-header .mod-menu .parent>ul{
 background: #1a2a1f; 
}

.mobile-offcanvas.active {
    transform: translateX(0);
}

/* head */
.mobile-offcanvas__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    border-bottom: 1px solid #eaeaea;
}

.mobile-offcanvas__title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.mobile-menu-close {
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #222;
    padding: 0;
}

/* body */
.mobile-offcanvas__body {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* меню */
.mobile-offcanvas .mod-menu,
.mobile-offcanvas .mod-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-offcanvas .mod-menu li {
    position: relative;
    border-bottom: 1px solid #f2f2f2;
}

.mobile-offcanvas .mod-menu a {
    display: block;
    padding: 14px 18px;
    padding-right: 56px;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    line-height: 1.4;
}

.mobile-offcanvas .mod-menu .current > a,
.mobile-offcanvas .mod-menu .active > a {
    font-weight: 700;
}

/* кнопка підменю */
.mobile-offcanvas .mod-menu__toggle-sub {
    position: absolute;
    right: 0;
    top: 0;
    width: 52px;
    height: 50px;
    border: 0;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.mobile-offcanvas .mod-menu__toggle-sub .icon-chevron-down,
.mobile-offcanvas .mod-menu__toggle-sub .visually-hidden {
    display: none !important;
}

.mobile-offcanvas .mod-menu__toggle-sub::before {
    content: "+";
    display: block;
    text-align: center;
    line-height: 50px;
    font-size: 24px;
    color: #fff;
}

.mobile-offcanvas .mod-menu__toggle-sub[aria-expanded="true"]::before {
    content: "−";
}

/* підменю */
.mobile-offcanvas .mod-menu__sub {
    display: none !important;
    background: #fafafa;
}

.mobile-offcanvas .mod-menu__sub.open {
    display: block !important;
}

.mobile-offcanvas .mod-menu__sub a {
    padding-left: 34px;
    font-size: 14px;
}

/* блокування скролу */
body.mobile-menu-open {
    overflow: hidden;
}

/* мобілка */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    /* якщо меню лишається в старому місці — ховаємо */
    body.mobile-menu-ready .desktop-menu-wrap {
        display: none !important;
    }
}

/* десктоп */
@media (min-width: 992px) {
    .mobile-offcanvas,
    .mobile-menu-overlay {
        display: none !important;
    }
}