/* ==========================================================================
   ICE PEAKS HOLON - MAIN STYLESHEET (FULL RESTORED & FIXED VERSION)
   ==========================================================================
   
   STRUCTURE:
   1. GLOBAL STYLES & RESETS
   2. REUSABLE COMPONENTS (Header, Footer, Menu, Widget, etc.)
   3. PAGE-SPECIFIC STYLES (Home, Birthday, Shop, etc.)
   4. RTL (RIGHT-TO-LEFT) STYLES
   5. RESPONSIVENESS (MEDIA QUERIES)

*/

/* ==========================================================================
   1. GLOBAL STYLES & RESETS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body { position: relative; font-family: 'Roboto', sans-serif; font-weight: 400; }
a { cursor: pointer; text-decoration: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6, a, button, .main-provide--content p, .top__form--btn, .main-header-right-orders a { font-family: 'Montserrat', sans-serif; font-weight: 700; }
p, li, span, input { font-family: 'Roboto', sans-serif; }
strong, b { font-weight: 700; }

/* --- Container --- */
.container { width: 100%; max-width: 1310px; margin: 0 auto; padding: 0 15px; }


/* ==========================================================================
   2. REUSABLE COMPONENTS - ХЕДЕР И МЕНЮ (СТАБИЛЬНАЯ ВЕРСИЯ)
   ========================================================================== */

/* --- 1. ХЕДЕР --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    padding: 0 40px;
    position: relative; /* Важно для z-index */
    z-index: 1002;
}
.main-header-left, .main-header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.main-header-left-logo img { width: 145px; height: 80px; }
.iisf-logo img { height: 65px; width: auto; }
.main-header-right-orders { display: flex; align-items: center; gap: 15px; }
.main-header-right-orders a { padding: 10px 20px; border: 1px solid #1A54EA; border-radius: 35px; color: #000; text-decoration: none; white-space: nowrap; }
.main-header-right-orders .orders-book-now { background: #FFFC31; border-color: #FFFC31; }
.vip-birthday-header-link { border: none !important; padding: 0 !important; }
.main-header-right-langs ul { display: flex; list-style-type: none; gap: 10px; margin: 0; padding: 0; }
.main-header-right-langs a { width: 45px; height: 45px; border: 1px solid #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; text-decoration: none; }
.main-header-right-langs .langs--active a { background: #1A54EA; color: #fff; border-color: #1A54EA; }

/* --- 2. ИКОНКА БУРГЕРА (КРЕСТИК) --- */
.main-header-right-menus {
    display: flex; /* Всегда виден */
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1003; /* Выше чем меню */
    align-items: center;
    justify-content: center;
}
.main-header-right-menus span,
.main-header-right-menus:before,
.main-header-right-menus:after {
    content: ''; display: block; width: 35px; height: 3px; background: #1A54EA;
    position: absolute; transition: all 0.3s ease-in-out;
}
.main-header-right-menus:before { transform: translateY(-10px); }
.main-header-right-menus:after { transform: translateY(10px); }

/* Анимация в крестик при открытом меню */
body.menu-open .main-header-right-menus span { background: transparent; }
body.menu-open .main-header-right-menus:before { transform: rotate(45deg); background: #fff; }
body.menu-open .main-header-right-menus:after { transform: rotate(-45deg); background: #fff; }


/* --- 3. ВЫЕЗЖАЮЩЕЕ МЕНЮ И ЕГО СОДЕРЖИМОЕ --- */
.open-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}
.open-menu--links {
    position: absolute; top: 0; right: 0; width: 90%; max-width: 450px; height: 100%;
    background: #1A54EA;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    padding: 120px 30px 30px 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
/* Стили для скролла внутри меню */
.open-menu--links--scroll { flex-grow: 1; overflow-y: auto; }

/* Стили для навигации */
.open-menu--links__navigation ul { list-style: none; padding: 0; margin: 0; }
.open-menu--links__navigation li a {
    display: block; padding: 15px 0; color: #fff; font-size: 24px;
    font-family: 'Montserrat', sans-serif; text-decoration: none; transition: 0.3s;
}
.open-menu--links__navigation li a:hover { opacity: 0.7; }

/* Стили для контактов */
.open-menu--links__contacts {
    margin-top: 40px; padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff; font-size: 16px;
}
.open-menu--links__contacts--name { font-size: 22px; margin-bottom: 15px; }
.open-menu--links__contacts--info { line-height: 1.6; margin-bottom: 15px; }
.open-menu--links__contacts--tel { color: #fff; font-size: 22px; font-weight: bold; text-decoration: none; }

/* Векторный рисунок снизу */
.open-menu--links--vector { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; }

/* Блок "Developed by" */
.open-menu-bg {
    position: absolute; bottom: 20px; left: 30px;
    color: #fff;
    z-index: 2; /* Чтобы был над векторной картинкой */
}
.open-menu-bg p { font-size: 14px; margin-bottom: 5px; opacity: 0.7; }
.open-menu-bg a { display: block; }

/* --- 4. ЛОГИКА ОТКРЫТИЯ МЕНЮ И СКРЫТИЯ ХЕДЕРА --- */
body.menu-open .open-menu { opacity: 1; visibility: visible; }
body.menu-open .open-menu--links { transform: translateX(0); }

/* !!! ДОБАВЛЕНО: Правила для скрытия хедера !!! */
body.menu-open .main-header-left,
body.menu-open .main-header-right-orders,
body.menu-open .main-header-right-langs {
    opacity: 0;
    pointer-events: none; /* Делает невидимые элементы некликабельными */
}
.main-header-right-orders a {
    height: 50px; /* Фиксированная высота */
    box-sizing: border-box; /* Важно, чтобы padding не увеличивал высоту */
    display: inline-flex; /* Используем flexbox для выравнивания */
    align-items: center;
    justify-content: center;
}

/* --- 2. ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ КНОПКИ "VIP BIRTHDAY" --- */
.orders-book-now.orders-vip-birthday {
    flex-direction: column; /* Текст и номер друг под другом */
    background: #E1467C;
    border-color: #E1467C;
    color: #fff;
    padding-left: 15px;  /* Горизонтальные отступы */
    padding-right: 15px;
    /* Убираем вертикальные отступы, так как высота фиксирована */
    padding-top: 0;
    padding-bottom: 0;
}

.orders-book-now.orders-vip-birthday:hover {
    opacity: 0.85;
    transform: none;
    box-shadow: none;
}

/* --- 3. Уменьшаем текст, чтобы он помещался в новую высоту --- */
.vip-birthday-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2; /* Уменьшаем межстрочный интервал */
    letter-spacing: 0.5px;
}
.vip-birthday-phone {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2; /* Уменьшаем межстрочный интервал */
}

/* --- 2.4. Footer --- */
.main-footer { position: relative; z-index: 2; display: flex; flex-direction: column; padding: 50px 5% 25px 5%; background: #00539f; }
.main-footer--top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 50px; width: 100%; }
.main-footer--top__info, .main-footer--top__contact, .main-footer--top__href, .main-footer--top__form, .main-footer--top__partners { display: flex; flex-direction: column; min-width: 250px; flex: 1; }
.main-footer--top__info h3 { font-size: 36px; font-weight: 400; color: white; }
.main-footer--top__info h3 > span { font-weight: 700; margin-left: 13px; }
.main-footer--top__info p { font-size: 20px; color: white; margin-top: 18px; }
.main-footer--top__info .top__contact--tel { margin-top: 20px; font-size: 40px; font-weight: 700; color: white; text-decoration: none; }
.main-footer--top__info .top__contact--mail { font-size: 24px; font-weight: 700; color: white; text-decoration: none; margin-top: 15px; }
.main-footer--top__info .top__socials { display: flex; list-style-type: none; gap: 20px; margin-top: 25px; }
.main-footer--top__info .top__socials li a { display: flex; width: 60px; height: 60px; align-items: center; justify-content: center; border: 1px solid white; border-radius: 50%; }
.main-footer--top__info .top__socials li a:hover { background-color: rgba(255, 255, 255, 0.1); }
.top__href--tickets, .top__href--faq { width: 250px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 40px; font-size: 16px; text-decoration: none; color: black; }
.top__href--tickets { background: #FFFC31; }
.top__href--faq { background: #FFFFFF; margin-top: 22px; }
.main-footer--top__form p { font-size: 20px; color: white; margin-bottom: 30px; }
.main-footer--top__form form { display: flex; position: relative; }
.top__form--email { background: rgba(255, 255, 255, 0.2); border: 1px solid #FFFFFF; border-radius: 100px; height: 60px; width: 100%; padding: 0 20px; color: white; font-size: 16px; }
.top__form--email::placeholder { color: rgba(255, 255, 255, 0.7); opacity: 1; }
.top__form--btn { background: #FFFC31; border-radius: 40px; font-size: 16px; color: #000; width: auto; padding: 0 30px; position: absolute; top: 0; right: 0; height: 60px; border: none; cursor: pointer; }
.main-footer--bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; margin-top: 60px; gap: 20px; }
.main-footer--bottom__copyrait { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.main-footer--bottom__copyrait p, .main-footer--bottom__copyrait a { color: #FFFFFF; text-decoration: none; }
.main-footer--bottom__scroll a { display: flex; align-items: center; gap: 20px; text-decoration: none; }
.main-footer--bottom__scroll p { color: #FFFFFF; }
.main-footer--top__partners h4 { font-size: 20px; font-weight: 700; text-align: center; color: white; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.partner-item { background-color: #fff; padding: 10px; border-radius: 8px; display: flex; align-items: center; justify-content: center; height: 70px; }
.partner-item img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* --- 2.5. Side Floating Widget --- */
.fixed-perehod { position: fixed; top: 50%; right: 0; transform: translateY(-50%) translateX(calc(100% - 60px)); z-index: 999; display: flex; flex-direction: column; transition: transform 0.4s ease-in-out; border-top-left-radius: 20px; border-bottom-left-radius: 20px; overflow: hidden; box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2); }
.fixed-perehod:hover { transform: translateY(-50%) translateX(0); }
.fixed-perehod a { display: flex; align-items: center; padding: 12px 20px; font-weight: 600; font-size: 16px; white-space: nowrap; transition: filter 0.3s ease; }
.fixed-perehod a:hover { filter: brightness(90%); }
.fixed-perehod .fixed-first { background-color: #FFFC31; color: #000; }
.fixed-perehod .fixed-two { background-color: #25D366; color: #fff; }
.fixed-perehod .fixed-three { background-color: #E0F2FE; color: #074492; }
.fixed-perehod a img { margin-left: 15px; flex-shrink: 0; }
.fixed-perehod a span { max-width: 0; opacity: 0; overflow: hidden; transition: max-width 0.4s ease-in-out, opacity 0.3s ease-in-out; }
.fixed-perehod:hover a span { max-width: 300px; opacity: 1; margin-right: 15px; transition-delay: 0.1s; }

/* --- 2.3. Выезжающее меню --- */
.open-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 1001; opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0s 0.4s; }
body.menu-open .open-menu { opacity: 1; visibility: visible; transition: opacity 0.4s ease; }
.open-menu--links { position: absolute; top: 0; right: 0; width: 90%; max-width: 450px; height: 100%; background: #1A54EA; padding: 150px 4% 50px 4%; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.4s ease-in-out; }
body.menu-open .open-menu--links { transform: translateX(0); }
/* --- 2.6. Universal Buttons & Forms --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: 35px;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}
.btn.btn-primary {
    background-color: #FFFC31;
    border-color: #FFFC31;
    color: #000000;
    box-shadow: 0 4px 15px rgba(255, 252, 49, 0.3);
    width: 100%;
    font-size: 1.2em;
}
.btn.btn-secondary {
    background-color: transparent;
    border-color: #1A54EA;
    color: #1A54EA;
    padding: 10px 20px;
    align-self: flex-start;
}
.permission-form, .form-group { display: flex; flex-direction: column; }
.permission-form { gap: 20px; }
.form-group label { margin-bottom: 8px; font-weight: 600; color: #333; }
.permission-form input[type="text"],
.permission-form input[type="email"],
.permission-form input[type="tel"],
.permission-form input[type="date"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    transition: all 0.2s ease-in-out;
}
.permission-form input:focus {
    border-color: #1A54EA;
    box-shadow: 0 0 0 3px rgba(26, 84, 234, 0.15);
    outline: none;
}

.bthcheck {
    position: relative; /* Необходимо для z-index */
    z-index: 10; /* Поднимаем весь блок наверх */
}

/* --- 2. Поднимаем саму галочку (input) и ее текст (label) еще выше --- */
/* Это гарантирует, что именно они получат клик */
.bthcheck #confirm-radio,
.bthcheck #checkbox-label {
    position: relative;
    z-index: 12; /* Выше, чем родительский блок */
    cursor: pointer; /* Явно указываем, что элемент кликабельный */
}

/* --- 3. Дополнительные стили для улучшения кликабельности --- */
.bthcheck #checkbox-label {
    display: inline-block; /* Чтобы padding работал корректно */
    padding-left: 5px; /* Немного отодвигаем текст от галочки для удобства */
}

/* --- 4. Визуальный фидбек при наведении на весь блок --- */
.bthcheck:hover {
    opacity: 0.8; /* Легкая прозрачность при наведении, чтобы показать интерактивность */
}

/* ==========================================================================
   3. PAGE-SPECIFIC STYLES
   ========================================================================== */

/* --- 3.1. Home Page --- */
.full-screen-video-container { width: 100%; height: 70vh; min-height: 450px; position: relative; overflow: hidden; background-color: #000; }
.full-screen-video-container video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: 100%; object-fit: cover; z-index: 1; }
.main-provide { position: relative; z-index: 3; background: white; border-radius: 100px; margin-top: -100px; padding: 140px 0; overflow: hidden; }
.main-provide-container { display: flex; flex-direction: column; align-items: center; gap: 40px; margin-top: 31px; margin-bottom: 110px; }
.provide-row { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.main-provide--content { width: 340px; height: 400px; background-color: #E0F2FE; border-radius: 50px; transition: all 0.3s ease-in-out; box-shadow: 0 10px 25px rgba(0, 83, 159, 0.08); }
.main-provide--content:hover { transform: translateY(-10px); box-shadow: 0 20px 35px rgba(0, 83, 159, 0.15); }
.main-provide--content a { display: flex; flex-direction: column; justify-content: space-evenly; align-items: center; width: 100%; height: 100%; padding: 20px; }
.card-image-wrapper { height: 180px; width: 100%; display: flex; align-items: center; justify-content: center; }
.main-provide--content img { max-width: 100%; max-height: 100%; object-fit: contain; }
#map { position: relative; z-index: 2; margin: -100px auto 0 auto; padding: 100px 50px; background: #FFFFFF; border-radius: 100px; }
#map h3 { font-size: 64px; color: #1A54EA; margin-bottom: 30px; text-align: center; }
#map .main-map-block { display: flex; gap: 50px; max-width: 1400px; margin: 0 auto; }
#map .main-map-block--frame { flex: 1; }
#map .main-map-block iframe { width: 100%; height: 100%; border-radius: 50px; border: none; min-height: 450px; }
#map .main-map-block--info { flex: 1; background: #E0F2FE; border-radius: 50px; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
#map .main-map-block--info span { font-size: 40px; color: #1A54EA; margin-bottom: 30px; display: block; }
#map .main-map-block--info p { font-size: 20px; line-height: 26px; margin-bottom: 33px; }
#map .main-map-block--info a { font-size: 24px; color: #1A54EA; display: block; margin-bottom: 18px; }
.main-block-gallery { position: relative; z-index: 1; padding: 80px 0; background: #b9def4; }
.main-block-gallery--top h3 { font-size: 64px; text-align: center; color: #074492; margin: 0 0 30px 0; }
.gallery-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.main-block-gallery .swiper-slide { width: 90%; max-width: 480px; height: 300px; transition: opacity 0.4s ease, transform 0.4s ease; border-radius: 40px; overflow: hidden; }
.main-block-gallery .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.main-block-gallery .swiper-button-next, .main-block-gallery .swiper-button-prev { color: #074492; top: 50%; transform: translateY(-75%); }
.main-block-gallery .swiper-button-next { right: 100px; }
.main-block-gallery .swiper-button-prev { left: 100px; }
/* =============================================
   СТИЛИ ДЛЯ КНОПКИ "РАЗРЕШЕНИЕ НА КАТАНИЕ"
   ============================================= */

.main-provide-permission {
    /* Превращаем ссылку в блочный элемент */
    display: block; 
    
    /* Центрируем кнопку по горизонтали */
    width: -webkit-fit-content; 
    width: -moz-fit-content; 
    width: fit-content; 
    margin: 60px auto 0; /* 60px отступ сверху, авто-отступы по бокам для центрирования */

    /* Внешний вид кнопки */
    padding: 14px 35px;
    border: 2px solid #1A54EA;
    border-radius: 35px;
    
    /* Стили текста */
    color: #1A54EA;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    
    /* Плавный переход для наведения */
    transition: all 0.3s ease;
}

/* Эффект при наведении курсора */
.main-provide-permission:hover {
    background-color: #1A54EA;
    color: #fff;
    transform: translateY(-3px); /* Небольшой "подъем" кнопки */
    box-shadow: 0 4px 15px rgba(26, 84, 234, 0.3);
}
.form-checkbox-group.final-consent {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Расстояние между галочками */
}

/* Стили для сообщения об ошибке у галочки */
.form-checkbox-group .error {
    color: #d9534f; /* Красный цвет для ошибки */
    font-size: 14px;
    margin-top: 5px;
}
/* --- 3.2. Generic & Birthday Pages --- */
.page-about-main-banner { position: relative; width: 100%; height: 60vh; min-height: 400px; display: flex; justify-content: center; align-items: center; color: white; text-align: center; }
.page-about-main-banner--bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.page-about-main-banner--bg img { width: 100%; height: 100%; object-fit: cover; }
.page-about-main-banner:after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(7, 68, 146, 0.5); z-index: 2; }
.page-about-main-banner--content { position: relative; z-index: 3; display: flex; flex-direction: column; align-items: center; }
.breadcrumbs { margin-bottom: 20px; }
.breadcrumbs a { color: white; font-size: 16px; }
.breadcrumbs .breadcrumbs--disabled { color: #ccc; }
.page-about-main-banner--content h3 { font-size: 72px; margin-bottom: 30px; }
.page-about-main-banner--content__book { background: #FFFC31; color: black; padding: 15px 40px; border-radius: 50px; font-size: 18px; }
.page-about-info, .page-about-maincontent { padding: 100px 5%; }
.page-about-info h3, .page-about-maincontent h3 { font-size: 48px; color: #074492; text-align: center; margin-bottom: 60px; }
.page-about-info--content { display: flex; gap: 50px; max-width: 1200px; margin: 0 auto; align-items: center; }
.birthday-page > section { margin-top: 80px; }
.birthday-page .page-about-info { margin-top: 0; padding-top: 80px; }
.birthday-features { padding: 60px 0; background-color: #f8f9fa; }
.birthday-features h2 { text-align: center; margin-bottom: 40px; }
.birthday-features__grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.birthday-features__grid + .birthday-features__grid { margin-top: 30px; }
.birthday-features__item { flex-basis: 180px; text-align: center; }
.birthday-features__item img { margin-bottom: 15px; height: 80px; }
.birthday-addons { padding: 80px 0; background-color: #f8f9fa; text-align: center; }
.birthday-addons h3 { font-size: 2.5rem; color: #333; margin-bottom: 40px; position: relative; display: inline-block; }
.birthday-addons h3::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: #007bff; }
.birthday-addons ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.birthday-addons li { background-color: #ffffff; padding: 12px 25px; border-radius: 50px; border: 1px solid #dee2e6; font-size: 1.1rem; color: #495057; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; display: flex; align-items: center; }
.birthday-addons li::before { content: '✔'; color: #28a745; margin-right: 10px; font-size: 1.2em; }
.birthday-addons li:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15); border-color: #007bff; color: #0056b3; }
.birthday-callout { position: relative; padding: 100px 0; background-size: cover; background-position: center center; background-attachment: fixed; color: #ffffff; text-align: center; overflow: hidden; }
.birthday-callout::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.55); z-index: 1; }
.birthday-callout .container { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.birthday-callout h4 { font-size: 1.3rem; font-weight: 400; margin-bottom: 15px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.9; }
.birthday-callout h2 { font-size: 3.5rem; line-height: 1.2; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); }
.birthday-ul-block--top { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.birthday-ul-block--top a { padding: 12px 25px; border: 2px solid #ddd; border-radius: 30px; color: #555; background-color: #f8f9fa; transition: all 0.3s ease; cursor: pointer; text-align: center; font-size: 1.1em; }
.page-about-maincontent--list { display: none; gap: 30px; padding: 30px; border-radius: 15px; transition: opacity 0.4s ease; }
.page-about-maincontent--list.active-list { display: flex; }
.reasons-column { flex: 1; min-width: 280px; }
.birthday-ul-block--top a[data-tab="1"].birthday--top--active { background-color: #FFECF3; border-color: #FFB6C1; color: #D81B60; }
.tab-content-bat { background-color: #FFF5F7; border: 2px solid #FFC0CB; }
.tab-content-bat .reason-item { background-color: #ffffff; border: 1px solid #FFDAE9; color: #BF4F74; padding: 15px 20px; margin-bottom: 15px; border-radius: 10px; line-height: 1.6; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.birthday-ul-block--top a[data-tab="2"].birthday--top--active { background-color: #EBF5FF; border-color: #87CEEB; color: #0073e6; }
.tab-content-bar { background-color: #F0F8FF; border: 2px solid #ADD8E6; }
.tab-content-bar .reason-item { background-color: #ffffff; border: 1px solid #B0E0E6; color: #1976D2; padding: 15px 20px; margin-bottom: 15px; border-radius: 10px; line-height: 1.6; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.page-about-predfooter {
    /* Добавляем отступ снизу размером 60 пикселей */
    margin-bottom: 60px;
}
/* --- 3.3. Birthday Page --- */
.birthday-page > section { margin-top: 80px; }
.birthday-page .page-about-info { margin-top: 0; padding-top: 80px; }

.birthday-features { padding: 60px 0; background-color: #f8f9fa; }
.birthday-features h2 { text-align: center; margin-bottom: 40px; }
.birthday-features__grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; }
.birthday-features__grid + .birthday-features__grid { margin-top: 30px; }
.birthday-features__item { flex-basis: 180px; text-align: center; }
.birthday-features__item img { margin-bottom: 15px; height: 80px; }

.birthday-addons { padding: 80px 0; background-color: #f8f9fa; text-align: center; }
.birthday-addons h3 { font-size: 2.5rem; color: #333; margin-bottom: 40px; position: relative; display: inline-block; }
.birthday-addons h3::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background-color: #007bff; }
.birthday-addons ul { list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.birthday-addons li { background-color: #ffffff; padding: 12px 25px; border-radius: 50px; border: 1px solid #dee2e6; font-size: 1.1rem; color: #495057; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; display: flex; align-items: center; }
.birthday-addons li::before { content: '✔'; color: #28a745; margin-right: 10px; font-size: 1.2em; }
.birthday-addons li:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15); border-color: #007bff; color: #0056b3; }

.birthday-callout {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}
.birthday-callout::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0, 0, 0, 0.55); z-index: 1; }
.birthday-callout .container { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.birthday-callout h4 { font-size: 1.3rem; font-weight: 400; margin-bottom: 15px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.9; }
.birthday-callout h2 { font-size: 3.5rem; line-height: 1.2; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); }

/* Bat/Bar Mitzvah Tabs */
.birthday-ul-block--top { display: flex; justify-content: center; gap: 15px; margin-bottom: 30px; flex-wrap: wrap; }
.birthday-ul-block--top a { padding: 12px 25px; border: 2px solid #ddd; border-radius: 30px; text-decoration: none; color: #555; background-color: #f8f9fa; transition: all 0.3s ease; cursor: pointer; text-align: center; font-size: 1.1em; }
.birthday-ul-block--top a:hover { background-color: #e9ecef; border-color: #ccc; }
.page-about-maincontent--list { display: none; gap: 30px; padding: 30px; border-radius: 15px; transition: opacity 0.4s ease; }
.page-about-maincontent--list.active-list { display: flex; }
.reasons-column { flex: 1; min-width: 280px; }
.birthday-ul-block--top a[data-tab="1"].birthday--top--active { background-color: #FFECF3; border-color: #FFB6C1; color: #D81B60; }
.tab-content-bat { background-color: #FFF5F7; border: 2px solid #FFC0CB; }
.tab-content-bat .reason-item { background-color: #ffffff; border: 1px solid #FFDAE9; color: #BF4F74; padding: 15px 20px; margin-bottom: 15px; border-radius: 10px; line-height: 1.6; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }
.birthday-ul-block--top a[data-tab="2"].birthday--top--active { background-color: #EBF5FF; border-color: #87CEEB; color: #0073e6; }
.tab-content-bar { background-color: #F0F8FF; border: 2px solid #ADD8E6; }
.tab-content-bar .reason-item { background-color: #ffffff; border: 1px solid #B0E0E6; color: #1976D2; padding: 15px 20px; margin-bottom: 15px; border-radius: 10px; line-height: 1.6; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); }

.birthday-page .page-about-info--content__img { display: flex; align-items: center; justify-content: center; }
.birthday-page .page-about-info--content__img img { max-width: 450px; width: 100%; height: auto; object-fit: contain; }

/* --- 3.4. Public Skating & Tickets Page --- */
.public-skating-page .buy-tickets-main { max-width: 900px; margin: 40px auto; padding: 0 15px; background: transparent; border: none; box-shadow: none; }
.public-skating-page .booking-steps-container,
.public-skating-page .step-box { background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; max-width: none !important; width: 100% !important; display: block !important; margin-bottom: 80px !important; }
.public-skating-page .step-box:last-child { margin-bottom: 0 !important; }
.public-skating-page .main-title-wrapper { margin-bottom: 80px; }
.public-skating-page .main-title-wrapper h2 { font-size: 3em; }
.public-skating-page .step-box h2 { font-size: 2.2em; color: #074492; text-align: center; margin-bottom: 15px; }
.public-skating-page .step-box p { font-size: 1.1em; color: #555; text-align: center; margin: 0 auto 30px auto; max-width: 600px; line-height: 1.6; }
.public-skating-page .iframe-wrapper { max-width: 800px; margin: 30px auto 0 auto; border-radius: 8px; overflow: hidden; border: 1px solid #ddd; }

/* --- 3.5. Pro Shop & Product Page --- */
.shop-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center bottom;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shop-banner::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(7, 68, 146, 0.4); z-index: 1; }
.shop-banner-content { position: relative; z-index: 2; text-align: center; }
.shop-banner-content h1 { color: #fff; font-size: 4.5em; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
.shop-content-wrapper { padding: 50px 0; }
.shop-description-box { max-width: 800px; margin: 0 auto 50px auto; padding: 30px; background-color: #f8f9fa; border: 1px solid #e9ecef; border-radius: 12px; }
.shop-description-box h3 { margin-bottom: 15px; font-size: 1.6em; color: #074492; text-align: center; }
.shop-description-box p, .shop-description-box li { font-size: 1.1em; line-height: 1.7; color: #333; }
.shop-description-box ul { padding-left: 20px; margin-top: 15px; }

/* Product Grid */
.content-product-column { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 25px; margin-bottom: 50px; }
.product-card { border: 1px solid #e9ecef; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); }
.product-card__image { height: 200px; }
.product-card__image img { width: 100%; height: 100%; object-fit: cover; }
.product-card__info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.product-card__title { font-size: 1.2em; flex-grow: 1; margin-bottom: 10px; }
.product-card__price { font-size: 1.4em; color: #1A54EA; margin-bottom: 20px; }

/* Single Product Page */
.prof-product-cart .product-cart--main { padding: 40px 0; }
.product-cart--main--top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
.product-cart--main--top a { display: flex; align-items: center; gap: 10px; color: #555; text-decoration: none; }
.product-cart--main--top a:hover { color: #1A54EA; }
.product-cart--main--content { display: grid; grid-template-columns: 5fr 4fr; gap: 50px; align-items: start; }

/* Product Slider */
.product-slider { display: flex; gap: 20px; }
.slider-thums-for-navigation { width: 100px; flex-shrink: 0; }
.slider__thumbs .swiper-slide { height: 100px !important; border-radius: 8px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.3s ease; }
.slider__thumbs .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.slider__thumbs .swiper-slide-thumb-active { border-color: #1A54EA; }
.slider-product-container { width: 100%; overflow: hidden; }
.slider-product-container .swiper-slide { border-radius: 12px; overflow: hidden; border: 1px solid #eee; }
.slider-product-container .swiper-slide img { width: 100%; height: auto; display: block; }

/* Product Info */
.product-info .product-title { font-size: 2.5em; margin-bottom: 15px; }
.product-info .product-price { font-size: 2em; color: #1A54EA; margin-bottom: 25px; }
.product-info .product-description { line-height: 1.7; margin-bottom: 30px; }
.product-attributes { list-style: none; margin-bottom: 30px; border-top: 1px solid #eee; padding-top: 20px; }
.product-attributes li { display: flex; gap: 10px; margin-bottom: 10px; }
.product-attributes li span { font-weight: 600; color: #333; }
.add-to-cart-form { display: flex; align-items: center; gap: 20px; }
.quantity-selector input[type="number"] { width: 80px; padding: 12px; border: 1px solid #ccc; border-radius: 8px; text-align: center; }

/* Pagination */
.pagination-produstc { display: flex; justify-content: center; margin-top: 50px; }
.pagination-wrapper { display: flex; align-items: center; justify-content: center; gap: 10px; }
.page-item { display: flex; align-items: center; justify-content: center; width: 45px; height: 45px; border-radius: 50%; background-color: #f8f9fa; border: 1px solid #e9ecef; color: #333; transition: all 0.3s ease; }
a.page-item:hover { background-color: #e9ecef; border-color: #ddd; }
.page-item.active { background-color: #1A54EA; border-color: #1A54EA; color: #fff; cursor: default; }



/* =============================================
   ИСПРАВЛЕНИЯ ДЛЯ СТРАНИЦЫ "ГРУППОВОЕ КАТАНИЕ" (ВЕРСИЯ 2)
   ============================================= */

/* --- 1. Восстанавливаем верхний блок с заголовком --- */
/* Стили для контейнера "Заголовок + Кружок" */
.group-skating-info .birthday-info--top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    width: 100%; /* Убедимся, что блок занимает всю ширину */
}

/* Стили для самого заголовка "Растопи лед..." */
.group-skating-info .birthday-info--top h3 {
    flex-grow: 1;
    font-size: 42px;
    color: #074492;
    text-align: left; /* Выравнивание по левому краю (для иврита будет справа) */
}
html[dir="rtl"] .group-skating-info .birthday-info--top h3 {
    text-align: right;
}

/* Стили для кружка "25" (остаются без изменений) */
.birthday-info--top__circle {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: #e0f2fe;
    border: 3px solid #1A54EA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
}
.birthday-info--top__circle span {
    font-size: 56px;
    font-weight: 700;
    color: #1A54EA;
    line-height: 1;
}
.birthday-info--top__circle p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.3;
}


/* --- 2. Уменьшаем фото и выравниваем текст (НОВЫЙ ПОДХОД) --- */
/* Делаем основной блок контента гибким */
.group-skating-info .page-about-info--content {
    display: flex;
    align-items: flex-start; /* Выравниваем по верху, лучше для текста разной длины */
    gap: 50px;
}

/* Задаем МАКСИМАЛЬНУЮ ширину для блока с текстом */
.group-skating-info .page-about-info--content__text {
    flex: 1 1 400px;  /* Базовая ширина 400px, но может сжиматься/растягиваться */
    max-width: 450px; /* Главное правило: текст не будет шире 450px */
}

/* Блок с изображением займет все оставшееся место */
.group-skating-info .page-about-info--content__img {
    flex: 1 1 60%; /* Позволяем ему быть больше, чем текст */
    min-width: 0; /* Важное правило для flex-элементов с контентом */
}


/* --- 3. Адаптивность для мобильных устройств --- */
@media (max-width: 992px) {
    /* Ставим текст НАД фотографией */
    .group-skating-info .page-about-info--content {
        flex-direction: column;
    }
    .group-skating-info .page-about-info--content__text {
        max-width: 100%; /* На мобильных текст занимает всю ширину */
    }
    .group-skating-info .page-about-info--content__img {
        margin-top: 30px;
        width: 100%;
    }
}
@media (max-width: 768px) {
    /* Ставим заголовок НАД кружком "25" */
    .group-skating-info .birthday-info--top {
        flex-direction: column;
        gap: 20px;
    }
    .group-skating-info .birthday-info--top h3 {
        text-align: center;
    }
}
/* =============================================
   СТИЛИ ДЛЯ КОНТАКТНО-ИНФОРМАЦИОННОГО БЛОКА ВНИЗУ СТРАНИЦЫ
   ============================================= */

/* --- 1. Основной контейнер секции --- */
.group-skating-contacts-footer {
    padding: 60px 0;
}
.group-skating-contacts-footer .container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f0f8ff; /* Светло-голубой фон */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 83, 159, 0.1);
    text-align: center; /* Центрируем весь текст по умолчанию */
}

/* --- 2. Стили для верхнего текста --- */
.contacts-footer-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px; /* Отступ до телефонов */
}

/* --- 3. Стили для блока с телефонами --- */
.contacts-footer-phones {
    display: flex;
    justify-content: center; /* Центрируем иконки */
    align-items: center;
    gap: 40px; /* Расстояние между иконками */
    margin-bottom: 40px;
}
.phone-item {
    display: flex;
    flex-direction: column; /* Иконка над текстом */
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.phone-item:hover {
    transform: scale(1.05); /* Легкое увеличение при наведении */
}
.phone-item svg { /* Стили для иконок SVG */
    width: 60px;
    height: 60px;
}
.phone-item span { /* Стили для номера телефона */
    font-size: 20px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #074492;
}
.phone-item.whatsapp span {
    color: #25D366; /* Зеленый цвет для WhatsApp */
}

/* --- 4. Стили для нижнего блока с кнопкой --- */
.contacts-footer-permission {
    padding-top: 40px;
    border-top: 1px solid #d4e8f7; /* Разделительная линия */
}
.contacts-footer-permission p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}
/* Класс для кнопки, который у вас уже есть */
a.main-provide-permission {
    /* Стили для кнопки уже должны быть в вашем main.css, 
       но можно их тут продублировать для надежности */
}


/* --- 5. Адаптивность --- */
@media (max-width: 600px) {
    .contacts-footer-phones {
        flex-direction: column; /* На маленьких экранах телефоны друг под другом */
        gap: 30px;
    }
    .group-skating-contacts-footer .container {
        padding: 30px 20px;
    }
}

.pro-skating-grid .provide-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* --- 2. Общие стили для карточки --- */
.main-provide--content.pro-skating-card-new {
    width: 340px;
    height: 400px;
    background-color: #E0F2FE;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 25px rgba(0, 83, 159, 0.08);
}
.main-provide--content.pro-skating-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 83, 159, 0.15);
}
.main-provide--content.pro-skating-card-new a {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Изменено для лучшего позиционирования */
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    text-decoration: none;
    box-sizing: border-box;
}

/* --- 3. ГЛАВНОЕ: Устанавливаем картинки через CSS --- */
.card-image-wrapper-css {
    width: 100%;
    height: 220px; /* Высота для картинки */
    background-size: contain; /* Картинка вписывается целиком */
    background-repeat: no-repeat;
    background-position: center;
}

/* Картинка для ПЕРВОЙ карточки */
.pro-skating-card-new:nth-child(1) .card-image-wrapper-css {
    background-image: url(/assets/img/single_skater_pinguin.webp);
}
/* Картинка для ВТОРОЙ карточки */
.pro-skating-card-new:nth-child(2) .card-image-wrapper-css {
    background-image: url(/assets/img/hockey_skater_pinguin.webp);
}
/* Картинка для ТРЕТЬЕЙ карточки */
.pro-skating-card-new:nth-child(3) .card-image-wrapper-css {
    background-image: url(/assets/img/private_lesson_pinguin.webp);
}

/* --- 4. Стили для текста под картинкой --- */
.main-provide--content.pro-skating-card-new p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #074492;
    text-align: center;
}


/* =================================================================
   ФИНАЛЬНЫЕ СТИЛИ ДЛЯ КАРТОЧЕК КЛУБОВ (в стиле главной страницы)
   ================================================================= */

/* --- 1. Основной фон и заголовок секции --- */
.pro-skating--clubs--info {
    padding: 60px 0;
    background-color: #f0f8ff; /* Светло-голубой фон */
}
.section-subtitle {
    text-align: center;
    font-size: 42px;
    color: #074492;
    margin-bottom: 50px;
}

.club-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

/* --- 3. Стили для одной карточки (главное!) --- */
.club-card-wrapper {
    background-color: #E0F2FE; /* Фирменный голубой фон, как на главной */
    border-radius: 50px; /* Большое скругление, как на главной */
    box-shadow: 0 10px 25px rgba(0, 83, 159, 0.08);
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: center; /* Центрируем весь текст внутри карточки */
    transition: all 0.3s ease;
}
.club-card-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 83, 159, 0.15);
}

/* --- 4. Содержимое карточки --- */

/* Изображение/Логотип */
.club-card-wrapper .club-image {
    width: 100%;
    height: 150px;
    object-fit: contain; /* Чтобы логотип влезал целиком */
    margin-bottom: 20px;
}

/* Название клуба */
.club-card-wrapper .club-title {
    font-size: 28px;
    color: #074492;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 25px;
    min-height: 64px; /* Резервируем место для двух строк заголовка */
}

/* Блок с контактами */
.contacts-wrapper {
    margin: 15px 0;
    padding-top: 15px;
    border-top: 1px solid rgba(7, 68, 146, 0.1);
}
.contact-group {
    margin-bottom: 15px;
}
.contact-group__title {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
}
.contact-group__item {
    font-size: 15px;
    color: #555;
    margin: 0 0 5px 0;
    line-height: 1.4;
}
.contact-group__item strong {
    color: #000;
    font-weight: 600;
}

/* Иконки соцсетей */
.social-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 15px 0 0 0;
    margin: 15px 0 0 0;
    border-top: 1px solid rgba(7, 68, 146, 0.1);
    justify-content: center;
}
.social-links a img {
    width: 28px;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.social-links a:hover img {
    opacity: 1;
}

/* Кнопка "Перейти на сайт" */
.club-site-link {
    margin-top: auto; /* Прижимает кнопку к самому низу карточки */
    padding-top: 20px;
}
.club-site-link a {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #1A54EA;
    border-radius: 30px;
    color: #1A54EA;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.club-site-link a:hover {
    background-color: #1A54EA;
    color: #fff;
}

/* =============================================
   СТИЛИ ДЛЯ СТРАНИЦЫ "ЧАСТНЫЕ УРОКИ"
   ============================================= */

/* --- Общие стили для секции --- */
.private-lessons-info {
    padding: 60px 0;
}
.private-lessons-info .section-title {
    text-align: center; font-size: 42px; color: #074492; margin-bottom: 30px;
}
.private-lessons-info .page-about-info--content__text {
    max-width: 800px; margin: 0 auto; text-align: center;
    font-size: 18px; line-height: 1.7;
}

/* --- Секции с тренерами/инструкторами --- */
.coach-section {
    padding: 60px 0;
}
.coach-section:nth-child(odd) { /* Чередуем фон для разделения */
    background-color: #f0f8ff;
}
.coach-section .section-subtitle {
    text-align: center; font-size: 36px; color: #074492; margin-bottom: 40px;
}

/* Сетка для карточек */
.coach-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Стили для одной карточки */
.coach-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 83, 159, 0.08);
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.coach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 83, 159, 0.15);
}
.coach-card__image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid #E0F2FE;
}
.coach-card__name {
    font-size: 22px;
    font-weight: 700;
    color: #074492;
    margin-bottom: 10px;
}
.coach-card__phone {
    font-size: 18px;
    font-weight: 600;
    color: #1A54EA;
    text-decoration: none;
}
.coach-card__phone:hover {
    text-decoration: underline;
}

/* =================================================================
   НОВЫЕ СТИЛИ ДЛЯ ОРИГИНАЛЬНОЙ СТРУКТУРЫ КАТЕГОРИЙ МАГАЗИНА
   ================================================================= */

/* --- 1. Контейнер-обертка --- */
/* Превращаем его в гибкий контейнер, чтобы элементы встали в ряд */
.tabs-product {
    display: flex;
    flex-wrap: wrap; /* Разрешаем перенос на новую строку */
    justify-content: center; /* Центрируем кнопки */
    gap: 15px; /* Расстояние между кнопками */
    margin-bottom: 50px; /* Отступ до товаров */
}

/* --- 2. Убираем лишние стили у вложенных элементов --- */
.tabs-product-content,
.tabs-product-content p {
    margin: 0;
    padding: 0;
}

/* --- 3. Стилизуем ссылку, превращая ее в кнопку --- */
.tabs-product-content a {
    display: block;
    padding: 12px 25px;
    border: 2px solid #ddd;
    border-radius: 30px;
    text-decoration: none;
    color: #555;
    background-color: #f8f9fa;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

/* --- 4. Эффект при наведении --- */
.tabs-product-content a:hover {
    background-color: #e9ecef;
    border-color: #ccc;
    color: #000;
}

/* --- 5. Стиль для АКТИВНОЙ кнопки (текущая категория) --- */
/* Ищем элемент с классом .tab-active и стилизуем ссылку внутри него */
.tabs-product-content.tab-active a {
    background-color: #1A54EA;
    border-color: #1A54EA;
    color: #fff;
    cursor: default;
}
/* =============================================
   СТИЛИ ДЛЯ СТРАНИЦЫ ПРАЙС-ЛИСТА
   ============================================= */

/* --- 1. Баннер (стандартный стиль) --- */
.price-list-banner {
    position: relative; min-height: 400px; color: #fff;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.price-list-banner .page-about-main-banner--bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1;
}
.price-list-banner .page-about-main-banner--bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.price-list-banner::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(7, 68, 146, 0.45); z-index: 2;
}
.price-list-banner .page-about-main-banner--content { position: relative; z-index: 3; }
.price-list-banner h1 { font-size: 64px; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

/* --- 2. Основная секция и заголовки --- */
.price-list-section {
    padding: 60px 0;
}
.price-list-group {
    margin-bottom: 50px;
}
.price-list-group:last-child {
    margin-bottom: 0;
}
.section-subtitle {
    text-align: center; font-size: 36px; color: #074492; margin-bottom: 30px;
}

/* --- 3. Аккордеон --- */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    border: 1px solid #d4e8f7;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #fff;
}
.accordion-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f0f8ff;
}
.accordion-item__header p {
    font-size: 18px;
    font-weight: 600;
    color: #074492;
    margin: 0;
}

/* Иконка "+"/"-" */
.accordion-icon {
    width: 24px; height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}
.accordion-icon::before, .accordion-icon::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 18px; height: 3px; background-color: #074492;
    transform: translate(-50%, -50%);
}
.accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}
.accordion-item.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* Выпадающий контент */
.accordion-item__content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-item.active .accordion-item__content {
    padding: 20px;
    max-height: 500px; /* Достаточно большая высота для контента */
}
.accordion-item__content p {
    margin: 0 0 15px 0;
    line-height: 1.6;
}
.accordion-item__content span {
    font-size: 20px;
    font-weight: 700;
    color: #1A54EA;
}

/* =============================================
   СТИЛИ ДЛЯ СТРАНИЦЫ FAQ ("КОМИКС-СТИЛЬ")
   ============================================= */

/* --- 1. Баннер и основной контейнер --- */
.faq-banner {
    position: relative; min-height: 400px; color: #fff; text-align: center;
    display: flex; align-items: center; justify-content: center;
}
/* ... (стандартные стили для баннера, если нужны) ... */

.faq-section {
    padding: 60px 0;
    background-color: #f0f8ff; /* Светло-голубой фон */
}
.faq-section .section-title {
    text-align: center; font-size: 42px; color: #074492; margin-bottom: 50px;
}

/* --- 2. Контейнер для списка Q&A --- */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px; /* Расстояние между парами вопрос-ответ */
}

/* --- 3. Общий стиль для "облачка" --- */
.faq-bubble {
    position: relative;
    padding: 20px 25px;
    border-radius: 25px;
    max-width: 80%; /* Облачка не занимают всю ширину */
    box-shadow: 0 5px 15px rgba(0, 83, 159, 0.07);
}

/* --- 4. Стиль для облачка с ВОПРОСОМ (слева) --- */
.faq-bubble.question {
    align-self: flex-start; /* Прижимаем к левому краю */
    background-color: #fff;
    border: 2px solid #d4e8f7;
    margin-right: auto; /* Дополнительно прижимаем влево */
}
/* "Хвостик" для облачка с вопросом */
.faq-bubble.question::after {
    content: '';
    position: absolute;
    left: -15px; /* Снаружи слева */
    top: 20px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-right: 15px solid #fff; /* Цвет фона облачка */
    border-bottom: 15px solid transparent;
    filter: drop-shadow(-2px 2px 1px rgba(0, 83, 159, 0.05));
}

/* --- 5. Стиль для облачка с ОТВЕТОМ (справа) --- */
.faq-bubble.answer {
    align-self: flex-end; /* Прижимаем к правому краю */
    background-color: #E0F2FE; /* Фирменный голубой */
    color: #074492;
    margin-left: auto; /* Дополнительно прижимаем вправо */
}
/* "Хвостик" для облачка с ответом */
.faq-bubble.answer::after {
    content: '';
    position: absolute;
    right: -15px; /* Снаружи справа */
    top: 20px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 15px solid #E0F2FE; /* Цвет фона облачка */
    border-bottom: 15px solid transparent;
    filter: drop-shadow(2px 2px 1px rgba(0, 83, 159, 0.05));
}

/* --- 6. Текст внутри облачков --- */
.faq-text {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}
.faq-bubble.question .faq-text {
    font-weight: 600;
    color: #333;
}
.faq-text p:last-child {
    margin-bottom: 0;
}

/* =============================================
   СТИЛИ ДЛЯ СТРАНИЦЫ "ПОКУПКА БИЛЕТОВ"
   ============================================= */

/* --- 1. Баннер --- */
.buy-tickets-banner { /* Стандартные стили для баннера */ }
.buy-tickets-banner h1 { font-size: 64px; }

/* --- 2. Основная секция --- */
.buy-tickets-section {
    padding: 60px 0;
}
.buy-tickets-section .container {
    max-width: 900px; /* Делаем контент более узким для лучшей читаемости */
}

/* --- 3. Кнопка "Бронирование" --- */
.buy-tickets-cta {
    text-align: center;
    margin-bottom: 50px;
}
/* Стили для кнопки .main-provide-permission у вас уже есть, 
   просто убедимся, что они применятся */
.buy-tickets-cta .main-provide-permission {
    /* Стили наследуются */
}

/* --- 4. Основной контент (например, iframe от Megalean) --- */
.buy-tickets-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 83, 159, 0.1);
}
/* Стили для iframe, если он есть внутри контента */
.buy-tickets-content iframe {
    width: 100%;
    min-height: 800px; /* Задаем минимальную высоту, чтобы было удобно пользоваться */
    border: none;
    border-radius: 10px;
}

/* --- 5. Адаптивность --- */
@media (max-width: 768px) {
    .buy-tickets-banner h1 { font-size: 42px; }
    .buy-tickets-content { padding: 20px; }
}
/* ==========================================================================
   4. RTL (RIGHT-TO-LEFT) STYLES
   ========================================================================== */
/* --- 5. RTL (Иврит) --- */
html[dir="rtl"] .main-header {
    flex-direction: row-reverse; /* Разворачивает хедер */
}
html[dir="rtl"] .main-header-right {
    flex-direction: row-reverse; /* Разворачивает правую часть хедера */
}
html[dir="rtl"] .open-menu--links {
    right: auto;
    left: 0;
    transform: translateX(-100%); /* Скрывает меню слева */
}
/* ИСПРАВЛЕННЫЙ СЕЛЕКТОР! */
html[dir="rtl"] body.menu-open .open-menu--links {
    transform: translateX(0); /* Показывает меню */
}
html[dir="rtl"] .open-menu--links__navigation li a,
html[dir="rtl"] .open-menu--links__contacts {
    text-align: right;
}
html[dir="rtl"].menu-open .open-menu--links { transform: translateX(0); }
html[dir="rtl"] .page-about-info--content,
html[dir="rtl"] .page-about-maincontent--list,
html[dir="rtl"] #map .main-map-block { flex-direction: row-reverse; }
html[dir="rtl"] .page-about-info--content__text,
html[dir="rtl"] .page-about-maincontent--list > div,
html[dir="rtl"] #map .main-map-block--info,
html[dir="rtl"] .shop-description-box { text-align: right; }
html[dir="rtl"] .shop-description-box ul { padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .main-footer--top__info,
html[dir="rtl"] .main-footer--top__contact,
html[dir="rtl"] .main-footer--top__form p,
html[dir="rtl"] .permission-form { text-align: right; }
html[dir="rtl"] .top__form--btn { right: auto; left: 0; }
html[dir="rtl"] .fixed-perehod { right: auto; left: 0; transform: translateY(-50%) translateX(calc(-100% + 60px)); border-radius: 0 20px 20px 0; }
html[dir="rtl"] .fixed-perehod:hover { transform: translateY(-50%) translateX(0); }
html[dir="rtl"] .fixed-perehod a { flex-direction: row-reverse; }
html[dir="rtl"] .fixed-perehod:hover a span { margin-right: 5px; margin-left: 25px; }
html[dir="rtl"] .btn.btn-secondary { align-self: flex-end; }
html[dir="rtl"] .product-cart--main--top a { flex-direction: row-reverse; }
html[dir="rtl"] .product-slider { flex-direction: row-reverse; }



/* ==========================================================================
   5. RESPONSIVENESS (MEDIA QUERIES)
   ========================================================================== */


@media (max-width: 1200px) {
    /* --- ХЕДЕР: ГЛАВНОЕ ИСПРАВЛЕНИЕ --- */
    /* Скрываем текстовые кнопки и языки с помощью !important */
    .main-header-right-orders,
    .main-header-right-langs {
        display: none !important;
    }
    /* Показываем иконку-бургер */
    .main-header-right-menus {
        display: flex !important;
    }
    
    /* --- Главная страница --- */
    .main-provide { border-radius: 50px; padding: 100px 0; }
    #map { border-radius: 50px; padding: 80px 20px; }
    #map h3 { font-size: 48px; }
    #map .main-map-block { flex-direction: column; }
    
    /* --- Общие элементы --- */
    .page-about-main-banner h1, .page-about-main-banner h3 { font-size: 48px; }
    .page-about-info, .page-about-maincontent { padding: 60px 5%; }
    .page-about-info--content { flex-direction: column; }
    
    /* --- Дни Рождения --- */
    .birthday-ul-block--top a { font-size: 1em; padding: 10px 20px; }
    .page-about-maincontent--list { flex-direction: column; }
}

/* --- Мобильные устройства (до 768px) --- */
@media (max-width: 768px) {
    /* --- Глобальные изменения --- */
    h1, .page-about-main-banner h1, .page-about-main-banner h3, h1.section-title { font-size: 32px !important; }
    h2, .section-subtitle { font-size: 28px !important; }
    h3 { font-size: 24px !important; }
    
    /* --- Хедер --- */
    .main-header { height: 80px; padding: 0 15px; }
    .main-header-left-logo img { width: 100px; height: auto; }
    .iisf-logo { display: none; }
    
    /* --- Главная страница --- */
    .full-screen-video-container { height: 50vh; }
    .main-provide { border-radius: 30px; margin-top: -40px; padding: 60px 0; }
    .main-provide-container { gap: 20px; }
    .provide-row { gap: 20px; }
    .main-provide--content { width: 300px; height: 350px; }
    #map { border-radius: 30px; margin-top: -40px; padding: 60px 15px; }
    #map .main-map-block iframe { border-radius: 30px; }
    #map .main-map-block--info { border-radius: 30px; padding: 30px; }
    
    /* --- Галерея --- */
    .main-block-gallery { padding: 60px 0; }
    .gallery-container { padding: 0; }
    .main-block-gallery .swiper { padding: 0; }
    .main-block-gallery .swiper-slide { height: 220px; border-radius: 20px; }
    .main-block-gallery .swiper-button-next, .main-block-gallery .swiper-button-prev { display: none; }

    /* --- Футер --- */
    .main-footer--top { gap: 30px; }
    .main-footer--top__info, .main-footer--top__contact, .main-footer--top__href, .main-footer--top__form, .main-footer--top__partners { min-width: 100%; }
    .main-footer--bottom { margin-top: 40px; justify-content: center; text-align: center; }
    .main-footer--bottom__copyrait { justify-content: center; }
    
    /* --- Страница FAQ --- */
    .faq-bubble { max-width: 95%; }
    .faq-bubble.question::after, .faq-bubble.answer::after { display: none; }

    /* --- Карточки клубов/тренеров --- */
    .club-cards-grid, .coach-cards-grid { grid-template-columns: 1fr; }
    
    /* --- Магазин --- */
    .tabs-product-list { gap: 10px; }
    .tabs-product-item a { padding: 10px 18px; font-size: 14px; }
}

/* --- Совсем маленькие экраны (до 480px) --- */
@media (max-width: 480px) {
    /* --- Выезжающее меню --- */
    .open-menu--links { width: 100%; max-width: 100%; }
    
    /* --- Главная страница --- */
    .main-provide--content { width: 90%; max-width: 300px; height: auto; padding: 20px; }
    .main-provide--content a { justify-content: center; gap: 20px; }
    .card-image-wrapper { height: 150px; }
    
    /* --- Футер --- */
    .top__form--email { height: 50px; }
    .top__form--btn { height: 50px; }
}

/* --- Совсем маленькие экраны (до 480px) --- */
@media (max-width: 480px) {
    /* --- Выезжающее меню --- */
    .open-menu--links { width: 100%; max-width: 100%; }
    
    /* --- Главная страница --- */
    .main-provide--content { width: 90%; max-width: 300px; height: auto; padding: 20px; }
    .main-provide--content a { justify-content: center; gap: 20px; }
    .card-image-wrapper { height: 150px; }
    
    /* --- Футер --- */
    .top__form--email { height: 50px; }
    .top__form--btn { height: 50px; }
}