/** Shopify CDN: Minification failed

Line 1563:12 Unexpected bad string token
Line 1563:67 Unterminated string token

**/
/* ==================== GLOBAL ==================== */

:root {
  --color-white: #fff;
}

.custom {
  display: block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

@media screen and (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
}

.heading {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-weight: var(--heading-font-weight);
  font-style: var(--heading-font-style);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.heading-2,
.heading-3 {
  margin: 0;
}

.heading-2 {
  font-size: 1.5em;
}

.heading-3 {
  font-size: 1.5em;
}

@media screen and (min-width: 1024px) {
  .heading-2 {
    font-size: 1.5em;
  }
}

.paragraphe {
  margin-top: 1em;
}

.button {
  width: 100%;
  background-color: #616858;
  padding: 12px 20px;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.Button__SeparatorDot {
  margin: 0 10px;
}

.button.grey {
  background-color: #eee;
  color: #333;
}

.button--white {
  background-color: #eee;
  color: #333;
}

.button.small {
  margin-top: 0.5em;
  padding: 10px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

.button.small .Button__SeparatorDot {
  margin: 0 4px;
}

.button.duo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.button.duo.center {
  justify-content: center;
  gap: 3em;
}

.button.center {
  text-align: center;
}

.button .loading,
.Button .loading {
  height: 1.5em;
}

.margin-top {
  margin-top: 1em;
}
.margin-top-2 {
  margin-top: 3em;
}
.margin-top-3 {
  margin-top: 5em;
}
.padding {
  padding: 100px 5%;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.container.small {
  max-width: 900px;
}
.container.cols {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.container.cols.gap {
  gap: 2em;
}

@media screen and (min-width: 1024px) {
  .container.cols.gap {
    gap: 5em;
  }
}

.container.cols.align-center {
  align-items: center;
}
.container.cols.reverse {
  flex-direction: row-reverse;
}
.container.cols > * {
  flex: 1;
}
.container.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* ==================== PRODUCTS COLLECTION ==================== */

.ProductItem__CTA {
  margin-top: 1em;
}
.ProductItem__CTA form {
  margin-bottom: 0.5em;
}

@media screen and (min-width: 640px) {
  .ProductItem__CTA {
    transform: translateY(1em);
    opacity: 1;
    transition: all 0.35s ease-in-out;
  }
  .ProductItem__Wrapper:hover .ProductItem__CTA {
    transform: translateY(1em);
    opacity: 1;
  }
}

/* ==================== CART DRAWER ==================== */

.cart-drawer {
  --cart-drawer-max-width: 500px;
  --cart-drawer-item-vertical-padding: 16px;
  --cart-drawer-item-horizontal-padding: 16px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: flex-end;
  position: fixed;
  left: -9999px;
  top: 0;
  opacity: 0;
  z-index: 99999;
  transition: left 0s 0.2s, opacity 0.2s;
}

@media screen and (min-width: 750px) {
  .cart-drawer {
    --cart-drawer-item-horizontal-padding: 32px;
  }
}

.cart-drawer--active {
  left: 0;
  opacity: 1;
  transition: left 0s, opacity 0.2s;
}

.cart-drawer__drawer {
  width: 100%;
  max-width: var(--cart-drawer-max-width);
  height: 100vh;
  background: #fff;
  border-left: 1px solid #e7e7e7;
  transition: 0.2s opacity, 0.2s transform;
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  overflow: auto;
}

.cart-drawer--active .cart-drawer__drawer {
  transform: none;
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .cart-drawer__drawer {
    z-index: 1;
  }
}

/* CART DRAWER NOTE */
.cart-drawer__note {
  width: 100%;
  max-width: var(--cart-drawer-max-width);
  height: 100%;
  background-color: #f7f4ef;
  padding-block: var(--cart-drawer-item-vertical-padding);
  padding-inline: var(--cart-drawer-item-horizontal-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cart-drawer__note--active {
  transform: translateX(0);
  opacity: 1;
}

.cart-drawer__note-close {
  position: absolute;
  left: var(--cart-drawer-item-horizontal-padding);
  top: var(--cart-drawer-item-vertical-padding);
  cursor: pointer;
  pointer-events: all;
}

.cart-drawer__note-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  text-align: center;
}

.cart-drawer__note-form-fieldset {
  background-color: #fff;
  border: 1px solid #e7e7e7;
  padding: 8px 16px;
}

.cart-drawer__note-form textarea {
  width: 100%;
  height: 128px;
  resize: none;
  background-color: transparent;
  background-image: linear-gradient(#e7e7e7 1px, transparent 1px);
  background-size: 100% 32px;
  background-position-y: -1px;
  border: 0;
  line-height: 32px;
}

.cart-drawer__note-form textarea::placeholder {
  color: #a1a1a1;
}

.cart-drawer__note .button--disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media screen and (min-width: 1000px) {
  .cart-drawer__note {
    -webkit-transform: translateX(0);
    transform: translate(0);
    z-index: 0;
  }

  .cart-drawer__note--active {
    -webkit-transform: translateX(-100%);
    transform: translate(-100%);
  }
}

.cart-drawer .cart-drawer__open-note {
  padding: var(--cart-drawer-item-vertical-padding) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__open-note > div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.cart-drawer__edit-note {
  width: max-content;
  display: none;
  font-size: 12px;
  text-align: right;
  text-decoration: underline;
  cursor: pointer;
  line-height: 1.3;
}

.cart-drawer__edit-note--active {
  display: block;
}

.cart-drawer .suggestion-wrap-heading {
  font-size: 12px;
}

/* CART DRAWER HEADER */
.cart-drawer__header {
  background-color: #fff;
  border-bottom: transparent !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1;
}

.cart-drawer__header h2 {
  margin: 0;
  font-size: 18px;
}

.cart-drawer__header-close {
  width: 20px;
  color: #a1a1a1;
  cursor: pointer;
}

.cart-drawer__header-close:hover {
  color: #212529;
}

/* CART DRAWER BANNER */
.cart-drawer__banner {
  display: flex;
  gap: 4em;
  position: relative;
  font-size: 12px;
  color: var(--text-color-light);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  white-space: nowrap;
  overflow: hidden;
}

.cart-drawer__banner .bandeau-container {
  padding: 10px;
  display: flex;
  gap: 4em;
}

.cart-drawer__banner .bandeau-container:nth-child(2) {
  position: absolute;
  left: 0;
}

.cart-drawer__banner .bandeau-container-item {
  display: flex;
  gap: 1em;
}

.cart-drawer__banner .bandeau-container-item .icon {
  height: 1.5em;
}

.cart-drawer__banner .splide__slide {
  padding: 9px 30px;
  text-align: center;
}

.cart-drawer__form {
  display: flex;
  flex-direction: column;
}

.cart-drawer__items {
  padding-block: var(--cart-drawer-item-vertical-padding);
}

.cart-drawer__item {
  display: flex;
  align-items: center;
}
.cart-drawer__item + .cart-drawer__item {
  margin-top: 25px;
}
.cart-drawer__item.personnalisation {
  align-items: flex-start;
}
.cart-drawer__item.personnalisation .arrow {
  height: 1em;
}

.cart-drawer__item-image {
  width: 120px;
  height: 156px;
}

.cart-drawer__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__item-main {
  flex: 1;
  padding: 0 24px;
}

.cart-drawer__item-main-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cart-drawer__item-delete-product {
  min-width: 24px;
  height: 24px;
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.cart-drawer__item-delete-product:hover {
  background: #eee;
}
.cart-drawer__item-delete-product img {
  height: 25%;
}
.cart-drawer__item-main {
  flex: 1;
}
.cart-drawer__item-main h3 {
  margin-bottom: 0;
  font-size: 12px;
}
.cart-drawer__item-properties {
  margin-top: 0.5em;
  font-size: 12px;
  color: #a1a1a1;
}
.cart-drawer__item-custom-name {
  margin-top: 0;
  margin-bottom: 0;
}
.cart-drawer__item-custom-name span {
  font-weight: 500;
}
.cart-drawer__item-price {
  margin-top: 4px;
  display: block;
  font-size: 13px;
  color: #a1a1a1;
  font-weight: 500;
}
.cart-drawer__quantity-selector {
  display: inline-flex;
  border: 1px solid #e7e7e7;
  margin-top: 10px;
}
.cart-drawer__quantity-selector button {
  width: 28px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}
.cart-drawer__quantity-selector input {
  width: 28px;
  font-size: 13px;
  text-align: center;
  line-height: 24px;
  border: 0;
}
.cart-drawer__row {
  padding: 1em 30px;
}
.cart-drawer__row-heading {
  margin-bottom: 0.75em;
  padding: 0.75em 0;
  border-bottom: 1px solid #e7e7e7;
  text-transform: uppercase;
}
.cart-drawer__row.border {
  border-top: 1px solid #e7e7e7;
}
.cart-drawer__row.cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-drawer__row:last-of-type {
  margin-bottom: 16px;
}
.cart-drawer__empty {
  color: #212529;
}

/* HARMONISATION ENZO */

.cart-drawer__section {
  padding: var(--cart-drawer-item-vertical-padding)
    var(--cart-drawer-item-horizontal-padding);
  border-bottom: 1px solid #e7e7e7;
}

.cart-drawer__section--no-vertical-padding {
  padding-block: 0;
}

.cart-drawer-details {
  width: 100%;
}

.cart-drawer-summary {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.cart-drawer-summary::-webkit-details-marker {
  display: none;
}

.cart-drawer-summary .heading {
  margin: 0;
}

.cart-drawer-summary-icon {
  transition: transform 0.3s ease-in-out;
}

.cart-drawer-details[open] .cart-drawer-summary-icon {
  transform: rotate(180deg);
}

/* ONE CLICK PRODUCT */
.cart-drawer__one-click-products {
  width: 100%;
}

.cart-drawer__one-click-products summary > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-drawer__one-click-products-info {
  position: relative;
}

.cart-drawer__one-click-products-info-message {
  width: max-content;
  max-width: 156px;
  background-color: #fff;
  padding: 16px;
  display: none;
  position: absolute;
  font-size: 10px;
  z-index: 1;
  box-shadow: 0 8px 24px 0px rgba(0, 0, 0, 0.1);
}

.cart-drawer__one-click-products-info:hover
  .cart-drawer__one-click-products-info-message {
  display: block;
}

.cart-drawer__one-click-product {
  padding: var(--cart-drawer-item-vertical-padding) 0;
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-drawer__one-click-product + .cart-drawer__one-click-product {
  margin-top: 8px;
}

.cart-drawer__one-click-product-image {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.cart-drawer__one-click-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__one-click-product-title {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
}

.cart-drawer__one-click-product-price {
  margin: 4px 0 0;
  font-size: 12px;
}

.cart-drawer__one-click-product-cta {
  margin-top: 4px;
  gap: 8px;
  font-size: 12px;
  text-decoration: underline;
  transition: 0.2s;
}

.cart-drawer__one-click-product-cta:hover {
  opacity: 0.7;
}

/* CART DRAWER SHIPPING */
.cart-drawer__shipping-bar {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 60px;
  z-index: 1;
}

.cart-drawer__shipping-infos {
  padding-block-end: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.cart-drawer__shipping-infos .detail {
  margin: 1.5em 0 0;
  font-size: 0.75em;
}

.cart-drawer__shipping-infos .detail:last-child {
  margin-top: 0.5em;
}

.cart-drawer__shipping-progress {
  width: 100%;
  height: 5px;
  border: 1px solid #000;
}

.cart-drawer__shipping-progress-bar {
  width: 50%;
  height: 100%;
  background-color: #222;
}

/* CART DRAWER SUB TOTAL */
.cart-drawer__sub-total * {
  margin: 0;
}

.cart-drawer__sub-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__sub-total-line--promo-message {
  font-size: 12px;
}

.cart-drawer__sub-total-line--total {
  font-weight: 600;
}

/* CART DRAWER SHIPPING INFOS */
.cart-drawer__section.shipping-infos {
  align-items: flex-start;
  font-size: 0.85em;
}
.cart-drawer__section.shipping-infos .dates .custom {
  flex: 1 1 200px;
}

.cart-drawer__checkout {
  background-color: #fff;
  position: sticky;
  bottom: 0;
  z-index: 1;
}

.cart-drawer__checkout p {
  margin-top: 8px;
  font-size: 10px;
  text-align: center;
}

/* ==================== CART DRAWER EMPTY ==================== */

.cart-drawer__empty {
  padding: 32px;
  text-align: center;
}

/* ==================== CART DRAWER UPSELL ==================== */
.cart-drawer__upsell {
  background-color: #f7f4ef;
  display: block;
}

.cart-drawer__upsell-products {
  position: relative;
}

.cart-drawer__upsell-arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  pointer-events: all;
}

.cart-drawer__upsell:hover .cart-drawer__upsell-arrow {
  opacity: 1;
}

.cart-drawer__upsell-arrow--left {
  left: 0px;
  transform: translateX(-150%);
}

.cart-drawer__upsell-arrow--right {
  right: 0px;
  transform: translateX(150%);
}

.cart-drawer__upsell-products-slider {
  padding-block-end: 24px;
  display: flex;
  gap: 24px;
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.cart-drawer__upsell-product {
  flex-shrink: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  gap: 16px;
}

.cart-drawer__upsell-product * {
  margin: 0;
}

.cart-drawer__upsell-product-content {
  width: 128px;
  height: 100%;
  padding-block: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-drawer__upsell-product-heading {
  font-size: 14px;
  line-height: 1.4;
}

.cart-drawer__upsell-product-price {
  margin-top: 4px;
  font-size: 12px;
}

.cart-drawer__upsell-product-image {
  width: 112px;
  height: 100%;
}

.cart-drawer__upsell-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-drawer__upsell-product-text-content {
  min-height: 55px;
}

.cart-drawer__upsell-product-custom-link {
  width: 100%;
  margin-top: 0.75em;
  display: inline-block;
  font-size: 0.75em;
  text-decoration: underline;
}

@media screen and (min-width: 750px) {
  .cart-drawer__upsell-arrow {
    opacity: 0;
  }
}

/* ==================== CART ==================== */

.CartItem__PersonnalisationImageWrapper {
  display: flex;
  justify-content: center;
}
.CartItem__Arrow {
  height: 1.5em;
}

/* ==================== HERO ==================== */

.hero-home {
  height: calc(100vh - 190px);
  background-color: #222;
}
.hero-home .heading {
  font-size: 2em;
}

/* ==================== FEATURES HERO ==================== */

.hero-features .hero-feature {
  flex: 1 1 300px;
  padding: 3em 0;
  text-align: center;
}
.hero-feature:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.hero-feature-icon {
  height: 2.5em;
  margin-bottom: 1em;
}
.hero-feature-heading {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero-feature-description {
  opacity: 0.5;
  font-size: 12px;
}

@media screen and (min-width: 640px) {
  .hero-feature:not(:last-child) {
    border-bottom: 0px;
  }
}

/* ==================== PRODUCT ==================== */

.product-variants-wrapper {
  background-color: #f7f4ef;
  padding: 2em 5%;
  text-align: center;
}

.product-customization-wrap fieldset {
  background-color: #f7f4ef;
  padding: 2em;
  border: 0;
  text-align: center;
}
.product-customization-wrap .heading {
  font-size: 0.85em;
}
.product-customization-choices {
  display: flex;
  justify-content: center;
  gap: 2em;
}
.product-customization-choice input {
  border: 2px solid #616858;
  border-radius: 50%;
}
.product-customization-wrap .custom-form {
  margin-top: 1.5em;
  padding-top: 1em;
  border-top: 1px dashed #ccc;
}
.product-customization-wrap .custom-form:not(.active) {
  display: none;
}
.product-customization-wrap .custom-form-label,
.product-customization-wrap .custom-form-label span {
  display: block;
}
.product-customization-wrap .custom-form-label-title {
  font-size: 14px;
}
.product-customization-wrap .custom-form-label-detail {
  font-size: 12px;
}
.product-customization-wrap .custom-form-input {
  width: 100%;
  margin-top: 1em;
  padding: 12px 14px;
  border: 0;
  font-size: 14px;
}
.product-customization-wrap .custom-form-detail {
  margin-top: 1em;
  font-size: 0.65em;
  font-style: italic;
}

/* ==================== SEO ==================== */

.seo-heading {
  margin-bottom: 0.5em;
  color: #616858;
  font-family: "DM Serif Display";
  font-weight: 400;
  line-height: 1.35em;
}

.seo-sub-heading {
  font-size: 1.1em;
  color: #616858;
  font-family: "DM Serif Display";
}

.seo-heading-1 {
  font-size: 2em;
}

.seo-heading-2 {
  font-size: 1.5em;
}

@media screen and (min-width: 640px) {
  .seo-heading-1 {
    font-size: 2.5em;
  }

  .seo-heading-2 {
    font-size: 2em;
  }

  .seo-sub-heading {
    font-size: 1.25em;
  }
}

/* ==================== SEO : IMAGE & TEXT ==================== */

.product-seo-section:not(:first-child) {
  margin-top: 8em;
}
.product-seo-section .text {
  flex: 1 1 20em;
}
.product-seo-section .image {
  flex: 1 1 20em;
  background-color: #333;
}
.product-seo-section .image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* ==================== SEO : ICON & TEXT ==================== */

.icon-and-text-wrap {
  flex: 1 1 200px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.icons-and-text .icon {
  height: 3.5em;
}
.icons-and-text .heading {
  margin-top: 1.5em;
  margin-bottom: 0;
  text-align: center;
}
.icons-and-text .description {
  margin-top: 1em;
  font-size: 0.85em;
  text-align: center;
}

/* ==================== SEO : PROGRESS BAR ==================== */

.progress-bar-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2em;
}
.progress-bar-row:not(:first-child) {
  margin-top: 6em;
}
.progress-bar-row > * {
  flex: 1 1 200px;
}
.progress-bar-row.reverse {
  flex-direction: row-reverse;
}
.progress-bar-row .image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.progress-bar-container {
  display: flex;
  gap: 2em;
  position: relative;
}
.progress-bar-container .line {
  width: 10px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCAxIDgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDEgOCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxwYXRoIGQ9Ik0xLDAuNXYxQzEsMS44LDAuOCwyLDAuNSwybDAsMEMwLjIsMiwwLDEuOCwwLDEuNWwwLTFDMCwwLjIsMC4yLDAsMC41LDBsMCwwQzAuOCwwLDEsMC4yLDEsMC41eiIgZmlsbD0iIzAwMmU1ZCIvPgo8L3N2Zz4K");
  background-size: 100%;
  background-repeat: repeat-y;
  position: sticky;
  top: 3em;
}
.progress-bar-container .line .progress {
  width: 100%;
  height: 20em;
  background: #000;
  position: sticky;
  top: 0px;
}

@media screen and (min-width: 640px) {
  .progress-bar-row {
    gap: 6em;
  }
  .progress-bar-container .line {
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .progress-bar-row .image img {
    height: 250px;
  }
}

/* ==================== PRODUCT ==================== */

.ProductForm__BuyButtons {
  width: 100%;
  background: #fff;
  padding: 1em 5%;
  border-top: 1px solid #eee;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
}

@media screen and (min-width: 640px) {
  .ProductForm__BuyButtons {
    position: relative;
  }
}

.product-meta__price-wrapper {
  margin: 16px 0 24px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .product-meta__price-wrapper {
    justify-content: flex-start;
  }
}

.product-meta__price-item {
  text-align: center;
}

.product-meta__price-item--precommande:not(.active) {
  display: none;
}

.product-meta__price-item--disabled {
  opacity: 0.5;
}

.product-meta__price-label {
  margin-top: 8px;
  display: block;
  font-size: 10px;
}

.main-product__preorder-shipping-date {
  margin-top: 4px;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== PRODUCT : RASSURANCE ICONS ========== */
.main-product__rassurance {
  display: flex;
  gap: 32px;
}

.main-product__rassurance-item {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-product__rassurance-item-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.main-product__rassurance-item p {
  margin-top: 12px;
}

.main-product__rassurance-item p > span {
  display: block;
}

.main-product__rassurance-item p > span:first-child {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.main-product__rassurance-item p > span:last-child {
  margin-top: 4px;
  font-size: 8px;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .main-product__preorder-shipping-date {
    margin-top: 12px;
  }
}

/* ==================== EDITO COUNTER ==================== */
.edito-counter {
  padding: 40px 18px;
  position: relative;
  color: var(--color-white);
}

.edito-counter::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  position: absolute;
  top: 0;
  left: 0;
}

.edito-counter__background-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.edito-counter__background-image--desktop {
  display: none;
}

.edito-counter__container {
  width: 100%;
  max-width: 1260px;
  min-height: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.edito-counter__edito {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.edito-counter__title {
  font-size: 18px;
  color: var(--color-white);
  line-height: 1.4;
}

.edito-counter__button {
  width: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.edito-counter__counter {
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: 500ms;
}

.edito-counter__counter--active {
  opacity: 1;
}

.edito-counter__counter-item {
  text-align: center;
}

.edito-counter__counter-value {
  font-size: 16px;
  display: block;
}

.edito-counter__counter-unit {
  font-size: 12px;
}

.edito-counter__counter-separator {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 800;
}

@media screen and (min-width: 640px) {
  .edito-counter {
    padding: 72px 56px;
  }

  .edito-counter__background-image--mobile {
    display: none;
  }

  .edito-counter__background-image--desktop {
    display: block;
  }

  .edito-counter__container {
    min-height: 360px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
  }

  .edito-counter__edito {
    align-items: flex-start;
    text-align: left;
  }

  .edito-counter__edito--top-left,
  .edito-counter__counter-wrapper--top-left {
    grid-column: 1;
    grid-row: 1;
  }

  .edito-counter__edito--top-center,
  .edito-counter__counter-wrapper--top-center {
    grid-column: 2;
    grid-row: 1;
  }

  .edito-counter__edito--top-right,
  .edito-counter__counter-wrapper--top-right {
    grid-column: 3;
    grid-row: 1;
  }

  .edito-counter__edito--middle-left,
  .edito-counter__counter-wrapper--middle-left {
    grid-column: 1;
    grid-row: 2;
  }

  .edito-counter__edito--middle-center,
  .edito-counter__counter-wrapper--middle-center {
    grid-column: 2;
    grid-row: 2;
  }

  .edito-counter__edito--middle-right,
  .edito-counter__counter-wrapper--middle-right {
    grid-column: 3;
    grid-row: 2;
  }

  .edito-counter__edito--bottom-left,
  .edito-counter__counter-wrapper--bottom-left {
    grid-column: 1;
    grid-row: 3;
  }

  .edito-counter__edito--bottom-center,
  .edito-counter__counter-wrapper--bottom-center {
    grid-column: 2;
    grid-row: 3;
  }

  .edito-counter__edito--bottom-right,
  .edito-counter__counter-wrapper--bottom-right {
    grid-column: 3;
    grid-row: 3;
  }

  .edito-counter__title {
    font-size: 32px;
  }

  .edito-counter__counter {
    gap: 16px;
  }

  .edito-counter__counter-value {
    font-size: 32px;
  }

  .edito-counter__counter-unit {
    font-size: 16px;
  }

  .edito-counter__counter-separator {
    font-size: 20px;
  }
}

.ProductItem__Vendor,
  .ProductItem__Title {
   font-weight:600!important, 
  
  }


@media screen and (max-width: 768px) {
  .ProductItem__Vendor,
  .ProductItem__Title {
    min-height: 40px;
    
  
  }
}

/* NEWSLETTER POPUP */
.NewsletterPopup__Image {
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
}

.NewsletterPopup__Image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.NewsletterPopup__Heading {
  font-weight: 600 !important;
}

#shopify-section-template--27116216582468__featured_collections_nFTfNw .media {
  aspect-ratio: 2 / 3;
}

#shopify-section-template--27116216582468__featured_collections_nFTfNw .media img {
  aspect-ratio: 2 / 3;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#shopify-section-template--27116216582468__featured_collections_nFTfNw .product-item__info .price,
#shopify-section-template--27116216582468__featured_collections_nFTfNw .product-item__title {
  margin-bottom: 2px;
}

.ProductItem__Info--left .ProductItem__Title {
  margin-bottom: -20px !important;
  color:#5C5C5C!important;
  font-size:14px!important;
}

.Text--subdued{
   color:#5C5C5C!important;
}

.ProductItem__Info--left .ProductItem__PriceList {
  margin-top: 0 !important;
  color:#5C5C5C!important;
  font-size:14px!important;
}

.ProductItem__Price .Price {
  font-weight: 600 !important;
}

/* Announcement bar slider */
.announcement-bar { padding: 10px; text-align: center; }
.announcement-slider { display: flex; align-items: center; justify-content: center; gap: 12px; }
.announcement-slider__btn { background: none; border: none; cursor: pointer; color: inherit; font-size: 18px; padding: 0 4px; opacity: 0.7; }
.announcement-slider__btn:hover { opacity: 1; }
.announcement-slider__message{font-size:13x!important}

/* Announcement bar - transitions douces */
.announcement-slider__message {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.announcement-slider__message.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.announcement-slider__messages {
  position: relative;
  min-height: 1.4em;
}



/* Réduire l'espace entre la grille de produits et le bouton "Voir tous les produits" */
#shopify-section-template--27116216582468__featured_collections_nFTfNw .featured-collection__footer {
  margin-top: 16px!important;
}

#shopify-section-template--27116216582468__featured_collections_nFTfNw .button-wrapper,
#shopify-section-template--27116216582468__featured_collections_nFTfNw .collection-footer {
  margin-top: 16px!important;
}

/* Icônes header moins épaisses */
.header__icon svg,
.header__icons svg {
  stroke-width: 1;
}

/* Galerie produit : 2 colonnes sur desktop (≥990px) */
@media screen and (min-width: 990px) {
  .Product__Gallery--stack .Product__Slideshow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .Product__Gallery--stack .Carousel__Cell {
    width: 100% !important;
    margin: 0 !important;
  }

 .Product__Gallery--stack .Carousel__Dots {
    display: none!important;
  }
.Product__SlideshowNavScroller{
  display:none!important;
}

}

* Réduire l'espace entre la page produit et les recommandations */
.shopify-section--product-recommendations {
  margin-top: 20px !important;
}

@media screen and (min-width: 641px) {
    .features--heading-small .u-h6, .features--heading-small .Rte h6 {
        font-size: 14px!important;
    }
    .features--heading-small .u-h7 {
        font-size: 14px!important;
    }
}

.Header__RightNav__Dropdown {
  display: none !important;
}

.HorizontalList__Item:hover .Header__RightNav__Dropdown {
  display: block !important;
}
/* Réduire l'espace sous le titre de la page L'adresse */
.page-l-adresse .page-title,
.template-page .rte h1 {
  margin-bottom: 16px!important; /* ajuste la valeur selon le rendu souhaité */
}

@media screen and (min-width: 641px) {
    .features--heading-small .u-h1, .features--heading-small .Rte h1 {
        font-size: 24px;
        font-weight:bold;
    }
}

#section-template--27335344062788__image_with_text_block_UTCDwt .ImageHero__Block {
    background: transparent!important;
}
#section-template--27335344062788__image_with_text_block_UTCDwt, #section-template--27335344062788__image_with_text_block_UTCDwt .Heading {
    color: #ffffff!important;
    font-weight:bold;
    text-transform:uppercase;
}


.orso-address-section{
  padding:0px 0px 0px 0px!important;
}

@media screen and (min-width: 641px) {
    .PageHeader {
        margin: 10px 0 0 0;
    }
}