@font-face {
    font-family: 'Inter Var';
    src: url('../fonts/inter/Inter-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Inter Var';
    src: url('../fonts/inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
  }
  
  
  :root {
    --color-white: #ffff;
    --color-gray: #909294;
    --color-gray-dark: #727272;
    --color-gray-2: #CFCFCF;
    --color-gray-3: #F5F6F7;
    --color-black: #212529;
    --color-blue: #1F4063;
    --color-blue-dark: #172E48;
    --color-red: #E04B4B;
  
  }
  body{
      font-family: 'Inter Var';
      font-size: 16px;
      color: var(--color-black);
  }
  section{
      margin-bottom: 40px;
  }
  .container{
      max-width: 1392px;
      margin: 0 auto;
  }
  .btn{
      padding: 8px 16px;
      font-size: 14px;
      border: none;
      border-radius: 58px;
      transition: .3s all ease-in-out;
      cursor: pointer;
  }
  .btn-blue{
      background: var(--color-blue);
      color: var(--color-white);
  }
  .btn-white{
      background: var(--color-white);
      color: var(--color-black);
  }
  .btn-trans{
      background: transparent;
      color:var(--color-black);
      border: 1px solid var(--color-black);
  }
  .btn-trans:hover{
      background: var(--color-blue);
      color: var(--color-white);
  }
  .btn-blue:hover{
      background: var(--color-blue-dark);
  }
  .btn-white:hover{
      background: var(--color-gray-2);
  }
  .txt-underline{
      text-decoration: underline;
  }
  h2{
      font-size: 36px;
      font-weight: 600;
  }
  
  /* Шапка */
  .ticker-strip {
    overflow: hidden;
    background-color: var(--color-blue);
    padding: 12px 0;
    white-space: nowrap;
    width: 100%;
  }
  
  .ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 45s linear infinite;
  }
  
  .ticker-track span {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #B4BFCB;
  }
  
  @keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  .header{
      padding: 16px 0;
      position: relative;
      z-index: 100;
      background-color: var(--color-white);
      transition: box-shadow .25s ease;
  }
  .header.is-fixed{
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  }
  .header-spacer{
      display: block;
      width: 100%;
      height: 0;
      pointer-events: none;
  }
  .header .container{
      display: flex;
      flex-direction: column;
  }
  .header__top{
      display: flex;
      padding: 10px 0;
      align-items: center;
  }
  .header .custom-logo-link{
      width: 110px;
      height: 30px;
      object-fit: cover;
      margin-right: 32px;
  }
  .header__nav-desctop, .header__cats{
      display: flex;
      gap: 24px;
  }
  .header__nav-desctop a{
      color: var(--color-gray);
      transition: .3s all ease-in-out;
      font-size: 14px;
  }
  .header__nav-desctop a:hover{
      color: var(--color-gray-dark);
  }
  .header__phone{
      margin-left: auto;
      font-size: 14px;
      margin-right: 18px;
  }
  .header__buttons{
      display: flex;
      gap: 18px;
      align-items: center;
  }
  .header__cart-toggle{
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      color: inherit;
      font: inherit;
      line-height: 0;
  }
  .header__cart-count{
      position: absolute;
      top: -7px;
      right: -9px;
      min-width: 16px;
      height: 16px;
      padding: 0 4px;
      border-radius: 100px;
      background-color: var(--color-blue);
      color: var(--color-white);
      font-size: 10px;
      font-weight: 600;
      line-height: 16px;
      text-align: center;
  }
  .header__cart-count.is-empty{
      display: none;
  }
  .header__bottom{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      position: relative;
      overflow: visible;
      z-index: 40;
  }
  .header__cats{
      position: relative;
      z-index: 41;
  }
  .header__cats > .header__cat{
      position: relative;
  }
  .header__cats a{
      display: block;
      transition: .3s all ease-in-out;
      white-space: nowrap;
  }
  .header__cats-sub{
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 220px;
      margin: 0;
      padding: 8px 0;
      display: none;
      flex-direction: column;
      gap: 0;
      background: var(--color-white);
      border: 1px solid var(--color-gray-3);
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
      z-index: 42;
  }
  .header__cats > .header__cat:hover > .header__cats-sub,
  .header__cats > .header__cat:focus-within > .header__cats-sub{
      display: flex;
  }
  .header__cats-sub .header__cat{
      position: relative;
  }
  .header__cats-sub a{
      padding: 10px 16px;
      font-size: 14px;
      color: var(--color-black);
  }
  .header__cats-sub a:hover{
      color: var(--color-blue);
      background: var(--color-gray-3);
  }
  .header__cats-sub--l3{
      top: 0;
      left: 100%;
      margin-left: 0;
      z-index: 43;
  }
  .header__cats-sub--l3::before{
      content: "";
      position: absolute;
      top: 0;
      left: -16px;
      width: 16px;
      height: 100%;
  }
  .header__cat--l2.header__cat--has-children{
      z-index: 1;
  }
  .header__cat--l2.header__cat--has-children:hover{
      z-index: 2;
  }
  .header__cats-sub .header__cat:hover > .header__cats-sub--l3,
  .header__cats-sub .header__cat:focus-within > .header__cats-sub--l3{
      display: flex;
  }
  .header__cat--has-children > a{
      display: flex;
      align-items: center;
      gap: 6px;
  }
  .header__cat--has-children > a::after{
      content: "";
      width: 10px;
      height: 6px;
      flex-shrink: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23909294' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
  }
  .header__cat--l2.header__cat--has-children > a{
      justify-content: space-between;
      padding-right: 16px;
  }
  .header__cat--l2.header__cat--has-children > a::after{
      transform: rotate(-90deg);
  }
  .header-search{
      z-index: 30;
  }
  .header-search__trigger{
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      position: relative;
      z-index: 31;
  }
  .header-search__field{
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateX(12px);
      transition: max-width .35s ease, opacity .25s ease, transform .35s ease;
  }
  .header-search.is-open .header-search__field{
      max-width: 260px;
      opacity: 1;
      transform: translateX(0);
  }
  .header-search__input{
      width: 240px;
      max-width: 100%;
      height: 40px;
      padding: 0 16px;
      border: 1px solid var(--color-gray-2);
      border-radius: 58px;
      background: var(--color-white);
      font-family: inherit;
      font-size: 14px;
      color: var(--color-black);
      outline: none;
  }
  .header-search__input:focus{
      border-color: var(--color-blue);
  }
  .header-search__popup{
      position: absolute;
      top: 100%;
      right: 0;
      left: auto;
      width: 716px;
      max-width: none;
      min-width: 320px;
      display: grid;
      grid-template-columns: 30% 1fr;
      gap: 20px;
      padding: 20px;
      margin-top: 0;
      background: var(--color-white);
      border: 1px solid var(--color-gray-2);
      border-radius: 16px;
      box-shadow: 0 16px 40px rgba(33, 37, 41, 0.12);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity .25s ease, transform .3s ease, visibility .3s;
      z-index: 40;
  }
  .header-search.is-popup-open .header-search__popup{
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
  }
  .header-search__popup[hidden]{
      display: none;
  }
  .header-search.is-popup-open .header-search__popup[hidden]{
      display: grid;
  }
  .header-search__suggest{
      border-right: 1px solid var(--color-gray-2);
  }
  .header-search__suggest-title{
      margin-bottom: 20px;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.02em;
  }
  .header-search__suggest-list{
      display: flex;
      flex-direction: column;
      gap: 4px;
  }
  .header-search__suggest-item{
      display: block;
      width: 100%;
      padding: 6px 0;
      border: none;
      background: transparent;
      text-align: left;
      font-family: inherit;
      font-size: 14px;
      color: var(--color-black);
      cursor: pointer;
      transition: color .2s ease;
  }
  .header-search__suggest-item:hover{
      color: var(--color-blue);
  }
  .header-search__suggest.is-empty .header-search__suggest-list::after{
      content: '—';
      display: block;
      font-size: 14px;
      color: var(--color-gray);
      padding: 6px 0;
  }
  .header-search__products-list{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
  }
  .header-search__product{
      display: flex;
      align-items: center;
      border-radius: 12px;
      background: var(--color-gray-3);
      color: inherit;
      text-decoration: none;
      transition: background .2s ease;
      flex-direction: column;
      overflow: hidden;
  }
  .header-search__product-img{
      width: 100%;
      height: 116px;
      object-fit: cover;
      flex-shrink: 0;
      object-position: top;
  }
  .header-search__product-info{
      display: flex;
      flex-direction: column;
      gap: 4px;
      min-width: 0;
      padding: 12px 8px;
  }
  .header-search__product-name{
      font-size: 13px;
      line-height: 1.3;
      text-transform: uppercase;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
  }
  .header-search__product-price{
      font-size: 14px;
      font-weight: 500;
  }
  .header-search__empty{
      font-size: 14px;
      color: var(--color-gray);
      padding: 12px 0;
  }
  .header-search.is-loading .header-search__products-list{
      opacity: 0.5;
      pointer-events: none;
  }
  .header-search--mobile{
      display: none;
  }
  
  /* Подвал */
  .footer .container{
      padding: 32px;
      background-color: var(--color-blue);
      border-radius: 48px;
      color: var(--color-white);
      font-size: 14px;
  }
  .footer__top{
      display: flex;
      margin-bottom: 32px;
      gap: 32px;
  }
  .footer__center{
    margin-left: 23%;
  }
  .footer a{
      color: var(--color-white);
      transition: .3s all ease-in-out;
  }
  .footer a:hover{
      color:var(--color-gray-2);
  }
  .footer__details{
      color: var(--color-gray);
      margin-bottom: 24px;
  }
  .footer__nav, .footer__cats{
      display: flex;
      gap:10px;
      flex-direction: column;
  }
  .footer__bottom{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 16px;
  }
  .footer__policys{
      display: flex;
      justify-content: space-between;
      gap: 16px;
  }
  .footer__messangers{
      display: flex;
      gap: 40px;
      margin-bottom:24px;
  }
  .footer__logo{
      margin-bottom: 5px;
  }
  @media(max-width: 1100px){
      .footer__policys{
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 16px;
          justify-items: center;
      }
  }
  /* Главная */
  .main-hero-swiper{
      position: relative;
      overflow-x: hidden;
  }
  .hero__slide{
      padding: 40px;
      min-height: 650px;
      border-radius: 48px;
      overflow: hidden;
      position: relative;
  }
  .hero__img, .hero__img-mobile{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      object-fit: cover;
  }
  .hero__img-mobile{
      display: none;
  }
  .hero__title{
      font-size: 96px;
      letter-spacing: -1px;
      font-weight: 500;
      z-index: 2;
      position: relative;
  }
  .hero__txt{
      font-size: 17px;
      max-width: 50%;
      z-index: 2;
      position: relative;
  }
  .hero__link{
      position: absolute;
      bottom: 40px;
      left: 40px;
      text-transform: uppercase;
      z-index: 2;
  }
  .hero__controls > *{
      background-color: var(--color-white);
      width: 43px;
      height: 43px;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: .3s all ease-in-out;
      z-index: 2;
  }
  .hero__controls  img{
      width: 17px;
  }
  .swiper-next img{
      transform: rotate(180deg);
  }
  .hero__controls > *:hover{
      background-color: var(--color-gray-2);
  }
  .hero__controls{
      position: absolute;
      bottom: 40px;
      right: 40px;
      display: flex;
      gap:3px;
      z-index: 2;
  }
  .cats{
      padding-bottom: 30px;
      position: relative;
  }
  .cats__slide{
      display: flex;
      justify-content: space-between;
      width: 100%;
      background: var( --color-blue);
      border-radius: 32px;
      padding: 4px;
      max-height: 284px;
  }
  .cats__content{
      max-width: 270px;
      display: flex;
      flex-direction: column;
      padding: 16px;
  }
  .cats__name{
      color: var(--color-white);
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 8px;
  }
  .cats__txt{
      font-size: 14px;
      color: var(--color-white);
  }
  .cats__link{
      width: fit-content;
      margin-top: auto;
  }
  .cats__img{
      width: 340px;
      object-fit: cover;
      border-radius: 32px;
      object-position: center top;
  }
  .container .swiper-pagination{
      position: relative;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
  }
  .cats .container{
      overflow-x: hidden;
  }
  .container .swiper-pagination-bullet{
      width: 30px;
      height: 2px;
      border-radius: initial;
  }
  .swiper-pagination-bullet-active{
      background: var(--color-blue);
  }
  .swiper-popular, .swiper-catalog, .swiper-acc, .swiper-related, .swiper-same{
       overflow-x: hidden;
  }
  .popular{
      position: relative;
      padding-bottom: 35px;
      margin-bottom: 50px
  }
  .popular__top{
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
      align-items: center;
  }
  
  .popular__tabs{
      display: flex;
      align-items: center;
      gap:12px;
  }
  .popular__tab{
      font-size: 24px;
      color: var(--color-gray);
      transition: .3s all ease-in-out;
      cursor: pointer;
  }
  .popular__tab-active{
      font-size: 36px;
      color: var(--color-blue);
      text-decoration: underline;
  }
  .popular__link{
      font-size: 14px;
      text-transform: uppercase;
  }
  .product-card{
      background-color: var(--color-gray-3);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
  }
  .product-card__img{
      width: 100%;
      height: 420px;
      object-fit: cover;
      object-position: top center;
  }
  .product-card__info{
      padding: 16px 20px;
      display: flex;
      flex-direction: column;
  }
  .product-card__colors{
      display: flex;
      gap: 16px;
      margin-bottom: 8px;
  }
  .product-card__colors-list{
      display: flex;
      gap: 8px;
  }
  .product-card__color{
      width: 18px;
      height: 18px;
      border-radius: 100%;
      cursor: pointer;
  }
  .product-card__color-current{
      border: 1px solid var(--color-blue);
  }
  .product-card__colors-name{
      color: var(--color-gray);
  }
  .product-card__name{
      text-transform: uppercase;
      margin-bottom: 16px;
      height: 52px;
  }
  .product-card__price{
      font-size: 18px;
      font-weight: 500;
  }
  .product-card__tags{
      display: flex;
      gap: 8px;
      position: absolute;
      top: 12px;
      left: 12px;
  }
  .product-card__tag{
      text-transform: uppercase;
      line-height: 100%;
      font-weight: 300;
  }
  .product-card__wishlist{
      border-radius: 100%;
      background-color: var(--color-white);
      width: 26px;
      height: 26px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 20px;
      right: 20px;
      transition: .3s all ease-in-out;
      cursor: pointer;
      border: none;
      padding: 0;
      color: #796F51;
  }

  .product-card__wishlist-active{
      color: var(--color-white);
  }
  .product-card__wishlist-active svg path{
    fill: #df0000;
  }
  .product__add-to-whishlist-active{
      color: var(--color-white);
  }
  .wishlist-icon{
      display: block;
      flex-shrink: 0;
  }
  .product__add-to-whishlist-active .wishlist-icon--product path{
      stroke: #df0000;
  }
  .wishlist__title{
      font-size: 36px;
      margin-bottom: 24px;
  }
  .wishlist__empty{
      font-size: 16px;
      color: var(--color-gray);
      padding: 40px 0;
  }
  .wishlist__products{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: 60px;
  }
  .product-card__add-to-cart{
      border-radius: 100%;
      background-color: var(--color-blue);
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      bottom: 16px;
      right: 20px;
      transition: .3s all ease-in-out;
      cursor: pointer;
      text-decoration: none;
  }
  .product-card__add-to-cart:hover{
      background-color: var(--color-blue-dark);
  }
  
  .technology{
      margin-bottom: 50px;
  }
  .technology .container{
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-content: space-between;
      column-gap: 8px;
  }
  .technology__title{
      margin-bottom: 32px;
      grid-column: 1/3;
  }
  .technology__list{
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  .technology__item{
      padding: 28px 20px;
      border-radius: 32px;
      background-color: var(--color-gray-3);
      cursor: pointer;
  }
  .technology__item .technology__item-content{
      display: none;
  }
  .technology__item-name{
      font-size: 32px;
      font-weight: 600;
  }
  .technology__imgs{
      position: relative;
      width: 100%;
      align-self: stretch;
  }
  .technology__img{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 32px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .3s ease, visibility .3s ease;
      pointer-events: none;
  }
  .technology__img-active{
      opacity: 1;
      visibility: visible;
      z-index: 1;
  }
  .technology__item-active{
      background: url('../img/technology-bg.png');
      color: var(--color-white);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: bottom right;
  }
  .technology__item-active .technology__item-content{
      display: block;
  }
  .technology__item-active .technology__item-name{
      margin-bottom: 8px;
  }
  .technology__item-txt{
      max-width: 270px;
      margin-bottom: 120px;
  }
  .technology__item-link{
      font-size: 14px;
      text-transform: uppercase;
      color: var(--color-white);
      position: relative;
      z-index: 1;
  }
  .about{
      margin-bottom: 50px;
  }
  .about .container{
      border-radius: 48px;
      padding: 32px;
      background-position: center center;
      background-size: cover;
      color: var(--color-white);
      position: relative;
  }
  .about__title{
      margin-bottom: 210px;
  }
  .about__txt{
      max-width: 745px;
      font-size: 20px;
  }
  .about .container img{
      position: absolute;
      top: 32px;
      right: 32px;
      height: 69px;
  }
  
  
  
  .reviews{
      position: relative;
  }
  .reviews__top{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
  }
  .reviews__title{
      font-weight: 600;
  }
  .reviews__link{
      font-size: 14px;
      text-transform: uppercase;
  }
  .swiper-reviews{
      overflow-x: hidden;
  }
  .review-card{
      padding: 20px;
      border-radius: 20px;
      background: var(--color-gray-3);
  }
  .review-card__top{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
  }
  .review-card__name{
      font-weight: 600;
  }
  .review-card__stars img{
      max-width: 125px;
      width: 100%;
      object-fit: contain;
  }
  .review-card__txt{
      margin-bottom: 25px;
  }
  .review-card__product{
      display: flex;
      justify-content: space-between;
  }
  .review-card__product-img{
      width: 150px;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      overflow: hidden;
      object-position: top center;
  }
  .review-card__product-info{
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      max-width: 135px;
  }
  .review-card__product-sku{
      font-size: 12px;
      color: var(--color-gray)
  }
  .review-card__product-link{
      text-transform: uppercase;
  }
  
  
  .map{
      margin-bottom: 20px;
  }
  .map .container{
      display: flex;
      background: var(--color-gray-3);
      border-radius: 32px;
      overflow: hidden;
  }
  .map__left{
      padding: 32px;
      overflow: hidden;
      max-width: 630px;
      width: 100%;
      height: 550px;
  }
  .map__right{
      width: 100%;
  }.map__right{
      width: 100%;
      min-height: 550px;
  }
  .map__yandex{
      width: 100%;
      height: 100%;
      min-height: 550px;
  }
  .map__tabs{
      display: flex;
      overflow-x: auto;
      flex-wrap: nowrap;
      gap: 12px;
      margin-bottom: 24px;
  }
  .map__tab[hidden]{
      display: none;
  }
  .map__adresses{
      display: none;
      flex-direction: column;
      gap: 16px;
      overflow-y: auto;
      max-height: 310px;
      padding: 5px;
  }
  .map__adresses.is-active{
      display: flex;
  }
  .adress.is-active{
      box-shadow: 0 0 0 1px var(--color-blue);
  }
  .map__title{
      margin-bottom: 24px;
  }
  .map__search{
      position: relative;
      margin-bottom: 24px;
  }
  .map__search input{
      width: 100%;
      padding: 8px 44px;
      background-color: var(--color-white);
      font-size: 14px;
      color: var(--color-gray);
      border-radius: 58px;
      border: 1px solid var(--color-gray);
  }
  .map__search img{
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 16px;
  }
  .map__tabs{
      display: flex;
      overflow-x: visible;
      flex-wrap: nowrap;
      gap: 12px;
      margin-bottom: 24px;
  
  }
  .map__tab{
      white-space: nowrap;
      font-size: 14px;
      padding: 8px 18px;
      border: 1px solid var(--color-gray);
      border-radius: 23px;
      transition: .3s all ease-in-out;
      cursor: pointer;
  }
  .map__tab-active{
      background-color: var(--color-blue);
      color: var(--color-white);
  }
  .adress{
      display: flex;
      align-items: center;
      background-color: var(--color-white);
      border-radius: 12px;
      padding: 16px;
  }
  .adress__name{
      max-width: 310px;
      font-weight: 500;
      letter-spacing: -1px;
      line-height: 100%;
  }
  .adress__add{
      display: flex;
      gap: 12px;
      margin-left: auto;
      margin-right: 32px;
  }
  .adress__floor, .adress__pav{
      font-size: 14px;
      color: var(--color-blue);
      padding: 6px;
      background-color: var(--color-gray-3);
      border-radius: 4px;
      line-height: 100%;
      white-space: nowrap;
  }
  .adress_btn{
      padding: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  
  .delivery-info{
      margin-bottom: 20px;
  }
  .delivery-info .container{
      display: flex;
      gap: 24px;
      border-radius: 35px;
      padding: 24px;
      line-height: 100%;
      background-color: #F3F7FE;
  }
  .delivery-info .container img{
      width: 24px;
      height: 24px;
  }
  .delivery-info__txt{
      width: 100%;
  
  }
  .delivery-info__title{
      font-size: 24px;
      margin-bottom: 12px;
  }
  .delivery-info__txt p{
      font-size: 18px;
      color: var(--color-gray);
  }
  .delivery-info__btns{
      display: flex;
      align-items: center;
      gap:24px;
  }
  .delivery-info__btns a{
      white-space: nowrap;
      text-transform: uppercase;
      padding: 16px 24px;
  }
  .mobile-panel{
      display: none;
  }
  .mobile-panel{
      position: fixed;
      bottom: 0;
      left: 0;
      background-color: var(--color-white);
      padding: 12px;
      width: 100%;
      z-index: 999;
  }
  .mobile-panel .header__buttons {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .mobile-panel .header__buttons img{
      width: 20px;
      height: 20px;
  }
  .header__burger{
      background: transparent;
      border: none;
      cursor: pointer;
  }
  body.menu-open{
      overflow: hidden;
  }
  .mobile-menu{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      height: 100dvh;
      background-color: var(--color-white);
      z-index: 1100;
      padding: 16px;
      overflow-y: auto;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .3s ease, visibility .3s ease;
  }
  .mobile-menu.is-open{
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
  }
  .mobile-menu__top{
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
  }
  .mobile-menu .custom-logo-link{
      margin-right: 0;
  }
  .mobile-menu .custom-logo-link img{
      width: 100%;
      height: 100%;
      object-fit: contain;
  }
  .mobile-menu__close{
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .mobile-menu__nav{
      margin-bottom: 0;
  }
  .mobile-menu__list,
  .mobile-menu__cats{
      display: flex;
      flex-direction: column;
      gap: 16px;
      list-style: none;
      margin: 0;
      padding: 0;
  }
  .mobile-menu__list a{
      color: var(--color-gray);
      font-size: 16px;
      transition: .3s all ease-in-out;
  }
  .mobile-menu__list a:hover,
  .mobile-menu__list .current-menu-item > a{
      color: var(--color-gray-dark);
  }
  .mobile-menu__divider{
      height: 1px;
      width: 100%;
      background-color: var(--color-gray-2);
      margin: 24px 0;
  }
  .mobile-menu__cats a{
      color: var(--color-black);
      font-size: 16px;
      transition: .3s all ease-in-out;
  }
  .mobile-menu__cats a:hover{
      color: var(--color-gray-dark);
  }
  .mobile-menu__cat-row{
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
  }
  .mobile-menu__cat-row a{
      flex: 1;
      min-width: 0;
  }
  .mobile-menu__cat-toggle{
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      position: relative;
  }
  .mobile-menu__cat-toggle::after{
      content: "";
      display: block;
      width: 12px;
      height: 8px;
      margin: 0 auto;
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23909294' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      transition: transform .3s ease;
  }
  .mobile-menu__cat.is-open > .mobile-menu__cat-row .mobile-menu__cat-toggle::after{
      transform: rotate(180deg);
  }
  .mobile-menu__cats-sub{
      display: none;
      flex-direction: column;
      gap: 12px;
      list-style: none;
      margin: 12px 0 0;
      padding: 0 0 0 16px;
  }
  @media(min-width: 768px){
      .mobile-menu{
          display: none;
      }
  }
  @media(max-width:  1400px){
      .container{
          max-width: 1100px;
      }
      .cats__img{
          width: 50%;
      }
      .product-card__img{
          height: 320px;
      }
      .cats__slide{
        max-height: 226px;
      }
  }
  @media(max-width:  1100px){
      .container{
          max-width: 767px;
      }
      .header__buttons{
          margin-left: auto;
      }
      .header__nav-desctop, .header__cats{
          font-size: 14px;
          gap: 12px;
      }
      .header .custom-logo-link{
          margin-right: 16px;
      }
      .header__phone{
          display: none;
      }
      .hero__title{
          font-size: 64px;
      }
      .hero__title{
          font-size: 24px;
      }
      .cats__img{
          width: 40%;
          height: initial;
          object-fit: cover;
      }
      .cats__slide {
      height: auto !important; 
      }
      .technology__item-name{
          font-size: 24px;
      }
      .technology__item-txt{
          margin-bottom: 50px;
      }
      .about__title{
          margin-bottom: 132px;
      }
      .adress__name{
          font-size: 12px;
      }
      .adress__floor, .adress__pav{
          font-size: 10px;
          padding: 4px;
      }
      .footer__warning{
          max-width: 230px;
      }
  }
  @media(max-width: 767px){
    .map__left{
        height: 500px;
    }
    .cats__slide{
        max-height: initial;
    }
      html{
          overflow-x: hidden;
      }
      .container{
          max-width: 98%;
      }
      .header__nav{
          display: none;
      }
      .header__top{
          display: flex;
          justify-content: space-between;
      }
      .header__bottom{
          display: none;
      }
      .header__phone{
          display: block;
          margin: 0;
      }
      .header .custom-logo-link{
          max-width: 93px;
          margin-right: 0;
      }
      .header__buttons{
          display: none;
      }
      .header-search--mobile{
          display: block;
      }
      .header-search--desktop{
          display: none;
      }
      .header__search-mobile{
          display: flex;
          align-items: center;
          gap: 6px;
      }
      .header__search-mobile img{
          width: 16px;
          height: 16px;
      }
      .header-search--mobile .header-search__field{
          position: absolute;
          right: 100%;
          top: 50%;
          max-width: none;
          width: 250px;
          margin-right: 8px;
          opacity: 0;
          pointer-events: none;
          transform: translate(8px, -50%);
          transition: opacity .25s ease, transform .35s ease;
          overflow: visible;
      }
      .header-search__suggest{
          border: none;
      }
      .mobile-panel{
          display: block;
      }
      .header-search--mobile.is-open .header-search__field{
          max-width: none;
          opacity: 1;
          pointer-events: auto;
          transform: translate(0, -50%);
      }
      .header-search__input{
          width: 250px;
          height: 36px;
          padding: 0 12px;
          font-size: 13px;
      }
      .header-search__popup{
          position: fixed;
          top: auto;
          left: 8px;
          right: 8px;
          width: auto;
          max-width: none;
          min-width: 0;
          grid-template-columns: 1fr;
          gap: 16px;
          margin-top: 8px;
          z-index: 100;
      }
      .header-search__products-list{
          grid-template-columns: 1fr;
      }
      body.search-open{
        overflow: hidden;
        overscroll-behavior: none;
      }
      body.search-open .header-search__suggest,
      body.search-open .header-search__products{
          overscroll-behavior: contain;
          -webkit-overflow-scrolling: touch;
        max-height: 30vh;
        overflow: scroll;
      }
      .header{
          padding-top: 16px;
          padding-bottom: 16px;
      }
      .hero{
          margin-top: 14px;
      }
      .hero__slide{
          padding: 16px;
          border-radius: 24px;
          min-height: 604px;
      }
      .hero__title{
          font-size: 32px;
          margin-bottom: 10px;
      }
      .hero__txt{
          max-width: 100%;
          font-size: 16px;
      }
      .hero__link{
          left: 16px;
          bottom: 16px;
      }
      .hero__controls{
          display: none;
      }
      .hero__img{
          display: none;
      }
      .hero__img-mobile{
          display: block;
      }
      .cats__slide{
          flex-direction: column;
      }
      .cats__content{
          max-width: 100%;
      }
      .cats__txt{
          margin-bottom: 21px;
      }
      .cats__img{
          width: 100%;
          height: 184px;
          border-radius: 22px ;
      }
      .cats__slide{
          max-width: 300px;
      }
      .cats{
          margin-bottom: 60px;
      }
      h2{
          font-size: 24px;
      }
      .popular__link{
          display: none;
      }
      .product-card{
          max-width: 100%;
      }
      .product-card__img {
          height: 420px;
      }
      .product-card__tag{
          font-size: 10px;
          padding: 5px 12px;
      }
      .product-card__wishlist{
          top: 10px;
          right: 12px;
      }
      .product-card__colors-name{
          font-size: 14px;
      }
      .product-card__name{
          font-size: 14px;
          margin-bottom: 8px;
      }
      .product-card__price{
          font-size: 20px;
      }
      .product-card__add-to-cart{
          width: 32px;
          height: 32px;
      }
      .product-card__add-to-cart img{
          width: 16px;
      }
      .popular{
          margin-bottom: 60px;
      }
      .technology .container{
          flex-direction: column;
          gap: 8px;
      }
      .technology__list{
          width: 100%;
      }
      .technology__imgs{
          height: 250px;
          min-height: 250px;
      }
      .technology__item{
          padding: 16px;
          border-radius: 16px ;
      }
      .technology__item-name{
          font-size: 22px;
      }
      .technology__item-txt{
          margin-bottom: 88px;
      }
      .technology__img{
          border-radius: 16px;
      }
      .technology{
          margin-bottom: 60px;
      }
      .popular__tab-active{
          font-size: 24px;
      }
      .popular__tab{
          font-size: 20px;
      }
      .popular__tabs{
          overflow-x: scroll;
      }
      .popular__tabs::-webkit-scrollbar {
          display: none;
      }
      .about .container{
          border-radius: 16px;
          padding: 16px;
          background-position: top center;
      }
      .about .container img{
          height: 34px;
          top: 16px;
          right: 16px;
      }
      .about__title{
          margin-bottom: 140px;
      }
      .about__txt{
          font-size: 16px;
      }
      .about{
          margin-bottom: 60px;
      }
      .review-card{
          max-width: 328px;
      }
      .review-card{
          padding: 16px;
          border-radius: 16px;
      }
      .review-card__name{
          font-size: 14px;
      }
      .review-card__stars{
          max-width: 100px;
      }
      .review-card__top{
          margin-bottom: 8px;
      }
      .review-card__txt{
          font-size: 14px;
          margin-bottom: 12px;
      }
      .review-card__product-link{
          font-size: 14px;
      }
      .reviews{
          margin-bottom: 60px;
      }
      .map .container{
          border-radius: 16px;
      }
      .map__left{
          padding: 16px;
      }
      .map__title{
          margin-bottom: 12px ;
      }
      .map__search{
          margin-bottom: 12px;
      }
      .map__tabs{
          margin-bottom: 12px;
      }
      .map__tab{
          font-size: 12px;
          padding: 8px 12px;
      }
      .adress{
          display: grid;
          grid-column: max-content min-content;
          align-items: center;
          gap: 12px;
      }
      .adress__add{
          grid-column: 1/2;
          grid-row: 1/2;
          margin-left: 0;
      }
      .adress__name{
          grid-column: 1/2;
          grid-row: 2/3;
      }
      .adress_btn{
          grid-column: 2/3;
          grid-row: 1/3;
          width: 24px;
          height: 24px;
          justify-self: end;
      }
      .map__adresses{
          gap: 8px;
      }
      .delivery-info .container{
          flex-direction: column;
          position: relative;
          padding: 16px;
          border-radius: 16px;
      }
      .delivery-info .container img{
          position: absolute;
          top: 16px;
          left: 16px;
      }
      .delivery-info__txt{
          margin-left: 32px;
      }
      .delivery-info__title{
          font-size: 20px;
          margin-bottom: 12px;
          line-height: 120%;
      }
      .delivery-info__txt p{
          font-size: 16px;
      }
      .delivery-info__btns{
          flex-direction: column;
          gap: 12px;
      }
      .delivery-info__btns .btn{
          width: 100%;
          text-align: center;
      }
        .page-404__content{
          padding: 32px 16px 48px;
          border-radius: 24px;
      }
      .page-404__code{
          font-size: 72px;
      }
      .page-404__title{
          font-size: 24px;
      }
      .page-404__btns{
          flex-direction: column;
          width: 100%;
      }
      .page-404__btns .btn{
          width: 100%;
      }
      .footer__top{
            display: grid;
            grid-template-columns: 1fr 1fr;
            justify-items: center;
      }
      .footer__left{
          grid-column: 1/3;
          margin-bottom: 32px;
      }
      .footer .container{
          padding: 16px;
          border-radius: 24px;
          margin-bottom: 50px;
      }
      .footer__logo{
          width: 130px;
      }
      .footer__policys{
          grid-template-columns: 1fr;
          margin-bottom: 16px;
      }
  }
  
  
  
  
  /* Страница О компании */
  .wpcf7-acceptance a{
      color: var(--color-blue);
      text-decoration: underline;
  }
  .hero-s{
      margin-bottom: 60px;
  }
  .hero-s .container{
      position: relative;
      border-radius: 48px;
      overflow: hidden;
      padding: 38px;
  }
  .hero-s__bg,  .hero-s__bg-mobile{
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      object-fit: cover;
  }
  .hero-s__bg-mobile{
      display: none;
  }
  .breadcrumbs{
      display: flex;
      color: var(--color-gray);
      margin-bottom: 20px;
      position: relative;
      flex-wrap: wrap;
      z-index: 1;
      gap: 4px;
  }
  .breadcrumbs a{
      color: var(--color-gray);
  }
  .hero-s__title{
      max-width: 445px;
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
  }
  .hero-s__txt{
      max-width: 445px;
      font-size: 17px;
      position: relative;
      z-index: 1;
      margin-bottom: 192px;
  }
  
  
  .brand{
      margin-bottom: 60px;
  }
  .brand .container{
      display: flex;
      gap: 24px;
  }
  .brand__left{
      padding: 32px;
      background-color: var( --color-gray-3);
      max-width: 700px;
      border-radius: 32px;
  }
  .brand__left p{
      letter-spacing: -1px;
  }
  .brand__title{
      margin-bottom: 32px;
      line-height: 100%;
  }
  .brand p:not(:last-child){
      margin-bottom: 16px;
  }
  .brand__right{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
  }
  .brand__right img{
      border-radius: 32px;
      object-fit: cover;
      height: 100%;
  }
  .brand__right img:nth-child(1){
      grid-column: 1/3;
  }
  
  
  .history{
      margin-bottom: 60px;
  }
  .history__title{
      margin-bottom: 32px;
  }
  .history__list{
      display: flex;
      justify-content: space-between;
  }
  .history__year{
      position: relative;
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 12px;
      background-image: url('../img/vector.svg');
      background-repeat: no-repeat;
      background-size: 67%;
      background-position: center right;
  }
  .history__item{
      max-width: 186px;
  }
  
  
  .locations{
      margin-bottom: 60px;
  }
  .locations .container{
      background-color: var(--color-gray-3);
      border-radius: 48px;
      padding: 32px;
      position: relative;
  }
  .locations__title{
      margin-bottom: 32px;
      max-width: 430px;
      z-index: 2;
      position: relative;
  }
  .locations__txt{
      margin-bottom: 32px;
      max-width: 350px;
      z-index: 2;
      position: relative;
  }
  .locations__point{
      background-color: var(--color-blue);
      padding: 32px;
      color: var(--color-white);
      max-width: 320px;
      border-radius: 24px;
      z-index: 2;
      position: relative;
  }
  .locations__point-name{
      font-size: 24px;
      margin-bottom: 12px;
      max-width: 170px;
      font-weight: 600;
  }
  .locations__point-txt{
      font-size: 18px;
      margin-bottom: 24px;
      max-width: 170px;
  }
  .locations__point-note{
      color: var(--color-gray);
      font-size: 14px;
  }
  .locations__map{
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      height: 100%;
      max-width: 66%;
      object-fit: contain;
      z-index: 1;
  }
  
  
  .numbers{
      margin-bottom: 60px;
  }
  .numbers__title{
      margin-bottom: 32px;
  }
  .numbers__list{
      display: flex;
      justify-content: space-between;
  }
  .number{
      display: flex;
      gap: 18px
  }
  .number img{
      width: 30px;
      height: 30px;
      object-fit: cover;
  }
  .number__content{
      display: flex;
      gap: 16px;
      flex-direction: column;
  }
  .number__name{
      font-size: 28px;
      font-weight: 600;
      color: var(--color-blue);
      line-height: 100%;
  }
  .number:last-child{
      white-space: nowrap;
  }
  
  
  .compound{
      margin-bottom: 60px;
      height: 500px;
  }
  .compound .container{
      padding: 32px;
      border-radius: 48px;
      background-color: #F4F3F5;
      display: flex;
      align-items: center;
      position: relative;
      height: 100%;
      overflow: hidden;
  }
  .compound__title{
      line-height: 100%;
  }
  .compound__left{
      max-width: 410px;
      display: flex;
      flex-direction: column;
      gap: 32px;
  }
  .compound__img{
      position: absolute;
      left: 33%;
      height: calc(100% - 16px);
      top: 16px;
  }
  .compound__list{
      position: absolute;
      top: 0;
      right: 0;
  }
  .compound__item{
      display: flex;
      flex-direction: column;
      gap: 6px;
      line-height: 100%;
      position: absolute;
      width: 230px;
  }
  .compound__name{
      font-size: 20px;
      color: var(--color-blue);
      font-weight: 500;
  }
  .compound__txt{
      color: #1f4063b0;
  }
  .compound__item::before{
      content: "";
      background-image: url('../img/vector.svg');
      width: 200px;
      height: 12px;
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateX(-100%) translateY(-50%);
      background-repeat: no-repeat;
      background-size: contain;
  }
  .compound__item:nth-child(1){
      right: 88px;
      top: 50px;
  }
  .compound__item:nth-child(2){
      top: 126px;
      right: 14px;
  }
  .compound__item:nth-child(3){
      top: 210px;
      right: 44px;
  }
  .compound__item:nth-child(4){
      top: 300px;
      right: 63px;
  }
  .compound__item:nth-child(5){
      top: 390px;
      right: 44px;
  }
  
  .advantages__title{
      margin-bottom: 32px;
  }
  .advantage{
      display: flex;
      gap: 24px;
      padding: 32px;
      border-radius: 20px;
      background-color: var(--color-gray-3);
      width: 100%;
  }
  .advantage img{
      width: 30px;
      height: 30px;
  }
  .advantage__txt{
      font-size: 24px;
      font-weight: 500;
  }
  .advantages__list{
      display: grid;
      gap: 16px;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .advantage:nth-child(1){
      grid-column: 1/3;
  }
  .advantage:nth-child(2){
      grid-column: 3/5;
  }
  .advantage:nth-child(3){
      grid-column: 1/3;
  }
  .advantage:nth-child(4){
      grid-column: 3/5;
  }
  .advantages{
      margin-bottom: 60px;
  }
  
  .ready{
      margin-top: 92px;
      margin-bottom: 60px;
  }
  .ready .container{
      padding: 68px 32px 46px;
      color: var(--color-white);
      border-radius: 48px;
      background-repeat: no-repeat;
      background-position: center right;
      background-size: cover;
      position: relative;
  }
  .ready__title{
      margin-bottom: 24px;
      line-height: 100%;
  }
  .ready__txt{
      margin-bottom: 32px;
  }
  .ready__buttons{
      display: flex;
      gap: 24px;
      text-transform: uppercase;
  }
  .ready__buttons .btn-trans{
      border: 1px solid var(--color-white);
      color: var(--color-white);
  }
  .ready__img{
      position: absolute;
      bottom: 0;
      height: 130%;
      right: 10%;
  }
  
  @media(max-width:  1400px){
      .brand__left {
          max-width: 620px;
      }
      .history__year{
          background-size: 60%;
      }
      .number__name {
          font-size: 24px;
      }
      .number img{
          width: 24px;
          height: 24px;
      }
      .compound__img{
          height: calc(80% - 16px);
          z-index: 0;
          bottom: 0;
          top: initial;
      }
      .compound__left{
          z-index: 2;
          position: relative;
      }
      .compound__item::before{
          width: 140px;
      }
      .compound__item:nth-child(1) {
          right: 8px;
          top: 156px;
      }
      .compound__item:nth-child(2) {
          top: 210px;
          right: -21px;
      }
      .compound__item:nth-child(3) {
          top: 275px;
          right: 20px;
      }
      .compound__item:nth-child(4) {
          top: 340px;
          right: -26px;
      }
      .compound__item:nth-child(5) {
          top: 415px;
          right: 0px;
      }
      .advantage__txt{
          font-size: 18px;
      }
      .advantage{
          gap: 12px;
      }
      .ready__img {
          right: 3%;
          z-index: 0;
      }
      .ready__title{
          position: relative;
          z-index: 2;
      }
  }
  @media(max-width:  1100px){
      .hero-s__bg{
          object-position: 28%;
      }
      h2{
          font-size: 24px;
      }
      .brand__title {
          margin-bottom: 24px;
      }
      .brand__left {
          max-width: 450px;
      }
      .brand__right{
          gap: 12px;
      }
      .history__list{
          display: grid;
          grid-template-columns: 1fr 1fr 1fr 1fr;
          gap: 24px;
      }
      .locations__title{
          margin-bottom: 24px;
      }
      .locations__txt{
          margin-bottom: 24px;
      }
      .locations__point{
          padding: 16px;
      }
      .locations__map{
          max-width: 50%;
      }
      .numbers__list{
          grid-template-columns: 1fr 1fr 1fr;
          gap: 24px;
          display: grid;
      }
      .compound .container{
          flex-direction: column;
          align-items: start;
      }
      .compound{
          height: 560px;
      }
      .compound__img{
          height: calc(60% - 16px);
          left: 10%;
      }
      .compound__item .compound__name{
          font-size: 12px;
      }
      .compound__item .compound__txt{
          font-size: 9px;
      }
      .compound__item{
          gap: 0;
      }
      .compound__item::before {
          width: 80px;
      }
      .compound__item:nth-child(1) {
          right: 30px;
          top: 288px;
      }
      .compound__item:nth-child(2) {
          top: 326px;
          right: 13px;
      }
      .compound__item:nth-child(3) {
          top: 370px;
          right: 38px;
      }
      .compound__item:nth-child(4) {
          top: 420px;
          right: 32px;
      }
      .compound__item:nth-child(5) {
          top: 475px;
          right: 18px;
      }
      .advantages__list{
          grid-template-columns: 1fr 1fr;
      }
      .advantage:nth-child(1) {
          grid-column: 1 / 2;
      }
      .advantage:nth-child(2) {
          grid-column: 2 / 3;
      }
      .advantage:nth-child(3) {
          grid-column: 1 / 2;
      }
      .advantage:nth-child(4) {
          grid-column: 2 / 3;
      }
  }
  @media(max-width: 767px){
      .hero-s .container{
          border-radius: 24px;
          padding: 16px;
      }
      .breadcrumbs{
          margin-bottom: 12px;
          flex-wrap: wrap;
      }
      .hero-s__title{
          font-size: 32px;
          margin-bottom: 10px;
      }
      .hero-s__bg{
          display: none;
      }
      .hero-s__bg-mobile{
          display: block;
      }
      .hero-s__txt{
          margin-bottom: 330px;
      }
      .container{
          flex-direction: column;
      }
      .brand__left{
          border-radius: 16px;
          padding: 16px;
          max-width: 100%;
      }
      .brand__txt{
          font-size: 14px;
      }
      .brand__right img{
          border-radius: 16px;
          width: 100%;
      }
      .brand__right img:nth-child(1){
          height: 215px;
      }
      .brand__right img:nth-child(2), .brand__right img:nth-child(3){
          height: 146px;
      }
      .brand__right{
          gap: 24px;
      }
      .history__list{
          grid-template-columns: 1fr 1fr;
      }   
      .locations .container{
          border-radius: 16px;
          padding: 16px;
      }
      .locations__title, .locations__txt{
          max-width: 100%;
      }
      .locations__map{
          display: none;
      }
      .locations__point {
          max-width: 100%;
      }
      .numbers__list{
          grid-template-columns: 1fr 1fr;
          gap: 24px 12px;
      }
      .number:last-child{
          white-space: initial;
      }
      .number{
          gap: 12px;
      }
      .technology .container{
          display: flex;
      }
      .compound .container{
          padding: 16px;
          border-radius: 16px;
      }
      .compound__left{
          gap: 24px;
      }
      .compound{
          height: 500px;
      }
      .compound__img{
          left: -133px;
          width: 366px;
      }
      .compound__list{
          right: initial;
          left: 0;
      }
      .compound__item{
          right: initial !important;
          left: 0;
      }
      .compound__item:nth-child(1) {
          top: 258px;
          left: 230px;
      }
      .compound__item:nth-child(2) {
          top: 293px;
          left: 215px;
      }
      .compound__item:nth-child(3) {
          top: 341px;
          left: 226px;
      }
      .compound__item:nth-child(4) {
          top: 388px;
          left: 214px;
      }
      .compound__item .compound__txt{
          max-width: 115px;
      }
      .compound__item:nth-child(5) {
          top: 437px;
          left: 200px;
      }
      .advantages__list{
          display: flex;
          flex-direction: column;
      }
      .advantage{
          padding: 16px;
      }
      .advantage img{
          width: 24px;
          height: 24px;
      }
      .ready__img{
          display: none;
      }
      .ready .container{
          background: var(--color-blue);
          border-radius: 16px;
          padding: 16px;
      }
      .ready__buttons{
          flex-direction: column;
          gap: 12px;
          text-align: center;
      }
      .ready__buttons .btn{
          padding: 16px;
      }
  }
  
  /* Страница оптовым клиентам */
  .why-us{
      margin-bottom: 60px;
  }
  .why-us__title{
      margin-bottom: 32px;
  }
  .why-us__list{
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
  }
  .why-us__item{
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      background: var(--color-blue);
      border-radius: 24px;
      color: var(--color-white);
  }
  .why-us__name{
      font-size: 24px;
      font-weight: 600;
  }
  .wholesale-form .container{
      background-color: var(--color-gray-3);
      border-radius: 48px;
      padding: 32px;
      display: flex;
  }
  .wholesale-form__title{
      margin-bottom: 32px;
  }
  .wholesale-form__txt{
      margin-bottom: 24px;
  }
  .wholesale-form__left{
      max-width: 60%;
      padding-right: 32px;
      border-right: 1px solid #DADADA;
  }
  .wholesale-form .form__container p{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px 24px;
      margin-bottom: 24px;
  }
  .form__input{
      padding: 16px 24px;
      background-color: var(--color-white);
      border-radius: 52px;
      border: none;
      width: 100%;
  }
  .wpcf7-acceptance{
      margin-top: 24px;
      display: block;
      margin-bottom: 8px;
  }
  .form__note{
          margin-left: 34px;
          margin-bottom: 32px;
          font-size: 14px;
  }
  .wholesale-form  .btn{
      padding: 16px 24px;
      text-transform: uppercase;
  }
  .form__note a{
      color: var(--color-blue);
      text-decoration: underline;
  }
  .wholesale-form__contact-title{
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 32px;
  }
  .wholesale-form__right{
      padding: 160px 0 0 72px;
  
  }
  .wholesale-form__contact-list{
      display: flex;
      flex-direction: column;
      gap:24px;
  }
  .wholesale-form__contact-item{
      display: flex;
      gap: 18px;
      align-items: center;
      font-size: 20px;
  }
  .wholesale-form__contact-img{
      width: 24px;
      height: 24px;
      object-fit: contain;
  }
  .wholesale-form__contact-item a{
      color: var(--color-blue);
      font-weight: 600;
  }
  @media(max-width:  1100px){
      .why-us__list{
          grid-template-columns: repeat(2, 1fr);
      }
      .wholesale-form .form__container p{
              grid-template-columns: 1fr;
      }
      .wholesale-form__right{
          padding-left: 40px;
      }
      
  }
  @media(max-width: 767px){
      .why-us__list{
          grid-template-columns: 1fr;
          gap: 12px;
      }
      .why-us__item{
          padding: 16px;
          border-radius: 16px;
      }
      .why-us__name{
          font-size: 20px;
          margin-bottom: 18px;
      }
      .wholesale-form .container{
          flex-direction: column;
          padding: 16px;
          border-radius: 16px;
      }
      .wholesale-form__left{
          border-right: none;
          max-width: 100%;
          padding: 0;
          border-bottom: 1px solid #DADADA;
          padding-bottom: 16px;
          margin-bottom: 32px;
      }
      .wholesale-form__title {
          margin-bottom: 24px;
      }
      .wholesale-form .wpcf7-acceptance .wpcf7-list-item > label{
          display: flex;
          align-items: start;
          gap: 8px;
          font-size: 14px;
      }
      .wholesale-form .btn{
          width: 100%;
      }
      .wholesale-form__right{
          padding: 0;
      }
  }
  
  /* Страница доставка и оплата */
  .hero-s-adv .hero-s__txt{
      margin-bottom: 47px;
  }
  .hero-s__advantages{
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 820px;
      gap:12px;
  }
  .hero-s__advantage{
      display: flex;
      gap: 16px;
      align-items: start;
      padding: 16px;
      background-color: var(--color-white);
      border-radius: 16px;
  }
  .hero-s__advantage-icon{
      width: 24px;
      height: 24px;
      object-fit: contain;
  }
  .hero-s__advantage-name{
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 14px;
      color: var(--color-blue);
      letter-spacing: -1px;
  }
  .terms .container{
      background-color: var(--color-gray-3);
      border-radius: 48px;
      padding: 32px;
  }
  .terms__tabs{
      display: flex;
      gap: 16px;
      margin-bottom: 32px;
  }
  .terms__tab{
      padding: 16px 24px;
      border-radius: 99px;
      text-transform: uppercase;
      border: 1px solid #2125293d;
      background: transparent;
      color: var(--color-blue);
      cursor: pointer;
      transition: .3s all ease-in-out;
  }
  .terms__tab-active{
      background: var(--color-blue);
      color: var(--color-white);
  }
  .terms__display{
      display: none;
  }
  .terms__display-2{
      display: block;
  }
  .terms__display-container{
      display: flex;
      gap: 24px;
  }
  .terms__display h3{
      font-size: 24px;
      margin-bottom: 20px;
  }
  .terms__display p{
      margin-bottom: 20px;
  }
  .terms__display ol{
      margin-bottom: 20px;
      list-style: decimal;
      padding-left: 24px;
  }
  .terms__display-h{
      max-width: 55%;
  }
  .faq .container{
      background-color: var(--color-gray-3);
      border-radius: 48px;
      padding: 32px;
  }
  .faq__title{
      margin-bottom: 32px;
  }
  .faq__container{
      display: grid;
      gap:24px;
      grid-template-columns: 1fr 1fr;
  }

  .faq__item{
      cursor: pointer;
  }
  .faq__item-visible{
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .faq__item-question{
      font-size: 20px;
      font-weight: 500;
  }
  .faq__left{
      display: flex;
      flex-direction: column;
      gap: 32px;
  }
  .faq__item-hidden{
      color: #212529b7;
      padding-top: 16px;
      display: none;
  }
  .faq__item-arrow{
      width: 24px;
      height: 24px;
      transition: .3s all ease-in-out;
      object-fit: contain;
  }
  .faq__item-active .faq__item-arrow{
      transform: rotate(180deg);
  }
  .faq-form{
      padding: 24px;
      border-radius: 32px;
      background-color: var(--color-white);
  }
  .faq-form__title{
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 24px;
  }
  .faq-form__txt{
      color: #212529b7;
      margin-bottom: 32px;
      max-width: 320px;
  }
  .faq-form .form__input{
      background-color: var(--color-gray-3);
      margin-bottom: 16px;
  }
  .faq-form .btn{
      width: 100%;
      padding: 16px;
      text-align: center;
      text-transform: uppercase;
      margin-top: 16px;
  }
  .faq-form__note{
      margin-bottom: 12px;
  }
  .faq-form__link{
      font-size: 32px;
      font-weight: 600;
      color: var(--color-blue);
  }
  @media(max-width:  1100px){
      .terms__display-container{
          flex-direction: column;
      }
      .faq__container{
          flex-direction: column;
      }
      .faq__left{
          max-width: 100%;
      }
      .terms__display-h{
          max-width: 100%;
      }
      .faq__container{
        grid-template-columns: 1fr;
      }
  }
  @media(max-width: 767px){
      .hero-s-adv .hero-s__txt{
          margin-bottom: 56px;
      }
      .hero-s__advantages{
          grid-template-columns: 1fr;
      }
      .hero-s__advantage{
          padding: 12px;
      }
      .hero-s__advantage-name{
          font-size: 16px;
          margin-bottom: 10px;
      }
      .terms__tabs{
          flex-direction: column;
          margin-bottom: 24px;
      }
      .terms .container{
          padding: 16px;
          border-radius: 16px;
      }
      .terms__tab{
          text-align: center;
      }
      .terms__display h3{
          margin-bottom: 16px;
      }
      .terms__display p{
          margin-bottom: 10px;
      }
      .faq .container{
          padding: 16px;
          border-radius: 16px;
      }
      .faq__title{
          margin-bottom: 24px;
      }
      .faq__item-question{
          font-size: 18px;
      }
      .faq-form__title{
          font-size: 20px;
      }
      .faq-form{
          padding: 16px;
          border-radius: 16px;
      }
      .faq-form__link{
          font-size: 24px;
      }
  }
  
  
  /* Страница как выбрать */
  .how__title{
      margin-bottom: 40px;
  }
  .how .container{
      background-color: var(--color-gray-3);
      border-radius: 48px;
      padding: 32px;
  }
  .how__list{
      display: flex;
      justify-content: space-between;
      gap: 80px;
  }
  .how__item{
      display: flex;
      flex-direction: column;
      gap: 22px;
      max-width: 267px;
  }
  .how__item-ico{
      width: 40px;
      height: 40px;
      object-fit: contain;
  }
  .how__item-name{
      font-size: 24px;
      font-weight: 600;
      letter-spacing: -1px;
  }
  .selection{
      position: relative;
  }
  .selection .container{
      background-color: var(--color-gray-3);
      border-radius: 48px;
      padding: 32px;
  }
  .selection__title{
      margin-bottom: 32px;
  }
  .selection__txt{
      margin-bottom: 32px;
      max-width: 390px;
  }
  .selection__advices{
      display: flex;
      flex-direction: column;
      gap: 32px;
  }
  .selection__advice-name{
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 20px;
  }
  .selection__advice-txt{
      color: var(--color-gray-dark);
      max-width: 60%;
  }
  .selection__advice{
      line-height: 100%;
  }
  .selection__shema{
      height: 100%;
      position: absolute;
      left: 60%;
      bottom: 0;
      display: flex;
      align-items: end;
  }
  .selection__img{
      height: 470px;
  }
  .selection__shema-sign{
      width: 240px;
      position: absolute;
      top: 244px;
      right: 0;
      text-align: end;
      transform: translateX(75%);
      display: flex;
      white-space: nowrap;
      align-items: end;
      gap: 16px;
  }
  .selection__shema-sign:before{
      content: "";
      width: 100%;
      height: 100%;
      border-bottom: dotted 3px var(--color-blue);
      display: block;
  }
  .selection__shema-sign:nth-child(3){
      top: 343px
  }
  .selection__shema-sign:nth-child(4){
      top: 435px
  }
  
  .sizes .container{
      background-color: var(--color-gray-3);
      border-radius: 48px;
      padding: 32px;
  }
  .sizes__title{
      margin-bottom: 32px;
      font-size: 24px;
  }
  .sizes__top{
      display: flex;
      justify-content: space-between;
  }
  .sizes__tab{
      font-size: 20px;
      font-weight: 500;
      color: var(--color-blue);
      cursor: pointer;
      transition: .3s all ease-in-out;
  }
  .sizes__tabs{
      display: flex;
      gap: 24px;
  }
  .sizes__container{
    padding: 32px;
    border-radius: 48px;
    display: flex;
    justify-content: space-around;
    background-color: var(--color-white);
  }
  .sizes .container .sizes__lists{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .sizes__tab-active{
      color: #3577BE;
  }
  .sizes__tab:hover{
      color: #3577BE;
  }
  .sizes__lists-container{
      display: flex;
      justify-content: space-between;
  }
  .sizes__list{
    width: 100%;
  }
  .sizes__list-name{
      color: var(--color-gray-dark);
      margin-bottom: 16px ;
      white-space: nowrap;
  }
  .sizes__list-item{
      font-weight: 500;
      padding: 8px;
      border-bottom: 1px solid var(--color-gray-3);
  }
  .sizes__lists{
      display: none;
  }
  .sizes__lists:nth-child(2){
      display: block;
  }
  .advantages-2 .container{
      background-color: var(--color-gray-3);
      border-radius: 48px;
      padding: 32px;
  }
  .advantages-2__list{
      display: flex;
      justify-content: space-between;
  }
  .advantages-2__item{
      display: flex;
      align-items: center;
      gap: 24px;
  }
  .advantages-2__item-name{
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 5px;
  }
  @media(max-width:  1400px){
      .how__list{
          gap: 16px;
      }
      .selection__advices{
          max-width: 600px;
      }
      .selection__shema-sign{
          top: 277px;
      }
      .selection__shema-sign:nth-child(3) {
          top: 375px;
      }
      .selection__shema-sign:nth-child(4) {
          top: 468px;
      }
      .selection__shema {
            left: 50%;
      }
      .selection__img {
        height: 85%;
      }
      .selection__txt {
        max-width: 55%;
      }
      .selection__advice-txt{
        max-width: 100%;
      }
  }
  @media(max-width:  1100px){
        .sizes .container .sizes__lists{
            grid-template-columns: 1fr
        }
      .how__list{
          display: grid;
          grid-template-columns: 1fr 1fr;
      }
      .selection__advices {
          max-width: 400px;
      }
      .selection__shema{
          left: 47%;
      }
    .selection__img {
        height: 68%;
    }
      .selection__shema-sign{
          width: 168px;
          transform: translateX(67%);
          gap: 8px;
      }
      .selection__shema-sign {
          top: 293px;
      }
      .selection__shema-sign:nth-child(3) {
          top: 393px;
      }
      .selection__shema-sign:nth-child(4) {
          top: 484px;
      }
      .advantages-2__list{
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 24px;
      }
  }
  @media(max-width: 767px){
      .how .container{
          padding: 16px;
          border-radius: 16px;
      }
      .how__title{
          margin-bottom: 32px;
      }
      .how__list{
          grid-template-columns: 1fr;
          gap:24px;
      }
      .how__item-name{
          font-size: 20px;
      }
      .how__item-ico {
          width: 35px;
          height: 35px;
      }
      .selection .container{
          padding: 16px;
          border-radius: 16px;
          padding-bottom: 380px;
      }
      .selection__img {
          height: 340px;
      }
      .selection__shema {
          left: 5%;
          height: fit-content;
      }
      .selection__shema-sign {
          top: 139px;
          transform: translateX(75%);
      }
      .selection__shema-sign:nth-child(3) {
          top: 210px;
      }
      .selection__shema-sign:nth-child(4) {
          top: 277px;
      }
      .sizes__top{
          flex-direction: column;
          margin-bottom: 40px;
      }
      .sizes .container{
          padding: 16px;
          border-radius: 16px;
      }
      .advantages-2__list{
          grid-template-columns: 1fr;
      }
      .sizes__title{
          margin-bottom: 24px;
      }
      .sizes__lists{
          overflow-x: scroll;
          overflow-y: hidden;
      }
      .sizes__lists-container{
          width: 600px;
      }
      .sizes__lists::-webkit-scrollbar { 
          display: none 
      }
      .advantages-2 .container{
          padding: 16px;
          border-radius: 16px;
      }
  }
  
  
  
  /* Блог */
  .blog__title{
      margin-bottom: 32px;
  }
  .blog__top{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 32px;
  }
  .blog__cats-container{
      display: flex;
      gap: 12px;
  }
  .btn-trans-active{
      background-color: var(--color-blue);
      color: var(--color-white);
  }
  .blog__cats .btn-trans{
      text-transform: uppercase;
      padding: 16px 24px;
  }
.blog__themes{
      position: relative;
  }
  .blog__themes-select{
      position: relative;
      padding: 16px 24px;
      border: 1px solid var(--color-gray-2);
      border-radius: 99px;
      color: var(--color-gray-2);
      width: 270px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none;
  }
  .blog__themes-select.is-open{
      color: var(--color-black);
      border-color: var(--color-black);
  }
  .blog__themes-select.is-open .blog__themes-arrow{
      transform: rotate(180deg);
  }
  .blog__themes-arrow{
      transition: transform .2s ease;
  }
  .blog__themes-label{
      text-transform: uppercase;
  }
  .blog__themes-list{
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      min-width: 100%;
      margin: 0;
      padding: 8px;
      list-style: none;
      background: var(--color-white);
      border: 1px solid var(--color-gray-3);
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
      z-index: 30;
  }
  .blog__themes-list[hidden]{
      display: none;
  }
  .blog__themes-option{
      display: block;
      padding: 10px 12px;
      border-radius: 10px;
      color: var(--color-black);
      text-decoration: none;
      text-transform: uppercase;
      font-size: 14px;
  }
  .blog__themes-option:hover,
  .blog__themes-option.is-active{
      background: var(--color-gray-3);
  }
  .blog__list-new{
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 24px;
  }
  .blog__list-new .post:nth-child(1){
      grid-row: 1/3;
  }
  
  .post__cats{
      display: flex;
      gap: 8px;
      position: absolute;
      top: 16px;
      left: 16px;
      flex-wrap: wrap;
  }
  .post__cat{
      text-transform: uppercase;
      padding: 8px 12px;
      border-radius: 90px;
      background-color: var(--color-white);
  }
  .post{
      position: relative;
      border-radius: 24px;
      overflow: hidden;
  
  }
  .blog__list-new .post:nth-child(1) .post__img{
      width: 100%;
      height: 380px;
      object-fit: cover;
  }
  .blog__list-new .post{
      background-color: var(--color-gray-3);
  }
  .post__info{
      padding: 24px;
  }
  .post__title{
      font-size: 20px;
      margin-bottom: 14px;
      font-weight: 500;
      letter-spacing: -1px;
      line-height: 100%;
      color: var(--color-blue);
  }
  .post__excerpt{
      margin-bottom: 24px;
  }
  .post__link{
      padding: 16px 24px;
      display: block;
      width: fit-content;
  }
  .blog__list-new .post:nth-child(2), .blog__list-new .post:nth-child(3){
      display: flex;
      flex-direction: row-reverse;
  }
  .blog__list-new .post:nth-child(2) .post__img, .blog__list-new .post:nth-child(3) .post__img{
      width: 354px;
      height: 280px;
      object-fit: cover;
      min-width: 354px;
  }
  .blog__list-new .post:nth-child(2) .post__title, .blog__list-new .post:nth-child(3) .post__title{
      margin-top: 42px;
  }
  .blog__list-new .post:nth-child(2) .post__excerpt, .blog__list-new .post:nth-child(3) .post__excerpt{
      margin-bottom: 16px;
  }
  .blog__list-new .post:nth-child(2) .post__link, .blog__list-new .post:nth-child(3) .post__link{
      padding: 0;
      background-color: transparent;
      color: var(--color-blue);
      text-decoration: underline;
      text-transform: uppercase;
  }
  .blog__list-new{
      margin-bottom: 60px;
  }
  .blog__list-all{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 24px;
      margin-bottom: 80px;
  }
  .blog__list-all .post__img{
      width: 100%;
      height: 310px;
      object-fit: cover;
      border-radius: 24px;
      overflow: hidden;
      margin-bottom: 12px;
  }
  .single-post__info{
      display: flex;
      gap:32px;
      margin-bottom: 24px;
  }
  .single-post__info-item{
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--color-gray);
  }
  .single-post__info-item a{
      color: var(--color-gray);
  }
  .blog-post .container{
      max-width: 938px;
  }
  .single-post__img{
      width: 100%;
      height: 528px;
      object-fit: cover;
      margin-bottom: 28px;
  }
  .blog-post h2{
      margin-top: 16px;
      margin-bottom: 16px;
      font-size: 20px;
      font-weight: 600;
  }
  .blog-post ul{
      margin-bottom: 24px;
      list-style: disc;
      padding-left: 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  .single-post__content {
      margin-bottom: 32px;
  }
  .single-post__link-back{
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 60px;
      display: block;
  }
  .single-post__link-back span{
      text-decoration: underline;
  }
  .more-posts__list{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
  }
  .more-posts__list .post__img{
      width: 100%;
      height: 310px;
      object-fit: cover;
      border-radius: 24px;
      margin-bottom: 16px;
  }
  .single-post__more{
      margin-bottom: 60px;
  }
  .blog__list-all .post__excerpt, .blog__list-all .post__link{
      display: none;
  }
  .blog__list-all .post{
      border-radius: initial;
  }
  .blog-post .more-posts__title{
      font-size: 36px;
  }
  
  @media(max-width:1400px){
      .blog__list-new .post:nth-child(2) .post__img, .blog__list-new .post:nth-child(3) .post__img{
          width: 248px;
          height: 300px;
          min-width: 248px;
      }
      .blog__list-all .post__img {
          height: 260px;
      }
  }
  @media(max-width:1100px){
      .blog__top{
          flex-direction: column;
          gap: 12px;
      }
      .blog__list-new{
          grid-template-columns: 1fr;
          grid-template-rows: 1fr;
          gap: 12px;
      }
      .blog__list-new .post:nth-child(1){
          grid-row: 1/2
      }
      .blog__list-new .post:nth-child(2), .blog__list-new .post:nth-child(3){
          flex-direction: column;
      }
      .blog__list-new .post:nth-child(2) .post__img, .blog__list-new .post:nth-child(3) .post__img{
          width: 100%;
          min-width: initial;
      }
      .blog__list-new .post:nth-child(2) .post__title, .blog__list-new .post:nth-child(3) .post__title{
          margin-top: 0;
      }
      .blog__list-new .post:nth-child(2) .post__link, .blog__list-new .post:nth-child(3) .post__link{
          padding: 16px 24px;
          color: var(--color-white);
          background-color: var(--color-blue);
          text-decoration: none;
      }
      .post__link{
          text-transform: uppercase;
      }
      .blog__list-all{
          grid-template-columns: 1fr 1fr;
      }
  
      .blog-post .container{
          max-width: 767px
      }
  }
  @media(max-width: 767px){
      .blog__cats-container .btn-trans{
          white-space: nowrap;
      }
      .blog__cats {
          overflow-x: scroll;
          width: 100%;
      }
      .blog__themes-select{
          width: 100%;
      }
      .blog__themes{
          width: 100%;
      }
      .blog__list-new .post:nth-child(1) .post__img, .blog__list-new .post:nth-child(2) .post__img, .blog__list-new .post:nth-child(3) .post__img{
          height: 220px;
      }
      .blog__list-all{
          grid-template-columns: 1fr;
      }
      .blog__list-all .post__img{
          border-radius: initial;
      }
      .blog__list-all .post{
          border-radius: 24px;
          background-color: var(--color-gray-3);
      }
      .blog__list-all .post__excerpt, .blog__list-all .post__link{
          display: block;
      }
      .blog__list-all .post__title, .blog__list-all .post__excerpt, .blog__list-all .post__link{
          padding: 0 24px;
          display: block;
      }
      .blog__list-all .post__link{
          margin-bottom: 24px;
          padding: 16px 24px;
          margin-left: 24px;
      }
      .blog__list-all .post__img{
          height: 220px;
      }
      .blog-post .breadcrumbs{
          flex-wrap: wrap;
      }
      .blog__title{
          font-size: 24px;
          font-weight: 600;
          margin-bottom: 24px;
      }
      .single-post__info{
          margin-bottom: 16px;
          display: grid;
          grid-template-columns: 150px 82px 90px;
          gap:12px;
          justify-content: space-between;
      }
      .single-post__info-ico{
          width: 18px;
          height: 18px;
      }
      .single-post__info-item{
          gap: 10px;
          font-size: 12px;
          
      }
      .single-post__img{
          height: 220px;
          margin-bottom: 16px;
      }
      .more-posts__list {
          grid-template-columns: 1fr;
          gap: 24px;
      }
      .blog-post .container{
          max-width: 98%;
      }
  
  }

  /* 404 */
  .page-404{
      margin-bottom: 80px;
  }
  .page-404__content{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 48px 16px 80px;
      border-radius: 32px;
      background-color: var(--color-gray-3);
  }
  .page-404__code{
      font-size: 120px;
      line-height: 1;
      font-weight: 600;
      color: var(--color-blue);
      margin-bottom: 16px;
  }
  .page-404__title{
      font-size: 36px;
      margin-bottom: 16px;
  }
  .page-404__txt{
      max-width: 420px;
      color: var(--color-gray);
      margin-bottom: 32px;
  }
  .page-404__btns{
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
  }
  .page-404__btns .btn{
      min-width: 200px;
      text-transform: uppercase;
  }
  
  
  /* Страница контактов */
  .page-contacts__title{
      margin-bottom: 32px;
  }
  .contacts .container{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }
  .contacts__left, .contacts__right{
      padding: 32px;
      border-radius: 32px;
      background-color: var(--color-gray-3);
  }
  .contacts__title{
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 32px;
  }
  .contacts__list{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
  }
  .contacts__list-item{
      display: flex;
      gap:18px;
      align-items: start;
  }
  .contacts__ico{
      width: 24px;
      height: 24px;
      object-fit: contain;
  }
  .contacts__list-name{
      font-size: 20px;
      margin-bottom: 10px;
      display: block;
      font-weight: 500;
      color: var(--color-blue);
  }
  .contacts__list-desc{
      color: var(--color-gray);
  }
  .contacts__right .contacts__title{
      margin-bottom: 16px;
  }
  .contacts__subtitle{
      color: var(--color-gray);
      margin-bottom: 20px;
  }
  .contacts__messangers{
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
  }
  .contacts__messanger-logo{
      width: 64px;
      height: 64px;
  }
  .contacts__hours{
      display: flex;
      gap: 24px;
      padding: 24px;
      font-weight: 500;
      font-size: 20px;
      background-color: #ffffff80;
      border-radius: 24px;
  }
  .socials__title{
      margin-bottom: 32px;
  }
  .socials__list{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
      margin-bottom: 20px;
  }
  .socials__list .social{
      padding: 24px;
      border-radius: 24px;
      background-color: var(--color-gray-3);
      display: flex;
      gap: 20px;
      align-items: start;
  
  }
  .socials__note{
      text-align: end;
      color: var(--color-gray);
  }
  .social__name{
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 8px;
  }
  .social__txt{
      color: var(--color-gray);
      letter-spacing: -1px;
      margin-bottom: 12px;
  }
  .social__link{
      font-weight: 500;
      text-transform: uppercase;
      text-decoration: underline;
      color: var(--color-blue)
  }
  .social__ico{
      width: 64px;
      height: 64px;
  }
  @media(max-width:1100px){
      .contacts .container, .socials__list{
          grid-template-columns: 1fr;
      }
  }
  @media(max-width:767px){
      .contacts__list{
          grid-template-columns: 1fr;
      }
      .contacts__left, .contacts__right{
          padding: 16px;
          border-radius: 16px;
      }
      .contacts__title{
          font-size: 20px;
          margin-bottom: 24px;
      }
      .contacts__messanger-logo, .social__ico{
          width: 50px;
          height: 50px;
      }
      .contacts__hours{
          font-size: 16px;
      }
      .socials__list .social{
          padding: 16px;
          border-radius: 16px;
      }
      .socials__note{
          text-align: left;
      }
  }
  
  
  
  /* Каталог */
  body.filters-open{
      overflow: hidden;
  }
  .filters .container{
      display: flex;
      gap: 16px;
      margin-bottom: 22px;
      flex-wrap: wrap;
      position: relative;
      align-items: center;
  }
  .filters__top,
  .filters__scroll{
      display: contents;
  }
  .filter{
      padding: 8px 24px;
      display: flex;
      gap:10px;
      align-items: center;
      border: 1px solid var(--color-gray-3);
      border-radius: 99px;
      cursor: pointer;
      transition: .3s all ease-in-out;
      background: var(--color-white);
      font: inherit;
      color: inherit;
  }
  .filter:hover{
      background-color: var(--color-blue);
      color: var(--color-white);
  }
  .filter-active{
      background-color: var(--color-blue);
      color: var(--color-white);
  }
  .filter__count[hidden],
  .filter__cross[hidden]{
      display: none;
  }
  .filter__cross{
      width: 14px;
      height: 14px;
      display: block;
  }
  .filter-sort{
      position: relative;
  }
  .filter-sort__list{
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 240px;
      background: var(--color-white);
      border: 1px solid var(--color-gray-3);
      border-radius: 16px;
      padding: 8px;
      z-index: 20;
      box-shadow: 0 8px 24px rgba(0,0,0,.08);
      list-style: none;
      margin: 0;
  }
  .filter-sort__list[hidden]{
      display: none;
  }
  .filters .filters__scroll .filter{
    display: none;
  }
  .filters .filters__scroll .filter-active{
    display: flex;
  }
  .filter-sort__option{
      width: 100%;
      text-align: left;
      border: none;
      background: transparent;
      padding: 10px 12px;
      border-radius: 10px;
      cursor: pointer;
      font: inherit;
      color: var(--color-black);
  }
  .filter-sort__option:hover,
  .filter-sort__option.is-active{
      background: var(--color-gray-3);
  }
  .product-count{
      margin-bottom: 22px;
      color: var(--color-gray);
  }
  .product-list.is-loading,
  .filters > .container.is-loading{
      pointer-events: none;
      opacity: .72;
  }
  body.filters-open .product-list{
      position: relative;
      z-index: 0;
  }
  .product-list__grid{
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr ;
      gap: 12px;
      margin-bottom: 60px;
  }
  .product-list__more-wrap{
      display: flex;
      justify-content: center;
      margin: -28px auto 60px;
  }
  .product-list__more-wrap[hidden]{
      display: none;
  }
  .product-list__more{
      text-transform: uppercase;
      min-width: 220px;
  }
  .product-card__price{
      display: flex;
      gap: 10px;
      align-items: baseline;
      flex-wrap: wrap;
  }
  .product-card__price-regular{
      color: var(--color-gray);
      text-decoration: line-through;
      font-weight: 400;
  }
  .product-card__price-sale,
  .product-card__price-current{
      color: var(--color-black);
  }
  .product-card__image-link{
      display: block;
  }
  .filters-sidebar{
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.46);
      z-index: 10001;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .3s ease, visibility .3s ease;
  }
  .filters-sidebar.is-open{
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
  }
  .filters-sidebar__container{
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 576px;
      background-color: var(--color-white);
      overflow-y: auto;
      padding: 32px;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      scrollbar-gutter: stable;
  }
  .filters-sidebar.is-open .filters-sidebar__container{
      transform: translateX(0);
  }
  .filters-sidebar__close {
      position: absolute;
      top: 32px;
      right: 32px;
      cursor: pointer;
      background: none;
      border: none;
  }
  .filters-sidebar__title{
      margin-bottom: 40px;
  }
  .filters-sidebar__list{
      display: flex;
      flex-direction: column;
      gap:24px;
  }
  .filters-sidebar__filter{
      padding: 24px;
      border-radius: 24px;
      background-color:var(--color-gray-3)
  }
  .filters-sidebar__filter-visible{
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
  }
  .filters-sidebar__filter-name{
      font-size: 20px;
      font-weight: 500;
      margin-right: auto;
  }
  .filters-sidebar__filter-clear{
      cursor: pointer;
      color: var(--color-gray-2);
      margin-left: auto;
      background: none;
      border: none;
      font: inherit;
      padding: 0;
  }
  .filters-sidebar__filter-clear[hidden]{
      display: none;
  }
  .filters-sidebar__filter-arrow{
      width: 24px;
      height: 24px;
      margin-left: auto;
      transition: transform .25s ease;
  }
  .filters-sidebar__filter:not(.is-open) .filters-sidebar__filter-arrow{
      transform: rotate(180deg);
  }
  .filters-sidebar__filter.is-open .filters-sidebar__filter-clear + .filters-sidebar__filter-arrow,
  .filters-sidebar__filter-clear:not([hidden]) + .filters-sidebar__filter-arrow{
      margin-left: 0;
  }
  .filters-sidebar__filter-hidden{
      display: none;
      padding-top: 18px;
      max-height: 280px;
      overflow-y: auto;
  }
  .filters-sidebar__filter.is-open .filters-sidebar__filter-hidden{
      display: flex;
      flex-direction: column;
      gap: 12px;
  }
  .filters-sidebar__filter-item{
      display: flex;
      align-items: center;
      gap: 10px;
  }
  .filters-sidebar__filter-item input{
      width: 18px;
      height: 18px;
      accent-color: var(--color-blue);
  }
  .filters-sidebar__filter-item label{
      cursor: pointer;
  }
  .filters-sidebar__filter[data-attr="price"] .filters-sidebar__filter-hidden{
      overflow: visible;
  }
  .filters-sidebar__price{
      display: flex;
      flex-direction: column;
      gap: 18px;
      padding-top: 4px;
  }
  .filters-sidebar__price-values{
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--color-black);
      font-weight: 500;
  }
  .filters-sidebar__price-slider{
      position: relative;
      height: 28px;
      display: flex;
      align-items: center;
  }
  .filters-sidebar__price-track,
  .filters-sidebar__price-progress{
      position: absolute;
      left: 0;
      right: 0;
      height: 4px;
      border-radius: 99px;
      pointer-events: none;
  }
  .filters-sidebar__price-track{
      background: var(--color-gray-2);
  }
  .filters-sidebar__price-progress{
      left: 0;
      width: 100%;
      background: var(--color-blue);
  }
  .filters-sidebar__price-min,
  .filters-sidebar__price-max{
      position: absolute;
      left: 0;
      width: 100%;
      margin: 0;
      appearance: none;
      -webkit-appearance: none;
      background: transparent;
      pointer-events: none;
      height: 28px;
  }
  .filters-sidebar__price-min::-webkit-slider-thumb,
  .filters-sidebar__price-max::-webkit-slider-thumb{
      -webkit-appearance: none;
      appearance: none;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--color-blue);
      border: 2px solid var(--color-white);
      box-shadow: 0 1px 4px rgba(0,0,0,.2);
      cursor: pointer;
      pointer-events: auto;
      position: relative;
      z-index: 2;
      margin-top: -7px;
  }
  .filters-sidebar__price-min::-moz-range-thumb,
  .filters-sidebar__price-max::-moz-range-thumb{
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--color-blue);
      border: 2px solid var(--color-white);
      box-shadow: 0 1px 4px rgba(0,0,0,.2);
      cursor: pointer;
      pointer-events: auto;
  }
  .filters-sidebar__price-min::-webkit-slider-runnable-track,
  .filters-sidebar__price-max::-webkit-slider-runnable-track{
      height: 4px;
      background: transparent;
  }
  .filters-sidebar__price-min::-moz-range-track,
  .filters-sidebar__price-max::-moz-range-track{
      height: 4px;
      background: transparent;
  }
  .filters-sidebar__price-max{
      z-index: 3;
  }
  .filters__scroll .filter-color{
      margin-bottom: 0;
  }
  .filters__scroll .filter{
      margin-bottom: 0;
  }
  @media(max-width: 1100px){
      .product-list__grid{
          grid-template-columns: 1fr 1fr 1fr;
      }
  }
  @media(max-width: 767px){
      .product-list__grid{
          grid-template-columns: 1fr;
      }
      .filters .container{
          flex-direction: column;
          flex-wrap: nowrap;
          align-items: stretch;
          gap: 12px;
      }
      .filters__top,
      .filters__scroll{
          display: flex;
          align-items: center;
          gap: 8px;
      }
      .filters__top{
          width: 100%;
      }
      .filters__top .filter-sort,
      .filters__top .filter-call{
          flex: 1 1 0;
          min-width: 0;
          justify-content: center;
      }
      .filters__scroll{
          flex-wrap: nowrap;
          overflow-x: auto;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
          width: 100%;
          padding-bottom: 2px;
      }
      .filters__scroll::-webkit-scrollbar{
          display: none;
      }
      .filters__scroll .filter{
          flex: 0 0 auto;
          white-space: nowrap;
      }
      .filters-sidebar__container{
          width: 100%;
          padding: 20px 16px;
      }
      .filter-sort, .filter-call{
          border: none;
          padding: 0;
      }
      .filters__top{
          justify-content: space-between;
      }
  }
  
  
  
  /* Корзина */
  body.cart-open{
      overflow: hidden;
  }
  .cart{
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #00000075;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .3s ease, visibility .3s ease;
  }
  .cart.is-open{
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
  }
  .cart__container{
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 576px;
      background-color: var(--color-white);
      padding: 32px;
      overflow-y: scroll;
      transform: translateX(100%);
      transition: transform .3s ease;
  }
  .cart.is-open .cart__container{
      transform: translateX(0);
  }
  .cart.is-updating .cart__product-decrease,
  .cart.is-updating .cart__product-increase,
  .cart.is-updating .cart__product-delete,
  .cart.is-updating .cart__coupons-input,
  .cart.is-updating .cart__coupons-btn,
  .cart.is-updating .cart__checkout{
      pointer-events: none;
      opacity: .55;
  }
  .cart__close{
      position: absolute;
      top: 32px;
      right: 32px;
      background: none;
      border: none;
      cursor: pointer;
  }
  .cart__close:hover{
      background: none;
  }
  .cart__title{
      display: flex;
      gap: 8px;
      align-items: center;
      margin-bottom: 40px;
  }
  .cart__title h2{
      line-height: 100%;
  }
  .cart__quantity{
      color: var(--color-gray);
  }
  .cart__product-list{
      display: flex;
      flex-direction: column;
      gap: 32px;
      max-height: 360px;
      overflow-y: auto;
      margin-bottom: 24px;
  }
  .cart__empty{
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 80px 16px 40px;
      min-height: 60%;
  }
  .cart__empty img{
      width: 24px;
      height: 24px;
      margin-bottom: 40px;
      opacity: .45;
  }
  .cart__empty-title{
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--color-blue)
  }
  .cart__empty-txt{
      color: var(--color-gray);
      margin-bottom: 32px;
  }
  .cart__empty-btn{
      text-transform: uppercase;
      padding: 16px 24px;
  }
  .cart--empty .cart__filled,
  .cart--empty .cart__quantity{
      display: none;
  }
  .cart--empty .cart__empty{
      display: flex;
  }
  .cart__product{
      display: grid;
      gap: 16px;
      grid-template-columns: 140px 1fr;
      align-items: start;
  }
  .cart__product-img{
      width: 100%;
      height: 160px;
      object-fit: cover;
      object-position: top;
      border-radius: 24px;
      grid-row: 1/3;
  }
  .cart__product-top{
      display: flex;
      gap: 12px;
  }
  .cart__product-name{
      font-size: 20px;
      font-weight: 500;
      letter-spacing: -1px;
  }
  .cart__product-amount{
      display: flex;
      gap: 10px;
      align-items: center;
      margin-left: auto;
  }
  .cart__product-decrease, .cart__product-increase{
      width: 24px;
      height: 24px;
      background: none;
      border: 1px solid var(--color-gray-3);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100px;
      line-height: 100%;
      font-size: 16px;
      line-height: 80%;
      font-size: 16px;
      font-family: unset;
      cursor: pointer;
  }
  .cart__product-decrease:disabled,
  .cart__product-increase:disabled{
      opacity: .4;
      cursor: default;
  }
  .cart__product-amount-value{
      border: none;
      width: 28px;
      font-size: 18px;
      text-align: center;
  }
  .cart__product-delete{
      background: none;
      border:none;
      width: fit-content;
      padding: 0;
  }
  .cart__product-delete img{
      width: 24px;
      height: 24px;
  }
  .cart__product-info{
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-self: end;
      gap: 24px;
  }
  .cart__product-price{
      grid-column: 2/3;
      grid-row: 1/3;
      align-self: end;
      font-size: 24px;
  }
  
  .cart__product-color, .cart__product-size, .cart__product-price{
      color: var(--color-gray);
  }
  .cart__product-color-value, .cart__product-size-value, .cart__product-price-value{
      color: var(--color-black)
  }
  .cart__coupons{
      display: flex;
      margin-bottom: 24px;
      position: relative;
  }
  .cart__coupons-input{
      padding: 16px 24px;
      background-color: var(--color-gray-3);
      border-top-left-radius: 52px;
      border-bottom-left-radius: 52px;
      width: 100%;
      border: none;
  }
  .cart__coupons-btn{
      padding: 16px 24px;
      text-transform: uppercase;
      border-top-right-radius: 52px;
      border-bottom-right-radius: 52px;
      background-color: var(--color-blue);
      color: var(--color-white);
      border: none;
      cursor: pointer;
      transition: .3s all ease-in-out;
      white-space: nowrap;
  }
  .cart__coupons-btn:hover{
      background-color: var(--color-blue-dark);
  }
  .cart__coupons-btn:disabled{
      cursor: default;
      pointer-events: none;
      background-color: var(--color-blue);
      opacity: .85;
  }
  .cart__coupons-tooltip{
      position: absolute;
      left: 24px;
      bottom: calc(100% + 8px);
      background-color: #222;
      color: #fff;
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 13px;
      line-height: 1.3;
      white-space: nowrap;
      z-index: 2;
  }
  .cart__coupons-tooltip::after{
      content: '';
      position: absolute;
      top: 100%;
      left: 20px;
      border: 6px solid transparent;
      border-top-color: #222;
  }
  .cart__coupons-tooltip[hidden]{
      display: none;
  }
  .cart__total-title{
      margin-bottom: 24px;
  }
  .cart__total-product-sum{
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      color: var(--color-gray);
  }
  .cart__total-product-sum-value, .cart__total-product-discount-value{
      color: var(--color-black);
  }
  .cart__total-product-discount{
      display: flex;
      justify-content: space-between;
      padding-bottom: 8px;
      color: var(--color-gray);
      border-bottom: 1px solid var(--color-gray-2);
  }
  .cart__total-total{
      text-align: end;
      margin-top: 8px;
      font-size: 24px;
      color: var(--color-gray);
      margin-bottom: 24px;
  }
  .cart__total-total-value{
      font-size: 36px;
      color: var(--color-black);
  }
  .cart__note{
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
  }
  .cart__checkout{
      display: block;
      width: 100%;
      padding: 16px;
      text-align: center;
      text-transform: uppercase;
  }
  @media(max-width: 767px){
      .cart__container{
          width: 100%;
          padding: 20px 16px;
      }
      .cart__close{
          top: 20px;
          right: 16px;
      }
      .cart__product{
          grid-template-columns: 96px 1fr;
          gap: 12px;
      }
      .cart__product-img{
          height: 120px;
      }
      .cart__product-name{
          font-size: 16px;
      }
      .cart__product-price{
          font-size: 18px;
      }
      .cart__total-total-value{
          font-size: 28px;
      }
  }
  
  
  
  /* Страница товара */
  .product .container{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
  }
  .product__galery{
      position: relative;
  }
  .product__galery-grid{
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-template-rows: 470px 320px;
      gap: 16px;
  }
  .product__galery-slider{
      display: none;
  }
  .product__img, .product__img-filler, .product__slide-img{
      border-radius: 12px;
      height: 100%;
      object-fit: cover;
      width: 100%;
  }
  .product__galery-grid .product__img:not(.product__img-filler),
  .product__galery-slider .product__slide-img:not(.product__img-filler){
      cursor: zoom-in;
  }
  .product__galery-grid .product__img:nth-child(1){
      grid-column: 1/4;
  }
  .product__galery-grid .product__img:nth-child(2){
       grid-column: 4/7;
  }
  .product__galery-grid .product__img:nth-child(3){
      grid-column: 1/3;
  }
  .product__galery-grid .product__img:nth-child(4){
      grid-column: 3/5;
  }
  .product__galery-grid .product__img:nth-child(5){
      grid-column: 5/7;
  }
  .product__info-top{
      padding-bottom: 24px;
      border-bottom: 1px solid var(--color-gray-2);
      position: relative;
      margin-bottom: 24px;
  }
  .filter-color{
      margin-bottom: 24px;
  }
  .filter-color__name{
      color: var(--color-gray);
      margin-bottom: 8px;
  }
  .filter-color__name-value{
      color: var(--color-black);
      font-weight: 500;
  }
  .filter-color__list{
      display: flex;
      gap: 12px;
      align-items: center;
  }
  .filter-color__item{
      width: 30px;
      height: 30px;
      border-radius: 100px;
      cursor: pointer;
      transition: .3s all ease-in-out;
  }
  .filter-color__item:hover{
      border: 2px solid var(--color-blue);
  }
  .filter-color__list .filter-color__item-current{
      border: 2px solid var(--color-blue);
  }
  .filter__link{
      color: var(--color-gray);
      margin-bottom: 8px;
      display: block;
  }
  .filter-size{
      margin-bottom: 32px;
  }
  .filter-size__list{
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
  }
  .filter-size__item{
      cursor: pointer;
      padding: 8px;
      border-radius: 8px;
      border:2px solid var(--color-gray);
      font-size: 15px;
      transition: .3s all ease-in-out;
  }
  .filter-size__item:hover{
      border-color: var(--color-blue);
  }
  .filter-size__item-active{
      border-color: var(--color-blue);
  }
  .filter-fur-trim{
      margin-bottom: 32px;
  }
  .filter-fur-trim__name{
      display: block;
      margin-bottom: 8px;
      font-size: 14px;
  }
  .filter-fur-trim__select{
      display: block;
      width: 100%;
      max-width: 360px;
      height: 44px;
      padding: 0 40px 0 16px;
      border: 1px solid var(--color-gray-2);
      border-radius: 12px;
      background-color: var(--color-white);
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23909294' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      appearance: none;
      -webkit-appearance: none;
      cursor: pointer;
      outline: none;
  }
  .filter-fur-trim__select:focus{
      border-color: var(--color-blue);
  }
  .product__sku{
      font-size: 12px ;
      color: var(--color-gray-2);
      margin-bottom: 10px;
  }
  .product__title{
      font-size: 36px;
      margin-bottom: 16px;
  }
  .product__price{
      font-size: 28px;
      font-weight: 500;
      margin-bottom: 18px;
  }
  .product__price{
      font-size: 32px;
      display: flex;
      gap: 16px;
  }
  .product__stock{
      display: flex;
      align-items: center;
      gap: 8px;
  }
  .in-stock span:first-child{
      color: #5ED171;
      display: flex;
      align-items: center;
      gap: 8px;
  }
  .out-of-stock span:first-child{
      color: #E04B4B;
      display: flex;
      align-items: center;
      gap: 8px;
  }
  .out-of-stock span::before{
      content:'';
      width: 12px;
      height: 12px;
      border-radius: 100px;
      background-color: #E04B4B;
  }
  .product__price-regular{
      color: var(--color-gray);
      text-decoration: line-through;
      font-weight: 400;
  }
  .product__price-sale,
  .product__price-current{
      font-weight: 500;
  }
  .product__add-to-cart-btn:disabled{
      opacity: .55;
      pointer-events: none;
  }
  .filter-size__item.is-disabled{
      opacity: .35;
      pointer-events: none;
  }
  .swiper-related .product-card,
  .swiper-same .product-card,
  .swiper-acc .product-card{
      height: 100%;
  }
  .in-stock span::before{
      content:'';
      width: 12px;
      height: 12px;
      border-radius: 100px;
      background-color: #5ED171;
  }
  .product__rating{
      display: flex;
      align-items: center;
      gap:8px;
      padding: 8px 16px;
      border-radius: 4px;
      background-color: var(--color-gray-3);
      position: absolute;
      top: 0;
      right: 0;
  }
  .product__stock-amount{
      color: var(--color-gray-2)
  }
  .product__buttons{
      display: flex;
      align-items: center;
      gap: 24px;
      margin-bottom: 32px;
  }
  .product__add-to-cart-btn{
      padding:12px 64px;
      display: flex;
      align-items: center;
      gap:5px;
  }
  .product__add-to-whishlist{
      cursor: pointer;
      border-radius: 100px;
      border: none;
      padding: 13px;
      transition: .3s all ease-in-out;
      background-color: var(--color-gray-3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-blue);
  }
  .product__add-to-whishlist:hover, .product-card__wishlist:hover{
    background-color: var(--color-gray-2);
  }
  .product__services{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 32px;
  }
  .product__service{
      padding: 16px 24px;
      border-radius: 16px;
      background-color: var(--color-gray-3);
      display: flex;
      align-items: start;
      gap: 16px;
  }
  .product__service-name{
      font-size: 18px;
      color: var(--color-blue);
      margin-bottom: 12px;
  }
  .product__service-txt{
      color: var(--color-gray);
  }
  .product__advantages{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      justify-content: space-between;
  }
  .product__advantage{
      display: flex;
      gap: 32px;
      align-items: center;
  }
  .product__tabs{
      grid-column: 1/3 ;
      display: flex;
      margin-top: 40px;
      border-bottom: 1px solid var(--color-gray-3);
      gap: 16px;
  }
  .product__tab{
      cursor: pointer;
      border-bottom: 1px solid transparent;
      transition: .3s all ease-in-out;
      padding-bottom: 6px;
  }
  .product__tab:hover{
      border-bottom-color: var(--color-blue);
  }
  .product__tab-active{
      border-bottom-color: var(--color-blue);
  }
  .product__displays{
      grid-column: 1/3 ;
  }
  .product__display p{
      margin-bottom: 12px;
  }
  .product__display ul{
      margin-bottom: 12px;
      margin-left: 16px;
      list-style: disc;
  }
  .product__display h2{
      margin-bottom: 16px;
  }
  .product__display h3{
      margin-bottom: 16px;
  }
  .product__display ol{
      margin-bottom: 12px;
      margin-left: 16px;
      list-style: decimal;
  }
  #description .product__display-container{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
  }
  .product_desc_txt{
      grid-column: 1/3;
  }
  .gray-back{
      padding: 24px;
      border-radius: 24px;
      background-color: var(--color-gray-3);
  }
  .product_desc_who{
      display: flex;
      gap: 20px;
      flex-direction: column;
  }
  .product_desc_who-item{
      display: flex;
      align-items: start;
      gap: 20px;
  }
  .product__display-name{
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 20px;
  }
  .product_desc_qualities ul{
      display: flex;
      flex-direction: column;
      gap: 8px; 
  }
  .product__display{
      display: none;
  }
  .product__display-active{
      display: block;
  }
  .char{
      display: grid;
      grid-template-columns: 350px 1fr;
  }
  .char__name{
      color: var(--color-gray);
  }
  #chars .product__display-container{
      display: flex;
      flex-direction: column;
      gap: 16px;
  }
  .func__list {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 16px;
      justify-content: space-between;
      margin-bottom: 24px;
  }
  .func__item{
      display: flex;
      gap: 16px;
      align-items: start;
  }
  .func__name{
      font-size: 18px;
      margin-bottom: 8px;
  }
  .func__txt{
      font-size: 14px;
      letter-spacing: -1px;
  }
  .const__list-title{
      font-size: 18px;
      font-weight: 500;
      margin-bottom: 24px;
  }
  .const__item{
      display: grid;
      grid-template-columns: 350px 1fr;
      gap:32px;
  }
  .const__item:not(:last-child){
      margin-bottom: 16px;
  }
  .const__name{
      color: var(--color-gray);
  }
  #materials .product__display-container{
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
  }
  .materials__post{
      grid-column: 1/3;
  }
  .product__display-title{
      font-size: 18px;
      margin-bottom: 16px;
      font-weight: 500;
  }
  .materials__mats-item{
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 24px;
  }
  .materials__mats-name{
      color: var(--color-gray);
  }
  .materials__mats-txt{
      display: none;
      padding-top: 16px;
  }
  .materials__mats-value{
      transition: .3s all ease-in-out;
      position: relative;
      cursor: pointer;
      width: fit-content;
  }
  .materials__mats-value::after{
      content: "";
      width: 20px;
      height: 20px;
      background-image: url('../img/fi-rr-angle-small-right.svg');
      background-size: cover;
      display: block;
      transition: .3s all ease-in-out;
      position: absolute;
      right: -20px;
      top: 0;
  }
  .materials__mats-value-active::after{
      transform: rotate(180deg);
  }
  .materials__mats-item:not(:last-child){
      margin-bottom: 16px;
  }
  .materials__mats-value:hover{
      color: #3577BE;
  }
  .materials__tec-item{
      display: flex;
      gap: 16px;
      align-items: start;
  }
  .materials__tec-item:not(:last-child){
      margin-bottom: 24px;
  }
  .materials__tec-name{
      font-size: 18px;
      margin-bottom: 8px;
  }
  .materials__post-txt{
      margin-bottom: 16px;
  }
  .materials__post-url{
      color: var(--color-blue);
  }
  #sizes .product__display-container{
      display: grid;
      grid-template-columns: 250px 250px 1fr 1fr;
      gap: 24px;
  }
  .sizes__rec{
      grid-column: 3 / 5;
  }
  .sizes__shema{
      grid-column: 1/3;
  }
  #sizes .sizes__title{
      margin-bottom: 6px;
      font-size: 14px;
      color: var(--color-gray);
  }
  .sizes__value{
      font-weight: 500;
  }
  .sizes__shema-columns{
      display: flex;
      justify-content: space-between;
  }
  .sizes__shema-column{
      display: flex;
      flex-direction: column;
      gap: 16px;
      font-size: 14px;
      font-weight: 500;
  }
  .sizes__shema-name{
      color:var(--color-gray);
      font-weight: 400;
  }
  .sizes__pic{
      align-items: start;
      padding-bottom: 0;
      display: flex;
      flex-direction: column;
      grid-row: 1/3;
      grid-column: 3 / 4;
  }
  .sizes__pic img{
      margin-top: auto;
      height: 350px;
  }
  .product__display .sizes__how-list{
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 26px;
      font-size: 14px;
      margin-left: 0;
      margin-bottom: 26px;
  }
  .sizes__how{
    grid-row: 1/3;
    grid-column: 4 / 5;
  }
  .sizes__how-list li:before {
       content: '✓';
  }
  .sizes__how-list li{
      display: flex;
      align-items: start;
      gap: 8px;
  }
  .sizes__how-link{
      text-transform: uppercase;
      color: var(--color-blue);
      scroll-margin-top: 50vh;
  }
  #filter-size{
    scroll-margin-top: 50vh;
  }
  .product__display{
      display: none;
  }
  .product__display-active{
      display: block;
  }
  .product__display p{
      margin-bottom: 12px;
  }
  .product__display ul{
      margin-bottom: 12px;
      margin-left: 16px;
      list-style: disc;
  }
  .product__display h2{
      margin-bottom: 16px;
  }
  .product__display h3{
      margin-bottom: 16px;
  }
  .product__display ol{
      margin-bottom: 12px;
      margin-left: 16px;
      list-style: decimal;
  }
  @media(max-width: 1400px){
    .sizes__pic img{
        height: 300px;
        object-fit: cover;
        object-position: right;
        margin-bottom: auto;
    }
    
  }
   @media(max-width: 1100px){
    .sizes__how{
        grid-row: initial;
        grid-column: initial;
    }
    .sizes__pic{
        grid-row: initial;
        grid-column: initial;
    }
    #sizes .product__display-container{
        grid-template-columns: 1fr 1fr;
    }
   }
  
  /* Отзывы товара */
  .reviews-block{
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 32px;
      align-items: start;
  }
  .reviews-summary{
      display: grid;
      grid-template-columns: minmax(180px, 220px) 1fr;
      gap: 32px;
      margin-bottom: 32px;
      padding: 24px;
      background: var(--color-gray-3);
      border-radius: 20px;
  }
  .reviews-summary__value{
      font-size: 36px;
      font-weight: 600;
      margin-bottom: 8px;
  }
  .reviews-summary__count{
      color: var(--color-gray);
      margin: 8px 0 16px;
  }
  .reviews-summary__btn{
      text-transform: uppercase;
      width: 100%;
      padding: 14px;
  }
  .reviews-stars{
      display: inline-flex;
      gap: 2px;
      align-items: center;
      vertical-align: middle;
  }
  .reviews-star{
      position: relative;
      display: inline-block;
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
  }
  .reviews-star img{
      width: 18px;
      height: 18px;
      display: block;
  }
  .reviews-star__empty{
      opacity: .22;
  }
  .reviews-star__fill{
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      overflow: hidden;
  }
  .reviews-stars--sm .reviews-star,
  .reviews-stars--sm .reviews-star img{
      width: 14px;
      height: 14px;
      flex-basis: 14px;
  }
  .reviews-stars--xs .reviews-star,
  .reviews-stars--xs .reviews-star img{
      width: 12px;
      height: 12px;
      flex-basis: 12px;
  }
  .reviews-bar{
      display: grid;
      grid-template-columns: 16px auto 1fr 28px;
      gap: 8px;
      align-items: center;
      margin-bottom: 8px;
  }
  .reviews-bar__label{
      font-weight: 500;
  }
  .reviews-bar__star{
      width: 14px;
      height: 14px;
      display: block;
  }
  .reviews-bar__track{
      height: 8px;
      background: #fff;
      border-radius: 99px;
      overflow: hidden;
  }
  .reviews-bar__fill{
      display: block;
      height: 100%;
      background: var(--color-blue);
      border-radius: 99px;
  }
  .reviews-bar__count{
      color: var(--color-gray);
      text-align: right;
      font-size: 14px;
  }
  .reviews-notice{
      margin-bottom: 16px;
      padding: 12px 16px;
      border-radius: 12px;
      background: #e8f6ec;
  }
  .reviews-list{
      max-height: 560px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-right: 8px;
  }
  .reviews-list__empty,
  .reviews-block__photos-empty{
      color: var(--color-gray);
  }
  .reviews-item{
      padding: 20px;
      border-radius: 20px;
      background: var(--color-gray-3);
  }
  .reviews-item__top{
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
  }
  .reviews-item__name{
      font-weight: 600;
  }
  .reviews-item__date{
      margin-left: auto;
      color: var(--color-gray);
      font-size: 14px;
  }
  .reviews-item__text p:last-child{
      margin-bottom: 0;
  }
  .reviews-item__photos{
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
  }
  .reviews-item__photo{
      width: 72px;
      height: 72px;
      object-fit: cover;
      border-radius: 8px;
  }
  .reviews-item__reply{
      margin-top: 16px;
      padding: 16px;
      border-radius: 12px;
      background: #fff;
  }
  .reviews-item__reply-name{
      font-weight: 600;
      margin-bottom: 8px;
  }
  .reviews-block__gallery-title{
      font-size: 20px;
      font-weight: 500;
      margin-bottom: 16px;
  }
  .reviews-block__photos{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
  }
  .reviews-block__photo{
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 8px;
  }
  body.review-popup-open{
      overflow: hidden;
  }
  .review-popup{
      position: fixed;
      inset: 0;
      background: #00000075;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .3s ease, visibility .3s ease;
  }
  .review-popup.is-open{
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
  }
  .review-popup__container{
      position: relative;
      width: 100%;
      max-width: 560px;
      max-height: 90vh;
      overflow-y: auto;
      background: var(--color-white);
      border-radius: 24px;
      padding: 32px;
  }
  .review-popup__close{
      position: absolute;
      top: 24px;
      right: 24px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
  }
  .review-popup__title{
      font-size: 28px;
      margin-bottom: 24px;
  }
  .review-popup__form{
      display: flex;
      flex-direction: column;
      gap: 16px;
  }
  .review-popup__field{
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  .review-popup__field input,
  .review-popup__field textarea{
      width: 100%;
      border: none;
      background: var(--color-gray-3);
      border-radius: 16px;
      padding: 14px 16px;
      font: inherit;
  }
  .review-popup__hint,
  .review-popup__note{
      color: var(--color-gray);
      font-size: 14px;
  }
  .review-popup__stars{
      display: flex;
      gap: 6px;
  }
  .review-popup__star{
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      opacity: .22;
  }
  .review-popup__star.is-active,
  .review-popup__star.is-hover{
      opacity: 1;
  }
  .review-popup__star img{
      width: 24px;
      height: 24px;
      display: block;
  }
  .review-popup__rating.is-error .review-popup__label{
      color: #c0392b;
  }
  .review-popup__submit{
      text-transform: uppercase;
      width: 100%;
      padding: 14px;
  }
  .reviews-summary__score{
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .review-popup__rating .stars{
      display: none;
  }
  @media(max-width:  1400px){
      .product__tabs{
          font-size: 14px;
      }
      .product__service-name {
          font-size: 16px;
      }
      .product__service-txt {
          font-size: 14px;
          letter-spacing: -1px;
      }
      .product__service {
          padding: 12px 18px;
      }
      .filter-size__list {
          flex-wrap: wrap;
      }
  }
  @media(max-width: 1100px){
      .reviews-block{
          grid-template-columns: 1fr;
      }
      .reviews-block__photos{
          max-width: 420px;
      }
      .product__galery{
          grid-template-rows: 300px 200px;
      }
      .product__tabs {
          letter-spacing: -1px;
          text-align: center;
      }
      .func__item {
          gap: 8px;
      }
      .func__list{
          grid-template-columns: 1fr 1fr;
      }
      #materials .product__display-container{
          grid-template-columns: 1fr;
      }
      .materials__post{
          grid-column: 1 / 2;
      }
      .product__title {
          font-size: 30px;
      }
  }
  @media(max-width: 767px){
      .product__galery{
          grid-column: 1 / 3;
      }
      .product .container{
          grid-template-columns: 1fr;
          gap: 24px;
      }
      .product__galery-grid{
          display: none;
      }
      .product__galery-slider{
          display: block;
          overflow: hidden;
          border-radius: 12px;
      }
      .product__galery-slider .swiper-slide{
          height: auto;
      }
      .product__slide-img{
          display: block;
          width: 100%;
          height: 440px;
          object-fit: cover;
          object-position: top center;
      }
      .product__rating{
          padding: 5px 8px;;
      }
      .product__sku{
          margin-bottom: 20px;
      }
      .product__title{
          font-size: 24px;
          margin-bottom: 18px;
      }
      .product__price{
          font-size: 20px;
      }
      .filter-size__list{
          flex-wrap: wrap;
      }
      .product__services{
          grid-template-columns: 1fr;
      }
      .product__advantages{
          grid-template-columns: 1fr;
      }
      .product__tabs {
          overflow-x: scroll;
          white-space: nowrap;
          gap: 16px;
          font-size: 16px;
          scrollbar-width: none; 
          -ms-overflow-style: none;
      }
      #description .product__display-container{
          grid-template-columns: 1fr;
      }
      .product_desc_txt {
          grid-column: 1 / 2;
      }
      .gray-back{
          padding: 16px;
          border-radius: 16px;
      }
      .char {
          grid-template-columns: 1fr;
      }
      .char__name{
          margin-bottom: 12px;
      }
      .func__list {
          grid-template-columns: 1fr;
      }
      .materials__mats-item {
          grid-template-columns: 1fr;
          gap: 12px;
      }
      .const__item {
          display: grid;
          grid-template-columns: 1fr;
          gap: 12px;
      }
      .product__tabs::-webkit-scrollbar{
          display: none; 
      }
      .product__galery-slider .swiper-pagination{
          position: static;
          transform: none;
          margin-top: 12px;
          display: flex;
          justify-content: center;
          gap: 6px;
      }
      .reviews-summary{
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 16px;
      }
      .reviews-item__top{
          flex-wrap: wrap;
      }
      .reviews-item__date{
          margin-left: 0;
          width: 100%;
      }
      .reviews-list{
          max-height: 420px;
      }
      #sizes .product__display-container{
          grid-template-columns: 1fr;
      }
      .sizes__rec{
          grid-column: 1/2;
      }
      .sizes__shema {
          grid-column: 1 / 2;
      }
      .sizes__shema-columns{
          overflow-x: scroll;
          gap: 16px;
      }
      .sizes__shema-name, .sizes__shema-item{
          white-space: nowrap;
      }
      .sizes__shema-column{
          width: 10px;
      }
      .footer__info{
          flex-direction: column;
          text-align: center;
      }
  }
  
  
  /* Политика */
  .policy__title{
      margin-bottom: 32px;
  }
  .policy-container h2{
      margin-top: 24px;
      margin-bottom: 16px;
      font-size: 20px;
      font-weight: 500;
  }
  .policy-container p{
      margin-bottom: 12px;
  }
  .policy-container{
      margin-bottom: 60px;
  }
  .policy-container a{
      color: var(--color-blue);
      transition: .3s all ease-in-out;
  }
  .policy-container a:hover{
      text-decoration: underline;
  }
  .cookie {
      position: fixed;
      bottom: -500px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      padding: 16px;
      border-radius: 16px;
      background-color: var(--color-white);
      z-index: 999;
      text-align: center;
      box-shadow: 2px 5px 10px 2px rgba(0, 0, 0, 0.3);
      transition: 1s all ease-in-out;
  }
  .cookie-active{
      bottom: 40px;
  }
  .cookie a{
      color: var(--color-blue);
      text-decoration: underline;
  }
  .cookie__container{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
  }
  .footer__info{
      display: flex;
      justify-content: space-between;
  }
  @media(max-width: 767px){
    .cookie{
        max-width: 90%;
        width: 100%;
    }
    .cookie-active {
        bottom: 60px;
    }
    body{
        overflow-x: hidden;
    }
    .btn-up {
        bottom: 50px;
        right: 10px;
    }
  }
  
  /* Страница оформления заказа */
  .container-checkout{
      margin-bottom: 60px;
  }
  .container-checkout #billing_country_field{
      display: none !important;
  }
  .container-checkout h3{
      font-size: 28px;
      font-weight: 500;
      margin-bottom: 24px;
  }
  .woocommerce form .form-row .input-text {
      padding: 16px 24px;
      font-size: 16px;
      color: var(--color-black);
      border-radius: 52px;
      background-color: var(--color-gray-3);
      border: none;
  }
  .container-checkout .woocommerce-billing-fields{
      margin-bottom: 32px;
  }
  .acoot-personal-data-field{
      margin-top: 8px;
      margin-bottom: 0;
  }
  .acoot-personal-data-field label{
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      line-height: 1.4;
      color: var(--color-black);
      cursor: pointer;
  }
  .acoot-personal-data-field input[type="checkbox"]{
      margin-top: 3px;
      flex-shrink: 0;
  }
  .acoot-personal-data-field a{
      color: var(--color-blue);
      text-decoration: underline;
  }
  .acoot-personal-data-field .required{
      color: #E04B4B;
      text-decoration: none;
      border: none;
  }
  .woocommerce table.shop_table{
      border-radius: 32px;
  }
  .woocommerce table.shop_table th, .woocommerce table.shop_table td{
      padding: 12px 24px;
  }
  .woocommerce-checkout #payment {
      background-color: var(--color-gray-3);
      border-radius: 32px;
      padding: 32px;
  }
  .woocommerce #payment #place_order{
      float: initial;
      margin: 24px auto 0 auto;
      white-space: nowrap;
      text-transform: uppercase;
      padding: 16px 24px;
      background: var(--color-blue);
      color: var(--color-white);
      border: none;
      border-radius: 58px;
      transition: .3s all ease-in-out;
      cursor: pointer;
  }
  .woocommerce #payment #place_order:hover{
      background: var(--color-blue-dark);
  }
.btn-up{
    position: fixed;
    bottom: 40px;
    right:40px;
    padding: 10px;
    border-radius: 100%;
    background-color: var(--color-blue);
    z-index: 999;
    cursor: pointer;
    transition: .3s all ease-in-out;
}
.hidden{
    display: none;
}
.btn-up:hover{
    background-color: var(--color-blue-dark);
}
.shop_table .cart-delivery-points .wc-russian-post-choose-delivery-point, .wc-russian-post-method-additional-info .wc-russian-post-choose-delivery-point, .open-pvz-btn{
    text-transform: uppercase;
    padding: 8px 24px;
    background: var(--color-blue);
    color: var(--color-white);
    border: none;
    border-radius: 58px;
    transition: .3s all ease-in-out;
    cursor: pointer;
    font-size: 14px;
    line-height: 120%;
}
.shop_table .cart-delivery-points .wc-russian-post-choose-delivery-point:hover,  .wc-russian-post-method-additional-info .wc-russian-post-choose-delivery-point:hover, .open-pvz-btn:hover{
    background: var(--color-blue-dark);
    color: var(--color-white)
}
.wc-backbone-modal .wc-backbone-modal-content{
    border-radius: 16px;
    overflow: hidden;
}
 @media(max-width: 767px){
    .btn-up {
        bottom: 50px;
        right: 10px;
    }
  }
  .alw-hidden{
    display: none !important;
  }

  .product-card__add-to-cart img{
    transform: rotate(-45deg);
  }

  /* Страницы успешной / неуспешной оплаты */
  .checkout-result{
      max-width: 820px;
      margin: 0 auto 80px;
  }
  .checkout-result__card{
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 48px 32px;
      border-radius: 32px;
      background-color: var(--color-gray-3);
      margin-bottom: 24px;
  }
  .checkout-result__badge{
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      font-weight: 600;
      line-height: 1;
      margin-bottom: 20px;
      color: var(--color-white);
  }
  .checkout-result__card--success .checkout-result__badge{
      background-color: var(--color-blue);
  }
  .checkout-result__card--error .checkout-result__badge{
      background-color: var(--color-red);
  }
  .checkout-result__title{
      font-size: 36px;
      font-weight: 500;
      margin-bottom: 12px;
  }
  .checkout-result__txt{
      max-width: 480px;
      color: var(--color-gray);
      margin-bottom: 28px;
      line-height: 1.5;
  }
  .checkout-result__overview{
      list-style: none;
      margin: 0 0 32px;
      padding: 0;
      width: 100%;
      max-width: 560px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
  }
  .checkout-result__overview li{
      display: flex;
      flex-direction: column;
      gap: 4px;
      text-align: left;
      padding: 16px 20px !important;
      border-radius: 20px;
      background-color: var(--color-white);
      margin: 0 !important;
      border: none !important;
      float: none !important;
      width: auto !important;
      padding-right: 20px !important;
  }
  .checkout-result__details p {
    margin-bottom: 16px;
  }
  .checkout-result__label{
      font-size: 13px;
      color: var(--color-gray);
  }
  .checkout-result__overview strong{
      font-size: 16px;
      font-weight: 500;
      color: var(--color-black);
  }
  .checkout-result__btns{
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
  }
  .checkout-result__btns .btn,
  .checkout-result__btns .button{
      min-width: 180px;
      text-transform: uppercase;
      text-align: center;
      text-decoration: none;
      box-shadow: none;
  }
  .checkout-result__btns .button.pay{
      background: var(--color-blue);
      color: var(--color-white);
      border: none;
      border-radius: 58px;
      padding: 8px 16px;
  }
  .checkout-result__btns .btn-trans.button.pay{
      background: transparent;
      color: var(--color-black);
      border: 1px solid var(--color-black);
  }
  .checkout-result__details{
      margin-top: 8px;
  }
  .checkout-result__details .woocommerce-order-details,
  .checkout-result__details .woocommerce-customer-details{
      padding: 32px;
      border-radius: 32px;
      background-color: var(--color-gray-3);
      margin-bottom: 24px;
  }
  .checkout-result__details .woocommerce-order-details__title,
  .checkout-result__details .woocommerce-column__title{
      font-size: 24px;
      font-weight: 500;
      margin-bottom: 20px;
  }
  .checkout-result__details .woocommerce-table--order-details{
      border-radius: 20px;
      overflow: hidden;
      background: var(--color-white);
  }
  .woocommerce-order .woocommerce-notice--success,
  .woocommerce-order .woocommerce-notice--error{
      background: transparent;
      border: none;
      padding: 0;
      margin: 0 0 28px;
      color: var(--color-gray);
  }
  @media(max-width: 767px){
      .checkout-result{
          margin-bottom: 48px;
      }
      .checkout-result__card{
          padding: 32px 16px;
          border-radius: 24px;
      }
      .checkout-result__badge{
          width: 56px;
          height: 56px;
          font-size: 24px;
      }
      .checkout-result__title{
          font-size: 24px;
      }
      .checkout-result__overview{
          grid-template-columns: 1fr;
      }
      .checkout-result__btns{
          flex-direction: column;
          width: 100%;
      }
      .checkout-result__btns .btn,
      .checkout-result__btns .button{
          width: 100%;
          min-width: 0;
      }
      .checkout-result__details .woocommerce-order-details,
      .checkout-result__details .woocommerce-customer-details{
          padding: 20px 16px;
          border-radius: 24px;
      }
  }
  .woocommerce .checkout-result__card .woocommerce-order-overview::before{
    display: none;
  }
  .checkout-result__details .woocommerce-customer-details address{
    background-color: var(--color-white);
    border-radius: 32px;
    padding: 24px;
  }
  .checkout-result__details .woocommerce-customer-details address p{
    display: flex;
    align-items: center;
  }
