@charset "UTF-8";
/* Миксин для безопасного ховера */
@media (min-width: 576px) and (max-width: 1200px) {
  /* ==========================================================================
     STYLES FROM styles_medium.scss (BASE)
     ========================================================================== */
  .desktop-only {
    display: none !important;
  }
  .medium-only {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
  .medium_mobile-only {
    display: block !important;
  }
  /* ==========================================================================
     Утилитарные классы (Helpers)
     ========================================================================== */
  /* Размеры шрифтов */
  .fs-11 {
    font-size: 1.478vw !important;
  }
  .fs-12 {
    font-size: 1.613vw !important;
  }
  .fs-13 {
    font-size: 1.747vw !important;
  }
  .fs-14 {
    font-size: 1.882vw !important;
  }
  .fs-15 {
    font-size: 2.016vw !important;
  }
  .fs-16 {
    font-size: 2.151vw !important;
  }
  .fs-24 {
    font-size: 3.226vw !important;
  }
  .fs-26 {
    font-size: 3.495vw !important;
  }
  /* Стиль шрифта */
  .italic {
    font-style: italic !important;
  }
  .bold {
    font-weight: bold !important;
  }
  /* Цвета */
  .c-white {
    color: #ffffff !important;
  }
  .c-gray {
    color: #818181 !important;
  }
  .c-black {
    color: #000000 !important;
  }
  .c-orange {
    color: #f77c1d !important;
  }
  /* Насыщенность шрифта */
  .fw-400 {
    font-weight: 400 !important;
  }
  .fw-500 {
    font-weight: 500 !important;
  }
  .fw-600 {
    font-weight: 600 !important;
  }
  /* ==========================================================================
     Базовые стили и общие элементы
     ========================================================================== */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  body {
    font-family: Montserrat, sans-serif;
    padding: 0;
    margin: 0;
    background: linear-gradient(129.17deg, #464343 3.13%, #1B1919 94.45%), #323232;
  }
  ul {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
  }
  li {
    display: unset;
  }
  a {
    text-decoration: none;
  }
  img {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  /* Временный оверлей для макета */
  .tmp-overlay {
    position: absolute;
    left: 0;
    width: 99.8vw;
    z-index: 3;
    pointer-events: none;
  }
  .tmp-overlay img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.2;
  }
  /* Стили для кастомного скроллбара */
  ::-webkit-scrollbar {
    width: 5px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
    margin: 0;
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    min-height: 20px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
  }
  /* ==========================================================================
     Компонент: Header
     ========================================================================== */
  .header {
    min-height: 16.129vw;
    height: auto;
    text-align: center;
    position: relative;
    padding: 0 4.704vw;
  }
  .header__menu, .header__buttons {
    display: none !important;
  }
  .header__burger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 4.032vw;
    height: 2.688vw;
    cursor: pointer;
    z-index: 20;
    position: absolute;
    left: 4.704vw;
    top: 6.72vw;
  }
  .header__burger span {
    display: block;
    width: 100%;
    height: 0.269vw;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .header__burger.is-active span:nth-child(1) {
    transform: translateY(1.21vw) rotate(45deg);
  }
  .header__burger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger.is-active span:nth-child(3) {
    transform: translateY(-1.21vw) rotate(-45deg);
  }
  .header__mobile-phone {
    display: block !important;
    position: absolute;
    right: 4.704vw;
    top: 6.048vw;
    width: 4.032vw;
  }
  .header__mobile-phone img {
    width: 100%;
    height: auto;
  }
  .mobile-menu-wrapper {
    display: none;
    width: 100vw;
    background: #1B1B1B;
    padding: 4.032vw 4.704vw;
    border-top: 1px solid #333;
    position: relative;
    z-index: 15;
  }
  .mobile-menu-wrapper.is-open {
    display: block;
    animation: slideDown 0.3s ease-out forwards;
  }
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .mobile-menu__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5.376vw;
  }
  .mobile-search-form {
    position: relative;
    width: 70%;
  }
  .mobile-search-form .mobile-search-input {
    width: 100%;
    background: transparent;
    border: 1px solid #F77C1D;
    color: #fff;
    padding: 1.344vw 4.704vw 1.344vw 2.016vw;
    font-size: 1.882vw;
    outline: none;
  }
  .mobile-search-form .mobile-search-btn {
    position: absolute;
    right: 1.344vw;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .mobile-search-form .mobile-search-btn img {
    width: 2.151vw;
  }
  .mobile-menu__icons {
    display: flex;
    gap: 2.688vw;
    align-items: center;
  }
  .mobile-menu__icons .mobile-action-btn {
    position: relative;
    display: flex;
    align-items: center;
  }
  .mobile-menu__icons .mobile-action-btn img {
    width: 3.226vw;
  }
  .mobile-menu__icons .mobile-action-btn .mobile-cart-count {
    position: absolute;
    top: -1.075vw;
    right: -1.075vw;
    background: #F77C1D;
    color: #000;
    font-size: 1.344vw;
    width: 2.151vw;
    height: 2.151vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  .mobile-menu__nav {
    margin-bottom: 5.376vw;
  }
  .mobile-menu__nav .mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.688vw;
  }
  .mobile-menu__nav .mobile-menu-list li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 2.016vw;
  }
  .mobile-menu__nav .mobile-menu-list li a {
    color: #fff;
    font-size: 2.419vw;
    text-transform: uppercase;
    font-weight: 500;
  }
  .mobile-menu__nav .mobile-menu-list li.current-menu-item a {
    color: #F77C1D;
  }
  .mobile-menu__contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.36vw;
    margin-bottom: 5.376vw;
  }
  .mobile-menu__contacts .header__call-btn {
    width: 100%;
    max-width: 40.323vw;
    height: 6.72vw;
    font-size: 2.151vw;
  }
  .mobile-menu__contacts .header__contact-whatsapp {
    font-size: 2.151vw;
  }
  .mobile-menu__contacts .header__contact-whatsapp img {
    width: 2.688vw;
    margin-right: 1.344vw;
  }
  .mobile-menu__contacts .header__contact-phone {
    font-size: 2.688vw;
  }
  .mobile-menu__socials {
    display: flex;
    justify-content: center;
    gap: 4.032vw;
  }
  .mobile-menu__socials img {
    width: 4.704vw;
    transition: transform 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
  /* Интерактивный поиск в хедере */
  /* ==========================================================================
     Компонент: Footer
     ========================================================================== */
  /* ==========================================================================
     Компонент: Product Card (Карточка товара)
     ========================================================================== */
  /* -- Галерея в карточке товара -- */
  /* -- Блок Upsells -- */
  /* -- Описание и блок покупки -- */
  /* -- Кнопка "В избранное" (Wishlist) -- */
  /* Стили для плагина YITH Wishlist */
  /* ==========================================================================
     Компонент: Product Card (продолжение)
     ========================================================================== */
  /* -- Блок покупки -- */
  /* -- Кнопки покупки -- */
  /* -- Характеристики товара -- */
  /* -- Особые условия -- */
  /* ==========================================================================
     Компоненты страницы Категории/Каталога
     ========================================================================== */
  /* -- Карточка подкатегории -- */
  /* -- Меню каталога в контенте -- */
  /* ==========================================================================
     Компонент: Product Grid (Сетка товаров)
     ========================================================================== */
  /* Позиционирование навигационных кнопок */
  /* Позиционирование пагинации */
  /* Стили для точек пагинации */
  /* Отступы для слайдера, чтобы учесть навигационные кнопки */
  /* ==========================================================================
     Компонент: Cart Page (Страница корзины)
     ========================================================================== */
  /* -- Таблица товаров в корзине -- */
  /* -- Блок итогов -- */
  /* -- Пустая корзина -- */
  /* Стили для модального окна */
  /* ==========================================================================
     3.1. Блок категорий товаров (Анимации)
     ========================================================================== */
  /* ==========================================================================
     3.2. Блок отзывов клиентов (Волна)
     ========================================================================== */
  /* ==========================================================================
     3.3. Интерактивные элементы (UI)
     ========================================================================== */
  /* Кнопка «Заказать звонок» */
  /* Кнопка «Написать в WhatsApp» */
  /* ==========================================================================
     3.4. Анимации в шапке (Header)
     ========================================================================== */
  /* 1. Анимация подчеркивания ссылок меню */
  /* 2. Кнопка "Заказать звонок" */
  /* 3. Свечение WhatsApp в шапке */
  /* 4. Цвет номера телефона */
  /* ==========================================================================
     3.5. Популярные товары (Popular Products)
     ========================================================================== */
  /* 5. Анимация вылета слайдов справа */
  /* 6. Кнопка "Подробнее" в карточке товара */
  /* Keyframes */
  /* ==========================================================================
     OVERRIDES FROM styles_medium2.scss (PATCHES)
     ========================================================================== */
  /* ==========================================================================
     FOOTER TABLET STYLES (Переопределение)
     ========================================================================== */
  /* --- Блок 1: Социальные сети --- */
  /* --- Блок 2: Сетка (Лого | Контакты | Каталог) --- */
  /* --- Блок 3: Юридический текст и ссылки --- */
  /* --- Блок 4: Копирайт --- */
  /* --- Блок 5: Разработчик --- */
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .mobile-menu__socials img:hover {
    transform: scale(1.1);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .header__rect {
    position: absolute;
    height: 16.129vw;
    width: 100%;
    background-color: black;
    box-shadow: 0 -0.941vw 2.298vw 1.075vw rgba(225, 45, 0, 0.72);
    z-index: -2;
    margin-left: -4.704vw;
    opacity: 0.6;
  }
  .header__menu ul {
    display: flex;
    width: 70.027vw;
    justify-content: space-between;
  }
  .menu-item a {
    text-decoration: none;
    font-weight: 400;
    font-size: 2.016vw;
    line-height: 2.419vw;
    color: #FFFFFF;
    text-transform: lowercase;
  }
  .menu-item.current-menu-item a {
    font-weight: 700;
    border-bottom: 0.269vw solid #F77C1D;
    padding-bottom: 0.538vw;
  }
  .header__logo {
    width: 26.075vw;
    height: 18.145vw;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__logo a {
    width: 100%;
  }
  .header__logo-img {
    width: 100%;
    box-shadow: 0 0.538vw 1.022vw rgba(0, 0, 0, 0.37), inset 0 0.672vw 2.621vw rgba(0, 0, 0, 0.25);
  }
  .header__actions {
    position: absolute;
    right: 4.704vw;
    top: 2.151vw;
    width: 12.097vw;
  }
  .header__actions .cart-count {
    position: absolute;
    right: 0.403vw;
    bottom: 2.151vw;
    font-size: 1.478vw;
    color: black;
    font-weight: 600;
    background: #F77C1D;
    width: 1.882vw;
    height: 1.882vw;
    border-radius: 0.941vw;
    z-index: -1;
  }
  .header__action-icon {
    height: 2.285vw;
  }
  .header__action-icon--cart {
    width: 3.091vw;
    margin-left: 1.747vw;
  }
  .header__contact {
    width: 72.312vw;
  }
  .header__contact-whatsapp {
    color: #00E510;
  }
  .header__contact-icon-whts {
    margin-right: 0.941vw;
  }
  .header__contact-phone {
    color: white;
    font-weight: 400;
    font-size: 2.016vw;
    text-decoration-line: underline;
  }
  .header__call-btn {
    width: 21.64vw;
    height: 5.511vw;
    border: solid 1px #F77C1D;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .search-container {
    position: relative;
    display: flex;
    align-items: center;
  }
  .search-container .search-input {
    position: absolute;
    right: 2vw;
    width: 10vw;
    bottom: 0.2vw;
    display: none;
  }
  .search-container .search-input.active {
    display: block;
    opacity: 1;
  }
  .search-container .search-input::-moz-placeholder {
    color: #818181;
  }
  .search-container .search-input::placeholder {
    color: #818181;
  }
  .search-container .search-input:focus {
    outline: none;
  }
  .search-container .search-icon-link {
    display: block;
    transition: transform 0.3s ease;
    background: transparent;
    border: none;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .footer {
    background-color: #525252;
    height: 46.774vw;
    text-align: center;
  }
  .product-card {
    display: flex;
    flex-direction: column;
    margin: 5.914vw 4.704vw 0 4.704vw;
    padding: 2.419vw 5.376vw;
    background: #1B1B1B;
  }
  .product-card__top {
    display: flex;
    flex-direction: column;
    margin-bottom: 3vw;
  }
  .product-card__breadcrumbs {
    display: flex;
    color: #818181;
    margin-bottom: 4.032vw;
  }
  .product-card__breadcrumbs a {
    text-decoration: none;
    color: #818181;
  }
  .product-card__header {
    display: flex;
    flex-direction: row;
  }
  .product-card__name {
    display: flex;
    text-transform: uppercase;
    font-weight: 600;
    width: 90%;
  }
  .product-card__like-btn {
    display: flex;
  }
  .product-card__like-btn img {
    width: 2.419vw !important;
  }
  .product-card__like-btn button {
    gap: 0;
  }
  .product-card__center {
    display: flex;
    flex-direction: column;
    gap: 5vw;
  }
  .product-card__left-col {
    display: flex;
    flex-direction: column;
    gap: 3vw;
  }
  .product-card__right-col {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .product-card__gallery {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2vw;
    height: 64vw;
  }
  .product-card__main-image {
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
  }
  .product-card__main-image img {
    width: 100%;
    height: unset;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-card__main-image .product-card__main-image-wrapper {
    box-shadow: inset 0 0 2.016vw 0.269vw rgba(225, 45, 0, 0.4);
    width: 62vw;
    height: 62vw;
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
  }
  .product-card__thumbnails {
    display: flex;
    flex-direction: column;
    height: 64vw;
    overflow-y: scroll;
    scrollbar-width: none;
    gap: 0.672vw;
  }
  .product-card__thumbnail {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    cursor: pointer;
    border: 0.069vw solid white;
  }
  .product-card__thumbnail:last-child {
    margin-right: 0;
  }
  .product-card__thumbnail--active {
    border: 1px solid #F77C1D;
  }
  .product-card__upsales {
    display: flex;
    flex-direction: column;
    margin-top: 8.065vw;
    margin-bottom: 8.065vw;
  }
  .product-card__upsales h2 {
    font-weight: 600;
    font-size: 3.495vw;
    margin: 0;
  }
  .product-card__popular-items {
    display: flex;
  }
  .product-card__info-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 3.763vw;
  }
  .product-card__description {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 39.785vw;
    max-height: 38.978vw;
    justify-content: flex-start;
  }
  .product-card__description-title {
    font-weight: 600;
    font-size: 2.151vw;
    line-height: 2.688vw;
    color: #FFFFFF;
    margin-bottom: 1.344vw;
    border-bottom: 1px solid #FFFFFF;
    padding-bottom: 0.941vw;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }
  .product-card__description-title h3 {
    margin: 0;
  }
  .product-card__description-text {
    font-weight: 400;
    font-size: 1.882vw;
    line-height: 2.312vw;
    color: #FFFFFF;
    overflow-y: auto;
  }
  .product-card__description-text p {
    margin-block-end: 0;
  }
  .product-card__favorite-btn {
    position: absolute;
    top: -80.645vw;
    right: -38.978vw;
    width: 3.226vw;
    height: 3.226vw;
    cursor: pointer;
    z-index: 10;
  }
  .product-card__favorite-btn button {
    padding: 0;
    gap: 0;
  }
  .product-card__favorite-btn img {
    width: 2.823vw;
  }
  .product-card__favorite-btn div {
    margin: 0;
  }
  .yith-wcwl-add-to-wishlist {
    position: relative;
    display: block;
  }
  .yith-wcwl-add-button,
  .yith-wcwl-wishlistaddedbrowse,
  .yith-wcwl-wishlistexistsbrowse {
    display: block;
    margin: 0;
    padding: 0;
  }
  .yith-wcwl-add-button a,
  .yith-wcwl-wishlistaddedbrowse a,
  .yith-wcwl-wishlistexistsbrowse a {
    display: block;
    width: 3.226vw;
    height: 3.226vw;
  }
  .yith-wcwl-add-button a img,
  .yith-wcwl-wishlistaddedbrowse a img,
  .yith-wcwl-wishlistexistsbrowse a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-card__buy-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2.151vw;
    width: 35.349vw;
    height: 38.978vw;
    background: linear-gradient(141.32deg, #464343 0%, #1F1F1F 98.82%);
    padding: 4.435vw 2.823vw;
  }
  .product-card__price-area {
    display: flex;
    flex-direction: column;
    gap: 4.435vw;
    width: 100%;
  }
  .product-card__price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .product-card__price--current {
    font-weight: 600;
    font-size: 3.226vw;
    color: #FFFFFF;
  }
  .product-card__price--old {
    font-weight: 400;
    font-size: 2.016vw;
    color: #a4a2a2;
    text-decoration: line-through;
  }
  .product-card__quantity-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .product-card__stock-status {
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.478vw;
    color: #FFFFFF;
    margin-right: 4.032vw;
  }
  .product-card__quantity-controls {
    display: flex;
    width: 7.93vw;
    height: 5.511vw;
    border: 1px solid #F77C1D;
  }
  .product-card__quantity-input-wrapper {
    width: 5.108vw;
    height: 100%;
  }
  .product-card__quantity-input {
    font-weight: 400;
    font-size: 3.226vw;
    color: #FFFFFF;
    font-family: "Montserrat";
    background: transparent;
    border: none;
    text-align: center;
    width: 100%;
    height: 100%;
    outline: none;
    -moz-appearance: textfield;
  }
  .product-card__quantity-input::-webkit-outer-spin-button, .product-card__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .product-card__quantity-stepper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 2.823vw;
    height: 100%;
  }
  .product-card__quantity-btn {
    background: transparent;
    border: none;
    color: #F77C1D;
    font-size: 3.226vw;
    height: 50%;
    width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-left: 1px solid #F77C1D;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
  .product-card__quantity-btn svg {
    width: 1.613vw;
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .product-card__quantity-btn:hover {
    color: rgb(217.3076923077, 99.0384615385, 7.6923076923);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .product-card__quantity-btn--plus {
    border-bottom: 1px solid #F77C1D;
  }
  .product-card__actions {
    display: flex;
    flex-direction: column;
    gap: 1.747vw;
    width: 100%;
  }
  .product-card__action-btn {
    width: 100%;
    height: 5.511vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1.882vw;
    cursor: pointer;
    border: none;
    outline: none;
    border-radius: 0;
    transition: all 0.3s ease;
  }
  .product-card__action-btn--add-to-cart {
    background: #F77C1D;
    color: #000000;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .product-card__action-btn--add-to-cart:hover {
    background: #e06f17;
    box-shadow: 0 0 1.344vw rgba(247, 124, 29, 0.5);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .product-card__action-btn--one-click {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #F77C1D;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .product-card__action-btn--one-click:hover {
    background: rgba(247, 124, 29, 0.1);
    box-shadow: 0 0 1.344vw rgba(247, 124, 29, 0.3);
    border: 1px solid #ffffff;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .product-card__specs {
    display: flex;
    flex-direction: column;
    gap: 1.344vw;
  }
  .product-card__specs-title {
    font-weight: 600;
  }
  .product-card__specs-list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-between;
    width: 100%;
    height: 26.613vw;
    background: #383838;
    padding: 2.957vw;
  }
  .product-card__specs-item {
    display: flex;
    align-items: center;
    width: 47%;
    height: 20%;
    justify-content: space-between;
  }
  .product-card__specs-name {
    font-size: 1.747vw;
    color: #818181;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-card__specs-divider {
    flex: 1;
    border-bottom: 0.134vw dashed #818181;
    margin: 0 0.672vw;
    height: 1.344vw;
  }
  .product-card__specs-value {
    font-size: 1.747vw;
    color: #fff;
    font-weight: 400;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-card__special-conditions {
    display: flex;
    flex-direction: column;
    margin-top: 5.376vw;
    gap: 1.344vw;
  }
  .product-card__special-title {
    font-weight: 600;
    line-height: 2.688vw;
  }
  .product-card__special-text {
    font-weight: 400;
    line-height: 150%;
    padding-right: 1.344vw;
  }
  .category-page-container {
    display: flex;
    flex-direction: column;
    padding: 5.242vw 4.704vw 3.091vw;
    overflow-x: hidden;
  }
  .category-header {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 -0.069vw 0.965vw rgba(225, 45, 0, 0.3);
  }
  .category-header__background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.44;
    z-index: -1;
  }
  .category-header__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 2.688vw 5.242vw;
  }
  .category-header__breadcrumbs {
    font-size: 1.747vw;
    line-height: 2.151vw;
    color: #818181;
    margin-bottom: 2.016vw;
  }
  .category-header__breadcrumbs a {
    color: inherit;
    text-decoration: none;
  }
  .category-header__title {
    font-weight: 600;
    font-size: 3.495vw;
    line-height: 4.301vw;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 2.016vw 0;
  }
  .category-header__description {
    font-size: 1.747vw;
    line-height: 150%;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    gap: 2vw;
  }
  .cat-description__left, .cat-description__right {
    width: 81.452vw;
  }
  .cat-description__left p, .cat-description__right p {
    margin: 0;
  }
  .cat-description__center {
    border-right: 1px solid #58595B;
  }
  .subcategory-grid {
    margin-top: 5.376vw;
  }
  .subcategory-grid__container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1.747vw;
  }
  .subcategory-card {
    width: 44.22vw;
    height: 31.586vw;
    background: #1B1B1B;
    display: flex;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  .marRL_sub_medium {
    margin-left: 4.839vw !important;
    margin-right: 0 !important;
  }
  .subcategory-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .subcategory-card:hover .subcategory-card__image {
    transform: scale(1.2);
  }
  .subcategory-card__content {
    position: relative;
    z-index: 2;
    padding: 1.075vw 3.495vw 3.495vw 3.629vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
  }
  .subcategory-card__title {
    font-weight: 700;
    font-size: 3.226vw;
    line-height: 200%;
    text-transform: uppercase;
    color: #FFFAFA;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
    margin: 0;
  }
  .subcategory-card__link {
    font-weight: 500;
    font-size: 1.882vw;
    line-height: 2.285vw;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.075vw 2.016vw;
    border: 1px solid #F77C1D;
    width: 20.161vw;
    height: 6.72vw;
    transition: all 0.3s ease;
    background: rgba(4, 4, 4, 0.3);
    align-self: flex-end;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .subcategory-card__link:hover {
    background: rgb(247, 124, 29);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .category-sidebar-menu {
    display: flex;
    flex-direction: column;
    width: 32.527vw;
    background: rgba(0, 0, 0, 0.44);
    box-shadow: 0 -0.134vw 1.868vw rgba(225, 45, 0, 0.3);
    padding: 1.882vw 1.613vw;
    align-items: center;
  }
  .cat-content-body-main {
    width: 166%;
  }
  .category-sidebar-menu__title h2 {
    font-weight: 700;
    font-size: 1.882vw;
    line-height: 200%;
    text-transform: uppercase;
    color: #FFFAFA;
    margin: 0 0 1.882vw 0;
  }
  .category-sidebar-menu__list ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 1.747vw;
    line-height: 280%;
    color: #Fffafa;
  }
  .category-sidebar-menu__item.current a {
    color: #F77C1D;
    font-weight: 400;
  }
  .category-sidebar-menu__item a {
    color: #fffafa;
    text-decoration: none;
    transition: color 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .category-sidebar-menu__item a:hover {
    color: #ffffff;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .cat-content-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-top: 3.091vw;
    align-items: flex-start;
  }
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.478vw;
    width: 100%;
    margin-left: 2vw;
  }
  .product-grid__item {
    position: relative;
    width: 34.677vw;
    height: 48.522vw;
    background: #000000;
    box-shadow: 0.672vw 0.672vw 0.457vw 0.134vw rgba(0, 0, 0, 0.32);
    border-radius: 0;
  }
  .product-grid__image {
    width: 100%;
    height: 23.925vw;
    background-size: cover;
    background-position: center;
  }
  .product-grid__name {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.882vw;
    line-height: 2.285vw;
    color: #FFFFFF;
    margin-left: 1.478vw;
    margin-right: 1.478vw;
    margin-top: 1.613vw;
    align-items: flex-end;
  }
  .product_art {
    display: flex;
    justify-content: flex-end;
    font-size: 1.613vw;
    position: absolute;
    right: 0;
    bottom: 8.468vw;
  }
  .product-grid__price-block {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    margin-left: 1.478vw;
    margin-right: 1.478vw;
    margin-top: 1.613vw;
    margin-bottom: 0.806vw;
  }
  .product-grid__price--current {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 2.688vw;
    line-height: 3.226vw;
    color: #FFFFFF;
  }
  .product-grid__price--old {
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 2.016vw;
    line-height: 2.419vw;
    text-decoration-line: line-through;
    color: #A4A2A2;
    margin-left: 2.957vw;
  }
  .product-grid__actions {
    position: absolute;
    left: 1.478vw;
    top: 40.591vw;
    display: flex;
    gap: 0.941vw;
  }
  .product-grid__btn {
    height: 5.511vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 1.882vw;
    line-height: 2.285vw;
    color: #FFFFFF;
    border: 0.134vw solid #F77C1D;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .product-grid__btn:hover {
    background: rgba(247, 124, 29, 0.1);
    box-shadow: 0 0 1.344vw rgba(247, 124, 29, 0.3);
    border: 0.134vw solid #ffffff;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .product-grid__btn--add {
    width: 12.769vw;
    background: #F77C1D;
    color: #000000;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .product-grid__btn--add:hover {
    background: #e06f17;
    box-shadow: 0 0 1.344vw rgba(247, 124, 29, 0.5);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .product-grid__btn--details {
    width: 18.011vw;
    background: transparent;
  }
  .product-grid__cart-icon {
    width: 3.091vw;
  }
  .product-grid__wishlist {
    position: absolute;
    width: 4.032vw;
    height: 5.511vw;
    right: 1.344vw;
    top: 0;
    background: #F77C1D;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-grid__wishlist-btn {
    width: 2.151vw;
    height: 2.151vw;
    border: 0.269vw solid #FFFFFF;
    background: transparent;
    cursor: pointer;
  }
  .search-grid__item {
    width: 34.005vw;
  }
  .search-grid__btn--details {
    width: 17.473vw;
  }
  .hero {
    height: 69.22vw;
    position: relative;
    margin-bottom: 45vw;
  }
  .hero__video-container {
    position: absolute;
    top: -16.129vw;
    width: 100%;
    height: 84.543vw;
    overflow: hidden;
    z-index: -3;
  }
  .hero__video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(100% 331.53% at 100% 49.93%, #140F0E 0%, rgba(0, 0, 0, 0.37) 50.38%, #161110 98.35%);
    pointer-events: none;
    z-index: 0;
  }
  .hero__video {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 105vw;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 10.753vw;
    padding-left: 12.769vw;
    padding-right: 12.769vw;
    gap: 12vw;
  }
  .hero__left {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
    width: 47.446vw;
  }
  .hero__header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 4.704vw;
  }
  .hero__title {
    font-size: 3.495vw;
    font-weight: 400;
    line-height: 1.23;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
  }
  .hero__title-highlight {
    font-weight: 800;
  }
  .hero__info {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .hero__info_top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 3.226vw;
    color: #FFFFFF;
  }
  .hero__info p {
    font-size: 1.882vw;
    line-height: 1.5;
    margin: 0;
  }
  .hero__info_center {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 3.226vw;
  }
  .hero__info_center_img {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-right: 2.016vw;
  }
  .hero__info_center_img-arrow {
    width: 7.661vw;
  }
  .hero__info_center_src {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .hero__info_center_src a {
    font-size: 1.882vw;
    line-height: 1.21;
    text-transform: uppercase;
    color: #FFFFFF;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .hero__info_center_src a:hover {
    color: #F77C1D;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .hero__info_center_src:hover {
    color: #F77C1D;
  }
  .hero__info_bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 6.048vw;
    color: #FFFFFF;
  }
  .hero__separator {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 47.446vw;
    height: 7.527vw;
    background-color: #F77C1D;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 1.882vw;
    font-weight: 600;
    color: #000;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .hero__separator:hover {
    background-color: #fc9d55;
    box-shadow: 0px -1px 1.5vw rgba(225, 45, 0, 0.6);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .hero__separator span {
    font-size: 1.882vw;
    font-weight: 600;
    line-height: 1.21;
    color: #000000;
  }
  .hero__right {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 58.468vw;
    margin-left: 8vw;
  }
  .hero__right p {
    margin: 0;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
  }
  .hero__right a {
    text-decoration-line: underline;
    color: #F77C1D;
  }
  .hero__info-text--certified p {
    color: #F77C1D;
  }
  .hero__info-text--certified p .hero__info-certified {
    text-decoration-line: underline;
  }
  .hero__info-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 3.629vw;
  }
  .hero__info-icon {
    width: 5.914vw;
    height: 5.914vw;
    margin-right: 3.226vw;
  }
  .hero__info-icon img {
    width: 5.914vw;
    height: 5.914vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .hero__info-text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    font-size: 1.882vw;
    line-height: 1.5;
    color: #FFFFFF;
  }
  .marRL {
    margin-left: 2.151vw;
    margin-right: 2.151vw;
  }
  .padRL {
    padding-left: 4.704vw;
    padding-right: 4.704vw;
  }
  .subcategory-grid__button-container {
    display: flex;
    justify-content: center;
    margin-top: 6.048vw;
  }
  .work-process {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 6.048vw;
    box-shadow: 7px 3px 6.2px 1px rgba(0, 0, 0, 0.32);
  }
  .work-process p {
    margin: 0;
  }
  .work-process__content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 4.973vw 11.156vw;
    gap: 3.226vw;
    background: linear-gradient(141.32deg, #464343 0%, #1F1F1F 98.82%);
  }
  .work-process__text {
    width: 62vw;
    font-size: 1.882vw;
    color: #FFFFFF;
    line-height: 150%;
  }
  .work-process__image {
    width: 50vw;
  }
  .work-process__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .work-process__link {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
  }
  .block .block_header {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin-bottom: 8.065vw;
    margin-top: 8.065vw;
  }
  .block .block__title {
    margin: 0;
    font-size: 3.495vw;
    font-weight: 600;
    color: #ffffff;
  }
  .block .block_cont_why {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 3.36vw;
  }
  .block .block_cont_why img {
    filter: drop-shadow(0px 0.538vw 0.538vw rgba(0, 0, 0, 0.45));
    margin-right: 2.688vw;
    width: 9.946vw;
  }
  .block .block_cont_why .l300 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    margin-left: 15vw;
  }
  .block .block_cont_why .l300 p {
    margin: 0;
    font-size: 1.882vw;
    color: #FFFFFF;
  }
  .reviews {
    box-shadow: 0px -1px 1.868vw rgba(225, 45, 0, 0.3);
    background: rgba(0, 0, 0, 0.44);
  }
  .block_reviews {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.688vw;
  }
  .block_reviews .reviews__slide {
    width: 43vw;
  }
  .block_reviews img {
    width: 100%;
    height: 100%;
    background-color: #fff;
    -o-object-fit: contain;
       object-fit: contain;
    box-shadow: 0.269vw 0.672vw 0.538vw rgba(0, 0, 0, 0.25);
  }
  .reviews__href {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 7.796vw;
    margin-bottom: 4.839vw;
  }
  .reviews__link {
    text-decoration: none;
    font-size: 1.882vw;
    color: #FFFFFF;
  }
  .why-us {
    padding-bottom: 13.441vw;
  }
  .popular-products {
    padding-bottom: 9.409vw;
    border-bottom: 1px solid #58595B;
    overflow-x: hidden;
  }
  .block_popular-products {
    padding-bottom: 1.344vw;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
  }
  .block_popular-products::-webkit-scrollbar {
    height: 5px;
  }
  .block_popular-products::-webkit-scrollbar-track {
    background: transparent;
    margin: 0;
  }
  .block_popular-products::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    min-height: 20px;
  }
  .block_popular-products::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
  }
  .popular-grid {
    width: -moz-max-content;
    width: max-content;
    flex-direction: row;
  }
  .block_popular-products:hover {
    scroll-behavior: smooth;
  }
  .faq_cont {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .faq_cont .faq_cont_left {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 2.688vw;
  }
  .faq_cont .faq_cont_right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 6vw;
  }
  .faq_cont .faq_cont_right .faq_cont_right_block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .faq__content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 60.484vw;
    height: 64.382vw;
    background: rgba(0, 0, 0, 0.44);
    box-shadow: 0px -1px 1.868vw rgba(225, 45, 0, 0.3);
    border-radius: 0px;
    padding: 6.048vw 9.677vw;
    box-sizing: border-box;
  }
  .faq__title {
    margin: 0 0 3.36vw 0;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 3.495vw;
    line-height: 1.35;
    color: #FFFFFF;
    text-shadow: 0px 0.538vw 0.538vw rgba(0, 0, 0, 0.25);
    text-align: center;
  }
  .faq__description {
    margin: 0 0 5.376vw 0;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-size: 1.882vw;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
  }
  .faq__contacts {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2.554vw;
    width: 100%;
  }
  .faq__contact {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    height: 6.72vw;
    border-radius: 0.806vw;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
  }
  .faq__contact--telegram {
    background: #2AABEE;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .faq__contact--telegram:hover {
    background-color: #2AABEE;
    box-shadow: 0px -1px 1.5vw rgba(0, 195, 255, 0.6);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .faq__contact--telegram .faq__contact-text {
    color: #FFFFFF;
  }
  .faq__contact--telegram img {
    width: 6.452vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .faq__contact--whatsapp {
    background: #00E510;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .faq__contact--whatsapp:hover {
    background-color: #00E510;
    box-shadow: 0px -1px 1.5vw rgba(6, 247, 6, 0.6);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .faq__contact--whatsapp .faq__contact-text {
    color: #FFFFFF;
  }
  .faq__contact--whatsapp img {
    width: 6.452vw;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .faq__contact--callback {
    background: transparent;
    border: 1px solid #F77C1D;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
  .faq__contact--callback .faq__contact-text {
    color: #FFFFFF;
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .faq__contact--callback:hover {
    background-color: #fc9d55;
    box-shadow: 0px -1px 1.5vw rgba(225, 45, 0, 0.6);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .faq__contact-icon {
    position: absolute;
    left: 1.344vw;
    width: 6.72vw;
    height: 6.72vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .faq__contact-text {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 2.016vw;
    line-height: 1.5;
    text-decoration: none;
    margin-left: 4.032vw;
  }
  .faq__devider {
    width: 2px;
    height: 4.704vw;
    background: #FFFFFF;
    margin-left: 0.672vw;
  }
  .faq__contact-text--callback {
    margin-left: 0;
  }
  .faq_cont {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 7vw;
  }
  .item_cont {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
    border-bottom: 2px solid #F77C1D;
    width: 87.366vw;
  }
  .item_cont p {
    color: #FFFFFF;
    font-size: 1.882vw;
    line-height: 1.5;
    font-weight: 300;
  }
  .item_cont .item_cont_head {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    cursor: pointer;
  }
  .item_cont .item_cont_head .item_cont_que {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .item_cont .item_cont_head .item_cont_que p {
    font-size: 2.419vw;
  }
  .item_cont .item_cont_head .item_cont_exit {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    transition: transform 0.3s ease;
  }
  .item_cont .item_cont_head .item_cont_exit img {
    width: 2.957vw;
  }
  .item_cont .item_cont_answ {
    display: block;
    padding-left: 3.36vw;
    padding-right: 3.36vw;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .item_cont.active .item_cont_exit {
    transform: rotate(135deg);
  }
  .item_cont.active .item_cont_answ {
    max-height: 500px;
  }
  .custom-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #333;
  }
  .custom-swiper-button:hover {
    background: rgb(255, 255, 255);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .custom-swiper-button svg {
    width: 20px;
    height: 20px;
  }
  .swiper-button-next.custom-swiper-button {
    right: -2.4vw;
    display: none;
  }
  .swiper-button-prev.custom-swiper-button {
    left: -2.4vw;
    display: none;
  }
  .custom-swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 10;
  }
  .custom-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
  }
  .custom-swiper-pagination .swiper-pagination-bullet-active {
    background: #333;
    opacity: 1;
    transform: scale(1.2);
  }
  .custom-swiper-pagination .swiper-pagination-bullet:hover {
    background: #666;
    opacity: 1;
  }
  .popular-products-swiper {
    padding: 0 60px;
  }
  .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .modal-overlay.is-open {
    display: flex;
    opacity: 1;
  }
  .modal-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2.688vw;
  }
  .modal-body {
    position: relative;
    width: 67.204vw;
    height: auto;
    min-height: 64.382vw;
    background: #111;
    border: 1px solid #F77C1D;
  }
  .modal-close-wrap {
    position: absolute;
    top: 2.016vw;
    right: 2.016vw;
    cursor: pointer;
    z-index: 10;
  }
  .modal-close-wrap .modal-close {
    font-size: 4.032vw;
    color: #FFFFFF;
    line-height: 1;
    transition: color 0.2s;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .modal-close-wrap .modal-close:hover {
    color: #F77C1D;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .modal-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 3.36vw;
  }
  .form-inputs {
    display: flex;
    flex-direction: column;
    gap: 2.016vw;
    width: 100%;
  }
  .input-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .modal-input {
    width: 100%;
    height: 6.72vw;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.538vw;
    padding: 0 2.688vw;
    font-family: "Montserrat", sans-serif;
    font-size: 2.151vw;
    color: #FFFFFF;
    outline: none;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }
  .modal-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .modal-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  .modal-input:focus {
    border-color: #F77C1D;
  }
  .modal-input.error {
    border-color: red;
  }
  .modal-textarea {
    height: 13.441vw;
    padding-top: 2.016vw;
    resize: none;
  }
  .form-actions {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .form-actions .modal-submit-btn {
    width: 100%;
    cursor: pointer;
    background: #F77C1D;
    border: none;
  }
  .form-actions .modal-submit-btn .faq__contact-text {
    margin-left: 0;
    font-weight: 600;
  }
  .form-status {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 1.882vw;
    min-height: 2.688vw;
  }
  .form-status.success {
    color: #00E510;
  }
  .form-status.error {
    color: #FF4444;
  }
  .cart-page {
    display: flex;
    flex-direction: column;
    margin: 5.914vw 4.704vw;
    padding: 2.419vw 5.376vw;
    background: #1B1B1B;
  }
  .cart-page__top {
    display: flex;
    flex-direction: column;
    margin-bottom: 4.032vw;
  }
  .cart-page__breadcrumbs {
    display: flex;
    color: #818181;
    margin-bottom: 4.032vw;
    font-size: 1.747vw;
  }
  .cart-page__breadcrumbs a {
    text-decoration: none;
    color: #818181;
  }
  .cart-page__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .cart-page__title {
    font-weight: 600;
    font-size: 3.495vw;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0;
  }
  .cart-page__continue-shopping {
    font-size: 1.882vw;
    color: #F77C1D;
    text-decoration: none;
    display: flex;
    align-items: center;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .cart-page__continue-shopping:hover {
    text-decoration: underline;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .cart-page__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 4.032vw;
  }
  .cart-page__items {
    width: 100%;
  }
  .cart-page__summary {
    width: 49.731vw;
    background: #383838;
    padding: 3.36vw;
    display: flex;
    flex-direction: column;
    gap: 2.688vw;
  }
  .cart-items-table {
    width: 100%;
    border-collapse: collapse;
  }
  .cart-items-table__header {
    background: #383838;
  }
  .cart-items-table__header-cell {
    padding: 2.016vw 1.882vw;
    text-align: left;
    font-weight: 600;
    font-size: 1.613vw;
    color: #FFFFFF;
    border-bottom: 1px solid #58595B;
  }
  .cart-items-table__body-row {
    border-bottom: 1px solid #58595B;
    font-size: 1.613vw;
  }
  .cart-items-table__cell {
    padding: 2.016vw 0;
    vertical-align: middle;
    color: #ffffff;
  }
  .cart-items-table__cell .cart-actions {
    display: flex;
    justify-content: center;
  }
  .cart-items-table__cell .cart-actions a {
    text-decoration: underline;
    color: #F77C1D;
  }
  .woocommerce-notices-wrapper .woocommerce-message {
    font-size: 1.882vw;
    color: #FFFFFF;
  }
  .cart-items-table__product {
    display: flex;
    align-items: center;
    gap: 2.016vw;
  }
  .cart-items-table__product-image {
    width: 14.785vw;
    height: 12.097vw;
    -o-object-fit: cover;
       object-fit: cover;
    border: 1px solid #58595B;
  }
  .cart-items-table__product-image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .cart-items-table__product-info {
    display: flex;
    flex-direction: column;
    gap: 0.672vw;
    width: 60%;
  }
  .cart-items-table__product-name {
    font-size: 1.882vw;
    color: #FFFFFF;
    margin: 0;
    font-weight: 500;
  }
  .cart-items-table__product-sku {
    font-size: 1.613vw;
    color: #818181;
    margin: 0;
  }
  .cart-items-table__price {
    font-size: 1.882vw;
    color: #FFFFFF;
    width: 9.409vw;
    display: flex;
    justify-content: center;
  }
  .cart-items-table__quantity {
    display: flex;
    align-items: center;
    gap: 1.344vw;
    justify-content: center;
  }
  .cart-items-table__quantity-btn {
    background: transparent;
    border: 1px solid #F77C1D;
    color: #F77C1D;
    width: 3.36vw;
    height: 3.36vw;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2.151vw;
    line-height: 1;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .cart-items-table__quantity-btn:hover {
    background: rgba(247, 124, 29, 0.1);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .cart-items-table__quantity-input {
    width: 6.72vw;
    height: 4.704vw;
    background: transparent;
    border: 1px solid #58595B;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.882vw;
  }
  .cart-items-table__quantity-input:focus {
    outline: 1px solid #F77C1D;
  }
  .cart-items-table__subtotal {
    font-size: 1.882vw;
    color: #FFFFFF;
    font-weight: 500;
    display: flex;
    justify-content: center;
  }
  .cart-items-table__remove {
    text-align: center;
  }
  .cart-items-table__remove-btn {
    background: transparent;
    border: none;
    color: #818181;
    font-size: 5.376vw;
    cursor: pointer;
    height: 8.065vw;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .cart-items-table__remove-btn:hover {
    color: #F77C1D;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .cart-summary {
    display: flex;
    flex-direction: column;
    gap: 2.016vw;
  }
  .cart-summary__title {
    font-weight: 600;
    font-size: 2.151vw;
    color: #FFFFFF;
    margin: 0;
    padding-bottom: 1.344vw;
    border-bottom: 1px solid #58595B;
  }
  .cart-summary__row {
    display: flex;
    justify-content: space-between;
  }
  .cart-summary__label {
    font-size: 1.882vw;
    color: #FFFFFF;
  }
  .cart-summary__value {
    font-size: 1.882vw;
    color: #FFFFFF;
  }
  .cart-summary__total {
    font-weight: 600;
    font-size: 2.419vw;
    color: #FFFFFF;
    margin-top: 1.344vw;
    padding-top: 1.344vw;
    border-top: 1px solid #58595B;
  }
  .cart-summary__actions {
    display: flex;
    flex-direction: column;
    gap: 2.016vw;
    margin-top: 2.688vw;
  }
  .cart-summary__checkout-btn {
    background: #F77C1D;
    color: #000000;
    border: none;
    height: 6.048vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.882vw;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .cart-summary__checkout-btn:hover {
    background: #e06f17;
    box-shadow: 0 0 1.344vw rgba(247, 124, 29, 0.5);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .cart-summary__coupon {
    display: flex;
    flex-direction: column;
    gap: 1.344vw;
    margin-top: 2.016vw;
    padding-top: 2.016vw;
    border-top: 1px solid #58595B;
  }
  .cart-summary__coupon-title {
    font-size: 1.882vw;
    color: #FFFFFF;
    margin: 0;
  }
  .cart-summary__coupon-form {
    display: flex;
    flex-direction: column;
    gap: 1.344vw;
  }
  .cart-summary__coupon-input {
    height: 4.704vw;
    background: transparent;
    border: 1px solid #58595B;
    color: #FFFFFF;
    padding: 0 1.344vw;
    font-size: 1.747vw;
  }
  .cart-summary__coupon-input:focus {
    outline: 1px solid #F77C1D;
  }
  .cart-summary__coupon-btn {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid #F77C1D;
    height: 4.704vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.747vw;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .cart-summary__coupon-btn:hover {
    background: rgba(247, 124, 29, 0.1);
    box-shadow: 0 0 1.344vw rgba(247, 124, 29, 0.3);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6.72vw 0;
    text-align: center;
  }
  .cart-empty__title {
    font-size: 3.226vw;
    color: #FFFFFF;
    margin-bottom: 2.688vw;
  }
  .cart-empty__text {
    font-size: 1.882vw;
    color: #818181;
    margin-bottom: 4.032vw;
    max-width: 53.763vw;
  }
  .cart-empty__button {
    background: #F77C1D;
    color: #000000;
    border: none;
    height: 6.048vw;
    width: 26.882vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.882vw;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .cart-empty__button:hover {
    background: #e06f17;
    box-shadow: 0 0 1.344vw rgba(247, 124, 29, 0.5);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .cart-page__content {
    flex-direction: column;
    gap: 4.032vw;
  }
  .cart-page__items {
    width: 100%;
  }
  .cart-page__summary {
    width: 100%;
  }
  .foot {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: stretch;
    align-items: stretch;
    padding-top: 5.108vw;
    background: rgba(0, 0, 0, 0.44);
    box-shadow: 0px -1px 1.868vw rgba(225, 45, 0, 0.3);
  }
  .foot .foot_top {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .foot .foot_top_1 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 20.699vw;
  }
  .foot .foot_top_1_icons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 5.376vw;
  }
  .foot .foot_top_1_icons img {
    width: 3.226vw;
  }
  .foot .foot_top_1_logo {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
  }
  .foot .foot_top_1_logo a {
    width: 100%;
  }
  .foot .foot_top_1_logo img {
    width: 100%;
  }
  .foot .foot_top_2 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .foot .foot_top_2_block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.016vw;
    width: 28.495vw;
  }
  .foot .foot_top_2_block_zag {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    font-size: 1.613vw;
    line-height: 150%;
    text-transform: uppercase;
    color: #868686;
    margin: 0;
    margin-bottom: 0.538vw;
  }
  .foot .foot_top_2_block_tel {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-size: 2.016vw;
    line-height: 2.419vw;
    text-decoration-line: underline;
    color: #FFFFFF;
    margin: 0;
  }
  .foot .foot_top_2_block_social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.941vw;
  }
  .foot .foot_top_2_block_social a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.941vw;
  }
  .foot .foot_top_2_block_social img {
    width: 2.688vw;
  }
  .foot .foot_top_2_block_social p {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-size: 1.747vw;
    line-height: 2.151vw;
    color: #FFFFFF;
    margin: 0;
  }
  .foot .foot_top_2_block_mail {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-size: 1.747vw;
    line-height: 2.151vw;
    color: #FFFFFF;
    text-decoration: none;
  }
  .foot .foot_top_2_block_adres p {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-size: 1.613vw;
    line-height: 2.016vw;
    color: #FFFFFF;
    margin: 0;
  }
  .foot .foot_top_3 {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .foot .foot_top_3_block {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.016vw;
    width: 21.505vw;
  }
  .foot .foot_top_3_block ul {
    display: flex;
    flex-direction: column;
    gap: 2.016vw;
  }
  .foot .foot_top_3_block li a {
    text-decoration: none;
    font-size: 1.747vw;
    color: #FFFFFF;
  }
  .foot .foot_top_4 {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding-right: 7.661vw;
  }
  .foot .foot_top_4_text {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    padding-left: 3.091vw;
    border-left: 2px solid #D9D9D9;
    width: 81.989vw;
  }
  .foot .foot_top_4_text p {
    margin: 0;
    font-size: 1.613vw;
    color: #FFFFFF;
    font-weight: 300;
  }
  .foot .foot_top_4_off_link a {
    font-size: 1.613vw;
    color: #FFFFFF;
    text-decoration: none;
    padding-left: 3.091vw;
    border-left: 2px solid #D9D9D9;
  }
  .foot .foot_top_4_off {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 7.392vw;
  }
  .foot .foot_top_4_off_pol {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .foot .foot_top_4_off_usl {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .foot .foot_top_4_off_dog {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .foot .foot_bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-top: 2px solid #323131;
    margin-top: 6.183vw;
  }
  .foot .foot_bottom_text {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 7.796vw;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .foot .foot_bottom_text p {
    margin: 0;
    font-size: 1.613vw;
    font-weight: 300;
    color: #fff;
  }
  .foot .foot_bottom_designer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.538vw;
    width: 16.129vw;
    background: #000000;
  }
  .foot .foot_bottom_designer p {
    margin: 0;
    font-size: 1.344vw;
    font-weight: 200;
    color: #fff;
    text-align: center;
  }
  .foot .foot_bottom_designer a {
    width: 12.097vw;
  }
  .foot .foot_bottom_designer img {
    width: 12.097vw;
  }
  .image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  .image-modal {
    height: 80vh;
    position: relative;
    /* max-height: 70vw; */
    /* max-width: 100%; */
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .image-modal-overlay.active {
    display: flex;
    opacity: 1;
  }
  .image-modal-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain; /* Чтобы изображение не искажалось и адаптировалось по размеру */
  }
  .image-modal-close {
    position: absolute;
    top: 0;
    right: 2.285vw;
    color: white;
    font-size: 6.72vw;
    cursor: pointer;
  }
  .subcategory-card {
    transition: transform 0.6s ease-out;
    overflow: hidden;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .subcategory-card:hover .subcategory-card__image {
    transform: scale(1.2);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .subcategory-card__image {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .faq__contact--callback {
    transition: background-color 0.3s ease, border-color 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .faq__contact--callback:hover {
    background-color: #F77C1D;
    border-color: #F77C1D;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .faq__contact--callback .faq__contact-text {
    color: #FFFFFF;
  }
  .faq__contact--whatsapp {
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
  .faq__contact--whatsapp .faq__contact-text {
    transition: text-shadow 0.3s ease;
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .faq__contact--whatsapp:hover .faq__contact-text {
    text-shadow: 0 0 15px #00FF00;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .header__menu .menu-item:not(.current-menu-item) a {
    position: relative;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
  .header__menu .menu-item:not(.current-menu-item) a::after {
    content: "";
    position: absolute;
    bottom: -0.538vw;
    left: 0;
    width: 0;
    height: 0.269vw;
    background-color: #F77C1D;
    transition: width 0.3s ease;
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .header__menu .menu-item:not(.current-menu-item) a:hover::after {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .header__call-btn {
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .header__call-btn:hover {
    background-color: #F77C1D;
    border-color: #F77C1D;
    color: #FFFFFF;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .header__contact-whatsapp {
    transition: text-shadow 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .header__contact-whatsapp:hover {
    text-shadow: 0 0 15px #00FF00;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .header__contact-phone {
    transition: color 0.3s ease;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .header__contact-phone:hover {
    color: #F77C1D;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .product-grid__btn--details {
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .product-grid__btn--details:hover {
    background-color: #F77C1D;
    border-color: #F77C1D;
  }
  .product-grid__btn--details:hover a {
    color: #FFFFFF;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .up_143 {
    overflow-x: visible;
  }
  .yith-wcwl-feedback-messages-container, .woocommerce-message {
    display: none !important;
  }
  .has-text-align-center {
    align-self: center;
  }
  .wp-block-group-oferta {
    margin-left: 20vw;
    margin-right: 20vw;
    padding: 4vw;
    background-color: white;
  }
  .wp-block-group-dost_and_oplata {
    margin: 2.5vw;
    padding: 2.5vw 30vw 2.5vw 2.5vw;
    background: rgba(0, 0, 0, 0.44);
    width: 95vw;
    color: white;
  }
  .wp-block-group-dost_and_oplata p {
    line-height: 1.5;
  }
  @keyframes shadow-pulse {
    0% {
      box-shadow: 0px -1px 0.965vw rgba(225, 45, 0, 0);
    }
    50% {
      box-shadow: 0px -1px 1.965vw rgba(225, 45, 0, 0.5);
    }
    100% {
      box-shadow: 0px -1px 0.965vw rgba(225, 45, 0, 0.3);
    }
  }
  @keyframes shake-btn {
    0%, 100% {
      transform: translate(0, 0);
    }
    10%, 30%, 50%, 70%, 90% {
      transform: translate(-2px, 2px);
    }
    20%, 40%, 60%, 80% {
      transform: translate(2px, -2px);
    }
  }
  @keyframes rotate360 {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  .mobile-menu-wrapper {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    background: #1B1B1B;
    z-index: 100;
    padding: 5.645vw 2.688vw 2.688vw 2.688vw;
    border-top: none;
  }
  .mobile-menu__top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6.72vw;
    width: 100%;
  }
  .mobile-search-form {
    width: 75% !important;
  }
  .mobile-menu__close {
    width: 4.032vw;
    height: 4.032vw;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1.344vw;
  }
  .mobile-menu__close span {
    position: absolute;
    width: 100%;
    height: 0.269vw;
    background-color: #fff;
  }
  .mobile-menu__close span:nth-child(1) {
    transform: rotate(45deg);
  }
  .mobile-menu__close span:nth-child(2) {
    transform: rotate(-45deg);
  }
  .mobile-menu__actions-row {
    display: flex;
    justify-content: flex-end;
  }
  .mobile-menu__icons {
    display: flex;
    gap: 2.688vw;
  }
  .mobile-menu__socials {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.688vw;
    margin-top: 2.688vw;
    flex-wrap: wrap;
  }
  .mobile-menu__socials .social-icon {
    display: block;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
  .mobile-menu__socials .social-icon img {
    width: 6.72vw;
    height: auto;
    transition: transform 0.3s ease;
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .mobile-menu__socials .social-icon:hover img {
    transform: scale(1.1);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .foot.desktop-foot, .foot.foot-desktop {
    display: none !important;
  }
  .foot-tablet {
    display: flex !important;
    flex-direction: column;
    background-color: #141414;
    padding: 5.376vw 4.704vw 2.688vw 4.704vw;
    color: #FFFFFF;
    width: 100%;
    box-sizing: border-box;
  }
  .foot-tablet__row {
    margin-bottom: 5.376vw;
    width: 100%;
  }
  .foot-tablet__row:last-child {
    margin-bottom: 0;
  }
  .foot-tablet__socials {
    display: flex;
    justify-content: center;
    gap: 2.016vw;
  }
  .foot-tablet__socials .social-icon {
    display: block;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
  .foot-tablet__socials .social-icon img {
    width: 6.048vw;
    height: auto;
    transition: transform 0.3s ease;
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .foot-tablet__socials .social-icon:hover img {
    transform: scale(1.1);
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .foot-tablet__main-grid {
    display: grid;
    grid-template-columns: 24.194vw 1fr 20.161vw;
    gap: 4.032vw;
    align-items: start;
  }
  .foot-tablet__col-logo {
    margin-top: 11vw;
  }
  .foot-tablet__col-logo img {
    width: 100%;
    max-width: 21.505vw;
    height: auto;
  }
  .foot-tablet__col-contacts {
    display: flex;
    flex-direction: column;
    gap: 2.016vw;
  }
  .foot-tablet__title {
    font-size: 1.613vw;
    color: #868686;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
  }
  .foot-tablet__phone {
    font-size: 2.419vw;
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 500;
  }
  .foot-tablet__whatsapp a {
    display: flex;
    align-items: center;
    gap: 1.344vw;
    color: #FFFFFF;
    font-size: 1.882vw;
  }
  .foot-tablet__whatsapp a img {
    width: 2.688vw;
  }
  .foot-tablet__email {
    font-size: 1.882vw;
    color: #FFFFFF;
    text-decoration: none;
  }
  .foot-tablet__address {
    margin-top: 1.344vw;
  }
  .foot-tablet__address p {
    font-size: 1.747vw;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0 0 0.672vw 0;
    font-weight: 300;
  }
  .foot-tablet__col-catalog ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.344vw;
    margin-top: 2vw;
  }
  .foot-tablet__col-catalog li a {
    font-size: 1.882vw;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .foot-tablet__col-catalog li a:hover {
    color: #F77C1D;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .foot-tablet__legal {
    display: flex;
    justify-content: space-between;
    gap: 5.376vw;
    border-top: 1px solid #333;
    padding-top: 4.032vw;
  }
  .foot-tablet__legal-text {
    width: 65%;
  }
  .foot-tablet__legal-text p {
    font-size: 1.613vw;
    line-height: 1.5;
    color: #FFFFFF;
    margin: 0;
    font-weight: 300;
  }
  .foot-tablet__legal-links {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 2.016vw;
    border-left: 1px solid #58595B;
    padding-left: 2.688vw;
  }
  .foot-tablet__legal-links a {
    font-size: 1.613vw;
    color: #FFFFFF;
    text-decoration: none;
    /* Стили применятся ТОЛЬКО если у устройства есть мышка */
  }
}
@media (min-width: 576px) and (max-width: 1200px) and (hover: hover) {
  .foot-tablet__legal-links a:hover {
    text-decoration: underline;
  }
}
@media (min-width: 576px) and (max-width: 1200px) {
  .foot-tablet__copyright {
    border-top: 1px solid #333;
    padding-top: 2.688vw;
    margin-bottom: 2.688vw;
  }
  .foot-tablet__copyright p {
    font-size: 1.478vw;
    color: #818181;
    text-align: left;
    line-height: 1.4;
    margin: 0;
  }
  .foot-tablet__dev {
    display: flex;
    justify-content: center;
  }
  .foot-tablet__dev .foot-tablet__dev-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #000;
    padding: 0.672vw 1.344vw;
  }
  .foot-tablet__dev .foot-tablet__dev-block p {
    font-size: 1.344vw;
    color: #fff;
    margin: 0 0 0.672vw 0;
  }
  .foot-tablet__dev .foot-tablet__dev-block img {
    width: 10.753vw;
    height: auto;
  }
}/*# sourceMappingURL=styles_medium.css.map */