/* ==========================================================================
   KAYAKBERRY — styles.css
   Карта файла:
   01. Base / глобальные настройки
   02. Header / шапка сайта
   03. Breadcrumbs / хлебные крошки
   04. Routes Page / список маршрутов
   05. Frontpage / главная страница
   06. Contacts / контакты и верхние баннеры
   07. Single Route / страница маршрута
   08. Blog / блог и аренда
   09. Product / карточки товара
   10. Footer / подвал
   11. Modal / модальные окна
   12. Cart / корзина и checkout
   13. Responsive / адаптив
   14. Custom fixes / точечные правки проекта

   Важно: порядок правил сохранён. В CSS нижние правила перебивают верхние,
   поэтому я не переносила блоки местами, а только подписала зоны и добавила
   безопасные комментарии.
   ========================================================================== */

/* ==========================================================================
   01. BASE / ГЛОБАЛЬНЫЕ НАСТРОЙКИ
   Базовые стили для body, изображений, контейнера, заголовков и общих состояний.
   ========================================================================== */
:root {
    
}
* {
    scroll-behavior: smooth;   
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    box-sizing: border-box;
}
*:focus {
    outline: none;
}
picture {
    line-height: 0;
    display: block;
}
img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
button, 
input[type=submit] {
    cursor: pointer;
}
input[type=submit]:disabled {
    opacity: 0.6;
}
body {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Lato", Arial, Helvetica, sans-serif;
    color: #242424;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
main {
    overflow-x: hidden;
}
.hidden {
    display: none!important;
}
.container {
    width: 100%;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
}
h2 {
    font-family: Lato;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #242424;
}
h3 {
    font-family: Lato;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #242424;
}
h4 {
    font-family: Lato;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #242424;
}

/* ==========================================================================
   02. HEADER / ШАПКА САЙТА
   Логотип, меню, кнопки, корзина, бургер.
   ========================================================================== */
.kyak-head {
    background: #FC4353;
    padding-top: 12px;
    padding-bottom: 12px;
}
.kyak-head .header-row {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 170px auto 277px;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
}
.kyak-head .header-row .buttons li a {
    display: block;
}
.kyak-head .header-row .buttons li.cart a {
    position: relative;
}
.kyak-head .header-row .buttons li.cart span {
    position: absolute;
    right: -2px;
    bottom: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #27BD19;
    font-family: Lato;
    font-weight: 700;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    color: #fff;
}
.kyak-head .header-row .buttons li.cart.active span {
    opacity: 1;
}
.kyak-head .burger {
    display: none;
}
.kyak-head .burger button {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}
.kyak-head .logo {
    max-width: 170px;
}
.kyak-head .main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}
.kyak-head .main-menu ul li a {
    font-family: Lato;
    font-weight: 800;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding-top: 27px;
    padding-bottom: 27px;
    position: relative;
}
.kyak-head .main-menu ul li a:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 8px;
    background: #fff;
    border-radius: 24px 24px 0 0;
    scroll-behavior: smooth;   
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
}
.kyak-head .main-menu ul li.current-menu-item a:after, 
.kyak-head .main-menu ul li:hover a:after {
    opacity: 1;
}
.kyak-head .buttons ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
}
.kyak-head .buttons a.callback, 
.kyak-head .buttons button {
    height: 49px;
    width: 133px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    text-decoration: none;
}
.kyak-head .buttons a.callback {
    display: flex!important;
    align-items: center;
    justify-content: center;
    color: #242424;
}
/* Header */

/* ==========================================================================
   03. BREADCRUMBS / ХЛЕБНЫЕ КРОШКИ
   Навигационная цепочка под шапкой.
   ========================================================================== */
/* ==========================================================================
   03. BREADCRUMBS / ХЛЕБНЫЕ КРОШКИ
   ========================================================================== */

.breadcrumbs-cnt { 
    margin: 48px 0 24px;
}

.kama_breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    line-height: 18px;
}

/* Все прямые элементы внутри крошек приводим к одной высоте */
.kama_breadcrumbs > span,
.kama_breadcrumbs a,
.kama_breadcrumbs .kb_title {
    display: inline-flex;
    align-items: center;
    height: 18px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    text-decoration: none;
}

.kama_breadcrumbs a {
    color: #242424;
}

.kama_breadcrumbs .kb_title {
    color: #FC4353;
}

/* Скрываем старый текстовый символ разделителя и рисуем его заново */
.kama_breadcrumbs .kb_sep {
    width: 12px;
    height: 18px;
    flex: 0 0 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    line-height: 0;
}

.kama_breadcrumbs .kb_sep::before {
    content: ">";
    display: block;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #242424;
    position: relative;
    top: 0;
}

/* Если внутри kb_sep есть старый span.arrow — гасим его */
.kama_breadcrumbs .kb_sep .arrow {
    display: none;
}
/* Breadcrumbs */

/* ==========================================================================
   04. ROUTES PAGE / СТРАНИЦА СПИСКА МАРШРУТОВ
   Сетка карточек маршрутов, hover-затемнение, кнопка «Подробнее».
   ========================================================================== */
.kyak-routes-content {
    margin-bottom: 48px;
    min-height: calc(100vh - 380px);
}
.kyak-routes-content-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
}
.kyak-routes-content-wrap .kyak-routes-content-col {
    width: calc(33% - 10px);
}
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(4), 
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(5),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(6),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(7),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(8),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(9), 
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(10),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(11),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(12),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(13),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(14), 
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(15),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(16),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(17),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(18),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(19), 
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(20),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(21),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(22),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(23),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(24), 
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(25),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(26),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(27),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(28),
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(29), 
.kyak-routes-content-wrap .kyak-routes-content-col:nth-child(30) {
    width: calc(50% - 8px);
}
.kyak-routes-content-wrap .kyak-routes-content-col:last-child {
    margin-right: auto;
}
.kyak-routes-content-row.cols-3 {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.kyak-routes-content-row.cols-2 {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.kyak-routes-content-row+.kyak-routes-content-row {
    margin-top: 16px;
}
.kyak-routes-content-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.kyak-routes-content-col:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FAFAFAB8;
}
.kyak-routes-content-col:after {
    content: "Подробнее";
    height: 33px;
    width: calc(100% - 32px);
    max-width: 320px;
    position: absolute;
    left: calc(50% - 160px);
    bottom: 16px;
    background: #fff;
    border-radius: 8px;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    /*
    text-transform: uppercase;
    */
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-behavior: smooth;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    opacity: 0;
}
.kyak-routes-content-col:hover:before {
    background: rgba(252, 67, 83, 0.79);
}

.kyak-routes-content-col:hover:after {
    opacity: 1;
}
.kyak-routes-content-col:hover .content .title {
    color: #fff;
}
.kyak-routes-content-col .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.kyak-routes-content-col .content .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;
    padding-left: 24px;
    padding-right: 24px;
    text-align: center;
}
/* Routes Page */

/* ==========================================================================
   05.1 FRONTPAGE TOP / ПЕРВЫЙ ЭКРАН ГЛАВНОЙ
   Лого/гиф, главный CTA и вертикальное центрирование.
   ========================================================================== */
.kyak-frontpage-top {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.kyak-frontpage-top .container {
    width: 100%;
}

.frontpage-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 90px;
    padding: 0;
}

.frontpage-top-content picture,
.frontpage-top-content img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.frontpage-top-content .buttons {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.frontpage-top-content .buttons a, 
.frontpage-top-content .buttons button {
    height: 49px;
    width: 195px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.frontpage-top-content .buttons a:hover, 
.frontpage-top-content .buttons button:hover {
    background: #fd6975;
}
.frontpage-top-content .buttons a:focus, 
.frontpage-top-content .buttons button:focus {
    background: #B02935;
}
/* Frontpage Top */

/* ==========================================================================
   05.2 FRONTPAGE BANNER / БАННЕРЫ ГЛАВНОЙ
   Главный баннер и стрелки слайдеров на главной.
   ========================================================================== */
.kyak-frontpage-banner {
    position: relative;
}
.kyak-frontpage-banner img {
    min-height: 500px;
    object-fit: cover;
}
.kyak-frontpage-banner .content {
    position: absolute;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
}
.kyak-frontpage-banner .content h1 {
    font-family: Lato;
    font-weight: 700;
    font-size: 68px;
    line-height: 120%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
    max-width: 830px;
}
.kyak-frontpage-banner .content p {
    font-family: Lato;
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0em;
    color: #fff;
    margin: 0;
}
.kyak-frontpage-banner .content p+p {
    margin-top: 16px;
}
.kyak-frontpage-banner .content a, 
.kyak-frontpage-banner .content button {
    height: 49px;
    width: 195px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    margin: 16px 0 0;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.kyak-frontpage-banner-slider {
    overflow: visible!important;
}
.kyak-frontpage-banner-slider .arrow-next {
    position: absolute;
    right: -32px;
    top: calc(50% - 24px);
    z-index: 999;
}
.kyak-frontpage-banner-slider .arrow-prev {
    position: absolute;
    left: -32px;
    top: calc(50% - 24px);
    z-index: 999;
}
.kyak-frontpage-route .route-slider {
    overflow: visible!important;
}
.kyak-frontpage-route .arrow-next {
    position: absolute;
    right: -32px;
    top: calc(50% - 24px);
    z-index: 999;
}
.kyak-frontpage-route .arrow-prev {
    position: absolute;
    left: -32px;
    top: calc(50% - 24px);
    z-index: 999;
}
/* Frontpage Banner */

/* ==========================================================================
   05.3 FRONTPAGE ROUTE / БЛОК МАРШРУТОВ НА ГЛАВНОЙ
   Слайдер маршрутов, карточки и пагинация.
   ========================================================================== */
.kyak-frontpage-route {
    padding-top: 48px;
    padding-bottom: 48px;
    background-image: -webkit-image-set(url(../images/frontpage/route-bg.webp) type('image/webp'), url(../images/frontpage/route-bg.png) type('image/png'));
    background-image: image-set(url(../images/frontpage/route-bg.webp) type('image/webp'), url(../images/frontpage/route-bg.png) type('image/png'));
    background-position: top center;
    /* background-position: center -140px; */
    background-repeat: no-repeat;
    /*
    background-size: 100vw;
    */
    background-size: cover;
    overflow-x: hidden;
}
.kyak-frontpage-route h2 {
    font-family: Lato;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #242424;
    margin: 0 0 48px;
    text-align: center;
}
.kyak-frontpage-route .route-slider .route-item {
    border-radius: 26px;
    overflow: hidden;
}
.kyak-frontpage-route .route-slider {
    padding-top: 24px;
}
.kyak-frontpage-route .route-slider .route-item.swiper-slide-active {
    margin-top: -12px;
}

.kyak-frontpage-route .route-slider .route-item a {
    text-decoration: none;
    color: #fff;
}
.kyak-frontpage-route .route-slider .route-item .title {
    position: absolute;
    bottom: 24px;
    left: 32px;
    right: 32px;
    font-family: Lato;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
}
.kyak-frontpage-route .route-pagination {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
}
/* Frontpage Route */

/* ==========================================================================
   05.4 FRONTPAGE ABOUT / О КОМПАНИИ НА ГЛАВНОЙ
   Текстовые блоки, обрезка текста, слайдер фото.
   ========================================================================== */
.kyak-frontpage-about {
    background: #FAFAFA;
    padding-top: 48px;
    padding-bottom: 48px;
}
.kyak-frontpage-about h2, 
.kyak-frontpage-about h3, 
.kyak-frontpage-about h4 {
    font-family: Lato;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #242424;
}
.kyak-frontpage-about h2 {
    font-size: 35px;
    margin: 0 0 64px;
    text-align: center;
}
.kyak-frontpage-about h3 {
    font-size: 32px;
    margin: 0 0 16px;
}
.kyak-frontpage-about h4 {
    font-size: 24px;
    margin: 0 0 16px;
}
.kyak-frontpage-about p {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 0em;
    color: #A7A7A7;    
    margin: 0;
}
.kyak-frontpage-about .about-content-row.grid_two_40_60 p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
}
.kyak-frontpage-about .about-content-row.grid_two_36_64 p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 14;
    -webkit-box-orient: vertical;
}
.kyak-frontpage-about p+p {
    margin-top: 16px;
}
.kyak-frontpage-about .about-content-row+.about-content-row {
    margin-top: 24px;
}
.kyak-frontpage-about .about-content-row.grid_two_40_60 {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(40% - 24px) calc(60% - 24px);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
}
.kyak-frontpage-about .about-content-row.grid_two_36_64 {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(36% - 24px) calc(64% - 24px);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
}
.kyak-frontpage-about-slider {
    padding-top: 48px;
    padding-bottom: 48px;
}
.kyak-frontpage-about-slider .about-slider .about-item {
    border-radius: 26px;
    overflow: hidden;
}
.kyak-frontpage-about-slider .about-slider {
    padding-top: 24px;
}
.kyak-frontpage-about-slider .about-slider .about-item.swiper-slide-active {
    margin-top: -12px;
}
.fancybox-image, .fancybox-spaceball {
    border-radius: 60px;
}
.kyak-frontpage-about-slider .about-slider .about-item a {
    text-decoration: none;
    color: transparent;
}
.kyak-frontpage-about-slider .about-pagination {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
}
.kyak-frontpage-about-slider .buttons {
    margin-top: 24px;
}
.kyak-frontpage-about-slider .buttons a {
    width: 264px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 auto;
}
.kyak-frontpage-about-slider .about-slider  {
    overflow: visible!important;
}
.kyak-frontpage-about-slider .arrow-next {
    position: absolute;
    right: -32px;
    top: calc(50% - 24px);
    z-index: 999;
}
.kyak-frontpage-about-slider .arrow-prev {
    position: absolute;
    left: -32px;
    top: calc(50% - 24px);
    z-index: 999;
}
/* Frontpage About */
.wp-block-woocommerce-checkout-order-summary-coupon-form-block .wc-block-components-totals-coupon__form {
    display: flex;
    flex-direction: column;
}
.wp-block-woocommerce-checkout-order-summary-coupon-form-block .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input {
    flex: auto;
}
.wp-block-woocommerce-checkout-order-summary-coupon-form-block .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__input input {
    height: 41px;
    border: 1px solid #000000;
    border-radius: 8px;
    line-height: 100%;
    padding: 12px 16px!important;
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;    
}
.wp-block-woocommerce-checkout-order-summary-coupon-form-block .wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    background: #FC4353;
    border: none;
    border-radius: 8px;
    color: #fff;
    height: 49px;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
}
.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill+label, 
.wc-block-components-form .wc-block-components-text-input.is-active label, 
.wc-block-components-text-input input:-webkit-autofill+label, 
.wc-block-components-text-input.is-active label {
    top: -2px!important;
    transform: scale(.82);
}
.wc-block-components-form .wc-block-components-text-input label, 
.wc-block-components-text-input label {
    top: 21px!important;
}
/* ==========================================================================
   05.5 FRONTPAGE PRICE / ЦЕНЫ НА ГЛАВНОЙ
   Карточки вариантов, стоимость, hover-состояния.
   ========================================================================== */
.kyak-frontpage-price {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #FAFAFA;
}
.kyak-frontpage-price .top h2 {
    text-align: center;
    margin: 0 0 8px;
}
.kyak-frontpage-price .top {
    margin-bottom: 64px;
}
.kyak-frontpage-price .top p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    text-align: center;
}
.kyak-frontpage-price .variations {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.kyak-frontpage-price .variation-item a {
    text-decoration: none;
    position: relative;
}
.kyak-frontpage-price .variation-item a:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    opacity: 0;
    background: #FC435375;
    box-shadow: 2px 2px 23px 0px #FC43534D;
}
.kyak-frontpage-price .variation-item a:hover:before {
    opacity: 1;
}
.kyak-frontpage-price .variation-item a:focus:before {
    box-shadow: 2px 2px 17.1px 0px #FC43534D;
    background: #FC4353;
}
.kyak-frontpage-price .variation-item .desc {
    margin-top: 10px;
}
.kyak-frontpage-price .variation-item .title-cnt {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 80px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.kyak-frontpage-price .variation-item .title-cnt .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;    
    color: #242424;
}
.kyak-frontpage-price .variation-item .title-cnt .hour {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FC4353;
}
.kyak-frontpage-price .variation-item .desc-content {
    margin-top: 8px;
}
.kyak-frontpage-price .variation-item .desc-content p {
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    margin: 0;
}
.kyak-frontpage-price .variation-item .desc-content p+p {
    margin-top: 16px;
}
.kyak-frontpage-price .buttons {
    margin-top: 64px;
}
.kyak-frontpage-price .buttons button {
    width: 264px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 auto;
}
.kyak-frontpage-price .buttons button:hover {
    background: #fd6975;
}
.kyak-frontpage-price .buttons button:focus {
    background: #B02935;
}
.kyak-frontpage-price .variation-item {
    position: relative;
}
.kyak-frontpage-price .variation-item .title-new {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0em;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    text-align: center;
}
.kyak-frontpage-partners {
    background: #27BD19;
    position: relative;
    padding-top: 18px;
    padding-bottom: 18px;
}
.kyak-frontpage-partners a {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.kyak-frontpage-partners a img {
    max-height: 65px;
}
/*
.kyak-frontpage-price .variation-item a:hover picture {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.kyak-frontpage-price .variation-item a:hover picture:before {
    content: "";
    background: #FC43537D;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    scroll-behavior: smooth;   
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.kyak-frontpage-price .variation-item a:hover picture:after {
    content: "Подробнее";
    height: 48px;
    width: 272px;
    position: absolute;
    left: calc(50% - 136px);
    top: calc(50% - 24px);
    background: #fff;
    border-radius: 8px;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-behavior: smooth;   
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
*/
/* Frontpage Price */

/* ==========================================================================
   05.6 FRONTPAGE FAQ / АККОРДЕОН FAQ
   Вопросы-ответы, раскрытие контента, типографика списков.
   ========================================================================== */
.kyak-frontpage-faq {
    padding-top: 48px;
    padding-bottom: 48px;
}
.kyak-frontpage-faq .container {
    max-width: 1440px;
}
.kyak-frontpage-faq .top {
    margin-bottom: 64px;
}
.kyak-frontpage-faq h2 {
    text-align: center;
    margin: 0 0 8px;
}
.kyak-frontpage-faq .top p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    text-align: center; 
    margin: 0;
}
.faq-cnt {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-cnt .faq-item {
    background: #FAFAFA; 
    border-radius: 12px;
    padding: 24px 48px;
}
.faq-cnt .faq-item .faq-item-top {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 52px auto 52px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: center;
    cursor: pointer;
    /*
    padding-bottom: 24px;
    */
}
.faq-cnt .faq-item .faq-item-top .number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-family: Tahoma;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FC4353;
    border-radius: 8px;
}
.faq-cnt .faq-item .faq-item-top .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0em; 
    color: #242424;
}
.faq-cnt .faq-item.active .faq-item-top .plus svg path:nth-child(3) {
    opacity: 0;
}
.faq-cnt .faq-item .faq-item-content {
    height: 0;
    overflow: hidden;
    scroll-behavior: smooth;   
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.faq-cnt .faq-item.active .faq-item-content {
    height: auto;
}
.faq-cnt .faq-item .faq-item-content-wrap {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(50% - 16px) calc(50% - 16px);
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    padding-top: 32px;
}
.faq-cnt .faq-item .text h3 {
    font-size: 24px;
    margin: 0 0 16px;
}
.faq-cnt .faq-item .text h4 {
    font-size: 24px;
    margin: 0 0 16px;
}
.faq-cnt .faq-item .text p {
    font-family: Lato;
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 0em; 
    color: #A7A7A7;
    margin: 0;
}
.faq-cnt .faq-item .text p+p {
    margin-top: 4px;
}
.faq-cnt .faq-item .text p+h2,
.faq-cnt .faq-item .text p+h3,
.faq-cnt .faq-item .text p+h4,
.faq-cnt .faq-item .text p+h5,
.faq-cnt .faq-item .text p+h6 {
    margin-top: 24px;
}
.faq-cnt .faq-item .text ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.faq-cnt .faq-item .text ul li {
    position: relative;
    padding-left: 20px;
    font-family: Lato;
    font-weight: 400;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;
}
.faq-cnt .faq-item .text ul li:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0px;
    top: 8px;
    background: #FC4353;
    border-radius: 50%;
}
/* Frontpage FAQ */

/* ==========================================================================
   05.7 FRONTPAGE MAP / КАРТА И КОНТАКТНЫЙ БЛОК
   Карта, табы, адреса, соцсети, кнопка маршрута.
   ========================================================================== */
.kyak-frontpage-map {
    background: #FAFAFA;
    padding-top: 48px;
    padding-bottom: 48px;
}
.kyak-frontpage-wrap {
    box-shadow: 0px 5px 36.6px 0px #0000001A;
    border-radius: 26px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(50% - 0px) calc(50% - 0px);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
}
.kyak-frontpage-wrap .map-tabs {
    min-height: 425px;
    height: 100%;
    position: relative;
}
.kyak-frontpage-wrap .map-tabs .map-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.kyak-frontpage-wrap .map-tabs .map-tab.active {
    z-index: 999;
}
.kyak-frontpage-wrap .map-tabs .map-tab iframe {
    width: 100%;
    height: 100%;
}
.kyak-frontpage-wrap .buttons {
    z-index: 9999;
    position: relative;
    bottom: 75px;
    right: 24px;
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}
.kyak-frontpage-wrap .buttons button {
    height: 49px;
    width: 140px;
    background: #FFFFFF;
    border-radius: 8px;
    border: none;
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
}
.kyak-frontpage-wrap .buttons button.active {
    background: #242424;
    color: #fff;
}
.kyak-frontpage-wrap .col-content {
    padding: 40px 16px 40px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 32px;
}
.kyak-frontpage-wrap .col-content .text-content .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0em;
    margin: 0 0 8px;
    color: #242424;
}
.kyak-frontpage-wrap .col-content .text-content p {
    font-family: Lato;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0em;   
    color: #A7A7A7;
    margin: 0;
}
.kyak-frontpage-wrap .col-content .address-content p {
    font-family: Lato;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0em;    
    color: #A7A7A7;
    margin: 0 0 8px;
}
.kyak-frontpage-wrap .col-content .address-content .address {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;
    margin: 0 0 16px;
}
.kyak-frontpage-wrap .col-content .address-content .soc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}
.kyak-frontpage-wrap .col-content .address-content .soc ul a {
    display: flex;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
}
.kyak-frontpage-wrap .col-content .button-route a {
    width: 194px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    
}
.kyak-frontpage-wrap .col-content .button-route a:hover {
    background: #fd6975;
}
.kyak-frontpage-wrap .col-content .button-route a:focus {
    background: #B02935;
}
/* Frontpage Map */

/* ==========================================================================
   06.1 CONTACTS TOP / ВЕРХНИЙ БАННЕР КОНТАКТОВ И АРЕНДЫ
   Фоновое изображение, большой заголовок, кнопка.
   ========================================================================== */
.kyak-contacts-top {
    min-height: 510px;
    padding-top: 48px;
    padding-bottom: 48px;
    background-image: -webkit-image-set(url(../images/contacts/top-bg.webp) type('image/webp'), url(../images/contacts/top-bg.png) type('image/png'));
    background-image: image-set(url(../images/contacts/top-bg.webp) type('image/webp'), url(../images/contacts/top-bg.png) type('image/png'));
    background-position: top center;
    /* background-position: center -140px; */
    background-repeat: no-repeat;
    /*
    background-size: 100vw;
    */
    background-size: cover;
    overflow-x: hidden;
    display: flex;
    align-items: center;
}
.contacts-top-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contacts-top-content .content .title p,
.contacts-top-content .content .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 68px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 16px;
}
.contacts-top-content .content p {
    font-family: Lato;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #fff;
}
.contacts-top-content .buttons a, 
.contacts-top-content .buttons button {
    height: 49px;
    width: 242px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.contacts-top-content .buttons a:hover, 
.contacts-top-content .buttons button:hover {
    background: #fd6975;
}
.contacts-top-content .buttons a:focus, 
.contacts-top-content .buttons button:focus {
    background: #B02935;
}
/* Contacts Top */

/* ==========================================================================
   06.2 CONTACTS CONTENT / КОНТЕНТ КОНТАКТОВ
   Заголовок, подпись, социальные ссылки.
   ========================================================================== */
.kyak-contacts-content {
    background: #FAFAFA;
    padding-top: 48px;
    padding-bottom: 48px;
}
.kyak-contacts-content .text h1 {
    font-family: Lato;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;  
    margin: 0 0 8px;
    color: #242424;
    text-align: center;
}
.kyak-contacts-content .text {
    margin-bottom: 64px;
}
.kyak-contacts-content .text p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    text-align: center;
}
.kyak-contacts-content .soc ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 64px;
    justify-content: center;
}
.page-template-page-contacts .kyak-frontpage-map {
    background: #fff;
}
/* Contacts Content */

/* ==========================================================================
   07.1 SINGLE ROUTE TOP / ПЕРВЫЙ ЭКРАН СТРАНИЦЫ МАРШРУТА
   Hero-блок маршрута: фон, заголовок, форма бронирования.
   ========================================================================== */
.single-route-top {
    position: relative;
}
.single-route-top .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.single-route-top .single-route-top-wrap {
    width: 100%;
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(55% - 24px) calc(45% - 24px);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
}
.single-route-top .single-route-top-text h1 {
    margin: 0 0 16px;
    font-family: Lato;
    font-weight: 700;
    font-size: 68px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #242424;
}
.single-route-top .single-route-top-text h1 strong {
    color: #FC4353;
    font-weight: 700;
}
.single-route-top .single-route-top-text p {
    margin: 0;
    font-family: Lato;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;
}
.single-route-top .single-route-top-text p+p {
    margin-top: 16px;
}
.single-route-top .single-route-top-form {
    background: #FFFFFFBF;
    box-shadow: 0px 5px 36.6px 0px #00000040;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 26px;
    padding: 24px 32px;
}
.single-route-top .single-route-top-form .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0em;
    margin: 0 0 16px;
}
.single-route-top .single-route-top-form .form-row.two-field {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(50% - 8px) calc(50% - 8px);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.single-route-top .single-route-top-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.single-route-top .single-route-top-form .form-field label {
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #00000066;
}
.single-route-top .single-route-top-form .form-field select,
.single-route-top .single-route-top-form .form-field input[type=text],
.single-route-top .single-route-top-form .form-field input[type=number] {
    padding: 12px 16px;
    background: #E8E8E8;
    border-radius: 8px;
    border: none;
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #000;
}
.single-route-top .single-route-top-form .form-row+.form-row {
    margin-top: 16px;
}   
.single-route-top .single-route-top-form .form-row.ticket-count {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 80px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: center;
}
.single-route-top .single-route-top-form .form-row.ticket-count .title {
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}
.single-route-top .single-route-top-form .form-row.ticket-count .count {
    font-family: Lato;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #000;
    text-align: right;
}
.single-route-top .single-route-top-form .form-row.submit-row {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 100px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: center;
}
.single-route-top .single-route-top-form .form-row.submit-row button {
    height: 49px;
    width: 100px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
}
.single-route-top .single-route-top-form .form-row.submit-row button:hover {
    background: #fd6975;
}
.single-route-top .single-route-top-form .form-row.submit-row button:focus {
    background: #B02935;
}
.single-route-top .single-route-top-form .form-row.submit-row .politika-cnt label {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 16px auto;
    grid-column-gap: 6px;
    grid-row-gap: 6px;
}
.single-route-top .single-route-top-form .form-row.submit-row .politika-cnt span,
.single-route-top .single-route-top-form .form-row.submit-row .politika-cnt span a {
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #00000066;
}
.single-route-top .single-route-top-form .form-row.submit-row .politika-cnt input[type=checkbox] {
    margin: 0;
    padding: 0;
}
/* Single Route Top */

/* ==========================================================================
   07.2 SINGLE ROUTE ABOUT / ОПИСАНИЕ МАРШРУТА
   Блок описания маршрута теперь использует структуру .kyak-product-desc,
   а блок каяков и цен — структуру .kyak-page-blog, как на странице ПГМ.
   ========================================================================== */

body.page-template-page-route main {
    background: #FFF;
}

body.page-template-page-route main .kyak-frontpage-faq {
    background: #FFF;
}

/* Отступ блока "О маршруте" на страницах маршрутов */
body.page-template-page-route .kyak-product-desc {
    padding-bottom: 48px;
}
/* ==========================================================================
   SINGLE ROUTE ABOUT / СВЕРНУТЫЙ ТЕКСТ ПО ВЫСОТЕ КАРТИНКИ
   ========================================================================== */

@media (min-width: 768px) {
    body.page-template-page-route .kyak-product-desc .product-desc-content {
        align-items: flex-start !important;
    }

    body.page-template-page-route .kyak-product-desc .product-desc-col:first-child {
        align-self: flex-start !important;
    }

    body.page-template-page-route .kyak-product-desc .product-desc-col:first-child picture,
    body.page-template-page-route .kyak-product-desc .product-desc-col:first-child img {
        display: block !important;
    }

    /* Правая колонка: высота вместе с кнопкой примерно как у картинки */
    body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt {
        height: 302px !important;
        max-height: 302px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt h2 {
        flex-shrink: 0 !important;
        margin: 0 0 16px !important;
    }

    /* Свернутое состояние: текст занимает всё доступное место до кнопки */
    body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt .text {
        width: 100% !important;
        flex: 1 1 auto !important;
        max-height: none !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding-right: 16px !important;
        margin-bottom: 24px !important;
    }

   /* Прячем скроллбар только в свернутом состоянии */
body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt:not(.scrolled) .text::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt:not(.scrolled) .text {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* В раскрытом состоянии возвращаем видимый скроллбар */
body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt.scrolled .text::-webkit-scrollbar {
    width: 6px !important;
}

body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt.scrolled .text::-webkit-scrollbar-track {
    background: #F0F0F0 !important;
    border-radius: 999px !important;
}

body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt.scrolled .text::-webkit-scrollbar-thumb {
    background: #D9D9D9 !important;
    border-radius: 999px !important;
}

body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt.scrolled .text {
    scrollbar-width: thin !important;
    scrollbar-color: #D9D9D9 #F0F0F0 !important;
    -ms-overflow-style: auto !important;
}

    /* Раскрытое состояние: колонка становится выше, но текст всё равно ограничен */
    body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt.scrolled {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt.scrolled .text {
        flex: none !important;
        max-height: 460px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding-right: 16px !important;
        margin-bottom: 24px !important;
    }

    /* Кнопка всегда внизу правой колонки */
    body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt .buttons {
        position: static !important;
        display: block !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 1 !important;
        flex-shrink: 0 !important;
    }

    body.page-template-page-route .kyak-product-desc .product-desc-col.text-cnt button.read-more {
        margin-top: 0 !important;
    }
}
/* ==========================================================================
   ARENDA KAYAK ABOUT / ТЕКСТ СПРАВА СО СКРОЛЛОМ
   ========================================================================== */

@media (min-width: 768px) {
    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-content {
        align-items: flex-start !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col:first-child {
        align-self: flex-start !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col:first-child picture,
    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col:first-child img {
        display: block !important;
    }

    /* Правая колонка: высота вместе с кнопкой примерно как у картинки */
    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt {
        height: 302px !important;
        max-height: 302px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt h2 {
        flex-shrink: 0 !important;
        margin: 0 0 16px !important;
    }

    /* Свернутое состояние: текст занимает место до кнопки */
    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt .text {
        width: 100% !important;
        flex: 1 1 auto !important;
        max-height: none !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding-right: 16px !important;
        margin-bottom: 24px !important;
    }

    /* Прячем скроллбар только в свернутом состоянии */
    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt:not(.scrolled) .text::-webkit-scrollbar {
        width: 0 !important;
        height: 0 !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt:not(.scrolled) .text {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }

    /* Раскрытое состояние: выше, но не бесконечно */
    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt.scrolled {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt.scrolled .text {
        flex: none !important;
        max-height: 460px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding-right: 16px !important;
        margin-bottom: 24px !important;
    }

    /* В раскрытом состоянии показываем скроллбар */
    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt.scrolled .text::-webkit-scrollbar {
        width: 6px !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt.scrolled .text::-webkit-scrollbar-track {
        background: #F0F0F0 !important;
        border-radius: 999px !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt.scrolled .text::-webkit-scrollbar-thumb {
        background: #D9D9D9 !important;
        border-radius: 999px !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt.scrolled .text {
        scrollbar-width: thin !important;
        scrollbar-color: #D9D9D9 #F0F0F0 !important;
        -ms-overflow-style: auto !important;
    }

    /* Кнопка всегда внизу правой колонки */
    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt .buttons {
        position: static !important;
        display: block !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 1 !important;
        flex-shrink: 0 !important;
    }

    body.page-template-template-arenda-kayak .kyak-product-desc .product-desc-col.text-cnt button.read-more {
        margin-top: 0 !important;
    }
}
/* ==========================================================================
   07.3 SINGLE ROUTE GALLERY / ГАЛЕРЕЯ МАРШРУТА
   Основной слайдер изображений и миниатюры.
   ========================================================================== */
.kyak-single-route-slider {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #FAFAFA;
}

/* Обёртка большого фото */
.kyak-single-route-slider-images-wrap {
    position: relative;
}

/* Большой слайдер: один видимый слайд, скругление, тень и фиксированная пропорция */
.kyak-single-route-slider-images {
    width: 100%;
    aspect-ratio: 1280 / 577;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 5px 36.6px rgba(0, 0, 0, 0.10);
    line-height: 0;
}

/* Внутренности Swiper растягиваем на высоту большого блока */
.kyak-single-route-slider-images .swiper-wrapper,
.kyak-single-route-slider-images .swiper-slide {
    height: 100%;
}

.kyak-single-route-slider-images .swiper-slide {
    overflow: hidden;
    border-radius: 40px;
    line-height: 0;
}

/* Любое изображение полностью заливает блок */
.kyak-single-route-slider-images .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

/* Стрелки большого слайдера */
.kyak-single-route-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
    line-height: 0;
}

.kyak-single-route-slider-arrow-prev {
    left: -21px;
}

.kyak-single-route-slider-arrow-next {
    right: -21px;
}

.kyak-single-route-slider-arrow svg {
    display: block;
    width: 42px;
    height: 42px;
}

/* Миниатюры */
.kyak-single-route-slider-thumbs {
    margin-top: 12px;
    overflow: hidden;
}

.kyak-single-route-slider-thumbs .swiper-slide {
    border-radius: 24px;    
    border: 3px solid transparent;
    line-height: 0;
}

.kyak-single-route-slider-thumbs .swiper-slide img {
    /*
    width: 86px;
    */
    height: 86px;
    border-radius: 24px;
    object-fit: cover;
    width: 100%;
}

.kyak-single-route-slider-thumbs .swiper-slide.swiper-slide-thumb-active {
    border: 3px solid #FC4353;
}
/* Single Route Slider */

/* ==========================================================================
   07.4 SINGLE OTHER ROUTES / ДРУГИЕ МАРШРУТЫ
   Карточки рекомендаций под страницей маршрута.
   ========================================================================== */
.kyak-single-other-routes {
    /*
    background: #F0F0F0;
    */
    background: #FFF;
    padding-top: 32px;
    padding-bottom: 32px;
}
.kyak-single-other-routes-text h2 {
    margin: 0 0 8px;
    text-align: center;
}
.kyak-single-other-routes-text p.sibtitle {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    text-align: center;
    margin: 0 0 64px;
    color: rgb(36 36 36 / 40%);
}
.kyak-single-other-routes-wrap {
    /*
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;
    */
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(50% - 8px) calc(50% - 8px);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.kyak-single-other-routes-item {
    /*
    width: calc(33% - 12px);
    */
    width: 100%;
    min-height: 252px;
    background: #FAFAFA;
    border-radius: 20px;
    /*
    border: 2px solid #FAFAFA;
    */
    border: none;
    position: relative;
    cursor: pointer;
}
.kyak-single-other-routes-item:hover {
    /*
    background: #FC4353;
    box-shadow: 2px 2px 17.1px 0px #FC43534D;
    border: 2px solid #FC4353;
    */
}
/*
.kyak-single-other-routes-item:nth-child(1) {
    width: calc(50% - 12px);
}
.kyak-single-other-routes-item:nth-child(2) {
    width: calc(25% - 12px);
}
.kyak-single-other-routes-item:nth-child(3) {
    width: calc(25% - 12px);
}
*/
.kyak-single-other-routes-item a {
    text-decoration: none;
    color: #242424;
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0em;
    /*
    padding: 24px;
    */
    display: block;
    height: 100%;
    padding: 0;
    position: relative;
}
.kyak-single-other-routes-item a picture {
    height: 100%;
}
.kyak-single-other-routes-item a picture img {
    object-fit: cover;
    height: 100%;
    border-radius: 20px;
}
.kyak-single-other-routes-item:hover a {
    color: #fff;
}
.kyak-single-other-routes-item a:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #FC435375;
    box-shadow: 2px 2px 23px 0px #FC43534D;
    scroll-behavior: smooth;   
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 20px;
    opacity: 0;
}
.kyak-single-other-routes-item:hover a:after {
    opacity: 1;
}
.kyak-single-other-routes-item:hover:after {
    content: "";
    /*
    content: "Подробнее";
    height: 33px;
    width: calc(100% - 48px);
    max-width: 327px;
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: #fff;
    border-radius: 8px;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FC4353;
    display: flex;
    justify-content: center;
    align-items: center;
    */
    scroll-behavior: smooth;   
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.kyak-single-other-routes-item a .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0em;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 999;
    width: 100%;
    text-align: center;
}
/* Single Other Routes */

/* ==========================================================================
   07.5 SINGLE ROUTE REVIEWS / ОТЗЫВЫ МАРШРУТА
   Слайдер отзывов и его отдельная пагинация.
   ========================================================================== */
.kyak-single-route-reviews {
    background: #fff;
    padding-top: 48px;
    padding-bottom: 48px;
}
.kyak-single-route-reviews h2 {
    text-align: center;
    margin: 0 0 8px;
}
.kyak-single-route-reviews-top {
    margin-bottom: 64px;
}
.kyak-single-route-reviews-top p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    text-align: center;
}
.kyak-single-route-reviews-slider .route-reviews-item {
    background: #FAFAFA;
    padding: 24px;
    border-radius: 24px;
}
.kyak-single-route-reviews-slider .route-reviews-item .top {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 80px auto;
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    align-items: center;
    margin-bottom: 16px;
}
.kyak-single-route-reviews-slider .route-reviews-item .top img {
    border-radius: 50%;
}
.kyak-single-route-reviews-slider .route-reviews-item .top .name {
    font-family: Lato;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #000;
}
.kyak-single-route-reviews-slider .route-reviews-item .middle .text {
    font-family: Lato;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0em;
    margin-bottom: 16px;
    color: #000000;
}
.kyak-single-route-reviews-slider .route-reviews-item .middle .stars {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.kyak-single-route-reviews .route-pagination-cnt {
    margin-top: 24px;
    display: flex;
    gap: 16px;
    justify-content: center;
}
/* Single Route Reviews */

/* ==========================================================================
   07.6 SINGLE TEXT / ТЕКСТОВЫЕ СТРАНИЦЫ
   Универсальная типографика для простого текстового контента.
   ========================================================================== */
.kyak-single-text-content {
    margin-bottom: 48px;
}
.kyak-single-text-content h1 {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;
    margin: 0 0 24px;
}
.kyak-single-text-content p {
    font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0em;
    color: #A7A7A7;
    margin: 16px 0;
}
.kyak-single-text-content p strong {
    color: #000;
}
.kyak-single-text-content ol, 
.kyak-single-text-content ul {
    padding-left: 20px;
    margin: 16px 0;
}
.kyak-single-text-content ol li, 
.kyak-single-text-content ul li {
    font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0em;
    color: #A7A7A7;
}

/* ==========================================================================
   08.1 CERTIFICATE / СЕРТИФИКАТЫ
   Сетка сертификатов.
   ========================================================================== */
.kyak-page-cert {
    margin-bottom: 48px;
}
.kyak-page-cert-wrap {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}

/* ==========================================================================
   08.2 BLOG / БЛОГ И СПИСОК КАРТОЧЕК
   Фильтры, сортировка, карточки, изображения, кнопки.
   ========================================================================== */
.kyak-page-blog-top {
    border-bottom: 1px solid #A7A7A7;
    margin-top: 40px;
    margin-bottom: 24px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
}
.kyak-page-blog-top .years ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}
.kyak-page-blog-top .years ul li {
    padding-bottom: 10px;
    font-family: Lato;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;
    position: relative;
    cursor: pointer;
}    
.kyak-page-blog-top .years ul li.active {
    color: #FC4353;
}
.kyak-page-blog-top .years ul li.active:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    border-radius: 24px 24px 0 0;
    background: #FC4353;
}




.kyak-page-blog-top .sort {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: flex-end;
}
.kyak-page-blog-top .sort .title {
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;
}
.kyak-page-blog-top .sort .list {
    position: relative;
}
.kyak-page-blog-top .sort .current {
    display: flex;
    align-items: center;
    gap: 4px;
}
.kyak-page-blog-top .sort .current span {
    font-family: Lato;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0em;
}
.kyak-page-blog-top .sort .list-cnt {
    display: none;
    position: absolute;
    right: 0;
    z-index: 99999;
    padding-top: 5px;
}
.kyak-page-blog-top .sort .list:hover .list-cnt {
    display: block;
}
.kyak-page-blog-top .sort .list ul {
    background: #FFFFFF;
    box-shadow: 0px 10px 19.9px 0px #00000033;
    border-radius: 12px 16px 12px 16px;
    padding: 12px 16px;
    list-style: none;
    width: 180px;
    margin: 0;
    /* z-index: 99999; */
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kyak-page-blog-top .sort .list ul li {
    font-family: Lato;
    font-weight: 700;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #000000;
    padding: 12px 14px;
    position: relative;
    cursor: pointer;
}
.kyak-page-blog-top .sort .list ul li.active, 
.kyak-page-blog-top .sort .list ul li:hover {
    /*
    background: #FC435366;
    border-radius: 8px;
    */
}
.kyak-page-blog-top .sort .list ul li.active:after {
    content: "";
    position: absolute;
    right: 14px;
    top: calc(50% - 5px);
    width: 14px;
    height: 10px;
    background: url(../images/blog/sort-item-active.svg) center center no-repeat;
    background-size: contain;
}
.kyak-page-blog-wrap {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 24px;
}
.kyak-page-blog-wrap .kyak-page-blog-item a {
    color: #242424;
    text-decoration: none;
    position: relative;
}
.kyak-page-blog-wrap .kyak-page-blog-item .image {
    margin-bottom: 10px;
}
.kyak-page-blog-wrap .kyak-page-blog-item .name {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 80px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-bottom: 10px;
    align-items: center;
}
.kyak-page-blog-wrap .kyak-page-blog-item .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;    
    color: #242424;
    border-bottom: 1px solid transparent;
    width: fit-content;
}
.kyak-page-blog-wrap .kyak-page-blog-item .date {
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FC4353;
}
.kyak-page-blog-wrap .kyak-page-blog-item .text {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;    
    height: 85px;
    overflow: hidden;
}
.kyak-page-blog-wrap .kyak-page-blog-item .specifications {
    margin-top: 16px;
}
.kyak-page-blog-wrap .kyak-page-blog-item .specification_item .named,
.kyak-page-blog-wrap .kyak-page-blog-item .specification_item .separator,
.kyak-page-blog-wrap .kyak-page-blog-item .specification_item .value {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
}
.kyak-page-blog-wrap .kyak-page-blog-item:hover .title {
    color: #FC4353;
    border-bottom: 1px solid #FC4353;
}
.kyak-page-blog-wrap .kyak-page-blog-item:hover .text {
    color: #242424;
}
/* .kyak-page-blog-wrap .kyak-page-blog-item picture {
    position: relative;
}
.kyak-page-blog-wrap .kyak-page-blog-item:hover picture:before {
    content: "";
    background: #FC43537D;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    scroll-behavior: smooth;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
} */
.kyak-page-blog-content .kyak-page-blog-buttons {
    margin-top: 24px;
    /*
    margin-bottom: 48px;
    */
    text-align: center;
}
.kyak-page-blog .kyak-page-blog-content {
    margin-bottom: 48px;
}
.kyak-page-blog-content .kyak-page-blog-buttons button {
    width: 180px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 auto;
}
.kyak-page-blog-content .kyak-page-blog-buttons button:hover {
    background: #fd6975;
}
.kyak-page-blog-content .kyak-page-blog-buttons button:focus {
    background: #B02935;
}
body.page-template-page-blog .single-route-top picture img {
    min-height: 369px;
    object-fit: cover;
}
body.page-template-page-blog .single-route-top .single-route-top-text p {
    font-size: 20px;
    color: #FFFFFF;
}
body.page-template-page-blog .single-route-top .single-route-top-text p.big {
    font-weight: 700;
    font-size: 28px;
}
body.page-template-page-blog .single-route-top .single-route-top-wrap {
    align-items: center;
}
body.page-template-page-blog .kyak-frontpage-route {
    background: #fff;
}
body.page-template-page-blog .kyak-frontpage-route h2 {
    margin: 0 0 8px;
}
body.page-template-page-blog .kyak-frontpage-route p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #24242466;
    text-align: center;
    margin: 0 0 64px;
}
body.page-template-page-blog .kyak-frontpage-map {
    background: #FFF;
}

/* ==========================================================================
   08.3 ARENDA / СТРАНИЦА АРЕНДЫ
   Карточки аренды, hover «БЕРУ», фон ПГМ и стили страницы аренды.
   ========================================================================== */

.kyak-page-blog .kyak-page-blog-wrap .kyak-page-blog-item .image {
    width: 100%;
    height: 360px;
    margin-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.kyak-page-blog .kyak-page-blog-wrap .kyak-page-blog-item .image picture {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
}

.kyak-page-blog .kyak-page-blog-wrap .kyak-page-blog-item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.kyak-page-blog .kyak-page-blog-wrap .kyak-page-blog-item .image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FC4353;
    border-radius: inherit;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
    z-index: 2;
    box-shadow: none;
}

.kyak-page-blog .kyak-page-blog-wrap .kyak-page-blog-item .image:hover::before {
    opacity: 0.49;
}

.kyak-page-blog .kyak-page-blog-wrap .kyak-page-blog-item .image::after {
    content: "БЕРУ";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 272px;
    height: 48px;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 8px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
    z-index: 3;
}

.kyak-page-blog .kyak-page-blog-wrap .kyak-page-blog-item .image:hover::after {
    opacity: 1;
}

/* На этих страницах оставляем затемнение, но убираем кнопку "БЕРУ" */
body.page-id-12 .kyak-page-blog-item .image::after,
body.page-id-12 .kyak-page-blog-item .image:hover::after,
body.page-id-606 .kyak-page-blog-item .image::after,
body.page-id-606 .kyak-page-blog-item .image:hover::after {
    display: none !important;
    opacity: 0 !important;
}

.kyak-page-blog .kyak-page-blog-wrap .kyak-page-blog-item .arenda-tour {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0em;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
    text-align: center;
}

body.page-template-page-arenda .kyak-frontpage-route {
    background: #FAFAFA;
    position: relative;
}
body.page-template-page-arenda .kyak-page-blog-wrap .kyak-page-blog-item .name,
body.page-template-page-route .kyak-page-blog-wrap .kyak-page-blog-item .name {
    grid-template-columns: auto 125px;
    margin-bottom: 0px;
    align-items: center;
}
body.page-template-page-arenda .kyak-page-blog-wrap .kyak-page-blog-item .name .date,
body.page-template-page-route .kyak-page-blog-wrap .kyak-page-blog-item .name .date {
    font-size: 20px;
    color: #242424;
}

body.page-template-page-route .kyak-page-blog {
    background: #FAFAFA;
    padding-top: 48px;
    padding-bottom: 48px;
}

body.page-template-page-route .kyak-page-blog .top {
    margin-bottom: 64px;
}

body.page-template-page-route .kyak-page-blog .top h2 {
    text-align: center;
    margin: 0 0 8px;
}

body.page-template-page-route .kyak-page-blog .top p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    text-align: center;
    margin: 0;
}
body.page-template-page-arenda .kyak-frontpage-route h2 {
    margin: 0 0 8px;
}
body.page-template-page-arenda .kyak-frontpage-route p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #24242466;
    text-align: center;
    margin: 0 0 64px;
}

.kyak-contacts-top.arenda-top {
    background: #AA5353;
}

body.page-id-768 .kyak-contacts-top.arenda-top {
    background-color: #AA5353;
    background-image: url('https://kayakberry.ru/wp-content/uploads/2026/05/bg_3.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ==========================================================================
   09. PRODUCT SINGLE / СТРАНИЦА ТОВАРА
   Описание товара, изображение, обрезка текста, похожие маршруты/товары.
   ========================================================================== */
.product-desc-content {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(50% - 24px) calc(50% - 24px);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    align-items: center;
}

.kyak-product-desc .product-desc-col picture {
    display: block;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0px 5px 36.6px rgba(0, 0, 0, 0.1);
}

.kyak-product-desc .product-desc-col picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-desc-content h2 {
    font-size: 28px;
    margin: 0 0 16px;
}
.product-desc-content p {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    margin: 0 0 24px;
}
.product-desc-content .buttons a, 
.product-desc-content .buttons button {
    height: 49px;
    width: 206px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.kyak-product-desc .product-desc-col.text-cnt {
    height: 270px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.kyak-product-desc .product-desc-col.text-cnt h2 {
    flex-shrink: 0;
}

.kyak-product-desc .product-desc-col.text-cnt .text {
    max-height: 190px;
    overflow: hidden;
    min-height: 0;
}

.kyak-product-desc .product-desc-col.text-cnt .buttons {
    flex-shrink: 0;
}

/* После нажатия блок НЕ увеличивается, скролл появляется внутри текста */
.kyak-product-desc .product-desc-col.text-cnt.scrolled {
    max-height: none;
    overflow: visible;
}

.kyak-product-desc .product-desc-col.text-cnt.scrolled .text {
    flex: 1;
    max-height: none;
    overflow-y: auto;
    padding-right: 8px;
}



.kyak-product-desc .product-desc-col.text-cnt .text::-webkit-scrollbar {
    width: 5px;
}

.kyak-product-desc .product-desc-col.text-cnt .text::-webkit-scrollbar-track {
    background: transparent;
}

.kyak-product-desc .product-desc-col.text-cnt .text::-webkit-scrollbar-thumb {
    background: #EBEFF8;
    border-radius: 20px;
}


.kyak-product-desc .product-desc-col.text-cnt .text p {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    margin: 0 0 16px;
}

.kyak-product-desc .product-desc-col.text-cnt .text p:last-child {
    margin-bottom: 0;
}

.kyak-product-desc .product-desc-col.text-cnt button.read-more {
    height: 49px;
    width: 206px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-top: 24px;
}

.kyak-product-desc .product-desc-col.text-cnt button.read-more:hover {
    background: #fd6975;
}

.kyak-product-desc .product-desc-col.text-cnt button.read-more:focus {
    background: #B02935;
}

/* Дублирующий блок .kyak-product-desc удалён: оставлена первая версия выше. */
body.page-template-page-product .kyak-page-blog {
    background: #FAFAFA;
    padding-top: 48px;
    padding-bottom: 48px;
}
body.page-template-page-product .kyak-page-blog .top {
    margin-bottom: 64px;
}
body.page-template-page-product .kyak-page-blog .top h2 {
    text-align: center;
    margin: 0 0 8px;
}
body.page-template-page-product .kyak-page-blog .top p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    text-align: center;
}
body.page-template-page-product .kyak-page-blog-wrap .kyak-page-blog-item .name {
    grid-template-columns: auto 125px;
    margin-bottom: 0px;
    align-items: center;
}
body.page-template-page-product .kyak-page-blog-wrap .kyak-page-blog-item .name .date {
    font-size: 20px;
    color: #242424;
}
.kyak-product-desc {
    padding-bottom: 48px;
}
body.page-template-page-product .single-route-top .single-route-top-wrap {
    align-items: center;
}
body.page-template-page-product .single-route-top {
    min-height: 369px;
    background: #FC4353;
    padding-top: 48px;
    padding-bottom: 48px;
}
body.page-template-page-product .single-route-top .single-route-top-text p.big {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FFFFFF;
    margin: 0 0 16px;
}
body.page-template-page-product .single-route-top .single-route-top-text p {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FFFFFF;
    margin: 0;
}
body.page-template-page-product .kyak-single-route-slider {
    background: #FAFAFA;    
}
body.page-template-page-product .kyak-frontpage-route {
    background: #fff;
}
body.page-template-page-product .kyak-frontpage-route h2 {
    margin: 0 0 8px;
}
body.page-template-page-product .kyak-frontpage-route p {
    font-family: Lato;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #24242466;
    margin: 0 0 64px;
    text-align: center;
}
body.page-template-page-product .kyak-frontpage-route .route-item-item+.route-item-item {
    margin-top: 16px;
}
body.page-template-page-product .kyak-frontpage-route .route-item-item a {
    position: relative;
    max-height: 252px;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}
body.page-template-page-product .kyak-frontpage-route .route-item-item a picture {
    max-height: 252px;
}
body.page-template-page-product .kyak-frontpage-route .route-item-item a picture img {
    object-fit: cover;
    height: 100%;
    max-height: 252px;
}
body.page-template-page-product .kyak-frontpage-route .route-item-item a .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0em;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 999;
    width: 100%;
    text-align: center;
}    
body.page-template-page-product .kyak-frontpage-route .route-item-item a:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #FC435375;
    box-shadow: 2px 2px 23px 0px #FC43534D;
    scroll-behavior: smooth;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    border-radius: 20px;
    opacity: 0;
}
body.page-template-page-product .kyak-frontpage-route .route-item-item:hover a:before {
    opacity: 1;
}
/* ==========================================================================
   08.4 BLOG SINGLE / ДЕТАЛЬНАЯ СТРАНИЦА БЛОГА
   Обложка, заголовки, текст, колонки WordPress.
   ========================================================================== */
.kyak-blog-single {
    margin-bottom: 48px;
}
.kyak-blog-single-content .image {
    margin-bottom: 32px;
}
.kyak-blog-single-content .text h1 {
    font-family: Lato;
    font-weight: 700;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0em;    
    color: #242424;
    margin: 0 0 16px;
}
.kyak-blog-single-content .text h2 {
    font-family: Lato;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0%;    
    margin: 0 0 24px;
}
.kyak-blog-single-content .text p {
    font-family: Lato;
    font-weight: 400;
    font-size: 22px;
    line-height: 110%;
    letter-spacing: 0em;    
    font-size: 20px;
    line-height: 120%;
    color: #A7A7A7;
    margin: 0;
}
.kyak-blog-single-content .text p strong {
    font-size: 22px;
    line-height: 110%;
    color: #242424;
}
.kyak-blog-single-content .text p+h2 {
    margin-top: 32px;
}
.kyak-blog-single-content .text p+p {
    margin-top: 16px;
}
.kyak-blog-single-content .text .wp-block-columns {
    margin-top: 32px;
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
}
.kyak-blog-single-content .text .wp-block-columns .wp-block-column figure {
    margin: 0;
}








/* ==========================================================================
   10. FOOTER / ПОДВАЛ
   Логотип, юридический текст, кнопка, соцсети.
   ========================================================================== */
.kyak-footer {
    background: #FC4353;
    padding-top: 48px;
    padding-bottom: 48px;
}
.kyak-footer .kyak-footer-wrap {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 170px auto 230px;
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    align-items: center;
}
.kyak-footer .text p {
    font-family: Lato;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;    
    color: #fff;
    margin: 0;
}
.kyak-footer .text p+p {
    margin-top: 8px;
}
.kyak-footer .text p a {
    color: #fff;    
}
.kyak-footer .buttons button {
    width: 230px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #fff;
    color: #242424;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 auto;
}
.kyak-footer ul.social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
}
/* Footer */

/* ==========================================================================
   11. MODAL / МОДАЛЬНЫЕ ОКНА И МОБИЛЬНОЕ МЕНЮ
   Оверлей, форма, закрытие, мобильное меню.
   ========================================================================== */
/*
.modal {
    background-color: rgb(204, 204, 204);
}
*/
.modal__overlay {
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 100;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    /*
    background-color: rgba(229, 229, 229, 0.9);
    */
    background: #1E1E1EE3;
    backdrop-filter: blur(30px);
    z-index: 99999;
}
.modal__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    max-width: 880px;
    width: calc(100% - 32px);
    box-shadow: 0px 5px 36.6px 0px #00000040;
    background: rgb(255 255 255 / 75%);
    transform: translate(-50%, -50%);
    padding: 24px 32px;
    border-radius: 26px;
}
.modal__wrap .close {
    position: absolute;
    right: -20px;
    top: -70px;
}
.modal__wrap .form-cnt .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0em;
    margin-bottom: 16px;
}
.modal__wrap .form-cnt .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.modal__wrap .form-cnt .form-field label {
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #000;
}
.modal__wrap .form-cnt .form-field input[type=text], 
.modal__wrap .form-cnt .form-field input[type=number], 
.modal__wrap .form-cnt .form-field input[type=email], 
.modal__wrap .form-cnt .form-field input[type=tel], 
.modal__wrap .form-cnt .form-field select {
    border: 1px solid #E8E8E8;
    background: #E8E8E8;
    padding: 12px 16px;    
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #000000;
    border-radius: 8px;
}
.modal__wrap .form-cnt .form-field input[type=text]:focus, 
.modal__wrap .form-cnt .form-field input[type=number]:focus, 
.modal__wrap .form-cnt .form-field input[type=email]:focus, 
.modal__wrap .form-cnt .form-field input[type=tel]:focus, 
.modal__wrap .form-cnt .form-field select:focus {
    border: 1px solid #000000;
}
.modal__wrap .form-cnt .form-row.two-field {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: calc(50% - 4px) calc(50% - 4px);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
}
.modal__wrap .form-cnt .form-row.three-field {
    display: grid;
    grid-template-rows: auto;
    /*
    grid-template-columns: repeat(3, calc(33% - 6px));
    */
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: space-between;
}
.modal__wrap .form-cnt .form-row+.form-row {
    margin-top: 16px;
}
.modal__wrap .form-cnt .form-row.ticket-count {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal__wrap .form-cnt .form-row.ticket-count .title {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
}
.modal__wrap .form-cnt .form-row.ticket-count .count {
    font-family: Lato;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #000000;
}


.modal__wrap .form-cnt .politika-cnt label {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 16px auto;
    grid-column-gap: 6px;
    grid-row-gap: 6px;
}
.modal__wrap .form-cnt .politika-cnt input[type=checkbox] {
    margin: 0;
    padding: 0;
}
.modal__wrap .form-cnt .politika-cnt span, 
.modal__wrap .form-cnt .politika-cnt span a {
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #00000066;
}
.modal__wrap .form-cnt .politika-cnt span, 
.modal__wrap .form-cnt .politika-cnt span a {
    font-family: Lato;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #00000066;
}
.modal__wrap .form-cnt .form-row.submit-row {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 100px;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
}
.modal__wrap .form-cnt .form-row.submit-row button {
    height: 49px;
    width: 100px;
    box-sizing: border-box;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
}
.modal__wrap .form-cnt .form-row.submit-row button:hover {
    background: #fd6975;
}
.modal__wrap .form-cnt .form-row.submit-row button:focus {
    background: #B02935;
}
.modal-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    /*
    background: #0A0A0A;
    */
    background: #1E1E1EE3;
    max-height: 101vh;
    overflow-y: auto;
}
.modal-menu .bottom {
    padding-bottom: 20px;
}
.modal-menu.active {
    left: 0%;
}
.modal-menu .top {
    padding-top: 0px;
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 80px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: center;
}
.modal-menu .top .close {
    display: flex;
    justify-content: flex-end;
}
.modal-menu .top .close button {
    margin: 0;
    padding: 0;
    border: none;
    line-height: 0;
    background: transparent;
}
.modal-menu .middle {
    margin-bottom: 48px;
}
.modal-menu .middle .main-menu {
    padding-top: 32px;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #FFFFFF;
}
.modal-menu .middle .main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.modal-menu .middle .main-menu ul li a {
    display: block;
    padding-top: 4px;
    padding-bottom: 16px;
    /*
    font-family: PT Sans;
    */
    font-weight: 400;
    font-size: 24px;
    line-height: 75%;
    letter-spacing: 0px;
    color: #fff;
    text-decoration: none;
    /*
    border-bottom: 2px solid #FFFFFF1A;
    */
}
.modal-menu .middle .main-menu ul li:hover a, 
.modal-menu .middle .main-menu ul li.current-menu-item a {
    color: #FC4353;
    /*
    border-bottom: 2px solid #F48221
    */
}
.modal-menu .middle .contacts .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #fff;
    margin-bottom: 8px;
}
.modal-menu .middle .contacts .address-item a {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 32px auto;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    align-items: center;
    margin-bottom: 8px;
    text-decoration: none;
}
.modal-menu .middle .contacts .address-item span {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FFF;
}
.modal-menu .middle .contacts .address-item span a {
    color: #FFF;
    text-decoration: none;
}
.modal-menu .middle .contacts .address-social-flex ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    flex-direction: column;
}
.modal-menu .middle .contacts .address-social-flex ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FFF;
    text-decoration: none;
}
.modal-menu .middle .contacts .address-item+.title {
    margin-top: 32px;
}



.modal-menu .middle .contacts .desc-item {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FFF;
    margin-top: 8px;
    margin-bottom: 8px;
}
.modal-menu .middle .contacts .address-social-flex ul li img {
    width: 24px;
    height: 24px;
}

.modal-menu .middle .contacts .address-social-flex+.title {
    margin-top: 16px;
}
.modal-menu .middle .contacts .address-item svg {
    width: 32px;
    height: 32px;
}



.modal-menu .bottom button {
    background: #F48221;
    border-radius: 8px;
    height: 44px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #fff;
    text-decoration: none;
    margin: 0;
    padding: 0;
    border: none;
}
.modal-menu .middle .main-menu ul li ul.sub-menu {
    display: none;
}
.modal-menu .middle .main-menu ul li ul.sub-menu li a {
    font-size: 16px;
    border-bottom: none;
}

/* ==========================================================================
   12. CART / КОРЗИНА И ОФОРМЛЕНИЕ ЗАКАЗА
   Карточки товаров в корзине, итог, checkout WooCommerce.
   ========================================================================== */
.page-cart-item {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 90px auto;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
    align-items: center;
}
.page-cart-item:last-child {
    border-bottom: 2px solid #FC4353;
}
.page-cart-content-row {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 200px;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}
.page-cart-content-row .title {
    font-family: Lato;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;
}
.page-cart-content-row+.page-cart-content-row {
    margin-top: 8px;
}
.page-cart-content-row .price {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #242424;   
    text-align: right;
}
.page-cart-content-row .subtitle {
    font-family: Lato;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #A7A7A7;
    
    display: flex;
    gap: 16px;
}
.page-cart-content-row .subtitle .subtitle-item {
    display: flex;
    gap: 4px;
}
.page-cart-content-row .subtitle .subtitle-item .name {
    color: #242424;
}
.page-cart-content-row .hour {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #FC4353;
    text-align: right;
}
.page-cart-item .page-cart-content {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 24px;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}
.page-cart-item .page-cart-content .remove-cart-item {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}
.page-cart-cnt .cart-total {
    padding-top: 24px;
    padding-bottom: 64px;
}
.page-cart-cnt .cart-total .cart-total-row {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: auto 200px;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}
.page-cart-cnt .cart-total .cart-total-row .title {
    font-family: Lato;
    font-weight: 400;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: #000000;
}
.page-cart-cnt .cart-total .cart-total-row .cost {
    font-family: Lato;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0em;
    color: #000000;
    text-align: right;
}
.page-cart-cnt .add-order-button a {
    height: 50px;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FC4353;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    margin: 0 auto 24px;
}
.page-cart-cnt .add-order-button a:hover {
    background: #fd6975;
}
.page-cart-item .image {
    height: 90px;
    width: 90px;
}
.page-cart-item .image img {
    height: 90px;
    width: 90px;
    object-fit: cover;
    border-radius: 8px;
}    
.page-add-order .wc-block-checkout__form .wc-block-components-address-form__country {
    margin-top: 12px;
}
.wc-block-components-checkout-place-order-button {
    height: 50px;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FC4353;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: none;
}
.wc-block-components-checkout-place-order-button:hover {
    background: #fd6975;
}





/* ==========================================================================
   13. RESPONSIVE / АДАПТИВНЫЕ ПРАВИЛА
   Контрольные точки: 1440 / 1200 / 782 / 540 / 380 px.
   Правила ниже перебивают десктопные стили.
   ========================================================================== */
@media (max-width: 1440px) {
    .single-route-top img {
        height: 500px;
        object-fit: cover;
    }
    .single-route-top .single-route-top-text h1 {
        font-size: 48px;
    }
    .single-route-top .single-route-top-text p {
        font-size: 24px;
    }
    
    
    
    
    
}

@media (max-width: 1200px) {
    
    .kyak-head .main-menu ul li a {
        font-size: 14px;
    }
    .kyak-frontpage-about .about-content-row.grid_two_40_60 {
        grid-template-columns: 100%;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }
    .kyak-frontpage-about .about-content-row.grid_two_36_64 {
        grid-template-columns: 100%;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }
    .kyak-frontpage-price .variations {
        grid-template-columns: repeat(2, 1fr);
    }
    .kyak-frontpage-wrap {
        grid-template-columns: 100%;
    }
    .kyak-page-blog-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    .kyak-page-cert-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    
}
@media (max-width: 980px) {}
@media (max-width: 782px) {
    .kyak-single-other-routes-text h2 {
        font-size: 24px;    
    }
    .kyak-single-other-routes-text p.sibtitle {
        font-size: 24px;    
        margin: 0 0 24px;
    }
    .kyak-single-other-routes-wrap {
        grid-template-columns: 100%;
    }
    .modal__wrap .form-cnt .form-row.two-field,
    .modal__wrap .form-cnt .form-row.three-field {
        grid-template-columns: 100%;
    }
    .modal__wrap .form-cnt .form-row.submit-row {
        grid-template-columns: 100%;
    }
    .modal__wrap .form-cnt .form-row.submit-row button {
        width: 100%;
    }
    .modal__wrap .close {
        position: absolute;
        right: -10px;
        top: -10px;
    }
    .kyak-contacts-content .soc ul {
        gap: 16px;
        flex-wrap: wrap;
    }
    body.page-template-page-blog .single-route-top picture img {
        min-height: 600px;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .kyak-head .burger {
        display: block;
    }
    .kyak-head .main-menu {
        display: none;
    }
    .kyak-head .buttons ul {
        justify-content: end;
    }
    .kyak-head .buttons ul li:nth-child(1),
    .kyak-head .buttons ul li:nth-child(2) {
        display: none;
    }
    .modal__wrap .form-cnt .title {
        font-size: 24px;
    }
    .kyak-head .header-row {
        grid-template-columns: 24px 170px auto;
    }
    .frontpage-top-content {
        padding: 100px 0 100px;
        gap: 10px;
    }
    .kyak-frontpage-banner .content h1 {
        font-size: 28px;
    }
    .kyak-frontpage-banner .content p {
        font-size: 16px;
    }
    .kyak-frontpage-banner .content {
        align-items: flex-start;
        padding-top: 32px;
    }
    .kyak-frontpage-banner .content button {
        position: absolute;
        bottom: 32px;
        left: 16px;
        right: 16px;
        width: calc(100% - 32px);
    }
    .kyak-frontpage-route {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .kyak-frontpage-route h2 {
        font-size: 24px;
        margin: 0 0 32px;
    }
    .kyak-frontpage-about h2 {
        font-size: 24px;
        margin: 0 0 32px;
        text-align: center;
    }
    .kyak-frontpage-about h3 {
        font-size: 20px;
        margin: 0 0 16px;
    }
    .kyak-frontpage-about p {
        font-size: 14px;
    }
    .kyak-frontpage-about h4 {
        font-size: 18px;
        margin: 0 0 16px;
    }
    .kyak-frontpage-about-slider {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .kyak-frontpage-price {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .kyak-frontpage-price .top h2 {
        font-size: 24px;
    }
    .kyak-frontpage-price .top {
        margin-bottom: 24px;
    }
    .kyak-frontpage-price .variations {
        grid-template-columns: repeat(1, 1fr);
    }
    .kyak-frontpage-price .buttons {
        margin-top: 24px;
    }
    .kyak-frontpage-faq {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .kyak-frontpage-faq h2 {
        font-size: 24px;
    }
    .kyak-frontpage-faq .top {
        margin-bottom: 24px;
    }
    .faq-cnt .faq-item .faq-item-top .title {
        font-size: 16px;
    }
    .faq-cnt .faq-item .faq-item-content-wrap {
        grid-template-columns: 100%;
        grid-column-gap: 16px;
        grid-row-gap: 16px;
        padding-top: 16px;
    }
    .faq-cnt .faq-item .text h3 {
        font-size: 19px;
    }
    .faq-cnt .faq-item .text p {
        font-size: 16px;
    }
    .kyak-frontpage-wrap {
        display: flex;
        flex-direction: column-reverse;
    }
    .kyak-frontpage-wrap .col-content {
        padding: 0px 24px 24px 24px;
    }
    .kyak-frontpage-wrap .col-content .text-content .title {
        font-size: 22px;
    }
    .kyak-frontpage-wrap .col-content .address-content .soc ul {
        flex-wrap: wrap;
    }
    .kyak-frontpage-wrap .col-content .button-route a {
        width: 100%;
    }
    .kyak-footer .kyak-footer-wrap {
        grid-template-columns: 100%;
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }
    .kyak-footer .kyak-footer-wrap .logo img {
        max-width: 240px;
    }
    .kyak-footer .text p {
        text-align: left;
    }
    .kyak-footer .buttons button {
        margin: 0;
    }
    .kyak-routes-content-wrap .kyak-routes-content-col {
        width: 100%;
    }
    .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(4), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(5), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(9), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(10), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(14), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(15), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(19), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(20), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(24), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(25), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(29), .kyak-routes-content-wrap .kyak-routes-content-col:nth-child(30) {
        width: 100%;
    }
    .kyak-page-blog-wrap {
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }
    .kyak-page-cert-wrap {
        grid-template-columns: repeat(1, 1fr);
    }
    .kyak-blog-single-content .text .wp-block-columns {
        display: block;
    }
    .single-route-top picture img {
        height: 450px;
        object-fit: cover;
        object-position: center;
    }
    .single-route-top .single-route-top-text h1 {
        font-size: 28px;
    }
    .single-route-top .single-route-top-text p {
        font-size: 16px;
    }
    .single-route-top .single-route-top-wrap {
        grid-template-columns: 100%;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }
    .breadcrumbs-cnt {
        margin: 32px 0 24px;
    }
    .kyak-single-other-routes-item {
        min-height: 150px;
        width: 100%!important;
    }
    .kyak-single-route-slider-thumbs .swiper-slide img {
        border-radius: 8px;
        object-fit: cover;
        max-width: 100%;
        height: 50px;
    }
    .kyak-single-route-slider-thumbs .swiper-slide {
        overflow: hidden;
        border-radius: 8px;
    }
    body.page-template-page-product .single-route-top .single-route-top-text p.big {
        font-size: 24px;
    }
    body.page-template-page-product .single-route-top .single-route-top-text p {
        font-size: 16px;
    }
    body.page-template-page-product .single-route-top {
        min-height: 500px;
    }
    .product-desc-content {
        grid-template-columns: 100%;
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }
    .single-route-top .single-route-top-wrap {
        padding-left: 0px;
        padding-right: 0px;
    }
    .contacts-top-content .content .title p, 
    .contacts-top-content .content .title {
        font-size: 28px;
    }
    .contacts-top-content .content p {
        font-size: 16px;
    }
    .kyak-contacts-top.arenda-top {
        align-items: flex-start;
    }
    .kyak-contacts-top.arenda-top {
        position: relative;
    }
    .kyak-contacts-top.arenda-top .buttons {
        position: absolute;
        bottom: 24px;
        left: 16px;
        width: calc(100% - 32px);
    }
    .kyak-contacts-top.arenda-top .buttons button {
        width: 100%;
    }
    .kyak-contacts-top {
        min-height: 300px;
    }
    .faq-cnt .faq-item {
        border-radius: 12px;
        padding: 16px 8px;
    }
    /*
    .single-route-top .container {
        position: relative;
    }
    */
    .single-route-top .container {
        position: absolute;
        top: 0;
    }
    .single-route-top .single-route-top-form {
        padding: 24px 16px;
    }
    .single-route-top .single-route-top-form .form-row.submit-row {
        grid-template-columns: 100%;
        grid-column-gap: 16px;
        grid-row-gap: 16px;
    }
    .single-route-top .single-route-top-form .form-row.submit-row button {
        width: 100%;
    }
}



@media (max-width: 540px) {
    .kyak-head .header-row {
        grid-template-columns: 24px auto auto; 
    }
}
    



.wp-block-woocommerce-checkout .col2-set .col-1, 
.wp-block-woocommerce-checkout .col2-set .col-2 {
    width: 100%!important;
    float: unset!important;
}
.wp-block-woocommerce-checkout #order_review table.woocommerce-checkout-review-order-table {
    display: none;
}
#payment img {
    width: 50px!important;
}
#payment {
    background: transparent!important;
}
#payment button {
    height: 50px;
    max-width: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FC4353;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: none;
}

/* ==========================================================================
   14. CUSTOM FIXES / ПОЗДНИЕ ТОЧЕЧНЫЕ ПРАВКИ
   ВАЖНО: эти правила стоят ниже основных и поэтому перебивают их.
   Здесь лучше хранить новые правки, чтобы не искать их по всему файлу.
   ========================================================================== */
button,
a,
input[type=submit] {
    -webkit-transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
    -o-transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
}
/* --------------------------------------------------------------------------
   14.1 PGM RENT TOP / ПЕРВЫЙ ЭКРАН СТРАНИЦЫ ПГМ
   Правки для страницы аренды Петровского гребного марафона.
   -------------------------------------------------------------------------- */
.pgm-rent-top .contacts-top-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 505px;
    gap: 48px;
    align-items: center;
}

/* Левый текстовый блок */
/* Левый текстовый блок */
.pgm-rent-top .contacts-top-content .content {
    height: 256px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Заголовок: работает и для div.title, и если внутри title появился p */
.pgm-rent-top .contacts-top-content .content .title,
.pgm-rent-top .contacts-top-content .content .title p {
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 68px;
    /* line-height: 0.9; */
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* Отступ после заголовка */
.pgm-rent-top .contacts-top-content .content .title {
    margin-bottom: 16px;
}

/* Подзаголовок: только прямой p внутри .content, не p внутри .title */
.pgm-rent-top .contacts-top-content .content > p {
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    color: #fff;
    margin: 0;
}
/* Карточка справа */
.pgm-rent-top .single-route-top-form {
    background: #FFFFFFBF;
    box-shadow: 0px 5px 36.6px 0px #00000040;
    backdrop-filter: blur(5px);
    border-radius: 26px;
    padding: 24px 32px;
}

.pgm-rent-top .single-route-top-form > .title {
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    color: #242424;
    margin: 0 0 16px;
}

.pgm-rent-top .single-route-top-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pgm-rent-top .single-route-top-form .form-field label {
    font-family: Lato, Arial, sans-serif;
    font-size: 14px;
    color: #00000066;
}

.pgm-rent-top .single-route-top-form select {
    width: 100%;
    padding: 12px 16px;
    background: #E8E8E8;
    border-radius: 8px;
    border: none;
    font-family: Lato, Arial, sans-serif;
    font-size: 14px;
    color: #000;
}

.pgm-rent-top .single-route-top-form .form-row + .form-row {
    margin-top: 16px;
}

.pgm-rent-top .single-route-top-form .ticket-count {
    display: grid;
    grid-template-columns: auto 80px;
    gap: 16px;
    align-items: center;
}

.pgm-rent-top .single-route-top-form .ticket-count .title {
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}

.pgm-rent-top .single-route-top-form .ticket-count .count {
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    text-align: right;
}

.pgm-rent-top .single-route-top-form .submit-row {
    display: grid;
    grid-template-columns: auto 100px;
    gap: 16px;
    align-items: center;
}

.pgm-rent-top .single-route-top-form .submit-row button {
    height: 49px;
    width: 100px;
    border-radius: 8px;
    border: none;
    background: #FC4353;
    color: #fff;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.pgm-rent-top .single-route-top-form .politika-cnt label {
    display: grid;
    grid-template-columns: 16px auto;
    gap: 6px;
}

.pgm-rent-top .single-route-top-form .politika-cnt span,
.pgm-rent-top .single-route-top-form .politika-cnt span a {
    font-family: Lato, Arial, sans-serif;
    font-size: 14px;
    line-height: 100%;
    color: #00000066;
}

.pgm-rent-top .single-route-top-form .politika-cnt input {
    margin: 0;
}
.wp-block-woocommerce-checkout fieldset.wc-block-checkout__contact-fields.wc-block-components-checkout-step, 
.wp-block-woocommerce-checkout fieldset.wc-block-checkout__billing-fields.wc-block-components-checkout-step, 
.wp-block-woocommerce-checkout fieldset.wc-block-checkout__payment-method.wc-block-components-checkout-step, 
.wp-block-woocommerce-checkout .wc-block-checkout__actions {
    display: none!important;
}
.woocommerce-billing-fields h3, 
.woocommerce #order_review_heading {
    display: none!important;
}
    

/* --------------------------------------------------------------------------
   14.2 ARENDA CARD MODAL / МОДАЛКА КАРТОЧЕК АРЕНДЫ
   Обрезка длинного текста в полях формы и политика конфиденциальности.
   -------------------------------------------------------------------------- */
/* Arenda card modal — фикс обрезки текста внутри формы 816px
   Важно: блок стоит в самом конце файла, чтобы перебить старые правила модалки. */
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form,
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form .form-row,
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form .form-field,
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form .politika-cnt,
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form .politika-cnt label,
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form .politika-cnt span {
    min-width: 0 !important;
    max-width: 100% !important;
}

.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form input[type="text"],
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form input[type="number"],
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form input[type="email"],
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form input[type="tel"],
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form select {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* Для select нативный текст часто не показывает троеточие, поэтому делаем свою стрелку */
.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form select {
    -webkit-appearance: none !important;
    appearance: none !important;
    padding-right: 40px !important;
    background-color: #E8E8E8 !important;
    background-image:
        linear-gradient(45deg, transparent 50%, #242424 50%),
        linear-gradient(135deg, #242424 50%, transparent 50%) !important;
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50% !important;
    background-size: 5px 5px, 5px 5px !important;
    background-repeat: no-repeat !important;
}

.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form .politika-cnt label {
    grid-template-columns: 16px calc(100% - 22px) !important;
}

.modal__wrap .form-cnt form.booking-form.arenda-card-booking-form .politika-cnt span {
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

/* =========================================================
   PGM 2026 / page-id-768 — mobile adaptation fix
   Важно: блок стоит в самом конце файла и перебивает старые
   мобильные правила, где кнопка была absolute, а форма оставалась 505px.
========================================================= */

@media (max-width: 782px) {

    body.page-id-768 .kyak-contacts-top.arenda-top.pgm-rent-top,
    body.page-id-768 .kyak-contacts-top.arenda-top {
        min-height: auto !important;
        padding-top: 24px !important;
        padding-bottom: 36px !important;
        align-items: flex-start !important;
        overflow: hidden !important;
        background-position: center top !important;
    }

    body.page-id-768 .kyak-contacts-top.arenda-top .container {
        width: 100% !important;
    }

    body.page-id-768 .pgm-rent-top .contacts-top-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    body.page-id-768 .pgm-rent-top .contacts-top-content .content {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body.page-id-768 .pgm-rent-top .contacts-top-content .content .title,
    body.page-id-768 .pgm-rent-top .contacts-top-content .content .title p {
        font-size: 28px !important;
        line-height: 1.05 !important;
        margin: 0 !important;
        max-width: 100% !important;
        color: #fff !important;
        word-break: normal !important;
    }

    body.page-id-768 .pgm-rent-top .contacts-top-content .content .title {
        margin-bottom: 12px !important;
    }

    body.page-id-768 .pgm-rent-top .contacts-top-content .content > p {
        font-size: 16px !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    body.page-id-768 .kyak-contacts-top.arenda-top .buttons,
    body.page-id-768 .pgm-rent-top .contacts-top-content .buttons {
        position: static !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        justify-content: stretch !important;
    }

    body.page-id-768 .kyak-contacts-top.arenda-top .buttons a,
    body.page-id-768 .kyak-contacts-top.arenda-top .buttons button,
    body.page-id-768 .pgm-rent-top .contacts-top-content .buttons a,
    body.page-id-768 .pgm-rent-top .contacts-top-content .buttons button {
        width: 100% !important;
        max-width: 100% !important;
        height: 49px !important;
        margin: 0 !important;
        position: static !important;
        transform: none !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 22px 14px 16px !important;
        border-radius: 22px !important;
        box-sizing: border-box !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form > .title,
    body.page-id-768 .pgm-rent-top .single-route-top-form .title:first-child {
        font-size: 28px !important;
        line-height: 1.1 !important;
        margin: 0 0 16px !important;
        color: #242424 !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .form-row {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .form-row.two-field {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .form-field {
        min-width: 0 !important;
        max-width: 100% !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .form-field label {
        font-size: 12px !important;
        line-height: 1.1 !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form input[type="text"],
    body.page-id-768 .pgm-rent-top .single-route-top-form input[type="number"],
    body.page-id-768 .pgm-rent-top .single-route-top-form input[type="email"],
    body.page-id-768 .pgm-rent-top .single-route-top-form input[type="tel"],
    body.page-id-768 .pgm-rent-top .single-route-top-form select {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 46px !important;
        padding: 12px 14px !important;
        box-sizing: border-box !important;
        font-size: 14px !important;
        line-height: 1 !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form select {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .ticket-count {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        gap: 12px !important;
        align-items: center !important;
        margin-top: 16px !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .ticket-count .title {
        min-width: 0 !important;
        font-size: 18px !important;
        line-height: 1.1 !important;
        margin: 0 !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .ticket-count .count {
        font-size: 18px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .submit-row {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-items: stretch !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .politika-cnt,
    body.page-id-768 .pgm-rent-top .single-route-top-form .politika-cnt label,
    body.page-id-768 .pgm-rent-top .single-route-top-form .politika-cnt span {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .politika-cnt label {
        display: grid !important;
        grid-template-columns: 18px minmax(0, 1fr) !important;
        gap: 8px !important;
        align-items: start !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .politika-cnt input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .politika-cnt span,
    body.page-id-768 .pgm-rent-top .single-route-top-form .politika-cnt span a {
        font-size: 12px !important;
        line-height: 1.2 !important;
        overflow-wrap: anywhere !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form .submit-row button,
    body.page-id-768 .pgm-rent-top .single-route-top-form button[type="submit"],
    body.page-id-768 .pgm-rent-top .single-route-top-form input[type="submit"] {
        width: 100% !important;
        max-width: 100% !important;
        height: 49px !important;
        margin: 0 !important;
    }

    body.page-id-768 .pgm-rent-top + section,
    body.page-id-768 .short-route,
    body.page-id-768 .single-route-about {
        margin-top: 0 !important;
        padding-top: 32px !important;
    }
}

@media (max-width: 380px) {
    body.page-id-768 .pgm-rent-top .contacts-top-content .content .title,
    body.page-id-768 .pgm-rent-top .contacts-top-content .content .title p {
        font-size: 25px !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    body.page-id-768 .pgm-rent-top .single-route-top-form > .title,
    body.page-id-768 .pgm-rent-top .single-route-top-form .title:first-child {
        font-size: 26px !important;
    }
}

.kyak-head {
    position: relative;
    z-index: 10000;
}

/* тесты */



/* Повторный конфликтующий @media для page-id-768 удалён.
   Основной мобильный блок PGM находится выше в разделе 14.3. */




/* 14.4 ROUTE CLEANUP выполнен: старые .single-route-about/.kyak-single-route-variations стили удалены из раздела 07.2. */


/* --------------------------------------------------------------------------
   14.4 ARENDA KAYAK TEMPLATE / MOBILE HERO ADAPTIVE
   Мобильный адаптив главного баннера типовой страницы аренды.
   Перенесено в основной CSS, чтобы не держать эти правила в Additional CSS.
   -------------------------------------------------------------------------- */

body.page-template-template-arenda-kayak .arenda-kayak-template-top,
body.page-template-page-kayak-rent .arenda-kayak-template-top {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content,
body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 505px;
    gap: 48px;
    align-items: center;
}

body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content,
body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content {
    height: 256px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content .title,
body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content .title p,
body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content .title,
body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content .title p {
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content .title,
body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content .title {
    margin-bottom: 16px;
}

body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content > p,
body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content > p {
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.18;
    color: #fff;
    margin: 0;
    max-width: 560px;
}

@media (max-width: 782px) {
    body.page-template-template-arenda-kayak .kyak-contacts-top.arenda-top.arenda-kayak-template-top,
    body.page-template-page-kayak-rent .kyak-contacts-top.arenda-top.arenda-kayak-template-top {
        min-height: auto !important;
        padding: 96px 0 40px !important;
        align-items: flex-start !important;
        overflow: hidden !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .container,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .container {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 24px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        display: block !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content .title,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content .title p,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content .title,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content .title p {
        max-width: 360px !important;
        margin: 0 !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 52px !important;
        line-height: 0.95 !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
        color: #fff !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content .title,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content .title {
        margin-bottom: 18px !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content > p,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content > p {
        max-width: 340px !important;
        margin: 0 !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 400 !important;
        font-size: 24px !important;
        line-height: 1.25 !important;
        color: #fff !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form {
        position: static !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        padding: 24px 20px !important;
        border-radius: 24px !important;
        box-sizing: border-box !important;
        background: rgba(255, 255, 255, 0.78) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        backdrop-filter: blur(12px) !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form > .title,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .title:first-child,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form > .title,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .title:first-child {
        margin: 0 0 22px !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 32px !important;
        line-height: 1.1 !important;
        color: #242424 !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .form-row,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .form-row {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .form-row.one-field,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .form-row.submit-row,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .form-row.one-field,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .form-row.submit-row {
        display: block !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .form-field,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .form-field {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin-bottom: 20px !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form label,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form label {
        margin-bottom: 8px !important;
        font-size: 16px !important;
        line-height: 1.2 !important;
        color: #8f8f8f !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form select,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form input[type="text"],
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form input[type="number"],
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form input[type="email"],
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form input[type="tel"],
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form select,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form input[type="text"],
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form input[type="number"],
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form input[type="email"],
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form input[type="tel"] {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        height: 56px !important;
        padding: 0 20px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        font-size: 16px !important;
        line-height: 1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .ticket-count,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .ticket-count {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        margin: 0 0 22px !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .ticket-count .title,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .ticket-count .title {
        margin: 0 !important;
        font-size: 24px !important;
        line-height: 1.1 !important;
        font-weight: 400 !important;
        color: #242424 !important;
        text-transform: uppercase !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .ticket-count .count,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .ticket-count .count {
        font-size: 24px !important;
        line-height: 1.1 !important;
        font-weight: 700 !important;
        color: #242424 !important;
        white-space: nowrap !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .politika-cnt,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .politika-cnt {
        margin: 0 0 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .politika-cnt label,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .politika-cnt label {
        display: grid !important;
        grid-template-columns: 18px minmax(0, 1fr) !important;
        gap: 8px !important;
        align-items: flex-start !important;
        margin: 0 !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .politika-cnt input,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .politika-cnt input {
        width: 16px !important;
        height: 16px !important;
        padding: 0 !important;
        margin-top: 3px !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .politika-cnt span,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .politika-cnt a,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .politika-cnt span,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .politika-cnt a {
        font-size: 15px !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .button,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .button button,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form button[type="submit"],
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .button,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .button button,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form button[type="submit"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form .button button,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form button[type="submit"],
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form .button button,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form button[type="submit"] {
        height: 62px !important;
        border-radius: 8px !important;
        font-size: 16px !important;
        margin: 0 !important;
    }
}

@media (max-width: 380px) {
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content .title,
    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content .title p,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content .title,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content .title p {
        font-size: 46px !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .contacts-top-content .content > p,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .contacts-top-content .content > p {
        font-size: 22px !important;
    }

    body.page-template-template-arenda-kayak .arenda-kayak-template-top .single-route-top-form,
    body.page-template-page-kayak-rent .arenda-kayak-template-top .single-route-top-form {
        padding: 22px 18px !important;
    }
}
/* ==========================================================================
   ROUTE PAGE / MOBILE HERO + PRICE SECTION
   Адаптив страницы направления.
   ========================================================================== */

@media (max-width: 767px) {

    /* ----------------------------------------------------------------------
       HERO / ПЕРВЫЙ ЭКРАН НАПРАВЛЕНИЯ
       ---------------------------------------------------------------------- */

    body.page-template-page-route .single-route-top {
        position: relative !important;
        min-height: auto !important;
        overflow: hidden !important;
        background: #F7F7F7;
    }

    body.page-template-page-route .single-route-top > picture,
    body.page-template-page-route .single-route-top > picture img,
    body.page-template-page-route .single-route-top > img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 840px !important;
        object-fit: cover !important;
    }

    body.page-template-page-route .single-route-top .container {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        padding: 0 !important;
        display: block !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-wrap {
        width: 100% !important;
        max-width: none !important;
        height: 100% !important;
        padding: 48px 16px 32px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        gap: 24px !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-text {
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-text h1 {
        margin: 0 0 18px !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 40px !important;
        line-height: 0.98 !important;
        letter-spacing: 0 !important;
        text-transform: uppercase !important;
        color: #242424 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-text h1 strong {
        display: block !important;
        color: #FC4353 !important;
        font-weight: 700 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-text p {
        max-width: 330px !important;
        margin: 0 !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 400 !important;
        font-size: 21px !important;
        line-height: 1.25 !important;
        color: #242424 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 24px 16px !important;
        border-radius: 24px !important;
        background: rgba(255, 255, 255, 0.78) !important;
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form > .title {
        margin: 0 0 22px !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 30px !important;
        line-height: 1.1 !important;
        color: #242424 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-row.two-field {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
        gap: 12px !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-row.one-field {
        display: block !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-field {
        gap: 8px !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-field label {
        font-size: 14px !important;
        line-height: 1.2 !important;
        color: #9A9A9A !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form select,
    body.page-template-page-route .single-route-top .single-route-top-form input[type="text"],
    body.page-template-page-route .single-route-top .single-route-top-form input[type="number"] {
        width: 100% !important;
        height: 48px !important;
        padding: 0 14px !important;
        border-radius: 8px !important;
        border: none !important;
        background: #E8E8E8 !important;
        font-family: Lato, Arial, sans-serif !important;
        font-size: 14px !important;
        color: #242424 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-row.ticket-count {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
        margin: 18px 0 18px !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-row.ticket-count .title {
        margin: 0 !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 400 !important;
        font-size: 22px !important;
        line-height: 1.1 !important;
        text-transform: uppercase !important;
        color: #242424 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-row.ticket-count .count {
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 22px !important;
        line-height: 1.1 !important;
        color: #242424 !important;
        text-align: right !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-row.submit-row {
        display: block !important;
        margin-top: 0 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .politika-cnt {
        margin: 0 0 20px !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .politika-cnt label {
        display: grid !important;
        grid-template-columns: 18px minmax(0, 1fr) !important;
        gap: 8px !important;
        align-items: flex-start !important;
        margin: 0 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .politika-cnt input {
        width: 16px !important;
        height: 16px !important;
        margin-top: 3px !important;
        padding: 0 !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .politika-cnt span,
    body.page-template-page-route .single-route-top .single-route-top-form .politika-cnt a {
        font-size: 14px !important;
        line-height: 1.25 !important;
        color: #8F8F8F !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .button,
    body.page-template-page-route .single-route-top .single-route-top-form .button button,
    body.page-template-page-route .single-route-top .single-route-top-form .form-row.submit-row button {
        width: 100% !important;
    }

    body.page-template-page-route .single-route-top .single-route-top-form .form-row.submit-row button {
        height: 56px !important;
        border-radius: 8px !important;
        background: #FC4353 !important;
        font-size: 14px !important;
    }


    /* ----------------------------------------------------------------------
       КАЯКИ И ЦЕНЫ / КАК НА МОБИЛЬНОЙ АРЕНДЕ
       ---------------------------------------------------------------------- */

    body.page-template-page-route .kyak-page-blog {
        background: #F7F7F7 !important;
        padding: 48px 0 64px !important;
    }

    body.page-template-page-route .kyak-page-blog .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-content {
        max-width: none !important;
        margin: 0 auto !important;
    }

    body.page-template-page-route .kyak-page-blog .top {
        text-align: center !important;
        margin: 0 0 32px !important;
    }

    body.page-template-page-route .kyak-page-blog .top h2 {
        margin: 0 0 16px !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 34px !important;
        line-height: 1 !important;
        text-align: center !important;
        text-transform: uppercase !important;
        color: #242424 !important;
    }

    body.page-template-page-route .kyak-page-blog .top p {
        margin: 0 !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 400 !important;
        font-size: 22px !important;
        line-height: 1.2 !important;
        text-align: center !important;
        color: #A7A7A7 !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-wrap {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-item {
        min-width: 0 !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-item > a {
        display: block !important;
        text-decoration: none !important;
        color: inherit !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-item .image {
        width: 100% !important;
        height: 220px !important;
        margin: 0 0 20px !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        background: #EFEFEF !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-item .image img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-item .name {
        display: block !important;
        margin: 0 0 16px !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-item .name .title {
        margin: 0 0 8px !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 24px !important;
        line-height: 1.05 !important;
        color: #242424 !important;
    }

    body.page-template-page-route .kyak-page-blog .kyak-page-blog-item .name .date {
        display: block !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 400 !important;
        font-size: 20px !important;
        line-height: 1.1 !important;
        color: #242424 !important;
        white-space: normal !important;
    }

    body.page-template-page-route .kyak-page-blog .specifications {
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 400 !important;
        font-size: 20px !important;
        line-height: 1.05 !important;
        color: #A7A7A7 !important;
    }

    body.page-template-page-route .kyak-page-blog .specification_item {
        margin: 0 !important;
    }
}
body.page-template-page-route .single-route-top .single-route-top-text h1 span {
    color: #FC4353;
}
/* ==========================================================================
   MOBILE / ARENDA PAGE DIRECTION CARDS
   Страница "Аренда": карточки выбора направления.
   ========================================================================== */

@media (max-width: 767px) {
    body.page-id-12 .kyak-page-blog .kyak-page-blog-wrap,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-wrap {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    body.page-id-12 .kyak-page-blog .kyak-page-blog-item,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-item {
        width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    body.page-id-12 .kyak-page-blog .kyak-page-blog-item > a,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-item > a {
        display: block !important;
        width: 100% !important;
        text-decoration: none !important;
        color: inherit !important;
    }

    body.page-id-12 .kyak-page-blog .kyak-page-blog-item .image,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-item .image {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 364 / 200 !important;
        margin: 0 0 20px !important;
        padding: 0 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        background: #EFEFEF !important;
    }

    body.page-id-12 .kyak-page-blog .kyak-page-blog-item .image picture,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-item .image picture {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 0 !important;
    }

    body.page-id-12 .kyak-page-blog .kyak-page-blog-item .image img,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-item .image img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 16px !important;
    }

    body.page-id-12 .kyak-page-blog .kyak-page-blog-item .image::before,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-item .image::before {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 16px !important;
    }

    body.page-id-12 .kyak-page-blog .kyak-page-blog-item .image::after,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-item .image::after {
        width: calc(100% - 48px) !important;
        max-width: 272px !important;
        height: 48px !important;
        border-radius: 8px !important;
    }

    body.page-id-12 .kyak-page-blog .kyak-page-blog-item .arenda-tour,
    body.page-template-page-arenda .kyak-page-blog .kyak-page-blog-item .arenda-tour {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        z-index: 4 !important;
        width: 100% !important;
        padding: 0 20px !important;
        transform: translate(-50%, -50%) !important;
        font-family: Lato, Arial, sans-serif !important;
        font-weight: 700 !important;
        font-size: 26px !important;
        line-height: 110% !important;
        text-align: center !important;
        text-transform: uppercase !important;
        color: #fff !important;
        pointer-events: none !important;
    }
}
/* ==========================================================================
   FIXED HEADER / ЗАКРЕПЛЁННАЯ ШАПКА БЕЗ ЛИШНЕГО ОТСТУПА
   ========================================================================== */

.kyak-head {
    position: sticky !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

/* Убираем старую компенсацию fixed-шапки, она давала лишний отступ сверху */
body:not(.admin-bar) main,
body.admin-bar main {
    padding-top: 0 !important;
}

/* Если включена админ-панель WordPress */
body.admin-bar .kyak-head {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .kyak-head {
        top: 46px;
    }
}

/* Нормальный отступ хлебных крошек */
.breadcrumbs-cnt {
    margin-top: 48px !important;
}
/* ==========================================================================
   404 PAGE / СТРАНИЦА НЕ НАЙДЕНА
   ========================================================================== */

.kyak-404 {
    min-height: calc(100vh - 220px);
    padding: 120px 0;
    background: #FAFAFA;
    display: flex;
    align-items: center;
}

.kyak-404__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.kyak-404__label {
    margin-bottom: 24px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 800;
    font-size: 96px;
    line-height: 1;
    color: #FC4353;
}

.kyak-404 h1 {
    margin: 0 0 16px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.05;
    text-transform: uppercase;
    color: #242424;
}

.kyak-404 p {
    max-width: 560px;
    margin: 0 auto 32px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.25;
    color: #A7A7A7;
}

.kyak-404__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 49px;
    border-radius: 8px;
    background: #FC4353;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
}

.kyak-404__button:hover {
    background: #fd6975;
}

.kyak-404__button:focus {
    background: #B02935;
}

@media (max-width: 767px) {
    .kyak-404 {
        min-height: calc(100vh - 160px);
        padding: 80px 0;
    }

    .kyak-404__label {
        font-size: 54px;
    }

    .kyak-404 h1 {
        font-size: 32px;
    }

    .kyak-404 p {
        font-size: 18px;
    }

    .kyak-404__button {
        width: 100%;
        max-width: 260px;
    }
}
/* ==========================================================================
   BLOG PAGE / СТРАНИЦА БЛОГА
   ========================================================================== */

.kyak-blog-page {
    padding: 48px 0 96px;
    background: #FAFAFA;
}

.kyak-blog-page .container {
    max-width: 1280px;
    margin: 0 auto;
}

.kyak-blog-page__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.kyak-blog-page__years {
    display: flex;
    align-items: center;
    gap: 28px;
}

.kyak-blog-page__years button {
    position: relative;
    padding: 0 0 10px;
    border: 0;
    background: transparent;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #242424;
    cursor: pointer;
}

.kyak-blog-page__years button.active {
    color: #FC4353;
}

.kyak-blog-page__years button.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    border-radius: 4px;
    background: #FC4353;
}

.kyak-blog-page__sort {
    position: relative;
}

.kyak-blog-page__sort-current {
    border: 0;
    background: transparent;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #242424;
    cursor: pointer;
}

.kyak-blog-page__sort-current::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #242424;
    vertical-align: middle;
}

.kyak-blog-page__sort-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 5;
    width: 160px;
    padding: 14px 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.kyak-blog-page__sort:hover .kyak-blog-page__sort-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.kyak-blog-page__sort-dropdown button {
    display: block;
    width: 100%;
    padding: 8px 18px;
    border: 0;
    background: transparent;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    color: #242424;
    cursor: pointer;
}

.kyak-blog-page__sort-dropdown button:hover {
    color: #FC4353;
}

.kyak-blog-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.kyak-blog-card.is-hidden {
    display: none;
}

.kyak-blog-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.kyak-blog-card__image {
    position: relative;
    width: 100%;
    height: 224px;
    margin-bottom: 18px;
    border-radius: 16px;
    overflow: hidden;
    background: #EFEFEF;
}

.kyak-blog-card__image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(252, 67, 83, 0);
    transition: background .25s ease;
}

.kyak-blog-card:hover .kyak-blog-card__image::before {
    background: rgba(252, 67, 83, 0.62);
}

.kyak-blog-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease, filter .25s ease;
}

.kyak-blog-card:hover .kyak-blog-card__image img {
    transform: scale(1.04);
    filter: brightness(0.85);
}

.kyak-blog-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.kyak-blog-card h2 {
    margin: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    color: #242424;
}

.kyak-blog-card time {
    flex-shrink: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 110%;
    color: #FC4353;
}

.kyak-blog-card p {
    margin: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    color: #A7A7A7;
}

.kyak-blog-page__more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.kyak-blog-page__more button {
    width: 180px;
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: #FC4353;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}

.kyak-blog-page__more button:hover {
    background: #fd6975;
}

@media (max-width: 1024px) {
    .kyak-blog-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .kyak-blog-page {
        padding: 40px 0 64px;
    }

    .kyak-blog-page__top {
        display: block;
    }

    .kyak-blog-page__years {
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 24px;
    }

    .kyak-blog-page__years button {
        flex-shrink: 0;
        font-size: 18px;
    }

    .kyak-blog-page__sort {
        display: inline-block;
        margin-bottom: 24px;
    }

    .kyak-blog-page__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .kyak-blog-card__image {
        aspect-ratio: 364 / 200;
        height: auto;
    }

    .kyak-blog-card__head {
        display: block;
    }

    .kyak-blog-card h2 {
        margin-bottom: 8px;
        font-size: 24px;
    }

    .kyak-blog-card time {
        display: block;
        font-size: 14px;
    }

    .kyak-blog-card p {
        font-size: 18px;
    }
}

/* ==========================================================================
   CERTIFICATES PAGE / СТРАНИЦА СЕРТИФИКАТОВ
   Важно:
   — форма сертификатов использует отдельный класс .certificates-booking-form;
   — она НЕ использует .single-route-top-form, чтобы не ловить стили аренды/маршрутов;
   — старые правила .certificates-top__form и .certificates-top__form.single-route-top-form удалены.
   ========================================================================== */

/* Top banner */

.certificates-top {
    position: relative;
    min-height: 510px;
    padding-top: 48px;
    padding-bottom: 48px;
    background-color: #0B3B32;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.certificates-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 55, 42, 0.62);
    pointer-events: none;
}

.certificates-top .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.certificates-top__content {
    display: grid;
    grid-template-columns: calc(55% - 24px) calc(45% - 24px);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    align-items: center;
}

.certificates-top__text h1 {
    max-width: 640px;
    margin: 0 0 16px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 68px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
}

.certificates-top__text h1 span {
    color: #FC4353;
}

.certificates-top__text p {
    max-width: 650px;
    margin: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    color: #fff;
}

/* Top form */

.certificates-booking-form {
    width: 100%;
    max-width: 505px;
    padding: 24px 32px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.75);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 36.6px rgba(0, 0, 0, 0.25);
    color: #242424;
}

.certificates-booking-form > .title {
    margin: 0 0 16px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
    color: #242424;
}

.certificates-booking-form .form-row {
    margin: 0;
}

.certificates-booking-form .form-row + .form-row {
    margin-top: 16px;
}

.certificates-booking-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.certificates-booking-form .form-field label {
    margin: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 0.4);
}

.certificates-booking-form select {
    width: 100%;
    height: 43px;
    padding: 12px 16px;
    border: 0;
    border-radius: 8px;
    background: #E8E8E8;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000;
}

.certificates-booking-form .submit-row {
    display: grid;
    grid-template-columns: auto 100px;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: center;
}

.certificates-booking-form .politika-cnt label {
    display: grid;
    grid-template-columns: 16px auto;
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    align-items: flex-start;
    margin: 0;
}

.certificates-booking-form .politika-cnt input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
}

.certificates-booking-form .politika-cnt span,
.certificates-booking-form .politika-cnt span a {
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 0.4);
}

.certificates-booking-form .button,
.certificates-booking-form .button button {
    width: 100%;
}

.certificates-booking-form button {
    height: 49px;
    border: 0;
    border-radius: 8px;
    background: #FC4353;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
}

.certificates-booking-form button:hover {
    background: #fd6975;
}

.certificates-booking-form button:focus {
    background: #B02935;
}

.certificates-booking-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* About */

.certificates-about {
    padding-top: 48px;
    padding-bottom: 64px;
    background: #fff;
}

.certificates-about .container,
.certificates-products .container {
    max-width: 1280px;
    margin: 0 auto;
}

.certificates-about__content {
    display: grid;
    grid-template-columns: calc(50% - 24px) calc(50% - 24px);
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    align-items: center;
}

.certificates-about__image {
    height: 302px;
    border-radius: 16px;
    overflow: hidden;
    background: #EFEFEF;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.certificates-about__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.certificates-about__text h2 {
    margin: 0 0 18px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #242424;
}

.certificates-about__text p {
    margin: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 0;
    color: #A7A7A7;
}

.certificates-about__text p + p {
    margin-top: 16px;
}

/* Products */

.certificates-products {
    padding-top: 56px;
    padding-bottom: 96px;
    background: #F7F7F7;
}

.certificates-products__top {
    margin-bottom: 48px;
    text-align: center;
}

.certificates-products__top h2 {
    margin: 0 0 18px;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #242424;
}

.certificates-products__top p {
    margin: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0;
    color: #A7A7A7;
}

.certificates-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
}

.certificates-product-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.certificates-product-card__image {
    position: relative;
    height: 260px;
    margin-bottom: 18px;
    border-radius: 16px;
    overflow: hidden;
    background: #EFEFEF;
}

.certificates-product-card__image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(252, 67, 83, 0);
    transition: background .25s ease;
}

.certificates-product-card:hover .certificates-product-card__image::before {
    background: rgba(252, 67, 83, 0.62);
}

.certificates-product-card__image::after {
    content: "БЕРУ";
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 272px;
    max-width: calc(100% - 40px);
    height: 56px;
    border-radius: 8px;
    background: #fff;
    transform: translate(-50%, -50%);
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #242424;
    opacity: 0;
    transition: opacity .25s ease;
}

.certificates-product-card:hover .certificates-product-card__image::after {
    opacity: 1;
}

.certificates-product-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease, filter .25s ease;
}

.certificates-product-card:hover .certificates-product-card__image img {
    transform: scale(1.04);
    filter: brightness(0.85);
}

.certificates-product-card__info {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.certificates-product-card h3 {
    margin: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 0;
    color: #242424;
}

.certificates-product-card__price {
    flex-shrink: 0;
    font-family: Lato, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 0;
    color: #242424;
    white-space: nowrap;
}

.certificates-products__empty {
    padding: 32px;
    border-radius: 16px;
    background: #fff;
    font-family: Lato, Arial, sans-serif;
    font-size: 18px;
    line-height: 120%;
    color: #A7A7A7;
    text-align: center;
}

@media (max-width: 1024px) {
    .certificates-top__content,
    .certificates-about__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .certificates-booking-form {
        max-width: 505px;
    }

    .certificates-products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .certificates-top {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .certificates-top__text h1 {
        font-size: 42px;
    }

    .certificates-top__text p {
        font-size: 22px;
        line-height: 115%;
    }

    .certificates-booking-form {
        max-width: none;
        padding: 24px;
        border-radius: 24px;
    }

    .certificates-booking-form > .title {
        font-size: 32px;
    }

    .certificates-booking-form .submit-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .certificates-booking-form button {
        height: 54px;
    }

    .certificates-about__content,
    .certificates-products__grid {
        grid-template-columns: 1fr;
    }

    .certificates-about__image,
    .certificates-product-card__image {
        height: auto;
        aspect-ratio: 364 / 220;
    }

    .certificates-product-card__info {
        display: block;
    }

    .certificates-product-card h3 {
        margin-bottom: 8px;
    }
}

