@import url('https://fonts.cdnfonts.com/css/distant-stroke');
@import url('https://fonts.cdnfonts.com/css/noto-sans');

@font-face {
  font-family: 'NotoSansKR';
  src: url('https://c0cd69f3-ecfd-41ad-a3c6-b56feb3e51fe.selstorage.ru/videos/bme/fonts/NotoSansKR-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-brown-dark-hex: #381507;
  --color-pink: #fdf6f0;
  --color-dark-pink: #c19090;
  --color-white: #FFFDFB;
  --color-dark-red: #9b2535;
}

body {
    font-family: 'Noto Sans';
    margin: 0;
    background: var(--color-pink);
}


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

.container {
    margin: 0px auto;
    padding: 0;
  }
  
  .header {
    position: relative;
    top: 0;
    left: 0;
    z-index: 50000;
    transition: all .3s ease;
    background-color: var(--color-white);
    box-shadow: 0 4px 30px rgba(100, 85, 70, 0.2);
    }
    
  .header:before {
    content: '' ;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    }
    
  .header__body {
    position: relative;
    height: 100px;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
    }
    
  .header__logo {
      flex: 0 0 250px;
      position: relative;
      z-index: 3000;
    }
    
    .logo__web {
        display: flex;
        justify-content: center;
        padding-bottom: 1.4rem;
    }
    
    .logo__web img {
        width: 10rem;
    }
    
  .header__logo img {
    max-width: 10rem;
    }
    
  .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: 40px;
    margin: 0;
  text-align: center;
  margin-top: 10px;
    }
    
    
    .header__list-item {
    list-style: none;
    width: 142px;
    position: relative;
    }
    

    .header__logo-mob {
        display: none;
    }
    
  .header__link {
      color: var(--color-brown-dark-hex) !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: var(--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: var(--color-white);
  padding: 25% 15% 10% 15% !important;
  list-style: none;
  z-index: 3000;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  min-width: 170px;
}

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

.header__link-second {
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--color-brown-dark-hex) !important;
}

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

.logo__web {
  position: relative;
  z-index: 3100;
  cursor: pointer;
}


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

    .header__body {
        justify-content: space-between;
        height: 60px;
    }
    
    .header__lis {
        display: none;
    }
  
    .header__burger span {
      position: absolute;
      background-color: var(--color-brown-dark-hex);
      left: 0;
      width: 100%;
      height: 1px;
      top: 9px;
      transition: all 0.3s ease 0s;
    }
    .header__burger:before, 
    .header__burger:after {
      content: '';
      background-color: var(--color-brown-dark-hex);
      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: var(--color-white);
      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__logo-mob {
        display: block;
        position: absolute;
        text-align: center;
        z-index: 3000;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .header__logo-mob img {
        width: 60%;
    }
    
    .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;
    }
    
    .logo__web {
        display: none;
    }
    
    .accordion-arrow {
  background: url('https://static.tildacdn.com/tild3135-3032-4665-a234-643037326532/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);
}
    
  }


.h1-size-ss {
    font-size: clamp(42px, 5.5vw, 6rem);
    font-family: 'NotoSansKR';
    font-weight: 500;
}

.h2-size-ss {
    font-size: clamp(28px, 3.4vw, 5rem);
    font-weight: 600;
}

.h3-size-ss {
    font-size: clamp(30px, 2.2vw, 4rem);
    font-weight: 400;
}

.h4-size-ss {
    font-size: clamp(22px, 1.8vw, 2.4rem);
    font-weight: 400;
}

.p-size-ss {
    font-size: clamp(14px, 1.1vw, 1.4rem);
    line-height: 145%;
    letter-spacing: 0.03em;
    font-weight: 400;
    color: var(--color-brown-dark-hex);
}

.p-size-footer {
    font-size: clamp(14px, 0.8vw, 1.2rem);
}

.p-mini-size {
  font-size: clamp(12px, 1vw, 1.1rem);
}

.dive-into {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.dive-into img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.dive-into-box {
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 2;
    margin-left: 50%;
    width: 40%;
    gap: 1.5vw;
}

.dive-into-box h3 {
    color: #EFDECE;
}

.title-center {
    text-align: center;
        padding-top: 3vw;
    font-weight: 600;
    color: #c19090;
}

.products {
    display: flex;
    max-width: 2560px;
    justify-content: center;
    margin: 0 auto;
    gap: 3vw;
    padding: 3vw 6vw 3vw 6vw;
}

.buttons {
    display: flex;
    gap: 1vw;
    max-width: 1920px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2vw 0 0 0;
}

.products-box-button {
    padding: 0.6vw 0 0.6vw 0;
}

.button-my {
    color: #cea4a4 !important;
    padding: 0.6vw 1vw 0.6vw 1vw;
    background-color: var(--color-brown-dark-hex);
    max-width: 3vw;
    text-align: center;
    font-size: clamp(20px, 1.3vw, 1.9rem);
    font-weight: 400;
    text-transform: uppercase;
}

.button-blue {
    background-color: var(--color-white) !important;
}

.product-text-box {
    padding: 3vw 6vw 1vw 6vw;
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
  z-index: 10;
}

.product-text-box h3 {
    padding-left: 30px;
}

.slider-arrows img {
  width: 24px;
  cursor: pointer;
  margin-left: 10px;
}

.product-text-box h3 {
    font-family: 'Distant Stroke', sans-serif;
    display: inline-block;
  background: linear-gradient(90deg,
    #d8b4a6 0%,
    #f7d9c4 50%,
    #c9a885 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
    font-weight: 400;
    font-size: clamp(28px, 7.4vw, 12rem);
}

.product-text-box-dark h3{
  background: linear-gradient(90deg, #000000 0%, #4a0010 10%, #BC0228 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.product-text-box.hollywood h3 {
    background: linear-gradient(90deg, #FFE2EA 1%, #FFCFDD 32%, #F7D9C4 57%, #F5E9C9 100%);
position: relative;
z-index: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; 
}

.product-text-box.hollywood {
    padding: 2vw 6vw 0 6vw;
}

.product-text-box p {
    color: #1B1D36;
    padding: 1vw 0 2vw 0;
    max-width: 1500px;
    padding-left: 1%;
}

.products-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      /*padding: 0 10vw 2vw 10vw;*/
      margin: 0 auto;
      max-width: 85vw;
      z-index: 1;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: unset;
  width: 19%;
  position: relative;
  margin-bottom: 6%;
}

.product-card-alt {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: unset;
  width: 19%;
  position: relative;
}


.image-container {
  position: relative;
  width: 100%;
  text-align: center;
  background: linear-gradient(143.903deg, rgba(249, 221, 211, 40%) 0%, rgba(255, 246, 246, 40%) 100%);
}

.product-card:not(.product-card-alt) .image-container img {
  width: 100%;
  display: none;
  object-fit: cover;
  transition: all 1s ease-out;
}

.product-card:not(.product-card-alt) .image-container img.active {
  display: block;
  opacity: 1;
}

.product-card-alt .image-container img.product-image-alt {
  width: 100%;
  display: none;
  object-fit: cover;
  transition: all 0.6s ease-out;
}

.product-card-alt .image-container img.active-alt {
    display: block;
  opacity: 1;
}

.dots {
  display: flex;
  gap: 6px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a49e8c;
  transition: background 0.3s;
}

.discover-button {
  display: block;
  width: 100%;
  padding: 12px 0;
  background: var(--color-white);
  color: var(--color-dark-pink) !important;
  font-weight: 400;
  text-align: center;
  border: none;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
  transition: border-color 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.discover-button:hover {
  border-color: transparent; 
}

.discover-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(45deg,
  rgba(193, 144, 144, 0) 0%,
  rgba(193, 144, 144, 0.06) 20%,
  rgba(193, 144, 144, 0.15) 50%,
  rgba(193, 144, 144, 0.06) 80%,
  rgba(193, 144, 144, 0) 100%);
  transform: skewX(-15deg);
  opacity: 0;
  pointer-events: none;
   transition: none;;
  z-index: 1;
}

.discover-button:hover::before {
  left: 110%;
  opacity: 1;
  transition: left 0.6s ease-out, opacity 0.6s ease-out;
  pointer-events: none;
}


.product-card-alt .dot-1 {
  background: #6f6a58;
}

.product-card-alt:hover .dot-1 {
  background: #a89983;
}
.product-card-alt:hover .dot-2 {
  background: #6f6a58;
}


.product-card-text {
    font-size: clamp(14px, 1vw, 1.2rem);
    color: var(--color-brown-dark-hex);
    text-align: left;
}

.product-card-text__wrapper {
    padding: 5% 0;
}

.product-card-text__light {
    color: var(--color-dark-pink);
    padding-bottom: 2px;
}

.product-card-text__bold {
    font-family: 'NotoSansKR';
    font-weight: 500;
    padding-bottom: 6%;
}

.circles {
    
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 0.2vw;
  
}

.circle {
    position: relative;
  width: 1vw;
  height: 1vw;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.circles-card {
    gap: 0.4vw;
}

.circles-card .circle {
    width: 2.5vw;
  height: 2.5vw;
  max-width: 50px;
  max-height: 50px;
}

.footer-my {
    display: flex;
  bottom: 0;
  flex-direction: column;
  width: 100%;
  align-items: left;
  overflow: hidden;
  padding-top: 4vw;
}

.circles-card {
  display: flex;
  gap: 10px;
}

.circle-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label {
  font-size: 12px;
  color: var(--color-brown-dark-hex);
}

.footer__container {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
  padding: 6vw 0 4vw 0;
  gap: 10vw;
  justify-content: space-evenly;
  background-color: var(--color-white);
  box-shadow: 0 4px 30px rgba(100, 85, 70, 0.2);
}

.footer__line {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
  z-index: 2000;
  padding-left: 0 !important;
  font-size: 16px;
  letter-spacing: 1px;
  gap: 0.5vw;
  margin: 0;
  color: #343434;
}

.footer__line li {
  list-style: none;
}

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

.footer__logo__box a {
  width: 15vw;
}

.footer__logo {
    width: 110%;
}

.footer__rights {
  color: var(--color-white);
  padding: 0 1% 0 1%;
}

.footer__rights__line {
  display: flex;
  border-top: var(--color-white) solid 1px;
}

.footer__rights__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3% 0 6% 0;
}

.p-footer-bold {
    font-weight: 700;
    padding-bottom: 2%;
}


.footer__logo__box {
    display: flex;
    flex-direction: column;
}

.footer__information__box {
    display: flex;
    gap: 10%
}

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

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

.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 .product-card {
    margin-bottom: 2%;
    padding: 0 0.8rem 0 0.8rem;
}

.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;
}

.page-product__wrapper {
  display: flex;
  overflow: hidden;
  padding: 0 3vw 3vw 0;
  max-width: 2000px;
  margin: 0 auto;
}

.page-product__left {
  position: relative;
    width: 50%;
  box-sizing: border-box;
  height: 80vh;
  overflow: hidden;
}

.page-product__left img {
    width: 100%;
}

.slider-card {
  position: relative;
}

.slide-card {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.slide-card.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-card img {
width: 100%;
    height: auto;
    display: block;
}


.thumbnails {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.thumbnails img.thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.5;
  object-fit: cover;
  transition: opacity 0.3s, border-color 0.3s;
}

.thumbnails img.thumb.active {
  opacity: 1;
  border-color: var(--color-brown-dark-hex);
}

.page-product__right {
    width: 50%;
  box-sizing: border-box;
  height: auto;
  top: 0;
  padding: 0 4rem;
}

.product-card__wrapper h1 {
    color: var(--color-brown-dark-hex);
}

.product-card__wrapper h2 {
    color: var(--color-dark-pink);
}

.product-card__wrapper.dark h2 {
    color: var(--color-dark-red);
}

.product-card__wrapper.dark h1 {
  background: linear-gradient(90deg, #000000 0%, #4a0010 10%, #BC0228 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.product-card__separator {
  border: none;
  border-top: 2px solid var(--color-dark-pink);
  margin: 10px 0;
  width: 50%;
}

.product-card__text__main {
    padding: 2rem 0 0 0;
}

.product-card__text {
    padding: 1rem 0 0 0;
}

.product-card__title__name {
    display: inline-block; /* обязательно */
  position: relative;
}

.product-card__title__name::after {
  content: "";
  display: block;
  height: 1px;
  background-color: currentColor;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px; /* отступ от текста */
}

.product-card__wrapper h2.first {
  padding-bottom: 7px;
}

.product-card__wrapper h2.second {
  padding-top: 7px;
}

.product-card__wrapper img {
    width: 60%;
}

.page-product__wrapper.category {
    padding: 3vw 3vw;
}

.page-product__wrapper.category .product-card__wrapper {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.page-product__wrapper.category .page-product__right {
    align-content: center;
}

.page-product__wrapper.category .discover-button {
    width: max-content;
    padding: 1rem 3rem;
    font-weight: 600;
}

.page-product__wrapper.category .product-card__wrapper {
    gap: 2rem;
}

.page-product__wrapper.category-collections .product-card__wrapper {
    gap: 0;
}

.page-product__wrapper.category .product-card__wrapper h2 {
    padding: 0 6rem;
}

.page-product__wrapper.category-collections .product-card__text {
    padding: 0 2rem 2rem 2rem;
}

.page-product__wrapper.category .product-card__title {
    color: var(--color-brown-dark-hex);
    line-height: 3.5rem;
}

.page-product__wrapper.category-collections .product-card__wrapper h2 {
    font-family: 'Distant Stroke';
    font-weight: 500;
    line-height: unset;
}

.page-product__wrapper.category-collections .product-card__title {
    font-weight: 300;
    font-size:clamp(28px, 7.4vw, 12rem);
    display: inline-block;
  background: linear-gradient(90deg, #000000 0%, #4a0010 10%, #BC0228 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.product-text-box.also-like {
    padding-top: 1vw;
}

.page-product__wrapper.category .page-product__left {
    height: 100%;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--color-brown-dark-hex);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: clamp(12px, 0.9vw, 1.1rem);
  padding: 1.5% 0 0 4rem;
}

.breadcrumbs a {
  color: var(--color-brown-dark-hex) !important;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  color: var(--color-brown-dark-hex);
}

.product-card__wrapper.hollywood h1 {
  background: linear-gradient(90deg, #FFE2EA 1%, #FFCFDD 32%, #F7D9C4 57%, #F5E9C9 100%);
position: relative;
z-index: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.product-card__wrapper.about-collection.hollywood h2 {
    background: linear-gradient(90deg, #FFE2EA 1%, #FFCFDD 32%, #F7D9C4 57%, #F5E9C9 100%);
position: relative;
z-index: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 0 3rem;
}

.container-collections {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 16vw 4vw 16vw;
  }
  .container-collections a {
    display: inline-block;
    max-width: 45vw;
    width: 80%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 30px rgba(100, 85, 70, 0.1);
  }
  .container-collections a img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .container-collections a:hover {
  transform: scale(1.01);
}

.page-product__right.about-brand {
    width: 100%;
    height: 80vh;
    padding: 0 0 0 15%;
}

.page-product__right.about-brand.right {
    padding: 0 15% 0 0;
}

.page-product__right.about-brand {
    align-content: center;
}

.page-product__right.about-brand h2.brown, .page-product__right.about-brand p.brown {
    color: var(--color-brown-dark-hex);
}

.page-product__right.about-brand h2, .page-product__right.about-brand p {
    color: var(--color-white);
}

.page-product__right.about-brand h2 {
    line-height: 115%;
    font-size: clamp(28px, 2.9vw, 4rem);
}

.page-product__right.about-brand p {
    font-size: clamp(14px, 1vw, 1.3rem);
    max-width: 750px;
}

.page-product__right.about-brand .product-card__text {
    padding: 2.5rem 0 2rem 0;
}

.about-brand .discover-button {
    width: max-content;
    padding: 1rem 3rem;
    font-weight: 600;
}

.about-brand .discover-button::before {
    background: linear-gradient(45deg,
  rgba(193, 144, 144, 0) 0%,
  rgba(193, 144, 144, 0.15) 20%,
  rgba(193, 144, 144, 0.3) 50%,
  rgba(193, 144, 144, 0.15) 80%,
  rgba(193, 144, 144, 0) 100%);
  transform: skewX(-15deg);
}

.about-brand__wrapper {
    width: 43% !important;
    height: 100% !important;
}

.about-brand__wrapper-right {
    width: 40% !important;
    height: 100% !important;
    right: 0 !important;
    left: auto !important;
}

.page-product__right.about-brand.right .product-card__wrapper {
    display: flex;
    flex-direction: column;
    text-align: right;
    align-items: end;
}

.DIY-line {
    display: flex;
    width: 60vw;
    max-width: 2000px;
    gap: 2rem;
    box-sizing: border-box;
    margin: 0 auto;
  }
  .DIY-block {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .DIY-block video {
    width: 100%;
    aspect-ratio: 9 / 16;
    background: black;
    display: block;
  }
  .DIY-block a {
    margin-top: 20px;}
    
@media (min-width: 1960px) {
    .products-wrapper {
        max-width: 75vw;
    }
}

@media (max-width: 960px) {
    .dive-into-box {
        margin-left: 0;
        width: 90%;
        padding: 10% 10% 10% 10%;
        order: 1;
        position: relative;
        background-color: #1B1D36;
        gap: 6vw;
    }
    
    .dive-into {
        flex-direction: column;
        overflow: hidden;
    }
    
    .dive-into img {
        width: 400%;
        margin-left: 220%;
                overflow: hidden;
    }
    
    .footer-my {
        padding-top: 3rem;
    }

    .footer__line {
        flex-direction: column;
        gap: 2.6vw;
    }
    
    .footer__logo {
        width: 100%;
    }
    
    .footer__container {
        flex-direction: column;
        gap: 3rem;
        padding: 10vw 0 4vw 0;
    }
    
    .footer__information__box {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .footer__rights {
        padding: 0 3% 0 3%;
    }
    
    .footer__rights__text {
        padding: 2.5% 0 2.5% 0;
    }
    
    .footer__line {
        align-items: center;
    }
    
    .footer__logo__box a {
        width: 75vw;
    }
    
    .footer__logo__box {
        align-items: center;
    }
    
    .page-product__left {
        display: none;
    }
    
    .product-card__wrapper {
        padding: 10% 3% 6% 3%;
        gap: 1rem;
    }
    
    .page-product__right {
        width: 100%;
        padding: 0;
    }
    
    .product-card__notes__wrapper {
        width: 100%;
    }
    
    .products-wrapper {
        padding: 0 4vw 2vw 4vw;
        max-width: 100vw;
        
    }
    
    .product-card {
        margin-bottom: 25px;
    }
    
    .product-card-alt {
        width: 48%;
    }
    
    .circles {
        gap: 3px;
    }
    
    .circle {
        width: 18px;
        height: 18px;
    }
    
    .product-card-text__wrapper {
        padding: 14px 0;
    }
    
    .discover-button {
        font-size: 14px;
    }
    
    .product-text-box h3 {
        font-size: 5rem;
    }
    
    .product-text-box {
        padding: 30px 30px 20px 30px;
    }
    
    .button-my {
        padding: 8px 14px;
    }
    
    .buttons {
        gap: 10px;
    }
    
    .dots {
        display: none;
    }
    
    .page-product__wrapper {
        padding: 0vw 1rem 3rem 1rem;
    }
    
    .circles-card .circle {
    width: 30px;
      height: 30px;
    }
    
    .circles-card {
        gap: 6px;
    }
    
    .product-card__text__main {
        padding: 1rem 0 0 0;
    }
    
    .product-text-box h3 {
        padding: 3px;
    }
    
    .product-card__wrapper.about-collection.hollywood h2 {
        padding: 0 1rem;
    }
    
    .page-product__wrapper.category-collections .product-card__title {
        font-size: clamp(5rem, 7.4vw, 12rem);
    }
    
    .container-collections a {
      max-width: 80vw;
      width: 150px;
    }

}