body {
    font-family: 'SanMartino',Arial,sans-serif;
    background-color: #F6F5F3;
}

.header.out {
	transform: translateY(-100%);
}

.container {
    margin: 0px auto;
    padding: 0;
  }
  
  .header {
    font-weight: 500;
    position: relative;
    top: 0;
    left: 0;
    z-index: 50000;
    transition: all .3s ease;
    background-color: #111111;
    }
    
  .header:before {
    content: '' ;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    }
    
  .header__body {
    position: relative;
    align-items: center;
    padding-top: 15px;
    }
    
  .header__logo {
      flex: 0 0 250px;
      position: relative;
      z-index: 3000;
    }
    
  .header__logo img {
    max-width: 100%;
    }
    
  .header__burger {
    display: none;
    }
    
  .header__list {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2000;
    padding-left: 0 !important;
    font-size: 16px;
    letter-spacing: 1px;
    gap: 130px;
    margin: 0 !important;
    text-align: center;
    padding: 10px 0 15px 0;
    }
    
    .header__list-itl {
        gap: 80px;
    }
    
    
    .header__list-item {
    list-style: none;
    /*width: 180px;*/
    position: relative;
    }
    

    .header__logo-mob {
        display: none;
    }
    
  .header__link {
      color: white !important;
      text-decoration: none;
    }
    
    
  .button__link {
    background-color: #F190B4;
    color: #F190B4;
    border-radius: 20px;
    padding: 10px 20px;
    transition: all 0.3s ease 0s;
  }
  
  .button__link:hover,
  .button__link:active {
    background-color: #000;
    color: #F190B4;
  }
  
  .lang-desk{
      display: flex;
      position: absolute;
      top: 10px;
      right: 10px;
      align-items: baseline;
      gap: 5px;
  }
  
  .header__lang {
      display: flex;
      color: white;
      font-size: 16px;
      position: relative;
      margin: 0;
      z-index: 2000;
      right: 0;
      line-height: 1.7rem;
  }

  .lang-desk img {
    width: 100%;
    /* max-height: 20px; */
  }
  
  .header__lang-mobile {
      display: none;
  }
  
  .link-visited {
    border-bottom: solid rgba(255, 255, 255, 0.8) 1px !important;
  }
  
  /* Добавлены стили для меню второго уровня */
.header__list-second {
  display: none;
  position: absolute;
  left: initial;
  background-color: black;
  padding: 35% 20% 15% 20% !important;
  list-style: none;
  z-index: 3000;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  min-width: 150px;
}

.header__list-second-li {
  margin: 0;
  padding-bottom: 10%;
  text-align: center;
  
}

.header__link-second {
  font-size: 16px;
  letter-spacing: 1px;
  color: white !important;
}

.header__list li:hover .header__list-second {
  display: block;
}

.accordion-arrow {
    display: none;
}

.header__logo {
    width: 15%;
    display: block;
    margin: 0 auto;
}

  @media (max-width: 960px) {
    
    body.lock {
      overflow: hidden;
    }

    .header__body {
        justify-content: space-between;
        height: 85px;
    }
    
    .header__lis {
        display: none;
    }
  
    .header__burger span {
      position: absolute;
      background-color: white;
      left: 0;
      width: 100%;
      height: 1px;
      top: 9px;
      transition: all 0.3s ease 0s;
    }
    .header__burger:before, 
    .header__burger:after {
      content: '';
      background-color: white;
      position: absolute;
      width: 100%;
      height: 1px;
      left: 0;
      transition: all 0.3s ease 0s;
    }
    .header__burger:before {
      top: 0;
    }
    .header__burger:after {
      bottom: 0;
    }
  
    .header__burger.active span {
      transform: scale(0);
    }
  
    .header__burger.active:before {
      transform: rotate(45deg);
      top: 9px;
    }
    
    .header__burger.active:after {
      transform: rotate(-45deg);
      bottom: 9px;
    }
  
    .header__menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100%;
      background-color: #111111;
      padding: 0;
      transition: all 0.5s ease 0s;
      z-index: 2000;
    }
  
    .header__menu.active {
      right:0;
      overflow: hidden;
    }
  
    .header__list {
      display: block;
      text-align: center;
      font-size: 20px;
      margin-top: 140px !important;
      padding: 0 !important;
    }
  
    .header__list-item {
      margin: 0px 0px 40px 0px;
      width: unset;
    }

    .header__burger {
      display: block;
      position: absolute;
      top: 38%;
      right: 20px;
      width: 40px;
      height: 20px;
      z-index: 3000;

    }

    .header__lang {
        margin: 0 0 0 0;
        font-size: 26px;   
    }
    
    .lang-desk {
        display: none;
    }
    
    .header__lang-mobile {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 10px;
      padding-top: 10%;
    }
    
    .header__lang-mobile img {
        width: 30px;
    }
            
    .header__logo-mob {
        display: block;
        position: absolute;
        text-align: center;
        z-index: 3000;
        top: 55%;
        left: 25%;
        transform: translate(-50%, -50%);
        width: 35%;
    }
    
    .header__list-second {
      padding: 8% 6% 10% 8% !important;
      z-index: 3000;
      left: 50%;
      width: 80vw;
      max-width: 100vw;
    }
    
    .header__list-second-li {
      margin: 0;
      padding-bottom: 6% !important;
      text-align: center;
      width: unset;
    }
    
    .header__link-second {
      font-size: 20px;
    }
    
    .header__logo {
        display: none;
    }
    
    .accordion-arrow {
  background: url('https://static.tildacdn.com/tild6235-3763-4238-a131-633662363234/arrow.svg') no-repeat;
  background-size: contain;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: absolute;
    top: 60%;
    right: 28%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.header__list-item.active .accordion-arrow {
  transform: translateY(-75%) rotate(-90deg);
}
    
/* Стили для активного состояния */
.header__list-item.active .header__list-second,
.header__list-item.active .accordion-arrow {
    display: block;
} 
    
        /* Скрытие аккордеона по умолчанию */
    .header__list-second {
        display: none;
    }

    /* Показываем стрелку (галочку) только в мобильной версии */
    .header__list-item .accordion-arrow {
        display: block;
    }

    /* Активируем аккордеон по клику */
    .header__list-item.active .header__list-second {
        display: block;
    }
    
    .header__list li:hover .header__list-second {
        display: none;
    }
  }
  
.my-h1 {
    font-weight: 500;
    font-size: clamp(32px, 3.4vw, 76px);
    line-height: 1;
}

  
.my-h2 {
    font-weight: 500;
    font-size: clamp(42px, 3.8vw, 64px);
    line-height: 2rem;
    letter-spacing: .04em;
}

.my-h3 {
    font-weight: 500;
    font-size: clamp(42px, 3.8vw, 64px);
    line-height: 2rem;
    letter-spacing: .04em;
}

.my-h4 {
    font-weight: 500;
    font-size: clamp(24px, 2.4vw, 50px);
    text-transform: uppercase;
    letter-spacing: .02rem;
}

.my-p {
    font-weight: 400;
    font-size: clamp(14px, 1vw, 16px);
    letter-spacing: .02rem;
    /*line-height: 1.5rem;*/
    text-transform: uppercase;
}

.my-p2 {
    font-weight: 400;
    font-size: clamp(18px, 1.2vw, 26px);
    letter-spacing: .1rem;
}

.frame__wrapper {
    position: relative;
    padding: .5%;
}

.frame {
    width: 100%;
}

.frame-mob {
    display: none;
}

.frame__text {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    max-width: 1400px;
    gap: 2rem;
    text-align: center;
}

.frame__text img {
    width: 60%;
    margin: 0 auto;
}

.banner__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.banner__wrapper img {
    width: 50%;
    height: 100%;
}

.banner__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    top: 0;
    right: 0;
    height: 100%;
    padding: 0 8%;
    flex: 1 0 0;
}

.banner__text h2 {
    position: relative;
    display: inline-block;
}

.banner__text h2::after {
    content: "";
    display: block;
    width: 15vw;
    height: 2rem;
    background-image: url('https://static.tildacdn.com/tild3465-3163-4065-a564-643435663665/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 30px auto 0;
    
}

.banner__text p {
    padding-bottom: .8rem;
}

.my-button {
    color: black !important;
    border-radius: 47px;
    border: 1px solid black;
    width: fit-content;
    padding: .8rem 3.44rem;
    margin: 0 auto;
}

.my-button:hover {
    background-color: #F1EEEB;
    transition: background-color 0.3s ease;
}

.buttons__wrapper {
        display: flex;
    flex-direction: column;
    gap: 1rem;
}

.buttons__wrapper a {
    width: 170px;
    margin: 0 auto;
}

.big-banner__wrapper {
    position: relative;
}

.big-banner__wrapper img {
    width: 100%;
}

.big-banner__wrapper .banner__text {
    position: absolute;
    transform: translate(-50%, 0);
    left: 0;
    color: white;
    max-width: 35vw;
    padding: 3% 10% 5%;
}

.big-banner__wrapper .banner__text h2::after, .product-page__text__notes::before {
    background-image: url('https://static.tildacdn.com/tild6263-6138-4738-b062-336566363836/white_line.svg');
}

.big-banner__wrapper .banner__text img {
    width: 85%;
    padding-bottom: 6%;
}

.banner-center {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    text-align: center;
    padding: 6vw 0;
    align-items: center;
}

.banner-center h2, .banner-center .banner-center__text {
    padding: 0 12vw;
}

.banner-center__text {
    max-width: 1000px;
}

.banner-center img {
    width: 100%;
    margin: 0 auto;
}

.banner-center__text p {
    padding-bottom: .6rem;
}

.banner-center__text:after {
    content: "";
    display: block;
    width: 16vw;
    height: 3rem;
    background-image: url('https://static.tildacdn.com/tild3465-3163-4065-a564-643435663665/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin: 30px auto 0;
}

.link-table {
    width: 100%;
    border-collapse: collapse;
    margin: 4vw 0;
    overflow-y: hidden;
}

.link-table tr {
    border: 1px solid #AFAFAF;
    transition: background-color 0.3s ease;
}

.link-table td {
    text-align: center;
    padding: 40px;
    border: 1px solid #AFAFAF;
}

.link-table tr:hover {
    background-color: #F1EEEB;
}

.link-table td a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: black !important;
}

.footer-my {
  bottom: 0;
  background-color: #000;
}

.footer__container {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 5vw 0 4vw 0;
  gap: 1vw;
}

.footer__line {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  z-index: 2000;
  padding-left: 0 !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  gap: 1.5rem;
  margin: 0;
  color: white;
  font-family: Trajan Pro 3;
}

.footer__line li {
  list-style: none;
}

.footer__line li a {
  color: #FFF !important;
  text-decoration: none;
}
.footer__line li:nth-child(0) {
  padding-right: 2%;
  padding-bottom: 2%;
}

.footer__logo {
  width: 20vw;
  max-width: 550px;
  padding-bottom: 2vw;
}

.footer__rights {
  color: #FFF;
  padding: 0 0 1vw 0;
}

.footer__rights__line {
  display: flex;
}

.footer__rights__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: 0.6% 0 0.6% 0;
  font-weight: 400;
  color: #B0B0B0 !important;
  justify-content: center;
}

.footer__rights__text a {
    color: #B0B0B0 !important;
}

.p-footer-bold {
    font-weight: 700;
    display: none;
}

.product-line__wrapper {
    padding: 6vw 3vw;
    display: flex;
    flex-direction: column;
}

.product-line__title {
    width: 85%;
    margin: 0 auto;
    position: relative;
    line-height: 18px;
    text-transform: uppercase;
    text-align: center;
}

.donna-page .product-line {
    align-self: center;
}

.product-line__title::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 20px; /* Увеличьте для проверки */
    background: url('https://static.tildacdn.com/tild3637-3265-4632-a539-386262383166/line_collection.svg') no-repeat center center;
    background-size: contain;
    z-index: 1;
}

.product-line__title div {
    position: relative;
    z-index: 2;
}

.product-line__title div {
    background: #F6F5F3;
    z-index: 300;
    position: relative;
    display: inline-block;
    padding: 0 1rem;
}

.product-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    padding: 2vw 0 0 0;
    width: 95% !important;
}

.product-card {
    width: 22%;
    text-align: center;
    color: black !important;
    position: relative;
    padding-bottom: 2rem;
}

.product-card p::after, .black-main__cat h3::after{
    content: "";
    display: block;
    width: 100%;
    padding-top: calc(40% / (640 / 48));
    background-image: url('https://static.tildacdn.com/tild3465-3163-4065-a564-643435663665/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 12px auto;
    height: 3px;
}

.product-card p {
    font-weight: 500;
    color: black !important;
}

.product-card img {
    width: 100%;
}

.product-page .banner__text .banner-center__text {
    padding: 0 12%;
}

.product-page__text__notes p {
    padding-bottom: 1rem;
}

.product-page__text__notes p:last-child {
    padding-bottom: 0;
}

.product-page__text__notes p span {
    font-weight: 600;
}

.product-page__text p:first-child {
    font-weight: 600;
}

.product-page__text__notes::before {
    width: 80%;
    height: 22px;
    margin: 0 auto 20px;
}

.scent-png {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    width: 30vw !important;
    max-width: 500px;
    height: unset !important;
}

.product-page__text:after {
    content: none;
}

.slick-slider {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: transparent;
}

.slick-slider img {
  width: 100%;
  /*height: auto;*/
  max-width: none;
  /*object-fit: cover;*/
}

.slick-prev, .slick-next {
  font-size: 24px;
  color: #000;
  background-color: transparent;
}

.slick-prev {
  left: 2%;
  z-index: 1
}

.slick-next {
  right: 2%;
}

.slick-dots {
  bottom: 1%;
  padding-left: 0 !important;
  width: 95%;
}

.slick-dots li.slick-active button:before {
    color: white !important;
}

.slick-dots li button:before {
    color: white !important;
}

    .prev,
.next {
  position: absolute;
  top: 50%;
  z-index: 1;
  cursor: pointer;
}

.next {
  right: 0;
}

.text-center-big {
    width: 80vw;
    margin: 0 auto;
    text-align: center;
    padding: 4vw 0;
}

.text-center-big p {
    font-weight: 400;
    padding-top: 2vw;
}


@media (max-width: 960px) {
    .footer__rights__text {
        flex-direction: column;
    }
    
    .footer__line {
        flex-direction: column;
    }
    
    .footer__logo {
        width: 60vw;
        padding-bottom: 8vw;
    }
    
    .footer__container {
        gap: 6vw;
        padding: 20vw 0 18vw 0;
    }
    
    .footer__rights {
        padding: 0 3% 0 3%;
    }
    
    .footer__rights__text {
        padding: 2.5% 0 2.5% 0;
    }
    
    .header__list-item {
        margin: 0px auto 40px;
    }
    
    .header__list-item {
        max-width: 350px;
    }
    
    .banner__wrapper {
        flex-direction: column;
    }
    
    .banner__wrapper img {
        width: 100%;
    }
    
    .banner-right img {
        order: 0;
    }
    
    .banner-right .banner__text {
        order: 1;
    }
    
    .banner__text {
        padding: 16% 10%;
    }
    
    .banner__text h2::after {
        width: 12rem;
    }
    
    .big-banner__wrapper img {
        width: 150%;
        object-fit: cover;
        margin-left: -50%;
        overflow-x: hidden;
        height: 55vh;
    }
    
    .big-banner__wrapper .banner__text {
        position: relative;
        transform: none;
        color: black;
        max-width: none;
        padding: 16% 10% 10%;
    }
    
    .big-banner__wrapper .banner__text img {
        display: none;
    }
    
    .big-banner__wrapper .banner__text h2::after, .product-page__text__notes::before {
        background-image: url('https://static.tildacdn.com/tild3465-3163-4065-a564-643435663665/Vector.svg');
    }
    
    .banner-center__text:after {
        width: 12rem;
    }
    
    .banner-center h2, .banner-center .banner-center__text {
        padding: 0 9vw;
    }
    
    .banner-center img {
        object-fit: cover;
        overflow-x: hidden;
        height: 15vh;
    }
    
    .product-card {
        width: 50%;
    }
    
    .product-line__title  {
        line-height: 30px;
        padding: 3% 0;
    }
    
    .scent-png {
      width: 65vw !important;
      transform: translate(-50%, 95%);
    }
    
    .product-page .banner__text {
        padding: 35% 10% 16%;
    }
    
    .frame {
        display: none;
    }
    
    .frame-mob {
        display: block;
    }
    
    .frame__text {
        width: 70%;
    }
    
    .frame__text img {
        width: 90%;
    }
    
}

