/*========================================*/

/*============== CPT PARFUM ==============*/

/*========================================*/

.product-sheet {
  width: 100%;
  min-height: 100vh;
  /*padding: 110px 18.8vw 8vw 11.5vw;*/
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 2;

  overflow: hidden;
}

.product-sheet__wrapper {
  width: 100%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 120px;
}

.product-sheet__universe-link {
  position: absolute;
  left: 80px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.54em;
  text-transform: uppercase;
  transform-origin: top left;
  transform: rotateZ(-90deg) translateX(-50%);
}

.product-sheet__universe-link .chevron-icon-svg {
  position: absolute;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -200%) rotateZ(180deg);
}

.product-sheet__visual-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.perfume-picture-container {
  position: relative;
  width: 100%;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 360px;
}

.perfume--solid {
  height: 100%;
  object-fit: contain;
  object-position: top center;
  position: relative;
}

.perfume--shadow {
  position: absolute;
  transform: translate(16px, 16px);
  filter: saturate(2) contrast(0.3) brightness(0.9) blur(6px);
  opacity: 0.4;
}

.product-sheet__text-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  font-size: 14px;
  line-height: 1.02em;
}

.product-sheet__title {
  font-size: 90px;
  font-size: clamp(50px, 12vw, 90px);
  line-height: 0.94em;
  font-weight: 400;
  text-transform: uppercase;
  width: 120%;
}

.product-sheet__main-description {
  font-size: 18px;
  font-size: clamp(16px, 3vw, 18px);
  line-height: 1.625em;
  margin-top: 10px;
  max-width: 34ch;
}

.product-sheet__available-sizes {
  margin-top: 30px;
}

.product-sheet__btns-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 50px;
}

.product-sheet__view-composition-btn {
  font-size: 16px;
  line-height: 1.125em;
  margin-top: 35px;
}

.shop-icon-svg,
.eye-icon-svg {
  margin-right: 6px;
}

.sticky-bar {
  width: 100%;
  height: 60px;
  padding: 10px 0 10px 20px;
  position: sticky;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  z-index: 1;

  box-shadow: 0px -4px 6px rgb(0 0 0 / 20%);
}

.sticky-bar__img {
  height: 100%;
  margin-right: 24px;
}

.sticky-bar__btn {
  height: 60px;
  margin-left: auto;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  --underline-color: white;
  padding: 0 28px;
}

.sticky-bar__btn:hover .hover-underlined-cta {
  background-position: -200% 100%;
}

.sticky-bar__btn .shop-icon-svg {
  margin-right: 16px;
  --tertiary-color: white;
}

.product-sheet__view-composition-btn .eye-icon-svg {
  transition: transform 0.4s ease 0s;
}

.product-sheet__view-composition-btn:hover .eye-icon-svg {
  transform: scaleY(-1);
}

/* Composition modal */

.modal-composition {
  --cross-color: black;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;

  z-index: 10;
}

.modal-composition::before,
.modal-composition::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.modal-composition::before {
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.8s ease 0s;
}

.modal-composition::after {
  background: white;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(.69, .003, .298, .991) 0s;
}

.modal-composition__inner {
  width: 100%;
  height: 100%;
  padding: 110px 163px 8vw 14vw;

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  opacity: 1;
  transition: opacity 0.4s ease 0.8s;
}

.modal-composition[data-state="closed"] {
  pointer-events: none;
  visibility: none;
}

.modal-composition[data-state="closed"]::before {
  opacity: 0;
  transition-delay: 0.6s;
}

.modal-composition[data-state="closed"]::after {
  transform: translateY(100%);
}

.modal-composition[data-state="closed"] .modal-composition__inner {
  opacity: 0;
  transition-delay: 0s;
}

.modal-composition__button-close {
  width: 9.6mm;
  height: 9.6mm;
  position: absolute;
  top: 37px;
  right: 62px;
}

.modal-composition .cross-icon-svg {
  width: 18px;
}

.modal-composition__text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 40vw;

  color: black;
  font-size: 18px;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.5em;
}

.modal-composition__title {
  font-size: 40px;
  font-size: clamp(25px, 6vw, 40px);
  line-height: 1.125em;
  font-weight: 400;
}

.modal-composition__ingredients {
  text-transform: uppercase;
  margin: 32px 0 1em;
}

@media screen and (max-width: 767px) {
  .product-sheet {
    min-height: auto;
  }
  
  .product-sheet__wrapper {
    padding: 0;
    flex-direction: column;
  }
  
  .product-sheet__title {
    font-size:1.8rem;
  }
  
  
  .product-sheet,
  .modal-composition__inner {
    flex-direction: column;
    padding: 80px 8vw 8vw;
  }
  .product-sheet__text-content {
    width: auto;
    flex: 1;
  }
  .modal-composition__text-content {
    font-size: 14px;
    font-size: clamp(14px, 3vw, 18px);
    width: auto;
    height: 100%;
    justify-content: center;
  }
  .modal-composition__title {
    font-size: 25px;
    font-size: clamp(25px, 6vw, 40px);
  }
  .modal-composition .product-sheet__visual-content {
    display: none;
  }
  .product-sheet__universe-link {
    position: static;
    transform: none;
    align-self: flex-start;
    margin-bottom: 20px;
  }
  .product-sheet__visual-content {
    margin: 0 auto 20px;
  }
  .product-sheet__universe-link .chevron-icon-svg {
    position: static;
    transform: rotateZ(90deg);
    width: 9px;
  }
  .product-sheet__available-sizes {
    margin-top: 20px;
  }
  .product-sheet__btns-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 25px;
  }
  .product-sheet__view-composition-btn {
    margin: 0 0 0 47px;
  }
  .modal-composition__button-close {
    top: 22px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .sticky-bar__img {
    margin-right: 16px;
  }
  .sticky-bar__img+p {
    font-size: 16px;
    line-height: 20px;
  }
  .sticky-bar__btn {
    padding: 0 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .disko-component.product-sheet::after {
    content: "⟶";
    position: absolute;
    bottom: 50px;
    right: 50px;
    transform: rotateZ(90deg);
    color: var(--arrow-color);
    animation: 2s ease 0s infinite normal both running shaking-arrow;
  }
}

@media screen and (min-width: 768px)
{
  .disko-component-slider-fragrance-notes + .disko-component-quinconce {
  	margin-top: 0;
  }
}

/*.product-sheet__title {
  width: 100%;
}*/
.product-sheet__title {
  --largest-size: calc(12vw - var(--largest-word-length) * 0.5vw - 1.5vw);
  /*font-size: clamp(40px, var(--largest-size), 90px);*/
  font-size:1.8rem;
  word-wrap: normal;
}
.product-sheet__title > span {
  font-size: 0.7em;
}




.disko-component.product-sheet::after {
  content: "⟶";
  position: absolute;
  bottom: 50px;
  transform: rotateZ(90deg);
  color: var(--arrow-color);
  animation: 2s ease 0s infinite normal both running shaking-arrow;
}
@keyframes shaking-arrow {
  0% { transform: rotateZ(90deg) translateX(0); }
  50% { transform: rotateZ(90deg) translateX(0); }
  60% { transform: rotateZ(90deg) translateX(1em); }
  70% { transform: rotateZ(90deg) translateX(0); }
  80% { transform: rotateZ(90deg) translateX(1em); }
  100% { transform: rotateZ(90deg) translateX(0); }
}

@media screen and (min-width: 992px) {
  .product-sheet__title {
    font-size:2.4rem;
  }
}

@media screen and (min-width: 1441px) {
  .product-sheet__title {
    font-size:3.5rem;
  }
}