
  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #000;
    box-sizing: border-box;
    
   
  }
  * {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

*::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 300px;
    /*gap: 60px;*/
    z-index: 1200;
    box-sizing: border-box;
  }
  
  main {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    margin-top: 80px;
    background:#fff;
    flex:1;
    min-height: 10px;
    max-width:100%;
  }
  
  footer {
    display:flex;
    flex-direction:column;
    flex:1;
  }

  footer .container{
    background: #405EA9;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
    padding: 16px 300px;
  }
  
  footer address{
    background: #1A1A1A;
    box-shadow: 0 -1px 0 #333333;
    padding: 24px 0;
    color: #FFFFFF;
    padding: 16px 300px;
  }
  
  .footer-notice {
    font-weight: 500;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.4;
    color: #FFFFFF;
    margin: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  .footer-contact {
    font-style: normal;
    font-weight: 600;
    font-size: clamp(12px, 1vw, 14px);
    line-height: 150%;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
  }

  .footer-contact a {
    color: inherit;
    text-decoration: none;
  }

  .footer-contact a:hover, .footer-contact a:focus {
    text-decoration: underline;
    outline: none;
  }

  .logo {
    flex-shrink: 0;
    height: 30px;
    display: flex;
    align-items: center;
  }

  nav {
    position: relative;
  }

  ul.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  ul.nav-links li.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
  }

  .nav-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #F97570;
    text-decoration: none;
  }

  i.chevron-right {
    display: inline-block;
    width: 9px;
    height: 16px;
    background-image: url('/assets/icons/chevron-right.svg'); /* Путь к вашему chevron.svg */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
 
  .header-logo {
    display: inline-block;
    width: 152px;
    height: 30px;
    background-color: #F97570; /* Розовый цвет */
    shape-rendering: geometricPrecision;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-mask-image: url('/assets/icons/header-logo.svg');
    mask-image: url('/assets/icons/header-logo.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }

  .social-links {
    display: flex;
    gap: 8px;
    align-items: center;
    height: 40px;
  }

  .social-icon {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  i.icon-tg-base,
  i.icon-wa-base,
  i.icon-vk-base,
  i.icon-2gis-base {
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  i.icon-tg-base { background-image: url('/assets/icons/icon-tg-base.svg'); }  /* путь к telegram.svg */
  i.icon-wa-base { background-image: url('/assets/icons/icon-wa-base.svg'); }  /* путь к whatsapp.svg */
  i.icon-vk-base { background-image: url('/assets/icons/icon-vk-base.svg'); }              /* путь к vk.svg */
  i.icon-2gis-base { background-image: url('/assets/icons/icon-2gis-base.svg'); }              /* путь к 2gis.svg */
  
  .hamburger {
    display: none;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: 8px;
  }

  .hamburger-line {
    width: 100%;
    height: 3px;
    background: #F97570;
    border-radius: 2px;
  }

  ul.nav-links.active {
    display: none;
  }

  .mobile-menu {
    position: fixed;
    top: 54px;
    left: 0;
    width: 100%;
    height: 0;
    background: white;
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .mobile-menu.active {
    height: auto;
    opacity: 1;
    overflow-y: auto;
  }

  .nav-links-mobile {
    list-style: none;
    padding: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .nav-links-mobile .nav-item {
    padding: 10px 0;
  }

  .nav-links-mobile .nav-text {
    font-weight: 500;
    font-size: 16px;
    color: #F97570;
    text-decoration: none;
    display: block;
  }

  section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
  
  .shops-section__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 300px;
    gap: 10px;
    background: radial-gradient(50% 426.67% at 50% 50.22%, #FF9D99 0%, #F97570 100%);
    align-self: stretch;
    flex-grow: 0;
  }

  .brands-section__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 300px;
    gap: 10px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #666762;
    align-self: stretch;
    flex-grow: 0;
  }



  
  i.section-header-logo {
    display: inline-block;
    width: 300px;
    height: 59px;
    background-color: #fff; /* Белый цвет */
    shape-rendering: geometricPrecision;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    -webkit-mask-image: url('/assets/icons/header-logo.svg');
    mask-image: url('/assets/icons/header-logo.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }

  .shops-section__header-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
  }

  .brands-section__header-title {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
  }


  .brands-section__header-subtitle {
  
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #FFFFFF;
  }


  .shops-section__body {
    padding: 64px 300px;
    gap: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    background: #F8F8FF;
    min-height: 10px;
    align-self: stretch;
  }
  
  .city-branches,.city-branches__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
    flex: 1;
    align-self: stretch;
  }

  .city-branches__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #1A1A1A;
    display:flex;
    flex-direction:row;
    gap: 16px;
    align-items:center;
  }

  .city-branches__item {
    padding: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    flex: 1;
    align-self: stretch;
    gap: 16px;
    flex-wrap: wrap;
  }

  .city-branches__item__title-content {
    display: flex;
    flex-direction: column;
    padding: 3px 0;
    gap: 8px;
    flex: 1;
    flex-wrap:nowrap;
  }

  .city-branches__item__title{
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #000000;
  }

  .city-branches__item__address{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color:#A2A9AA;
  }

  .city-branches__item__contacts {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    flex-wrap: wrap-reverse;
  }
    
  .city-branches__item__phone {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    align-items: center;
  }
  
  .city-branches__item__phone a {
    text-decoration: none;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 18px;
    color: #405EA9;
  }

  .shops-section__social{
    display: flex;
    flex-direction: row;
    gap: 8px;
  }

  .loader-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 4999;
    }

    .loader-container.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .loader-icon {
      display: inline-block;
      width: 250px;
      height: 250px;
      background-image: url('/assets/icons/drema-loader.svg');
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 5000;
      overflow: hidden;
    }

    body.loaded {
      opacity: 1;
    }

    .brands-section__carousel {
      display:flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      align-self: stretch;
      overflow: hidden;
      position: relative;
      padding: 48px 300px;
      box-sizing: border-box;
      position: relative;

      
    }
    
    .brands-section__carousel-container {
      display: flex;
      transition: transform 0.5s ease;
      will-change: transform;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      align-self: stretch;
      /*overflow: hidden;*/
      gap:48px;
      left:-250px;
      position: relative;
      transition: none;
      width: 300vw
    }


    
    .brands-section__carousel-item {
      flex: 0 0 120px; /* фиксированная ширина элемента */
        margin: 0;
        text-align: center;
        line-height: 100px;
        font-size: 20px;
        user-select: none;
        position: relative;
        min-height: 30px;
        height: 60px;
    }
    
    .brands-section__carousel-item i {
        display: block;
        width: 120px;
        height: 60px;
        margin: 0;
        background-color: #fff; /* Белый цвет */
        shape-rendering: geometricPrecision;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
    }
    
    /*@keyframes slide {
      0% {
        transform: translateX(0);
        opacity: 1;
      }
      80% {
        opacity: 1;
      }
      100% {
        transform: translateX(calc(-100% - 48px));
        opacity: 0;
      }
    }*/
  
     




  /* Мобильные стили  1400 */
  @media (max-width: 1400px) {

    .brands-section__carousel {
      gap: 40px;
      padding: 40px 150px;
    }
    
    .mobile-menu { 
      display: none; }
    
    header, footer .container{ 
      padding:16px 150px;}
    
    footer address{
      padding:24px 150px;
    }
    
    ul.nav-links li.nav-item {
      gap: 4px;
    }
    
    ul.nav-links {
      gap: 16px;
    }
    
    .shops-section__header {
      padding: 48px 150px;
      gap: 8px;
    }
    .brands-section__header {
      padding: 24px 150px;
      gap: 8px;
    }
    
    .shops-section__body{
      padding: 48px 150px;
      gap: 40px;
    }
  }

  @media (max-width: 1024px) {
    .brands-section__carousel {
      gap: 32px;
      padding: 32px 50px;
    }

    .city-branches__title{
      font-size: 20px;
    }
    
    .shops-section__header {
      padding: 32px 50px;
      gap: 6px;
    }

    .brands-section__header {
      padding: 16px 50px;
      gap: 6px;
    }

    .city-branches__item {
      padding: 12px;
    }
    
    .shops-section__body{
      padding: 32px 50px;
      gap: 32px;
    }
    
    i.section-header-logo {
      width: 250px;
    }

    .city-branches,.city-branches__content{
      gap: 20px;
    }

    .mobile-menu{
      display: none;
    }

    header, footer .container {
      padding:16px 50px;
    }

    footer address{
      padding:24px 50px;
    }
    
    ul.nav-links {
      gap: 16px;
    }

    i.icon-tg-base, i.icon-wa-base, i.icon-vk-base, i.icon-2gis-base {
      width: 32px;
      height: 32px;
    }

  }

  @media (max-width: 768px) {
    .brands-section__carousel {
      gap: 24px;
      padding: 24px 20px;
    }
    
    .city-branches__title {
      font-size: 16px;
    }

    .city-branches__item__phone {
      padding: 0 8px;
      align-items: center;
    }

    .shops-section__social {
      gap: 4px;
    }

    .city-branches__item{
      gap: 8px;
    }

    .shops-section__header {
      gap: 4px;
    }
    .brands-section__header {
      gap: 4px;
    }
    .city-branches__item__title-content{
      gap: 4px;
    }

    .shops-section__body {
      padding: 32px 20px;
      gap: 24px;
    }

    .city-branches__item {
      padding: 8px;
    }

    .shops-section__header-title{
      font-size: 16px;
    }
    .brands-section__header-title{
      font-size: 32px;
      line-height: 130%;
      font-weight: 600;
    }
    .brands-section__header-subtitle{
      font-size: 16px;
    }

    .city-branches, .city-branches__content {
      gap: 16px;
    }

    .city-branches__item__title {
      font-size: 14px;
    }

    .city-branches__item__address {
      font-size: 12px;
    }

    .mobile-menu{
      display: flex;
    }
    header {
      padding: 16px 20px;
      flex-wrap: nowrap;
      height: 54px;
      justify-content: center;
      /*gap: 20px;*/
    }
    main{
        margin-top:54px;
    }
    footer .container{
      padding:16px 20px;
    }
    footer address{
      padding:24px 20px;
    }
    
    .mobile-menu {
      top: 54px;  /* отступ вниз под высоту хедера */
      z-index: 1100; /* выше, чем у header */
    }

    nav {
      position: relative;
      flex: 1;
    }

    ul.nav-links {
      position: absolute;
      top: 80px;  /* Высота header */
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      gap: 15px;
      padding: 20px 0;
      display: none;
      box-shadow: 0 3px 5px rgba(0,0,0,0.1);
      z-index: 999;
      margin: 0;
    }

    ul.nav-links.active {
      display: flex;
    }

    .social-links {
      margin-left: auto;
    }

    .hamburger {
      display: flex;
    }

    i.icon-tg-base, i.icon-wa-base, i.icon-vk-base, i.icon-2gis-base {
      width: 28px;
      height: 28px;
    }
    
  }

  @media (max-width: 480px) {
    .brands-section__carousel {
      gap: 16px;
      padding: 16px 16px;
    }

    .city-branches {
      gap: 8px;
    }
    
    .city-branches__item {
      gap: 4px;
    }
    
    .city-branches__item {
      flex-direction: column;
    }

    .city-branches__item__title-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    
    .shops-section__header {
      padding: 16px 16px;
    }
    .brands-section__header {
      padding: 16px 16px;
    }
    
    .shops-section__body{
      padding: 16px 16px;
      gap: 16px;
    }
    
    .shops-section__header {
      gap: 2px;
      
    }
    .city-branches__item__contacts
    {
      
      justify-content: space-between;
      
    }
    .city-branches__item__phone{
      order:2;
      padding: 0;
    }
    .city-branches, .city-branches__content{
      gap: 12px;
    }

    header {
      padding: 12px 16px;
    }
    
    footer .container{
      padding:16px 16px;
    }
    
    footer address{
      padding:24px 16px;
    }
    
    .social-links {
      gap: 5px;
      width: auto;
      display: none;
    }
    
    .hamburger {
        margin-left:5px;
    }
    
    /*.social-icon {
      width: 35px;
      height: 35px;
    }*/

    /*i.icon-tg-base,
    i.icon-wa-base,
    i.icon-vk-base {
      width: 16px;
      height: 16px;
    }*/
  }

  

  .about-section{
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: center;
    align-self: stretch;
  }

.about-section__designs {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  align-self: stretch;
  gap: 32px;
  padding: 48px 0px;
  justify-content: space-around;
  
  isolation: isolate;
  min-height: 500px;
  position: relative;

  /* Основной фон — градиент */
  background: radial-gradient(50% 119.85% at 50% 50.06%, #8AA4E6 0%, #405EA9 100%);
}

/* Псевдоэлемент с SVG (только один фон) */
.about-section__designs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/icons/bg-colos.svg') left bottom -145px repeat-x;
  
  mix-blend-mode: multiply;  /* Режим наложения с градиентом */
  opacity: 0.4;             /* Прозрачность только для SVG */
  z-index: -1;              /* Помещаем под контент */
}
  

  .about-section__designs-title{
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 34px;
    text-align: center;
    color: #FFFFFF;
    hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;


  }
  .about-section__designs-carousel{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  


  .about-section__designs-carousel-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    justify-content: center;
  }


  .about-section__designs-carousel-item__image{
    width: 450px;
    height: 600px;
    filter: drop-shadow(-1px 2px 30px rgba(0, 0, 0, 0.1));
    background: url('/assets/images/zina-slide001.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

.about-section__designs-carousel-item:nth-child(1) .about-section__designs-carousel-item__image { background: url('/assets/images/zina-slide001.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; }
.about-section__designs-carousel-item:nth-child(2) .about-section__designs-carousel-item__image { background: url('/assets/images/zina-slide002.png');background-repeat: no-repeat;
    background-size: contain;
    background-position: center; }
.about-section__designs-carousel-item:nth-child(3) .about-section__designs-carousel-item__image { background: url('/assets/images/zina-slide003.png');background-repeat: no-repeat;
    background-size: contain;
    background-position: center; }
  
  
  .about-section__designs-carousel-item__description{
    max-width: 450px;
    min-width: 450px;
    display: flex;

    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    /*flex: 1;
    align-self: stretch;*/
    gap: 20px;
  }

.about-section__designs-carousel-item__description-subtitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #FFFFFF;
  white-space:nowrap;
}
.about-section__designs-carousel-item__description-title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  color: #FFFFFF;
}

@media(max-width:1400px){
  .about-section__designs{
    padding: 48px 90px;
    margin: 0;
  }
  .about-section__designs-carousel-item__image{
    width: 400px;
    height: 533px;
}
.about-section__designs-carousel-item__description{
    max-width: 400px;
    min-width: 400px;
    gap: 16px;
  }
.about-section__designs-carousel{
    gap: 30px;
  }
  .about-section__designs-carousel-item:nth-of-type(3) {
    display: none;
  }
}
@media(max-width:1024px){
  .about-section__designs{
    gap:24px;
    padding: 40px 35px;
  }
  .about-section__designs-carousel-item__image{
    width: 325px;
    height: 433px;
}
.about-section__designs-carousel-item__description{
    max-width: 325px;
    min-width: 325px;
    gap: 14px;}
.about-section__designs-carousel{
    gap: 32px;
  }
}
@media(max-width:768px){
  .about-section__designs-carousel-item:nth-of-type(2) {
    display: none;
  }

  .about-section__designs{
    gap:32px;
    padding: 32px 16px;
  }
  .about-section__designs-carousel-item__image{
    width: 300px;
    height: 400px;
}
.about-section__designs-carousel-item__description{
    max-width: 300px;
    min-width: 300px;
    gap: 12px;}
.about-section__designs-carousel{
    gap: 24px;
  }
}
@media(max-width:480px){
  .about-section__designs{
    gap:16px;
    padding: 16px 10px;
  }
  .about-section__designs-carousel-item__image{
    width: 250px;
    height: 333px;
}
.about-section__designs-carousel-item__description{
    max-width: 250px;
    min-width: 250px;
    gap: 10px;
  }
.about-section__designs-carousel{
    gap: 16px;
  }
}

  .about-section__about-brand {
  display: flex;
  flex-direction: column;
  padding: 167px 300px;
  background: radial-gradient(50.47% 144.41% at 29.77% 36.07%, #FF9D99 0%, #F97570 100%);
  position: relative;
  overflow: hidden;
  flex: 1;
  align-self: stretch;
  justify-content: space-evenly;
}

.about-section__about-brand__context {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  left: 127px;
  max-width: 896px;
  box-sizing: border-box;
}

.about-section__about-brand__title {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  color: #FFFFFF;
/*  max-width: 800px;*/
  max-width:100%;
  flex:none;
  word-wrap: break-word;
  word-break: break-word; /* Принудительный перенос */
  overflow-wrap: anywhere; /* Самый агрессивный перенос */
/*  hyphens: auto;*/
  flex:1;
  width: 100%

}

.about-section__about-brand__subtitle {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
/*  max-width: 800px;*/
  max-width:100%;
  flex:1;
  width: 100%;
  word-wrap: break-word;
  hyphens: auto;
  word-break: break-word; /* Принудительный перенос */
  overflow-wrap: anywhere; /* Самый агрессивный перенос */
/*  hyphens: auto;*/
}

.about-section__about-brand__image {
  position: absolute;
  width: auto;
  height: 1537px;
  left: -1435px;
  top: -461px;
  z-index: 1;
/*  object-fit: contain;*/
}

/* Адаптив для 1400px */
@media (max-width: 1400px) {
  .about-section__about-brand {
    padding: 120px 250px 120px 150px;
  }
  .about-section__about-brand__context {
    left: 150px;
  }
  
  .about-section__about-brand__title {
    font-size: 42px;
    line-height: 52px;
  }
  
  .about-section__about-brand__subtitle {
    font-size: 18px;
    line-height: 22px;
  }
  
  /*.about-section__about-brand__image {
    width: auto;
    height: 1164px;
    left: -600px;
    top: -200px;
  }*/
}

/* Адаптив для 1024px */
@media (max-width: 1024px) {
  .about-section__about-brand {
    padding: 80px 150px 80px 100px;
  }
  
  .about-section__about-brand__context {
    left: 120px;
    max-width: 650px;
  }
  
  .about-section__about-brand__title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .about-section__about-brand__subtitle {
    font-size: 16px;
    line-height: 20px;
  }
  
  /*.about-section__about-brand__image {
    width: auto;
    height: 873px;
    left: -450px;
    top: -150px;
  }*/
}

/* Адаптив для 768px */
@media (max-width: 768px) {
  .about-section__about-brand {
    padding: 60px 90px 60px 20px;
/*    flex-direction: column-reverse;*/
    /*align-items: center;
    text-align: center;*/
  }
  
  /*.about-section__about-brand__context {
    align-items: center;
  }*/
  .about-section__about-brand__context {
    left: 70px;
    max-width: 500px;
  }
  
  .about-section__about-brand__title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .about-section__about-brand__subtitle {
    font-size: 16px;
    line-height: 20px;
  }
  
  .about-section__about-brand__image {
    width: auto;
    height: 600px;
    left: -550px;
    top: -150px;

  }
}

/* Адаптив для 480px */
@media (max-width: 480px) {
  .about-section__about-brand {
    padding: 40px 16px;
    align-items: center;
    text-align: center;
  }
  .about-section__about-brand__context {
    left: 0;
    max-width: 350px;
    align-items: center;
  }
  
  .about-section__about-brand__title {
    font-size: 28px;
    line-height: 34px;
  }
  
  .about-section__about-brand__subtitle {
    font-size: 14px;
    line-height: 18px;
  }
  
  .about-section__about-brand__image {
    display:none;
    /*max-width: 300px;
    margin-bottom: 20px;*/
  }
}

          .brands-section__content{
              display:flex;
              flex-direction:column;
              align-items:center;
              justify-content:flex-start;
              flex:1;
              align-self:stretch;
          }
          .brands-section__content-title{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content:center;
            padding: 48px 300px;
            background: #405EA9;
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 700;
            font-size: 40px;
            line-height: 34px;
            text-align: center;
            color: #FFFFFF;
            flex:1;
            align-self:stretch;
            
            word-wrap:wrap;
           
          }
          .brands-section__content-body{
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            align-items: flex-start;
            align-content: flex-start;
            padding: 32px 300px 114px;
            gap: 16px;
            background: linear-gradient(0deg, rgba(64, 94, 169, 0) 0%, #405EA9 100%), url('/assets/images/Slide01_Frame560.png');
            background-position: center top;
background-repeat: no-repeat; /* чтобы фон не повторялся */
background-size: cover; /* или contain, зависит от задачи */
            
            flex: none;
                order: 6;
                align-self: stretch;
                flex-grow: 0;

          }
          
.brands-section__content-body__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  background: #FFFFFF;
  box-shadow: -1px 2px 30px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  flex:none;
  width: fit-content;
 
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 34px;
  text-align: center;
  color: #000000;
  word-wrap:nowrap;
}
.brands-section__content-body__item > span { display:inline-block; }
.brands-section__content-body__item:last-child > span { color: #F97570; }
.brands-section__content-body__item:nth-last-child(2) { opacity: 0.1; }
.brands-section__content-body__item:nth-last-child(3) { opacity: 0.2; }
.brands-section__content-body__item:nth-last-child(4) { opacity: 0.4; }
.brands-section__content-body__item:nth-last-child(5) { opacity: 0.6; }
.brands-section__content-body__item:nth-last-child(6) { opacity: 0.8; }

          @media (max-width: 1400px) {
              .brands-section__content-title{
                padding: 40px 150px;
                font-size: 40px;
                
          }
          .brands-section__content-body{
                padding: 28px 150px 102px;
                
                
          }
          .brands-section__content-body__item {
            padding: 14px 28px;
            background: #FFFFFF;
            box-shadow: -1px 2px 26px rgba(0, 0, 0, 0.1);
            border-radius: 26px;
            font-size: 28px;
            line-height: 30px;
  
        }

          }
          @media (max-width: 1024px) {
              .brands-section__content-title{
                padding: 32px 50px;
                font-size: 32px;
                
          }
          .brands-section__content-body{
                padding: 24px 50px 90px;
                
                
          }
          .brands-section__content-body__item {
            padding: 12px 24px;
            background: #FFFFFF;
            box-shadow: -1px 2px 22px rgba(0, 0, 0, 0.1);
            border-radius: 22px;
            font-size: 24px;
            line-height: 26px;
  
        }
        
        
          }
          @media (max-width: 768px) {
              .brands-section__content-title{
                padding: 24px 20px;
                font-size: 28px;
                
          }
          .brands-section__content-body{
                padding: 20px 20px 86px;
                
                
          }
          .brands-section__content-body__item > span { display:flex; }
          
          .brands-section__content-body__item{
             
              word-wrap: break-word;
          }
          }
          @media (max-width: 480px) {
               .brands-section__content-title{
                padding: 16px 16px;
                font-size: 24px;
                
          }
          .brands-section__content-body__item{
              flex:1;
              align-self:stretch;
              
          }
          
          .brands-section__content-body{
                padding: 16px 16px 82px;
                
                
          }
          
          .brands-section__content-body__item > span { display:flex; }
          }
          
          /* Базовые стили */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #000;
  box-sizing: border-box;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
}

/* Заголовок */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 300px;
  z-index: 1200;
  box-sizing: border-box;
}

/* Основное содержимое */
main {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  background: #fff;
  min-height: calc(100vh - 80px);
}

/* Подвал */
footer {
  display: flex;
  flex-direction: column;
}

footer .container {
  background: #405EA9;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.05);
  padding: 32px 300px;
}

footer address {
  background: #1A1A1A;
  padding: 32px 300px;
  color: #FFFFFF;
}

/* Компоненты */
.logo {
  flex-shrink: 0;
  height: 30px;
  display: flex;
  align-items: center;
}

/* Секции */
section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-padding {
  padding: 64px 300px;
}

/* Медиа-запросы */
@media (max-width: 1400px) {
  header, footer .container, footer address {
    padding: 16px 150px;
  }
  
  .section-padding {
    padding: 48px 150px;
  }
}

@media (max-width: 1024px) {
  header, footer .container, footer address {
    padding: 16px 50px;
  }
  
  .section-padding {
    padding: 32px 50px;
  }
}

@media (max-width: 768px) {
  header {
    height: 54px;
    padding: 12px 20px;
  }
  
  main {
    margin-top: 54px;
  }
  
  footer .container, footer address {
    padding: 16px 20px;
  }
  
  .section-padding {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  header, footer .container, footer address {
    padding: 12px 16px;
  }
  
  .section-padding {
    padding: 16px 16px;
  }
  
  /* Уменьшаем отступы внутри компонентов */
  .shops-section__body, 
  .brands-section__carousel,
  .about-section__designs {
   /* padding: 24px 0 !important;*/
  }
}

/* Специфические стили секций */
.shops-section__header {
  background: radial-gradient(50% 426.67% at 50% 50.22%, #FF9D99 0%, #F97570 100%);
}

.brands-section__header {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), #666762;
}

/* Адаптивные изображения */
.about-section__designs-carousel-item__image {
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 3/4;
}

/* Карусель брендов */
.brands-section__carousel-container {
  display: flex;
  
  
  gap: 24px;
  padding: 0 20px;
  -webkit-overflow-scrolling: touch;
}

.brands-section__carousel-item {
  scroll-snap-align: start;
  flex: 0 0 auto;
}
