/*-----------------------------------------------------------*/
.dp-product {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  width: 100%;
  max-width: 1048px;
  margin: 0 auto;
  padding-top: 64px;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  --FONT-CLARINS: "ClarinsRegular", "Clarins";
  --FONT-GOTHAM-LIGHT: "Gotham_Light";
  --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);
  font-size: 14px;
  line-height: 1.4em;
  --GRADIENT: linear-gradient(180deg, #fff 0%, #FFF5BB 100%);
  --COLOR-HILITE: #333;
  padding-bottom: 64px;
}

.dp-product .dp-quickshop {
  display: none !important;
}

.dp-product * {
  margin: 0;
  box-sizing: border-box;
}


@media (max-width: 768px) {
  .dp-product {
    display: block;
    padding-top: 0px;
  }
}

/*---------------------------------------*/
.dp-product__content {
  flex-basis: calc(50% - 16px);
  text-align: center;
  position: relative;
  margin-top: 32px;
}

.dp-product[data-align="right"] .dp-product__content {
  order: 2;
}

.dp-product[data-align="left"] .dp-product__content {
  order: 1;
}

@media (max-width: 768px) {
  .dp-product__content {
    margin: 0 auto;
    margin-top: 32px;
  }
}

/*---------------------------------------*/
.dp-product__visual {
  flex-basis: calc(50% - 16px);
  position: relative;
  margin-top: 0px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
}

.dp-product__visual-photo {
  display: block;
  background-size: cover;
  background: var(--GRADIENT);
  width: calc(100% - 108px);
  aspect-ratio: 1/1;
}

.dp-product .dp-product__visual-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.dp-product[data-align="right"] .dp-product__visual-photo img {
  transform: translateY(40px) translateX(40px);
}

.dp-product[data-align="left"] .dp-product__visual-photo img {
  transform: translateY(40px) translateX(-40px);
}


.dp-product[data-align="right"] .dp-product__visual {
  order: 1;
  margin-right: 32px;
  justify-content: flex-start;
}

.dp-product[data-align="left"] .dp-product__visual {
  order: 2;
  margin-left: 32px;
  align-items: flex-end;
}

/*---------------------------------------*/
.dp-product__ingredient {
  position: relative;
  margin-bottom: -40px;
  margin-top: -92px;
  width: 40%;
  aspect-ratio: 1;
  container-type: inline-size;
}

.dp-product[data-align="right"] .dp-product__ingredient {
  margin-left: auto;
  margin-right: 0;
  right: 0;
  text-align: right;
}

.dp-product[data-align="left"] .dp-product__ingredient {
  margin-right: auto;
  margin-left: 0;
  left: 0;
  text-align: left;
}

.dp-product__ingredient-photo {
  display: block;
  width: 100%;
}

.dp-product__ingredient-photo img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
}

.dp-product__ingredient-text {
  flex: 1;
  padding: 20px;
}

.dp-product__ingredient-name {
  position: absolute;
  font-size: 5.925cqw;
  line-height: 1.4em;
  text-align: right;
  padding: 0;
  /*5cqw;*/
  font-family: var(--FONT-GOTHAM-MEDIUM);
}



@media (max-width: 1023px) and (min-width: 762px) {
  .dp-product[data-align="left"] .dp-product__visual-photo img {
    transform: translateY(20px) translateX(-20px);
  }

  .dp-product[data-align="right"] .dp-product__visual-photo img {
    transform: translateY(20px) translateX(20px);
  }
}

@media (max-width: 768px) {

  .dp-product[data-align="left"] .dp-product__visual,
  .dp-product[data-align="right"] .dp-product__visual {
    margin-right: 0;
    margin-left: 0;
  }

  .dp-product__visual-photo {
    width: calc(100% - 32px);
    margin-right: 0;
    margin-left: 0;
  }

  .dp-product[data-align="left"] .dp-product__visual-photo img {
    transform: translateY(16px) translateX(-16px);
  }

  .dp-product[data-align="right"] .dp-product__visual-photo img {
    transform: translateY(16px) translateX(16px);
  }

  .dp-product[data-align="left"] .dp-product__ingredient {
    left: 0;
  }

  .dp-product[data-align="right"] .dp-product__ingredient {
    right: 0;
  }

  .dp-product__visual {
    padding-bottom: 0;
  }

  .dp-product__ingredient {
    margin-bottom: 0px;
    margin-top: -124px;
  }

  .dp-product__ingredient-text {
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 0px;
  }

  .dp-product[data-align="right"] .dp-product__ingredient-text {
    padding-left: 10px;
  }

  .dp-product[data-align="left"] .dp-product__ingredient-text {
    padding-right: 10px;
  }
}

/*---------------------------------------*/


.dp-product__title::after {
  content: " ";
  width: 100%;
  position: absolute;
  z-index: -1;
  height: 2px;
  left: 0;
  top: 8px;
  width: 100%;
  background-size: cover;
  background-color: #E9E3DE;
  /*background: var(--GRADIENT);*/
}

.dp-product__title {
  font-family: var(--FONT-GOTHAM-MEDIUM);
  font-size: 12px;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: normal;
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
}

.dp-product__title span {
  display: inline-block;
  padding: 0 10px;
  background-color: #fff;
}

.dp-product__subtitle {
  font-family: var(--FONT-CLARINS);
  font-size: 42px;
  font-weight: normal;
  line-height: 1.2;
  display: block;
  margin: 20px auto;
  text-align: center;
  padding: 0 10px;
  color: var(--COLOR-HILITE);
}


.dp-product__see-collection-label,
.dp-product__see-more-label {
  padding-right: 20px;
  position: relative;
  text-transform: uppercase;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  text-decoration: none;
  font-size: 11px;
  color: #333333;
  cursor: pointer;
  outline: 0;
  border-radius: 2px;
  margin-bottom: 20px;
}

.dp-product__see-collection-label:hover,
.dp-product__see-more-label:hover {
  text-decoration: underline;
}

.dp-product__see-collection-label:focus-visible,
.dp-product__see-more-label:focus-visible {
  box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
}

.dp-product__see-collection-label::after,
.dp-product__see-more-label::after {
  content: " ";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/down.svg);
  background-size: cover;
  position: absolute;
  right: 0px;
  top: calc(50% - 8px);
}

.dp-product__see-collection-label[data-open-status="1"]::after,
.dp-product__see-more-label[data-open-status="1"]::after {
  transform: rotate(180deg);
}

.dp-product__see-collection-label[data-open-status="0"]::after,
.dp-product__see-more-label[data-open-status="0"]::after {
  transform: rotate(0deg);
}


.dp-product__see-collection {
  margin-top: -10px;
  margin-bottom: 15px;
}

.dp-product__see-more {
  margin-top: 10px;
}

.dp-product__see-more-label {
  display: none;
}

.dp-product__see-more[is-opened="1"] .dp-product__see-more-label[data-open-status="1"] {
  display: inline-block;
}

.dp-product__see-more[is-opened="1"] .dp-product__see-more-label[data-open-status="0"] {
  display: none;
}

.dp-product__see-more-label[data-open-status="0"] {
  display: inline-block;
}

.dp-product__see-collection a {
  color: #333333;
}

.dp-product__collection-link {
  text-align: center;
  padding-bottom: 20px;
}

.dp-product__collection-link a {
  text-transform: uppercase;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  text-decoration: none;
  line-height: 1em;
  font-size: 12px;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  color: #000;
}

.dp-product__text-bold {
  color: #333333;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  margin-bottom: 20px;
}

.dp-product__text {
  color: #333333;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
}

.dp-product__list {
  color: #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 20px;
}

.dp-product__bullet {
  color: var(--COLOR-HILITE);
}

.dp-product__text[id] {
  max-height: 170px;
  overflow: hidden;
  transition: max-height 0.3s;
}

.dp-product__text[id]::after {
  content: "";
  display: block;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
  width: 100%;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}


.dp-product__text[is-opened="1"] {
  max-height: 1000px;
  transition: max-height 0.3s;
}

.dp-product__text[is-opened="1"]::after {
  opacity: 0;
  transition: opacity 0.3s;
}

.dp-product__text strong {
  font-family: var(--FONT-GOTHAM-MEDIUM);
  color: #000;
  font-weight: normal;
}

.dp-product__arguments {
  font-size: 14px;
  text-align: left;
}

.dp-product__product-name {
  font-size: 14px;
  text-align: center;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  color: #000;
  font-weight: normal;
  padding-top: 20px;
}


.dp-product__shop-btn {

  background-color: #fff !important;
  display: inline-block;
  color: #333 !important;
  padding: 10px 20px;
  text-transform: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  cursor: pointer;
  border: 1px solid #B0A9A5;
  min-width: 180px;
  text-align: center;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  outline: 0;
}

.dp-product__shop-btn * {
  color: #333 !important;
  text-decoration: none;
}

.dp-product__shop-btn:hover {
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, .15);
}

.dp-product__shop-btn:focus-visible {
  box-shadow: 0px 0px 0px 1px #fff, 0px 0px 0px 3px #6893D2;
}

.dp-product__shop-btn-link {
  color: #fff !important;
  text-decoration: none;
}


.dp-product__product-text {
  font-size: 14px;
  line-height: 1.4em;
  text-align: center;
  color: #000;
  font-weight: normal;
  padding-top: 10px;
  color: #333;
}

.dp-product__arguments {
  max-width: 400px;
  padding: 20px;
  margin: 0 auto;
  color: #333;
}

.dp-product__packshot {
  width: 375px;
  margin: 0 auto;
  padding-top: 25px;
  position: relative;
}

.dp-product__packshot img {
  margin: 0 auto;
}


@media (max-width: 1023px) and (min-width: 762px) {
  .dp-product__packshot {
    margin: 20px calc(50% - 187px);
  }

  .dp-product__subtitle {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .dp-product__packshot {
    margin: 20px calc(50% - 187px);
  }

  .dp-product__subtitle {
    font-size: 36px;
  }
}

/*---------------------------------------*/
.dp-product[data-align="left"] .dp-product__product-infos {
  order: 4;
}

.dp-product[data-align="right"] .dp-product__product-infos {
  order: 3;
}

.dp-product__quickshop span {
  background-color: transparent;
  display: inline-block;
  color: #be0f34;
  padding: 15px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 11px;
  line-height: 18px;
  font-family: var(--FONT-GOTHAM-MEDIUM);
  cursor: pointer;
  border: 1px solid #e7e4e2;
  min-width: 155px;
  text-align: center;
  border-radius: 5px;
  margin-top: 20px;
}

.dp-product__model-name {
  position: absolute;
  bottom: 68px;
  padding: 20px;
  left: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.dp-product__model-name strong {
  font-size: 22px;
  font-family: var(--FONT-CLARINS);
  line-height: 1.4em;
  font-weight: normal;
}

.dp-product__model-name span {
  font-size: 12px;
  font-family: var(--FONT-GOTHAM-BOOK);
  text-transform: uppercase;
  line-height: 1em;
}

@media (max-width: 768px) {
  .dp-product__model-name {
    bottom: 16px;
    padding: 16px;
    left: 16px;
    width: calc(100% - 160px);
  }

  .dp-product__model-name span {
    font-size: 10px;
  }
}

/*---------------------SPECIFIQUES---------------------*/
.dp-product__ingredient[data-ingredient="turmeric"] .dp-product__ingredient-name {
  top: 10%;
  left: 60%;
  text-align: right;
}

.dp-product__ingredient[data-ingredient="kangaroo-flower"] .dp-product__ingredient-name {
  top: 72%;
  width: 42%;
  text-align: right;
  right: 10%;
}

.dp-product__ingredient[data-ingredient="harungana"] .dp-product__ingredient-name {
  top: 24%;
  left: 43%;
  text-align: left;
  width: 51%;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="zerumbet-ginger"] .dp-product__ingredient-name {
  top: 48%;
  left: 8%;
  text-align: left;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="leaf-of-life"] .dp-product__ingredient-name {
  top: 35%;
  left: 11%;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="acerola"] .dp-product__ingredient-name {
  top: 10%;
  left: 52%;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="vitamin-c"] .dp-product__ingredient-name {
  top: 81%;
  left: 2%;
  text-align: left;
}

.dp-product__ingredient[data-ingredient="senna"] .dp-product__ingredient-name {
  top: 7%;
  left: 16%;
  text-align: left;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="cocoa"] .dp-product__ingredient-name {
  top: 20%;
  left: 10%;
  text-align: right;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="shea-butter"] .dp-product__ingredient-name {
  top: 38%;
  left: 20%;
  text-align: left;
  width: 20%;
}

.dp-product__ingredient[data-ingredient="aloe-vera"] .dp-product__ingredient-name {
  bottom: 8%;
  left: 5%;
  width: 20%;
}

.dp-product__ingredient[data-ingredient="sea-holly"] .dp-product__ingredient-name {
  top: 18%;
  left: 32%;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="pecan-tree"] .dp-product__ingredient-name {
  top: 12%;
  left: 7%;
  text-align: left;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="horse-chestnut"] .dp-product__ingredient-name {
  top: 78%;
  left: 5%;
  text-align: left;
  width: 50%;
}

.dp-product__ingredient[data-ingredient="matcha-tea"] .dp-product__ingredient-name {
  top: 8%;
  left: 14%;
  text-align: left;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="petasite-tea"] .dp-product__ingredient-name {
  top: 20%;
  right: 8%;
  text-align: left;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="centella-asiatica"] .dp-product__ingredient-name {
  top: 80%;
  left: 68%;
  text-align: left;
  width: 30%;
}

.dp-product__ingredient[data-ingredient="water-mint"] .dp-product__ingredient-name {
  bottom: 3%;
  left: 7%;
  text-align: left;
  /* width: 50%; */
  color: #fff;
}



.dp-product__ingredient[data-ingredient="alpin-rose-and-coconut-water"] .dp-product__ingredient-name:nth-child(2) {
  top: 14%;
  left: 5%;
  text-align: left;
  width: 35%;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="alpin-rose-and-coconut-water"] .dp-product__ingredient-name:nth-child(3) {
  top: 85%;
  right: 7%;
  text-align: right;
  width: 35%;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="clary-sage"] .dp-product__ingredient-name {
  top: 85%;
  left: 20%;
  text-align: left;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="bison-grass"] .dp-product__ingredient-name {
  bottom: 10%;
  left: 65%;
  text-align: left;
  width: 31%;
}

.dp-product__ingredient[data-ingredient="caffeine"] .dp-product__ingredient-name {
  top: 5%;
  left: 7%;
  text-align: left;
  width: 41%;
}

.dp-product__ingredient[data-ingredient="teasel"] .dp-product__ingredient-name {
  top: 35%;
  left: 10%;
  color: #fff;
}

.dp-product__ingredient[data-ingredient="irish-moss"] .dp-product__ingredient-name {
  top: 5%;
  left: 7%;
}

.dp-product__ingredient[data-ingredient="castor-seed"] .dp-product__ingredient-name {
  top: 45%;
  right: 14%;
  text-align: right;
  color: #fff;
}