/*  ------  reset   ------  */

.must-haves-2025 {
  margin: 0 auto;
  width: 100%;
  display: flex;
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  max-width: 1328px;
  --FONT-SIZE: 14px;
  --FONT-CLARINS: "ClarinsRegular", "Clarins";
  --FONT-GOTHAM-BOOK: "Gotham SSm book A", "Gotham SSm book B", "Gotham Book", Helvetica, Arial, sans-serif;
  --FONT-GOTHAM-MEDIUM: "Gotham SSm medium A", "Gotham SSm medium B", "Gotham Medium", "GothamMedium", Helvetica, Arial, sans-serif;
  font-family: var(--FONT-GOTHAM-BOOK);
  color: #333333;
  overflow-x: clip;
  padding-top: 40px;
  padding-bottom: 64px;
}

.must-haves-2025 * {
  box-sizing: border-box;
}

.must-haves-2025 *[data-popin="multi-active"] {
  --BG-COLOR: #410014;
}

.must-haves-2025 *[data-popin="hydra-essentiel"] {
  --BG-COLOR: #001A31;
}

.must-haves-2025 *[data-popin="super-restorative"] {
  --BG-COLOR: #310101;
}

.must-haves-2025 *[data-popin="extra-firming"] {
  --BG-COLOR: #37150A;
}

.must-haves-2025__tag {
  margin: 0;
  padding: 0 16px;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  font-size: 12px;
  font-weight: normal;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  background-color: #fff;
}

.must-haves-2025__tag::after {
  content: "";
  height: 1px;
  width: 832px;
  background-color: #e9e3de;
  position: absolute;
  top: 50%;
  left: calc(50% - 416px);
  z-index: -1;
}

.must-haves-2025__title {
  margin: 0;
  margin-top: 16px;
  font-family: var(--FONT-CLARINS);
  font-size: 40px;
  font-weight: normal;
  line-height: 48px;
  text-align: center;
}

.must-haves-2025__text {
  margin: 0;
  margin-top: 12px;
  font-family: var(--FONT-GOTHAM-BOOK);
  font-size: 16px;
  font-weight: normal;
  line-height: 23px;
  text-align: center;
}

.must-haves-2025__slider {
  margin-top: 24px;
  padding: 0 32px;
  width: 100%;
}

.must-haves-2025__item {
  cursor: pointer;
  outline: 0;
}

.must-haves-2025__item:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #6893d2 !important;
}

.must-haves-2025__visual {
  display: block;
  position: relative;
  overflow: hidden;
}

.must-haves-2025__visual::before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, var(--BG-COLOR) 0%, transparent 50%);
  z-index: 2;
  opacity: 0.5;
}


.must-haves-2025__visual>img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform ease-in-out 0.5s;
  z-index: 1;
  position: relative;
}

@media (min-width: 762px) {
  .must-haves-2025__item:hover .must-haves-2025__visual>img {
    transform: scale(1.1);
  }
}

.must-haves-2025__name {
  margin: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  font-size: 16px;
  font-weight: normal;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 8px;
  z-index: 2;
}

/*******************************************/
.must-haves-2025-popin {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.must-haves-2025-popin[data-open="0"] {
  display: none;
}

.must-haves-2025-popin__overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.must-haves-2025-popin[data-open="1"] .must-haves-2025-popin__overlay {
  animation: overlayAppear ease-out 1s both;
}

@keyframes overlayAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.must-haves-2025-popin__wrapper {
  width: 100%;
  position: relative;
  z-index: 2;
  transform: scale(0.9);
  transition: transform ease-in-out 0.5s;
}

.must-haves-2025-popin__wrapper[data-open="1"] {
  animation: popinAppear ease-out 0.5s both;
}

@keyframes popinAppear {
  0% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.must-haves-2025-popin__wrapper[data-open="0"] {
  display: none;
  z-index: 1;
}

.must-haves-2025-popin__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 2;
  outline: 0;
}

.must-haves-2025-popin__close::after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../img/must-haves/close.svg);
  background-size: cover;
  pointer-events: none;
}

.must-haves-2025-popin__close:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #6893d2 !important;
}

.must-haves-2025-popin__wrapper {
  max-width: 1048px;
  width: 100%;
}

.must-haves-2025-popin__background {
  position: relative;
  width: 100%;
  display: block;
}

.must-haves-2025-popin__background[data-device="desktop"] {
  display: block;
}

.must-haves-2025-popin__background[data-device="mobile"] {
  display: none;
}

.must-haves-2025-popin__background>img {
  width: 100%;
  display: block;
  height: auto;
}

.must-haves-2025-popin__content {
  color: #fff;
  display: flex;
  position: absolute;
  top: 0px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  left: 50%;
  gap: 24px;
}

.must-haves-2025-popin__title {
  margin: 0;
  margin-top: 8px;
  font-family: var(--FONT-GOTHAM-BOOK);
  font-size: 40px;
  font-weight: normal;
  line-height: 48px;
  text-align: left;
  max-width: 424px;
}

.must-haves-2025-popin__text-16 {
  margin: 0;
  font-family: var(--FONT-GOTHAM-BOOK);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-align: left;
  max-width: 424px;
}

.must-haves-2025-popin__box {
  padding: 12px;
  border: 1px solid #fff;
}

.must-haves-2025-popin__subtitle {
  margin: 0;
  margin-bottom: 8px;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  font-size: 16px;
  font-weight: normal;
  line-height: 23px;
  text-align: left;
  text-transform: uppercase;
}

.must-haves-2025-popin__text-18 {
  margin: 0;
  font-family: var(--FONT-GOTHAM-BOOK);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  max-width: 320px;
}

.must-haves-2025-popin__text-22 {
  margin: 0;
  font-family: var(--FONT-GOTHAM-BOOK);
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}

.must-haves-2025-popin__text-22 span {
  font-size: 36px;
  line-height: 53px;
  font-family: var(--FONT-GOTHAM-BOOK);
}

.must-haves-2025-popin sup {
  font-size: 0.5em;
  vertical-align: super;
  top: auto;
}

.must-haves-2025-popin .must-haves-2025-popin__ha2 {
  font-size: 0.75em;
}

.must-haves-2025-popin__link {
  color: #fff !important;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  font-size: 11px;
  font-weight: normal !important;
  line-height: 13px;
  text-decoration: underline !important;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 16px;
  outline: 0;
}

.must-haves-2025-popin__link:focus-visible {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #6893d2 !important;
}

@media (max-width: 761px) {
  .must-haves-2025 {
    --swiper-pagination-bottom: 20px;
    --swiper-pagination-color: #000;
  }

  .must-haves-2025__text {
    padding: 0 16px;
  }

  .swiper-slide-active .must-haves-2025__visual>img {
    transform: scale(1);
  }

  .must-haves-2025__title {
    margin-top: 4px;
    font-size: 35px;
    line-height: 42px;
  }

  .must-haves-2025__slider {
    margin-top: 24px;
    padding: 0 16px;
  }

  .must-haves-2025-popin {
    align-items: flex-end;
    display: block;
  }

  .must-haves-2025-popin__background {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -2;
  }

  .must-haves-2025-popin__background[data-device="desktop"] {
    display: none;
  }

  .must-haves-2025-popin__background[data-device="mobile"] {
    display: block;
  }

  .must-haves-2025-popin__content {
    position: relative;
    overflow: hidden;
    top: auto;
    left: auto;
    padding: 0px 16px;
    padding-top: 90vw;
    padding-bottom: 24px;
    gap: 16px;
    align-items: center;
    height: auto;
  }

  .must-haves-2025-popin__bar {
    background-color: #fff;
    height: 40px;
    position: sticky;
    top: 0;
    z-index: 2;
    width: 100%;
  }

  .must-haves-2025-popin__wrapper {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    overflow-y: auto;
    max-height: calc(100% - 108px);
    position: absolute;
    bottom: 0;
    transform: unset !important;
    height: auto;
  }



  .must-haves-2025-popin__wrapper[data-open="1"] {
    animation: unset;
  }

  .must-haves-2025-popin__close {
    top: 8px;
  }

  .must-haves-2025-popin__close::after {
    filter: invert(1);
  }

  .must-haves-2025-popin__title {
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    max-width: 358px;
    position: relative;
    z-index: 1;
  }

  .must-haves-2025-popin__title::before {
    position: absolute;
    content: " ";
    width: 100vw;
    height: 200%;
    display: block;
    z-index: 2;
    background: radial-gradient(closest-side, var(--BG-COLOR), transparent);
    left: 0;
    transform: translateX(-50%);
    top: -50%;
    left: 50%;
    z-index: -1;
  }

  .must-haves-2025-popin__box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 358px;
  }

  .must-haves-2025-popin__subtitle,
  .must-haves-2025-popin__text-16,
  .must-haves-2025-popin__text-18,
  .must-haves-2025-popin__text-22 {
    text-align: center;
    max-width: 358px;
  }

  .must-haves-2025 .swiper-pagination-bullet-active {
    background-color: rgba(180, 0, 36, 1);
  }
}


.dp-mentions {
  padding: 64px 16px;
}

.dp-mentions__wrapper {
  margin: 0 auto;
  max-width: 1048px;
}

.dp-mentions__text {
  margin: 0;
  display: inline;
  font-size: 12px;
  line-height: 17px;
  color: #B0A9A5;
  max-width: 1048px;
}

.dp-mentions__text sup {
  vertical-align: super;
  line-height: 0;
  top: auto;
}

@media(max-width:761px) {
  .dp-mentions {
    padding: 32px 16px;
  }
}