

/* Start:/local/templates/doona/styles.css?17739871682068*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* @font-face {
  font-family: 'Bodoni';
  src: url('/local/templates/doona/fonts/bodonicyrillic.woff2') format('woff2'),
       url('/local/templates/doona/fonts/bodonicyrillic.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: 'Montserrat';
  src: url('/local/templates/doona/fonts/Montserrat-Regular.woff2') format('woff2'),
       url('/local/templates/doona/fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/local/templates/doona/fonts/Montserrat-Bold.woff2') format('woff2'),
       url('/local/templates/doona/fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* /local/templates/doona */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, Roboto, sans-serif;
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.2;
}


h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
}

p, ul, ol, dl, blockquote, pre, figure, hr {
  margin-top: 0;
  margin-bottom: 0;
}

ul, ol {
  padding-left: 0;
  list-style-position: inside;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

.container {
    margin: 0 auto;
    width: 100%;
}

.container_support {
    max-width: 1400px;
}

section.support {
    padding-bottom: 85px;
    padding-left: 60px;
    padding-right: 60px;
}

@media (max-width: 768px) {
   h2 {
    font-size: 32px;

  }

  section.support {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
}


/* End */


/* Start:/local/templates/doona/styles/config.css?1773987185505*/
:root {
  /* Основные цвета */
  --color-primary: #4361ee;
  --color-primary-light: #4895ef;
  --color-primary-dark: #595959;

  /* Нейтральные цвета */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-grey:#f8f8f8;

  body {
    font-family: "Montserrat", "Bodoni", sans-serif;
    overflow-x: hidden;
  }

  .main-wrapper {
    padding: 0 60px;
  }

  @media (max-width: 768px) {
    .main-wrapper {
      padding: 0 20px;
    }
  }
}

/* End */


/* Start:/local/templates/doona/styles/header.css?177607660418595*/
/* Шапка */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding-bottom: 80px;
}

/* Верхняя черная полоса */
.header-top {
    background-color: var(--color-black);
    height: 48px;
    color: var(--color-white);
    display: flex;
    align-items: center;
    padding: 0 60px;
    width: 100%;
    position: relative;
    z-index: 1001;
    transition: transform 0.1s ease, opacity 0.3s ease;
}

.header-top-left {
    flex: 1;
    min-width: 0;
    opacity: 0;
    pointer-events: none;
}

.header-top-center {
    flex: 2;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.header-top-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 0;
}

.top-menu-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    white-space: nowrap;
}

.top-menu-link:hover {
    color: #ddd;
}

/* Нижняя белая полоса шапки */
.header-bottom {
    background-color: var(--color-white);
    height: 81px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    border-bottom: 1px solid #e9eaea;
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 0.3s ease;
    will-change: transform;
    z-index: 1000;
}

/* Состояние когда шапка скрыта */
.header-bottom.header-hidden {
    transform: translateY(-100%);
}

/* Состояние когда шапка видима */
.header-bottom.header-visible {
    transform: translateY(0);
}

/* Скрытие верхней черной полосы */
.header-top.header-top-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Корректируем позицию header-bottom когда header-top скрыта */
.header-top.header-top-hidden + .header-bottom {
    top: 0;
}

.logo {
    font-weight: bold;
    font-size: 24px;
    color: var(--color-black);
    z-index: 1002;
    min-width: 0;
    height: 100%;
}

.logo img {
    height: 100%;
}

/* Стили основного меню */
.main-menu {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 30px;
    min-width: 0;
    flex-wrap: wrap;
    z-index: 1001;
}

.menu-item {
    position: static;
}

.menu-item.active .menu-link {
    color: var(--color-black);
}

.menu-link {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 400;
    padding: 5px 0;
    position: relative;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
    font-size: 21px;
}

/* Эффект подчеркивания с постепенным заполнением */
.menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-black);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-item:hover .menu-link::before,
.menu-item.active .menu-link::before {
    transform: scaleX(1);
}

/* Выпадающее меню - переработанная версия */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: var(--color-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-top: 1px solid #eee;
    display: none;
}

/* Класс для отображения меню */
.dropdown-menu.active {
    display: block;
}

/* Контейнер для ограничения ширины контента */
.dropdown-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

/* Анимация смены контента */
.dropdown-left,
.dropdown-right {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Левый блок выпадающего меню (30%) */
h3.dropdown-left-title {
    font-size: 21px;
    margin-bottom: 35px;
    font-weight: bold;
    color: var(--color-black);
}

.dropdown-left {
    flex: 0 0 30%;
    max-width: 30%;
    border-right: 1px solid #dedede;
    padding: 80px 0px 65px 100px;
}

.dropdown-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-category-item {
    margin-bottom: 15px;
}

.dropdown-category-link {
    color: var(--color-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 21px;
    display: block;
    transition: color 0.3s, padding-left 0.3s;
}

.dropdown-category-link:hover {
    color: var(--color-black);
    padding-left: 10px;
}

/* Обновленные стили для правого блока выпадающего меню */
.dropdown-right {
    flex: 0 0 69%;
    /* max-width: 70%; */
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 80px 60px 80px 65px;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0; /* Важно для правильной работы Swiper */
    overflow: hidden; /* Скрываем выходящий контент */
}

/* Стили для Swiper контейнера */
.dropdown-product-swiper {
    width: 100%;
    overflow: hidden;
    margin-top: 10px;
}

/* Стили для списка продуктов в Swiper */
.dropdown-product-list.swiper-wrapper {
    display: flex;
    gap: 0; /* Убираем gap, так как его заменит spaceBetween в JS */
}

/* Стили для слайда */
.dropdown-product.swiper-slide {
    /* max-width: calc(50% - 15px); */
    width: auto;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    height: auto;
    margin-right: 20px; /* Добавляем отступ между слайдами */
}

.dropdown-product.swiper-slide:last-child {
    margin-right: 0;
}

.dropdown-product a {
    text-decoration: none;
}

.product-image {
    /* width: 264px;
    height: 264px; */
    max-width: 264px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f7f5f4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-weight: 600;
    font-size: 21px;
    margin-bottom: 10px;
    color: var(--color-black);
}

.product-price {
    font-size: 18px;
    color: var(--color-black);
    font-weight: 500;
    text-align: left;
}

/* Стили для скроллбара Swiper */
.dropdown-product-swiper .swiper-scrollbar {
    background: rgba(0, 0, 0, 0.1);
    height: 3px;
    width: 100%;
    margin-top: 15px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-product-swiper:hover .swiper-scrollbar {
    opacity: 1;
}
.dropdown-product-list.swiper-wrapper {
    padding-bottom: 25px;
}
.dropdown-product-swiper .swiper-scrollbar-drag {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    cursor: grabbing;
}

/* Скрываем скроллбар, если слайдов мало или они все помещаются */
.dropdown-product-swiper .swiper-scrollbar.swiper-scrollbar-lock {
    display: none;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 1002;
}

.header-icons a {
    color: #333;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.header-icons a img {
    width: 26px;
    height: 26px;
}

.header-icons a:hover {
    color: var(--color-black);
}

/* Слайдер в шапке */
.header-slider {
    width: 100%;
    max-width: 400px;
    height: 30px;
    overflow: hidden;
}

.header-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--color-white);
    text-align: center;
    padding: 0 10px;
    font-weight: 700;
}

/* Стили для SVG бургера */
.burger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1003;
    flex-shrink: 0;
    position: relative;
    width: 48px;
    height: 48px;
    margin-left: 15px;
}

.burger-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.burger-icon--open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.burger-icon--close {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.burger-menu.active .burger-icon--open {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.burger-menu.active .burger-icon--close {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Мобильное меню - обновленная версия с правильным скроллом */
.mobile-menu {
    position: fixed;
    top: 105px;
    left: 0;
    width: 100%;
    height: calc(100vh - 105px);
    max-height: calc(100vh - 105px);
    background-color: var(--color-white);
    z-index: 999;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease; /* Добавлен transition для top */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* Корректируем позицию и высоту мобильного меню в зависимости от состояния шапки */
.header-bottom.header-hidden ~ .mobile-menu {
    top: 40px;
    height: calc(100vh - 40px);
    max-height: calc(100vh - 40px);
}

/* Когда шапка полностью скрыта */
.header-top.header-top-hidden + .header-bottom.header-hidden ~ .mobile-menu {
    top: 0;
    height: 100vh;
    max-height: 100vh;
}

/* Стилизация скроллбара для мобильного меню */
.mobile-menu::-webkit-scrollbar {
    width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Firefox */
.mobile-menu {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.mobile-menu-item {
    color: var(--color-black);
    text-decoration: none;
    font-size: 18px;
    padding: 13px 0;
    font-weight: 500;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    flex-wrap: wrap;
    width: 100%;
}

.mobile-menu-item a {
    text-decoration: none;
    color: inherit;
}

.mobile-menu-text {
    flex: 1;
    cursor: pointer;
}

/* SVG стрелка для пунктов с подменю */
.mobile-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 10px;
}

.mobile-arrow path {
    stroke: var(--color-black);
    stroke-width: 2;
}

.mobile-menu-item.has-submenu.active .mobile-arrow {
    transform: rotate(180deg);
}

/* Подменю в мобильной версии */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    width: 100%;
    border-radius: 4px;
    order: 2;
    flex-basis: 100%;
}

.mobile-submenu.active {
    max-height: 800px;
}

/* Стили для mobile-submenu-item */
.mobile-submenu-item {
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
    padding: 12px 0;
    display: block;
    transition: all 0.3s;
    cursor: pointer;
}

/* Отключаем hover эффект для всей ссылки */
.mobile-submenu-item:hover {
    background-color: transparent;
    color: var(--color-black);
    padding-left: 0;
}

/* Применяем hover эффект только к тексту */
.mobile-submenu-item .submenu-item-wrapper span:first-child:hover {
    color: var(--color-black);
    opacity: 0.7;
}

/* Стили для обертки контента подменю */
.submenu-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Стрелка для пунктов подменю */
.submenu-arrow {
    width: 20px;
    height: 20px;
    transform: rotate(90deg);
    transition: transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.submenu-arrow path {
    stroke: var(--color-black);
    stroke-width: 2;
}

/* Стили для картинок в мобильном подменю */
.mobile-submenu-image-link {
    text-decoration: none;
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mobile-submenu-image {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mobile-submenu-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.mobile-submenu-image:hover img {
    transform: scale(1.05);
}

.mobile-submenu-image-description {
    display: block;
    padding: 12px 15px;
    color: var(--color-black);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
}

.mobile-submenu.active .mobile-submenu-image {
    animation: fadeIn 0.4s ease;
}

/* Фикс для body при открытом меню */
body.menu-open {
    overflow: hidden;
}

/* Стили для футера аккордеона */
.footer-links-container {
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, margin 0.3s ease-in-out;
    overflow: hidden;
}

.footer-arrow {
    transition: transform 0.3s ease;
}

.footer-column-title {
    transition: margin-bottom 0.3s ease;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
    .header-icons {
        order: 3;
        margin-left: auto;
    }
    
    .burger-menu {
        display: block;
        order: 4;
    }
    
    .main-menu {
        display: none;
    }
    
    .logo {
        order: 1;
    }
    
    .header-bottom {
        justify-content: flex-start;
    }
    
    .dropdown-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-top, 
    .header-bottom {
        padding: 0 20px;
    }
    

    .header-top{

        height: 38px;
    }

    .header-bottom {
        height: 64px;
        top: 38px;
    }

    .header {
        padding-bottom: 63px;
    }
    
    .mobile-menu {
        top: 110px;
        height: calc(100vh - 110px);
        max-height: calc(100vh - 110px);
        padding: 20px;
    }
    
    .burger-menu {
        padding: 10px;
        width: 24px;
        height: 24px;
    }
    
    .burger-icon {
        width: 24px;
        height: 24px;
    }
    
    .header-bottom.header-hidden ~ .mobile-menu {
        top: 40px !important;
        height: calc(100vh - 40px) !important;
        max-height: calc(100vh - 40px) !important;
    }
    
    .header-top.header-top-hidden + .header-bottom.header-hidden ~ .mobile-menu {
        top: 0 !important;
        height: 100vh !important;
        max-height: 100vh !important;
    }
    
    .mobile-menu-item {
        font-size: 17px;
        padding: 23px 0;
    }
    
    .mobile-submenu-item {
        font-size: 15px;
        padding: 14px 0;
    }
    
    .mobile-submenu-image-description {
        font-size: 15px;
        padding: 10px 12px;
    }
    
    .mobile-arrow {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 576px) {

    .header {
        padding-bottom: 60px;
    }


    .header-top-center {
        flex: 2;
    }
    
    .header-top-left, 
    .header-top-right {
        display: none;
    }
    
    .header-slider {
        max-width: 100%;
    }
    
    .swiper-slide {
        font-size: 12px;
        padding: 0 5px;
    }
    
    .mobile-menu {
        padding: 15px;
    }
    
    .mobile-submenu.active {
        max-height: 700px;
        margin-top: 15px;
        margin-bottom: 10px;
    }
    
    .mobile-submenu-image-description {
        font-size: 14px;
        padding: 8px 12px;
    }
}

@media (max-width: 400px) {
    .header-bottom {
        height: 60px;
        top: 38px;
    }
    
    .mobile-menu {
        top: 100px;
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        padding: 15px;
    }
    
    .burger-menu {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .burger-icon {
        width: 32px;
        height: 32px;
    }
    
    .mobile-menu-item {
        font-size: 16px;
        padding: 11px 0;
    }
    
    .mobile-submenu-item {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .mobile-submenu.active {
        max-height: 600px;
    }
    
    .mobile-submenu-image-description {
        font-size: 13px;
        padding: 8px 10px;
    }
    
    .mobile-arrow {
        width: 20px;
        height: 20px;
    }
}
/* End */


/* Start:/local/templates/doona/styles/footer.css?17758298886071*/
/* Футер */
.footer {
    color: var(--color-black);
    width: 100%;
    box-sizing: border-box;
    padding: 30px 60px 60px 60px;
}

/* Первый блок футера */
.footer-top {
    border-bottom: 1px solid #dedede;
    padding-bottom: 30px;
}

/* Контейнер */
.footer-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Левый блок (50%) */
.footer-left {
    width: 48%;
    min-width: 300px;
}

.footer-title {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 48px;
    color: var(--color-black);
}

.footer-button {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 20px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
}

.footer-button:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

/* Правый блок (50%) */
.footer-right {
    width: 48%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Меню в три столбца */
.footer-columns {
    display: flex;
    margin-bottom: 40px;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 254px;
}

.footer-column-title {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--color-black);
}

.footer-column-link {
    color: var(--color-black);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 21px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-column-link:hover {
    color: #333;
}

.footer-column-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-black);
    transition: width 0.3s ease;
}

.footer-column-link:hover::after {
    width: 100%;
}

/* Иконки соцсетей */
.footer-social {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.footer-social-icon {
    width: 21px;
    height: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: #666;
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
}

/* Второй блок футера */
.footer-bottom {
    padding-top: 30px;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-wrapper-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-copyright {
    color: #595959;
    font-size: 16px;
}

.footer-h1 {
    h1 {
        color: #595959;
        font-size: 16px;
        font-weight: 400;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-bottom-link:hover {
    color: #333;
}

@media (max-width: 1440px) {
    .footer-bottom-links {
        flex-direction: column;
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .footer-left,
    .footer-right {
        width: 100%;
    }
    
    .footer-left {
        margin-bottom: 40px;
    }
    
    .footer-right {
        align-items: flex-start;
    }
    
    .footer-columns {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 0;
    }
    
    .footer-column-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        margin-bottom: 0;
        padding: 15px 0;
        font-size: 24px;
    }
    
    .footer-arrow {
        transition: transform 0.3s ease;
        width: 32px;
        height: 32px;
    }
    
    .footer-links-container {
        display: none;
        flex-direction: column;
        padding: 15px 0;
    }
    
    .footer-links-container.active {
        display: flex;
    }
    
    .footer-column-link {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        gap: 5px;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        gap: 5px;
        flex-direction: column;
    }

    .footer-bottom-link {
        white-space: wrap;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 25px 20px;
    }
    
    .footer-title {
        font-size: 32px;
    }
    
    .footer-button {
        font-size: 14px;
        padding: 16px 24px;
    }
    
    .footer-column-title {
        font-size: 23px;
        padding: 12px 0;
        width: 100%;
    }
    
    .footer-arrow {
        width: 28px;
        height: 28px;
    }
    
    .footer-column-link {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 5px;
    }
    
    .footer-bottom-link {
        font-size: 12px;
    }

    .footer-copyright{
        font-size: 12px;
    }

    .footer-h1 {
        h1 {
            font-size: 12px;
        }
    }
    .footer-social-icon{
    width: 18px;
    height: 18px;
    }
}
/* End */


/* Start:/local/templates/doona/styles/main.css?17724761931953*/
html {
    scroll-behavior: smooth;
}

/* Контентная часть */
.main_page_section {
    background-color: #f7f5f4; /* Оставляем, так как в переменных нет */
}

.main_page_section__content {
    padding: 80px 60px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.main_page_section__content h2 {
    margin-bottom: 20px;
    color: var(--color-black);
}

.main_page_section__content p {
    font-size: 21px;
    margin-bottom: 20px;
    max-width: 69%;
    margin: auto;
}

.main_page_section__image img {
    width: 100%;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.content-item {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.content-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-black);
}

/* Адаптивность для контента */
@media (max-width: 1200px) {
    .main_page_section__content {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .main_page_section__content {
        padding: 50px 20px;
    }
    
    .main_page_section__content h2 {
        font-size: 30px;
    }
    
    .main_page_section__content p {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .main_page_section__content {
        padding: 40px 15px;
    }
    
    .main_page_section__content h2 {
        font-size: 26px;
    }

    .main_page_section__content p {
    max-width: 100%;

}
}
/* End */


/* Start:/local/templates/doona/styles/video-banner.css?17763204513809*/
/* Баннер с видео */
.video-banner {
    position: relative;
    height: 905px;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--color-white);
    padding: 0 20px;
    box-sizing: border-box;
    padding-left: 60px;
}

.banner-title {
    font-size: 105px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1;
}

.banner-text {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1;
}

.banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-buttons .btn {
    padding: 21px 14px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
    text-transform: uppercase;
}

.banner-buttons .btn-primary {
    background-color: var(--color-white);
    color: var(--color-black);
}

.banner-buttons .btn-primary:hover {
    opacity: 0.9;
}


/* Кнопка управления видео */
.video-control-button {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 88px;
    height: 88px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    border: none;
    padding: 0;
}

.video-control-button:hover {
    transform: scale(1.1);
    background-color: #f5f5f5;
}

.video-control-button:active {
    transform: scale(0.95);
}

.control-icon {
    width: 28px;
    height: 28px;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .video-control-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .control-icon {
        width: 24px;
        height: 24px;
    }
    .video-banner {
  
}
}

/* Адаптивность для мобильных */
@media (max-width: 576px) {
    .video-control-button {
        right: 20px;
        width: 88px;
        height: 88px;
    }
}


/* Адаптивность видео-баннера */
@media (max-width: 768px) {
    .video-banner {
        height: 600px;
    }
    .video-overlay{
        padding-left: 20px;
    }
    .banner-title {
        font-size: 48px;
    }
    
    .banner-text {
        font-size: 32px;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .banner-buttons .btn {
        padding: 12px 25px;
        font-size: 16px;
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .video-overlay {
        justify-content: flex-end;    
        padding: 0 20px;
        padding-bottom: 100px;
    }

    .video-banner {
        height: 688px;
    }
    
    .banner-title {
        font-size: 38px;
        margin-bottom: 20px;
    }
    
    .banner-text {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .banner-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .video-control-button {
        width: 57px;
        height: 57px;
    }
}
/* End */


/* Start:/local/templates/doona/styles/promo-slider.css?17713293535268*/
/* Промо-блок */
.promo-section {
    padding: 110px 60px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.promo-container {
    margin: 0 auto;
    display: flex;
    gap: 60px;
    position: relative;
}

.promo-left {
    flex: 0 0 30%;
    max-width: 30%;
    position: relative;
    z-index: 2;
}

.promo-right {
    flex: 0 0 70%;
    max-width: 70%;
    position: relative;
    /*overflow: hidden;*/
}

.promo-title {
    font-size: 53px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-black);
}

.promo-text {
    font-size: 21px;
    line-height: 1.6;
    color: #555; /* Оставляем серый, так как в переменных нет подходящего */
}

/* Слайдер промо-блока */
.promo-slider-container {
    position: relative;
    width: 100%;
    /*overflow: hidden;*/
}

.promo-slider-nav {
    position: absolute;
    right: 60px;
    display: flex;
    gap: 15px;
    z-index: 10;
    top: -65px;
}


.slider-nav-container {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.slider-nav-btn {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background-color: var(--color-white);
    color: var(--color-black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 0, 0, .12);
    opacity: .5;
    transition: all .5s ease;
    border: 2px solid transparent;
    outline: none;
}

svg.icons_svg__JnMbt.icons_arrowLeft__A_neG,
svg.icons_svg__JnMbt.icons_arrowRight__WsnLf {
    width: 45%;
    height: 45%;
}

.slider-nav-btn:hover {
    opacity: 1;
    box-shadow: 0 0 12px rgba(0, 0, 0, .12);
}

.slider-nav-btn:focus {
    outline: none;
    opacity: 1;
    border-color: var(--color-black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .08);
}

.slider-nav-btn.swiper-button-disabled{
    opacity: .1;
}

.promo-slider {
    width: 100%;
    overflow: hidden !important;
    margin-bottom: 25px;
}

.promo-slide {
    width: 300px;
    height: 350px;
    flex-shrink: 0;
}

.promo-item {
    background-color: var(--color-white);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.promo-item:hover {
    cursor: pointer;
}

.promo-item-image {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5; /* Оставляем, так как в переменных нет */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666; /* Оставляем, так как в переменных нет */
    flex-shrink: 0;
    overflow: hidden;
}

.promo-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-item-info {
    padding: 20px 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-item-title {
    font-weight: 600;
    font-size: 27px;
    margin-bottom: 10px;
    color: var(--color-black);
}

.promo-item-price {
    font-size: 21px;
    color: var(--color-black);
    font-weight: 500;
}

/* Прогресс-бар под слайдером */
.slider-progress {
    width: 100%;
    height: 5px;
    background-color: hsla(0, 0%, 76%, .2);
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}

.slider-progress-bar {
    height: 100%;
    background-color: #8f8f8f; /* Оставляем, так как в переменных нет */
    width: 10%;
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
}

/* Адаптивность промо-слайдера */
@media (max-width: 1200px) {
    .promo-section {
        padding: 60px 60px;
    }
    
    .promo-container {
        max-width: 1200px;
    }
    
    .promo-slide {
        width: 280px;
    }
}

@media (max-width: 1024px) {
    .promo-section {
        padding: 60px 60px;
    }
    
    .promo-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .promo-left, 
    .promo-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .promo-slider-nav {
        right: 0;
        margin-top: 15px;
    }
    
    .promo-slide {
        width: 280px;
        height: 330px;
    }
    
    .promo-title {
        font-size: 30px;
    }
    
    .promo-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .promo-section {
        padding: 50px 20px;
    }
    
    .promo-slide {
        width: 250px;
        height: 300px;
    }

}

@media (max-width: 576px) {


    .promo-section {
        padding: 40px 20px;
    }
    
    .promo-slide {
        width: 220px;
        height: 280px;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .promo-item-title {
    font-size: 17px;
}
.promo-item-price {
    font-size: 17px;
}
}
/* End */


/* Start:/local/templates/doona/styles/fullscreen-slider.css?17726086132464*/
/* Полноэкранный слайдер */
.fullscreen-slider-section {
    padding: 100px 0px 0px 20px;
    background-color: var(--color-white);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    padding-left: 60px;
}

.fullscreen-slider-container {
    position: relative;
    width: 100%;
}

.fullscreen-slider-text {
    text-align: center;
    margin-bottom: 50px;
}

.fullscreen-slider-text p {
    font-size: 30px;
    color: var(--color-black);
}

.fullscreen-slider-nav {
    position: absolute;
    top: 25px;
    right: 60px;
    display: flex;
    gap: 15px;
    z-index: 10;
    align-items: center;
}

a.fullscreen-slider--link:hover {
    text-decoration: underline;
}

a.fullscreen-slider--link {
    font-size: 18px;
    color: var(--color-black);
    text-decoration: none;
}

.fullscreen-slider {
    width: 100%;
    overflow: visible !important;
    margin-bottom: 25px;
}

.fullscreen-slide {
    width: 300px;
    height: 350px;
    flex-shrink: 0;
}

.fullscreen-slider-progress-container {
    padding: 0 60px;
    margin: 0 auto;
}

/* Адаптивность полноэкранного слайдера */
@media (max-width: 1200px) {
    .fullscreen-slider-section {
        padding: 100px 0px 0px 60px;
    }
    
    .fullscreen-slider-progress-container {
        padding: 0 40px;
        max-width: 1200px;
    }
    
    .fullscreen-slider-nav {
        right: 40px;
    }
}

@media (max-width: 1024px) {
    .fullscreen-slider-progress-container {
        padding: 0 30px;
    }
    
    .fullscreen-slider-nav {
        right: 30px;
    }

       .fullscreen-slider-nav {
        right: 0;
        top: 0;
        position: relative;
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .fullscreen-slider-section {
        padding: 80px 0;
    }
    
    .fullscreen-slider-progress-container {
        padding: 0 20px;
    }
    
 
}

@media (max-width: 576px) {
    .fullscreen-slider-section {
        padding: 60px 0px 0px 20px;
    }

    .fullscreen-slider-progress-container {
        padding: 0 15px;
    }

    .fullscreen-slider-text p {
        font-size: 18px;
    }

    a.fullscreen-slider--link{
        font-size: 16px;
    }
}
/* End */


/* Start:/local/templates/doona/styles/blog.css?17786556267023*/
/* Раздел блога */
.blog-section {
    padding: 80px 60px;
    width: 100%;
    box-sizing: border-box;
}

.blog-container {
    margin: 0 auto;
}

.blog-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--color-black);
    text-align: left;
}

.blog-grid {
    display: flex;
    gap: 120px;
    margin-bottom: 40px;
}

.featured-article {
    flex: 0 0 55%;
    max-width: 50%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.featured-article:hover {
}

.featured-article-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.featured-article-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.featured-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-article-link:hover .featured-article-image img {
}

.featured-article-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    color: var(--color-white);
}

.featured-article-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.featured-article-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--color-white);
}

.featured-article-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.5;
    color: var(--color-white);
}

.featured-article-date {
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-white);
}

.articles-column {
    flex: 0 1 45%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-article {
    background-color: var(--color-white);
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    height: 180px;
}

.blog-article:hover {
    cursor: pointer;
}

.blog-article-link {
    display: flex;
    width: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-article-image {
    flex: 0 0 20%;
    max-width: 20%;
    overflow: hidden;
}

.blog-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-article-link:hover .blog-article-image img {
    
}

.blog-article-content {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-article-title {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-black);
    line-height: 1.4;
}

.blog-article-excerpt {
    font-size: 14px;
    color: #666; /* Оставляем, так как в переменных нет */
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: none;
}

.blog-article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888; /* Оставляем, так как в переменных нет */
}

.blog-article-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 21px;
    color: var(--color-black);
}

.blog-article-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    display: none;
}

.blog-button {
    text-align: left;
    margin-top: 20px;
}

.blog-button .btn {
    padding: 21px 14px;
    font-size: 16px;
    background-color: var(--color-black);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    width: 320px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
}

.blog-button .btn:hover {
    background-color: #333; /* Оставляем, так как в переменных нет */
}


/* Адаптивность блога */



@media (max-width: 1400px) {

    .blog-article-title {
        font-size: 21px;
    }
}
@media (max-width: 1200px) {
    .blog-section {
        padding: 60px 60px;
    }
    
    .blog-container {
    }
    
    .blog-grid {
        gap: 40px;
    }
    
    .featured-article {
    
    }
    
    .featured-article-title {
        font-size: 28px;
    }
    .blog-article-title {
        font-size: 21px;
    }
    .blog-article-date {
    font-size: 18px;

}
}

@media (max-width: 1024px) {
    .blog-section {
        padding: 60px 60px;
    }
    
    .blog-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .featured-article, 
    .articles-column {
        flex: 0 1 100%;
        max-width: 100%;
    }
    
    .featured-article {
        height: 500px;
    }
    
    .blog-article {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 20px;
    }
    
    .blog-title {
        font-size: 30px;
    }
    
    .featured-article {
        height: 400px;
    }
    
    .featured-article-overlay {
        padding: 25px;
    }
    
    .featured-article-title {
        font-size: 24px;
    }
    
    .featured-article-subtitle {
        font-size: 16px;
    }
    
    .blog-article {
        flex-direction: column;
        height: auto;
    }

    .blog-article-link {
        flex-direction: column;
    }
    
    .blog-article-image, 
    .blog-article-content {
       width: 100%;
    }
    
    .blog-article-image {
        height: 200px;
        max-width: 100%;
    }
    
    .blog-article-content {
        padding: 20px 0;
        flex-wrap: wrap;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .blog-article-title{
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 40px 20px;
    }
    
    .blog-title {
        font-size: 26px;
        margin-bottom: 32px;
    }
    
    .featured-article {
        height: 350px;
    }
    
    .featured-article-overlay {
        padding: 20px;
    }
    
    .featured-article-title {
        font-size: 20px;
    }
    
    .featured-article-subtitle {
        font-size: 14px;
    }
    
    .blog-article-image {
        height: 142px;
    }
    .blog-article-date{
        font-size: 14px;
    }
    .blog-button {
    text-align: center;
}
}
/* End */


/* Start:/local/templates/doona/styles/image-slider.css?17708833572086*/
/* Слайдер с картинками */
.image-slider-section {
    padding: 100px 0;
    background-color: var(--color-white);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.image-slider-container {
    position: relative;
    width: 100%;
}

.image-slider {
    width: 100%;
    overflow: hidden !important;
}

.image-slide {
    width: 300px;
    height: 300px;
    flex-shrink: 0;
    padding: 0 10px;
}

.image-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s;
}

.image-slide-link:hover {
    transform: scale(1.02);
}

.image-slide-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-slide-link:hover .image-slide-image img {
    transform: scale(1.1);
}

/* Скрываем навигацию и пагинацию для слайдера картинок */
.image-slider .swiper-button-next,
.image-slider .swiper-button-prev,
.image-slider .swiper-pagination {
    display: none !important;
}

/* Адаптивность слайдера с картинками */
@media (max-width: 1200px) {
    .image-slider-section {
        padding: 60px 0;
    }
    
    .image-slide {
        height: 280px;
    }
}

@media (max-width: 1024px) {
    .image-slider-section {
        padding: 60px 0;
    }
    
    .image-slide {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .image-slider-section {
        padding: 50px 0;
    }
    
    .image-slide {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .image-slider-section {
        padding: 40px 0;
    }
    
    .image-slide {
        width: 200px;
        height: 200px;
    }
}
/* End */


/* Start:/local/templates/doona/styles/support/support.css?17715779534624*/

.support__title {
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    margin-top: 101px;
}
/* Контент */
.support__content {
    gap: 150px;
    align-items: start;
    padding: 125px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.support__menu {
    flex: 0 1 50%;
}

/* Список */
.support__list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 525px;
}
.support__item__text {
    display: flex;
    align-items: center;
    gap: 29px;
    line-height: 2.2px;
}

span.support__item__img {
    width: 24px;
    height: 24px;
}

.support__item__text span img {
    width: 100%;
    height: 100%;
}

.support__item a svg.icons_svg {
    height: 14px;
    width: 14px;
}
.support__item {
  border-bottom: 1px solid hsla(0, 0%, 44%, .5);
}

.support__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 27px 0;
    text-decoration: none;
    color: var(--color-black);
    font-size: 21px;
    transition: 0.3s ease;
}

.support__item a:hover {
  opacity: 0.6;
}

.arrow {
  font-size: 22px;
}

/* Картинка */

.support__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.support__image img {
    width: 533px;
    height: auto;
    display: block;
    height: 533px;
    object-fit: cover;
}

.support_down_block {
    display: flex;
    justify-content: center;
    padding-bottom: 95px;
}

.support_down_block-left {
    flex: 0 1 50%;
    background-color: rgb(47, 47, 47);
    display: flex;
    justify-content: center;
    align-items: center;
}


.support_down_block-right {
    flex: 0 1 50%;
}

.support_down_block-right img {
    width: 100%;
    height: 100%;
}

.support_down_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}

.support_down_text h2 {
    color: #fff;
    text-align: center;
    font-size: 47px;
}

.support_down_text p {
    color: #fff;
    text-align: center;
     font-size: 21px;
}

.support_down_text a {
    width: 100%;
    display: flex;
}

.support-button.btn-primary {
    padding: 21px 14px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    flex-shrink: 0;
    text-transform: uppercase;
    max-width: 313px;
    margin: auto;
}

.warranty h1, .shipping-handling h1, .howto h1, .guides h1{
    margin-bottom: 85px;
}

.support-ul {
    display: flex;
    list-style: disc;
    flex-direction: column;
    padding: 45px;
}

.support.warranty p, .support.shipping-handling p {
    margin-bottom: 34px;
    font-size: 21px;
    line-height: 1.6;
}


.support.shipping-handling h2 {
    font-size: 21px;
    text-decoration: underline;
    margin-bottom: 15px;
}


/* =========================
   АДАПТИВ
========================= */


@media (max-width: 1200px) {
    .support__item__text span {
        line-height: 1.2;
    }

}

/* Планшет */


@media (max-width: 1100px) {
  .support__content {
      padding: 125px 60px;
       gap: 40px;
  }
.support_down_block {
    flex-direction: column;
}
.support_down_text {
    padding: 100px 0px;
}
}
@media (max-width: 992px) {
        .support__content {
        gap: 40px;
        flex-direction: column;
        padding: 60px 60px;
    }
    .support__menu {
    flex: 0 1 100%;
    width: 100%;
}
.support__list{
  max-width: 100%;
}


  .support__image {
    
  }
.support__image img {
    width: 100%;
    height: auto;
}
  .support__title {
    font-size: 32px;
  }
}

/* Мобильные */
@media (max-width: 576px) {
  .support {
    padding: 60px 16px 80px;
  }
   .support__content {
        gap: 40px;
        flex-direction: column;
        padding: 0;
    }
  .support__title {
    margin-bottom: 40px;
  }


    .support__item a {
        font-size: 18px;
        padding: 23px 0;
    }
  .arrow {
    font-size: 18px;
  }

.support.warranty p, .support.shipping-handling p {
    font-size: 16px;
}

  .support_down_text h2 {
    font-size: 32px;
}
.support_down_text p {
     font-size: 16px;
}

.support-button.btn-primary {
    font-size: 13px;
}

.warranty h1, .shipping-handling h1, .howto h1, .guides h1{
    margin-bottom: 40px;
}

.support_down_block {
    padding-bottom: 45px;
}
}
/* End */


/* Start:/local/templates/doona/styles/support/faq.css?17713990651778*/
  /* Стили остаются БЕЗ ИЗМЕНЕНИЙ */
  .faq {
  padding: 80px 20px;
}

.faq__title {
  margin-bottom: 45px;
}

/* Tabs */

.faq__tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 80px;
    justify-content: center;
}

.faq__tab {
    padding: 18px 21px;
    background: var(--color-grey);
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 21px;
    min-width: 140px;
}

.faq__tab.active {
  background: var(--color-black);
  color: var(--color-white);
}

/* Accordion */

.faq__item {
  border-bottom: 1px solid var(--color-grey);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 21px;
    font-weight: bold;
    align-items: center;
}

.faq__arrow {
  transition: transform 0.3s ease;
}

.faq__item.active .faq__arrow {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 21px;
  padding: 0 17px 0 25px;
  margin-left: 20px;
}
.faq__answer-text {
    border-left: 4px solid #fed100;
    padding: 17px 0px 17px 15px;
}
.faq__item.active .faq__answer {
    max-height: 200px;
    padding-bottom: 20px;
}

svg.icons_svg__arrow-faq {
    width: 18px;
    height: 18px;
}

/* Адаптив */

@media (max-width: 768px) {
  .faq__title {
    font-size: 26px;
  }


.faq__tabs {
    gap: 5px;
}

     .faq__tab {
        flex: 0 1 48%;
        font-size: 18px;
    }


.faq__question {
    font-size: 18px;
}
.faq__answer {
    font-size: 16px;
}

}
/* End */


/* Start:/local/templates/doona/styles/support/how-to-use.css?17713978672829*/
    section.howto {
  padding-top: var(--header-height);
  padding: 60px 60px;
}
section.howto .container{
    width: 100%;
    max-width: 100%;
}
.howto__title {
  text-align: center;
  font-size: 45px;
  margin: 85px 0;
}

.howto__tabs {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-left: 1px solid #e9eaea;
}

.howto__tab {
    padding: 19px 20px;
    border: none;
    cursor: pointer;
    font-size: 21px;
    border-right: 1px solid #e9eaea;
    border-top: 1px solid #e9eaea;
    background-color: #f8f8f8;
    color: #545454;
}
.howto__tab:hover {
    background: var(--color-white);
}
.howto__tab.active {
  background: var(--color-black);
  color: var(--color-white);
}

.howto__content {
  display: none;
}

.howto__content.active {
  display: flex;
}

.howto__main {
  flex: 0 1 80%;
}

.howto__video {
    width: 100%;
    height: 100%;
}

.howto__playlist {
    flex: 0 1 20%;
    max-height: 500px;
    overflow-y: auto;
    padding: 20px;
}
.howto__item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    padding: 15px 0;
    align-items: center;
}

.howto__item.active {
}

.howto__item-thumb {
  width: 120px;
  height: 70px;
  flex-shrink: 0;
}

.howto__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howto__item-title {
  font-size: 14px;
}
.howto__playlist-wrapper {
    flex: 0 1 30%;
    border-right: 1px solid #e9eaea;
    border-top: 1px solid #e9eaea;
    border-bottom: 1px solid #e9eaea;
}
.howto__nowplaying {
    padding: 20px;
    border-bottom: 1px solid #e9eaea;
}
.howto__upnext-label {
    padding: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}
.howto__nowplaying-label{
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.howto__nowplaying-card {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.howto__nowplaying-thumb {
  width: 120px;
  height: 70px;
  object-fit: cover;
}

.howto__nowplaying-title {
  font-size: 16px;
  font-weight: 600;
}

/* Adaptive */

@media (max-width: 992px) {
  .howto__content.active {
    flex-direction: column;
  }
  .howto__playlist-wrapper {
    border-left: 1px solid #e9eaea;
}
}

.howto__tabs-select {
  display: none;
  margin-bottom: 20px;
}

.howto__select {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border: 1px solid #e9eaea;
  background: #fff;
}

/* Mobile */
@media (max-width: 768px) {


  
    .howto__playlist {
        padding-left: 20px;
    }
  .howto__tabs {
    display: none;
  }
  section.howto {
    padding: 60px 20px;
}
  .howto__tabs-select {
    display: block;
  }
}
/* End */


/* Start:/local/templates/doona/styles/support/guides.css?17713981421907*/
.grid {
      display: flex;
      flex-wrap: wrap;
      gap: 35px;
    }

    .guides-card {
      width: calc(50% - 17.5px);
      background: var(--color-grey);
      padding: 65px 60px;
      text-align: center;
      transition: 0.3s ease;
      display: flex;
   	  justify-content: space-between;
   	  align-items: center;
    }

    .guides-card:hover {
    }

    .guides-card img {
      max-width: 320px;
      height: auto;
      margin-bottom: 25px;
    }

    .guides-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: bold;
}
.guides-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
    .guides-card select {
      width: 266px;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      background: #fafafa;
    }

    .guides-card button {
      width: 266px;
      padding: 12px;
      background: var(--color-black);
      color: var(--color-white);
      border: none;
      font-weight: bold;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: 0.3s;
      font-size: 16px;
    }

    .guides-card button:hover {
      background-color: #3c3f41;
    }


/* =========================
   АДАПТИВ
========================= */


@media (max-width: 1470px) {
.guides-card {
    flex-direction: column;
}

.guides-card img {
      max-width: 277px;
    }
}


/* Планшет */


@media (max-width: 1025px) {
 .grid {
    flex-direction: column;
}
    .guides-card {
        width: 100%;
    }

.guides-card {
    padding: 75px 30px;
}

}

/* Мобильные */

@media (max-width: 576px) {

  .guides-card h3 {
    font-size: 27px;
}

.guides-card button {
    font-size: 14px;
}

    .guides-card {
        padding: 30px 30px;
    }
}
/* End */


/* Start:/local/templates/doona/styles/popups/popups.css?17757243839786*/
.subscribe-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    /* Центрирование через flexbox */
    display: none;
    align-items: center;
    justify-content: center;
}

.subscribe-modal.active,
.subscribe-modal.show {
    display: flex !important;
}

.subscribe-modal-content {
    background: #fff;
    position: relative;
    width: 100%;
    min-width: 200px;
    max-width: 780px;
    border-radius: 0px;
    border-style: none;
    border-width: 2px;
    border-color: rgb(233, 234, 234);
    background-color: rgb(255, 255, 255);
    background-repeat: no-repeat;
    background-position-y: 50%;
    padding: 0px;
    flex: 1 1 0%;
    margin: 0;
    max-height: 90vh;
}

.subscribe-form-group-checkbox {
    margin-top: 10px;
    gap: 8px;
    display: inline-flex; 
    align-items: flex-start;
    margin-bottom: 10px;
}

.subscribe-form-group-checkbox a {
    text-decoration: underline;
}

.subscribe-form-group-checkbox input {
    width: auto;
}

.subscribe-close {
    position: absolute;
    right: 15px;
    top: 10px;
    cursor: pointer;
    font-size: 22px;
    z-index: 10001;
}

.subscribe-modal-container {
    display: flex;
    justify-content: center;
    height: 100%;
}

.subscribe-modal-image {
    flex: 0 1 50%;
    min-height: 510px;
}

.subscribe-modal-form {
    flex: 0 1 50%;
    position: relative;
}

.subscribe-form-group {
    margin-bottom: 0px;
}

.subscribe-modal-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0px;
    padding: 20px;
    min-height: 510px;
    justify-content: center;
}

.subscribe-modal-image img {
    height: 100%;
    max-width: 100%;
    object-fit: cover; /* Для корректного отображения изображения */
}

span.subscribe-form-title {
    font-size: 24px;
    font-weight: bold;
    font-style: normal;
    text-align: center;
    margin-bottom: 20px;
}

span.subscribe-form-text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}

input.email-input {
    box-sizing: border-box;
    border-radius: 0px;
    padding: 0px 0px 0px 16px;
    height: 40px;
    text-align: left;
    color: rgb(89, 89, 89);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(89, 89, 89);
    width: 100%;
}

.subscribe-form-policy {
    font-size: 12px;
    margin-bottom: 20px;
    margin-top: 5px;
}

.subscribe-submit {
    width: 100%;
    padding: 15px;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.subscribe-submit:hover {
    opacity: 0.9;
}

.input-error {
    border: 1px solid red !important;
}

.email-error {
    color: red;
    font-size: 13px;
    margin-top: 5px;
}

/* Убираем дублирующий display: none */
.subscribe-modal {
    display: none;
}

/* Адаптив для модального окна подписки */
@media screen and (max-width: 820px) {
    .subscribe-modal-content {
        width: 90%;
        max-width: 600px;
        max-height: 85vh;
    }
    
    .subscribe-modal-container {
        flex-direction: column;
    }
    
    .subscribe-modal-image {
        flex: 0 1 auto;
        min-height: auto;
        max-height: 250px;
        overflow: hidden;
    }
    
    .subscribe-modal-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .subscribe-modal-form {
        flex: 0 1 auto;
    }
    
    .subscribe-modal-form form {
        min-height: auto;
        padding: 30px 25px;
    }
}

@media screen and (max-width: 600px) {
    .subscribe-modal-content {
        width: 95%;
        max-height: 80vh;
    }
    
     .subscribe-modal-image {
        max-height: 270px;
    }
    .subscribe-modal-form form {
        padding: 25px 20px;
    }
    
    span.subscribe-form-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    span.subscribe-form-text {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .subscribe-submit {
        padding: 12px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .subscribe-modal-content {
        width: 92%;
        max-height: 90vh;
        overflow-y: auto;
        max-width: 330px;
    }
    
   .subscribe-modal-image {
        max-height: 270px;
    }
    
    .subscribe-modal-form form {
        padding: 20px 18px;
    }
    
    span.subscribe-form-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    span.subscribe-form-text {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    input.email-input {
        height: 44px;
        font-size: 15px;
        padding: 0 0 0 14px;
    }
    
    .subscribe-form-policy {
        font-size: 11px;
        margin-bottom: 16px;
        margin-top: 5px;
        line-height: 1.4;
    }
    
    .subscribe-submit {
        padding: 12px;
        font-size: 14px;
        min-height: 44px;
    }
    
    .subscribe-close {
        right: 12px;
        top: 8px;
        z-index: 10000;
    }
    
    .subscribe-close svg {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        padding: 2px;
    }
}

@media screen and (max-width: 360px) {
    .subscribe-modal-content {
        width: 94%;
    }
    
    .subscribe-modal-image {
        max-height: 140px;
    }
    
    .subscribe-modal-form form {
        padding: 18px 15px;
    }
    
    span.subscribe-form-title {
        font-size: 18px;
    }
    
    span.subscribe-form-text {
        font-size: 13px;
    }
    
    input.email-input {
        height: 42px;
        font-size: 14px;
    }
}

@media screen and (max-width: 320px) {
    .subscribe-modal-image {
        display: none;
    }
    
    .subscribe-modal-content {
        width: 96%;
    }
    
    .subscribe-modal-form form {
        padding: 18px 12px;
    }
}

/* Альбомная ориентация на мобильных */
@media screen and (max-width: 900px) and (orientation: landscape) {
    .subscribe-modal-content {
        width: 85%;
        max-width: 800px;
        max-height: 85vh;
    }
    
    .subscribe-modal-container {
        flex-direction: row;
    }
    
    .subscribe-modal-image {
        flex: 0 1 40%;
        max-height: 350px;
    }
    
    .subscribe-modal-form {
        flex: 0 1 60%;
    }
    
    .subscribe-modal-form form {
        min-height: 350px;
        padding: 20px;
    }
}

/* Темная тема для модалки */
@media (prefers-color-scheme: dark) {
    .subscribe-modal-content {
        background-color: rgb(255, 255, 255);
    }
}

/* Анимация появления */
.subscribe-modal {
    animation: fadeIn 0.3s ease;
}

.subscribe-modal-content {
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Улучшение доступности для touch-устройств */
@media (hover: none) and (pointer: coarse) {
    .subscribe-submit {
        padding: 15px;
        min-height: 48px;
    }
    
    .subscribe-close {
        padding: 8px;
        right: 8px;
        top: 5px;
    }
    
    .subscribe-close svg {
        width: 32px;
        height: 32px;
    }
    
    input.email-input {
        font-size: 16px;
        padding: 0 0 0 16px;
    }
    
    .footer-button,
    .subscribe-submit {
        min-height: 48px;
    }
}

/* Для экранов с очень маленькой высотой */
@media screen and (max-height: 600px) {
    .subscribe-modal-content {
        max-height: 95vh;
    }
    
    .subscribe-modal-image {
        max-height: 150px;
    }
    
    .subscribe-modal-form form {
        min-height: auto;
        padding: 15px;
    }
    
    span.subscribe-form-title {
        margin-bottom: 10px;
        font-size: 20px;
    }
    
    span.subscribe-form-text {
        margin-bottom: 12px;
        font-size: 14px;
    }
}

/* Дополнительные улучшения */
.subscribe-close {
    transition: transform 0.2s ease;
}

.subscribe-close:hover {
    transform: scale(1.1);
}

.subscribe-close:active {
    transform: scale(0.95);
}

/* Стили для успешной подписки */
.form-success {
    padding: 30px;
    text-align: center;
    font-size: 18px;
    color: #28a745;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Стили для ошибок */
.form-error {
    padding: 15px 30px;
    color: red;
    font-size: 14px;
    text-align: center;
    /* position: absolute; */
    /* top: 20px;
    width: 100%; */
}

.subscribe-form-group-checkbox input[type="checkbox"],
.checkbox-group #consentAgreement {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: black;
}
/* End */
/* /local/templates/doona/styles.css?17739871682068 */
/* /local/templates/doona/styles/config.css?1773987185505 */
/* /local/templates/doona/styles/header.css?177607660418595 */
/* /local/templates/doona/styles/footer.css?17758298886071 */
/* /local/templates/doona/styles/main.css?17724761931953 */
/* /local/templates/doona/styles/video-banner.css?17763204513809 */
/* /local/templates/doona/styles/promo-slider.css?17713293535268 */
/* /local/templates/doona/styles/fullscreen-slider.css?17726086132464 */
/* /local/templates/doona/styles/blog.css?17786556267023 */
/* /local/templates/doona/styles/image-slider.css?17708833572086 */
/* /local/templates/doona/styles/support/support.css?17715779534624 */
/* /local/templates/doona/styles/support/faq.css?17713990651778 */
/* /local/templates/doona/styles/support/how-to-use.css?17713978672829 */
/* /local/templates/doona/styles/support/guides.css?17713981421907 */
/* /local/templates/doona/styles/popups/popups.css?17757243839786 */
