/** Shopify CDN: Minification failed

Line 6842:18 Unexpected bad string token
Line 6842:67 Unterminated string token
Line 6844:58 Unterminated string token
Line 6913:9 Expected ":"
Line 7188:0 Expected "}" to go with "{"

**/

/* ===============================
   Boucle d’Or Paris — Base Styles
   =============================== */

/* Variables globales */
:root {
  --bdp-grid-width: 1160px; /* ajuste ici selon ta largeur de grille produit */
}

/* ... le reste de ton code ... */


:root {
  --alpha-button-background: 1;
  --alpha-button-border: 1;
  --alpha-link: 0.85;
  --alpha-badge-border: 0.1;
  --focused-base-outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  --focused-base-outline-offset: 0.3rem;
  --focused-base-box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.product-card-wrapper .card,
.contains-card--product {
  --border-radius: var(--product-card-corner-radius);
  --border-width: var(--product-card-border-width);
  --border-opacity: var(--product-card-border-opacity);
  --shadow-horizontal-offset: var(--product-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--product-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--product-card-shadow-blur-radius);
  --shadow-opacity: var(--product-card-shadow-opacity);
  --shadow-visible: var(--product-card-shadow-visible);
  --image-padding: var(--product-card-image-padding);
  --text-alignment: var(--product-card-text-alignment);
}

.collection-card-wrapper .card,
.contains-card--collection {
  --border-radius: var(--collection-card-corner-radius);
  --border-width: var(--collection-card-border-width);
  --border-opacity: var(--collection-card-border-opacity);
  --shadow-horizontal-offset: var(--collection-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--collection-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--collection-card-shadow-blur-radius);
  --shadow-opacity: var(--collection-card-shadow-opacity);
  --shadow-visible: var(--collection-card-shadow-visible);
  --image-padding: var(--collection-card-image-padding);
  --text-alignment: var(--collection-card-text-alignment);
}

.article-card-wrapper .card,
.contains-card--article {
  --border-radius: var(--blog-card-corner-radius);
  --border-width: var(--blog-card-border-width);
  --border-opacity: var(--blog-card-border-opacity);
  --shadow-horizontal-offset: var(--blog-card-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--blog-card-shadow-vertical-offset);
  --shadow-blur-radius: var(--blog-card-shadow-blur-radius);
  --shadow-opacity: var(--blog-card-shadow-opacity);
  --shadow-visible: var(--blog-card-shadow-visible);
  --image-padding: var(--blog-card-image-padding);
  --text-alignment: var(--blog-card-text-alignment);
}

.contains-content-container,
.content-container {
  --border-radius: var(--text-boxes-radius);
  --border-width: var(--text-boxes-border-width);
  --border-opacity: var(--text-boxes-border-opacity);
  --shadow-horizontal-offset: var(--text-boxes-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--text-boxes-shadow-vertical-offset);
  --shadow-blur-radius: var(--text-boxes-shadow-blur-radius);
  --shadow-opacity: var(--text-boxes-shadow-opacity);
  --shadow-visible: var(--text-boxes-shadow-visible);
}

.contains-media,
.global-media-settings {
  --border-radius: var(--media-radius);
  --border-width: var(--media-border-width);
  --border-opacity: var(--media-border-opacity);
  --shadow-horizontal-offset: var(--media-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--media-shadow-vertical-offset);
  --shadow-blur-radius: var(--media-shadow-blur-radius);
  --shadow-opacity: var(--media-shadow-opacity);
  --shadow-visible: var(--media-shadow-visible);
}

/* base */

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

body:has(.section-header .drawer-menu) .announcement-bar-section .page-width {
  max-width: 100%;
}

.page-width.drawer-menu {
  max-width: 100%;
}

.page-width-desktop {
  padding: 0;
  margin: 0 auto;
}

.utility-bar__grid.page-width {
  padding-left: 3rem;
  padding-right: 3rem;
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }

  .header.page-width,
  .utility-bar__grid.page-width {
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }

  .page-width--narrow {
    padding: 0 9rem;
  }

  .page-width-desktop {
    padding: 0;
  }

  .page-width-tablet {
    padding: 0 5rem;
  }
}

@media screen and (min-width: 990px) {
  .header:not(.drawer-menu).page-width {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .page-width--narrow {
    max-width: 72.6rem;
    padding: 0;
  }

  .page-width-desktop {
    max-width: var(--page-width);
    padding: 0 5rem;
  }
}

.isolate {
  position: relative;
  z-index: 0;
}

.section + .section {
  margin-top: var(--spacing-sections-mobile);
}

@media screen and (min-width: 750px) {
  .section + .section {
    margin-top: var(--spacing-sections-desktop);
  }
}

.element-margin-top {
  margin-top: 5rem;
}

@media screen and (min-width: 750px) {
  .element-margin {
    margin-top: calc(5rem + var(--page-width-margin));
  }
}

.background-secondary {
  background-color: rgba(var(--color-foreground), 0.04);
}

.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

.page-margin,
.shopify-challenge__container {
  margin: 7rem auto;
}

.rte-width {
  max-width: 82rem;
  margin: 0 auto 2rem;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal !important;
}

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}

.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

::selection {
  background-color: rgba(var(--color-foreground), 0.2);
}

.text-body {
  font-size: 1.5rem;
  letter-spacing: 0.06rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: calc(var(--font-heading-scale) * 0.06rem);
  color: rgb(var(--color-foreground));
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
  word-break: break-word;
}

.hxxl {
  font-size: clamp(calc(var(--font-heading-scale) * 5.6rem), 14vw, calc(var(--font-heading-scale) * 7.2rem));
  line-height: 1.1;
}

.hxl {
  font-size: calc(var(--font-heading-scale) * 5rem);
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  .hxl {
    font-size: calc(var(--font-heading-scale) * 6.2rem);
  }
}

.h0 {
  font-size: calc(var(--font-heading-scale) * 4rem);
}

@media only screen and (min-width: 750px) {
  .h0 {
    font-size: calc(var(--font-heading-scale) * 5.2rem);
  }
}

h1,
.h1 {
  font-size: calc(var(--font-heading-scale) * 3rem);
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-scale) * 4rem);
  }
}

h2,
.h2 {
  font-size: calc(var(--font-heading-scale) * 2rem);
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem);
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem);
}

@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-scale) * 1.8rem);
  }
}

h4,
.h4 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: calc(var(--font-heading-scale) * 1.5rem);
}

h5,
.h5 {
  font-size: calc(var(--font-heading-scale) * 1.2rem);
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.3rem);
  }
}

h6,
.h6 {
  color: rgba(var(--color-foreground), 0.75);
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}

blockquote {
  font-style: italic;
  color: rgba(var(--color-foreground), 0.75);
  border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
  padding-left: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-left: 1.5rem;
  }
}

.caption {
  font-size: 1rem;
  letter-spacing: 0.07rem;
  line-height: calc(1 + 0.7 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .caption {
    font-size: 1.2rem;
  }
}

.caption-with-letter-spacing {
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-transform: uppercase;
}

.caption-with-letter-spacing--medium {
  font-size: 1.2rem;
  letter-spacing: 0.16rem;
}

.caption-with-letter-spacing--large {
  font-size: 1.4rem;
  letter-spacing: 0.18rem;
}

.caption-large,
.customer .field input,
.customer select,
.field__input,
.form__label,
.select__select {
  font-size: 1.3rem;
  line-height: calc(1 + 0.5 / var(--font-body-scale));
  letter-spacing: 0.04rem;
}

.color-foreground {
  color: rgb(var(--color-foreground));
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.4rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
  /* draws the table border  */
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.light {
  opacity: 0.7;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

.link,
.customer a {
  cursor: pointer;
  display: inline-block;
  border: none;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  color: rgb(var(--color-link));
  background-color: transparent;
  font-size: 1.4rem;
  font-family: inherit;
}

.link--text {
  color: rgb(var(--color-foreground));
}

.link--text:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.link-with-icon {
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration: none;
  margin-bottom: 4.5rem;
  white-space: nowrap;
}

.link-with-icon .icon {
  width: 1.5rem;
  margin-left: 1rem;
}

a:not([href]) {
  cursor: not-allowed;
}

.circle-divider::after {
  content: '\2022';
  margin: 0 1.3rem 0 1.5rem;
}

.circle-divider:last-of-type::after {
  display: none;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: rgba(var(--color-foreground), 0.2);
  display: block;
  margin: 5rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}

.placeholder {
  background-color: rgba(var(--color-foreground), 0.04);
  color: rgba(var(--color-foreground), 0.55);
  fill: rgba(var(--color-foreground), 0.55);
}

details > * {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
    animation: none !important;
  }
}

:root {
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-announcement-bar: 250ms;
  --duration-medium: 300ms;
  --duration-long: 500ms;
  --duration-extra-long: 600ms;
  --duration-extra-longer: 750ms;
  --duration-extended: 3s;
  --ease-out-slow: cubic-bezier(0, 0, 0.3, 1);
  --animation-slide-in: slideIn var(--duration-extra-long) var(--ease-out-slow) forwards;
  --animation-fade-in: fadeIn var(--duration-extra-long) var(--ease-out-slow);
}

.underlined-link,
.customer a,
.inline-richtext a {
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness ease 100ms;
}

.underlined-link,
.customer a {
  color: rgba(var(--color-link), var(--alpha-link));
}

.inline-richtext a,
.rte.inline-richtext a {
  color: currentColor;
}

.underlined-link:hover,
.customer a:hover,
.inline-richtext a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.icon-arrow {
  width: 1.5rem;
}

h3 .icon-arrow,
.h3 .icon-arrow {
  width: calc(var(--font-heading-scale) * 1.5rem);
}

/* arrow animation */
.animate-arrow .icon-arrow path {
  transform: translateX(-0.25rem);
  transition: transform var(--duration-short) ease;
}

.animate-arrow:hover .icon-arrow path {
  transform: translateX(-0.05rem);
}

.svg-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
}

.svg-wrapper > svg {
  height: 100%;
  width: 100%;
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  height: 0.6rem;
  right: 1.5rem;
  top: calc(50% - 0.2rem);
}

summary::-webkit-details-marker {
  display: none;
}

.disclosure-has-popup {
  position: relative;
}

.disclosure-has-popup[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: ' ';
  background: transparent;
}

.disclosure-has-popup > summary::before {
  display: none;
}

.disclosure-has-popup[open] > summary + * {
  z-index: 100;
}

@media screen and (min-width: 750px) {
  .disclosure-has-popup[open] > summary + * {
    z-index: 4;
  }

  .facets .disclosure-has-popup[open] > summary + * {
    z-index: 2;
  }
}

.placeholder-svg {
  height: 100%;
  width: 100%;
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible {
  outline: var(--focused-base-outline);
  outline-offset: var(--focused-base-outline-offset);
  box-shadow: var(--focused-base-box-shadow);
}

/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
.focused {
  outline: var(--focused-base-outline);
  outline-offset: var(--focused-base-outline-offset);
  box-shadow: var(--focused-base-box-shadow);
}

/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.focused.focus-inset {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.focus-offset.focused {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)), 0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

/* component-title */
.title,
.title-wrapper-with-link {
  margin: 3rem 0 2rem;
}

.title-wrapper-with-link .title {
  margin: 0;
}

.title .link {
  font-size: inherit;
}

.title-wrapper {
  margin-bottom: 3rem;
}

.title-wrapper-with-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.title--primary {
  margin: 4rem 0;
}

.title-wrapper--self-padded-tablet-down,
.title-wrapper--self-padded-mobile {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 750px) {
  .title-wrapper--self-padded-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 990px) {
  .title,
  .title-wrapper-with-link {
    margin: 5rem 0 3rem;
  }

  .title--primary {
    margin: 2rem 0;
  }

  .title-wrapper-with-link {
    align-items: center;
  }

  .title-wrapper-with-link .title {
    margin-bottom: 0;
  }

  .title-wrapper--self-padded-tablet-down {
    padding-left: 0;
    padding-right: 0;
  }
}

.title-wrapper-with-link .link-with-icon {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.title-wrapper-with-link .link-with-icon .svg-wrapper {
  width: 1.5rem;
}

.title-wrapper-with-link a {
  margin-top: 0;
  flex-shrink: 0;
}

.title-wrapper--no-top-margin {
  margin-top: 0;
}

.title-wrapper--no-top-margin > .title {
  margin-top: 0;
}

.subtitle {
  font-size: 1.8rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  letter-spacing: 0.06rem;
  color: rgba(var(--color-foreground), 0.7);
}

.subtitle--small {
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

.subtitle--medium {
  font-size: 1.6rem;
  letter-spacing: 0.08rem;
}

/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
}

@media screen and (min-width: 750px) {
  .grid {
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing);
  }
}

.grid:last-child {
  margin-bottom: 0;
}

.grid__item {
  width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (min-width: 750px) {
  .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

.grid--gapless.grid {
  column-gap: 0;
  row-gap: 0;
}

@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--3-col .grid__item {
  width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
}

@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
}

.grid--2-col .grid__item {
  width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--4-col-tablet .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-tablet .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

@media screen and (max-width: 989px) {
  .grid--1-col-tablet-down .grid__item {
    width: 100%;
    max-width: 100%;
  }

  .slider--tablet.grid--peek {
    margin: 0;
    width: 100%;
  }

  .slider--tablet.grid--peek .grid__item {
    box-sizing: content-box;
    margin: 0;
  }

  .slider.slider--tablet .scroll-trigger.animate--slide-in,
  .slider.slider--mobile .scroll-trigger.animate--slide-in {
    animation: none;
    opacity: 1;
    transform: inherit;
  }

  .scroll-trigger:not(.scroll-trigger--offscreen) .slider--tablet {
    animation: var(--animation-slide-in);
  }
}

@media screen and (min-width: 990px) {
  .grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
  }

  .grid--5-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }

  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .slider.slider--desktop .scroll-trigger.animate--slide-in {
    animation: none;
    opacity: 1;
    transform: inherit;
  }

  .scroll-trigger:not(.scroll-trigger--offscreen) .slider--desktop {
    animation: var(--animation-slide-in);
  }
}

@media screen and (min-width: 990px) {
  .grid--1-col-desktop {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid--1-col-desktop .grid__item {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 749px) {
  .grid--peek.slider--mobile {
    margin: 0;
    width: 100%;
  }

  .grid--peek.slider--mobile .grid__item {
    box-sizing: content-box;
    margin: 0;
  }

  .grid--peek .grid__item {
    min-width: 35%;
  }

  .grid--peek.slider .grid__item:first-of-type {
    margin-left: 1.5rem;
  }

  /* Fix to show some space at the end of our sliders in all browsers */
  .grid--peek.slider:after {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item,
  .grid--peek .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item,
  .slider--mobile.grid--peek.grid--1-col-tablet-down .grid__item {
    width: calc(100% - var(--grid-mobile-horizontal-spacing) - 3rem);
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .slider--tablet.grid--peek .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet .grid__item,
  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek .grid__item:first-of-type {
    margin-left: 1.5rem;
  }

  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--1-col-tablet-down.grid--peek .grid__item {
    width: calc(100% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
}

/* component-media */
.media {
  display: block;
  background-color: rgba(var(--color-foreground), 0.1);
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media > *:not(.zoom):not(.deferred-media__poster-button),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.media > img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media--square {
  padding-bottom: 100%;
}

.media--portrait {
  padding-bottom: 125%;
}

.media--landscape {
  padding-bottom: 66.6%;
}

.media--cropped {
  padding-bottom: 56%;
}

.media--16-9 {
  padding-bottom: 56.25%;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}

.media.media--hover-effect > img + img {
  opacity: 0;
}

@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
}

deferred-media {
  display: block;
}

/* component-button */
/* Button - default */

.button--secondary,
.button--tertiary {
  --color-button: var(--color-secondary-button);
  --color-button-text: var(--color-secondary-button-text);
}

.button--tertiary {
  --alpha-button-background: 0;
  --alpha-button-border: 0.2;
}

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  --shadow-horizontal-offset: var(--buttons-shadow-horizontal-offset);
  --shadow-vertical-offset: var(--buttons-shadow-vertical-offset);
  --shadow-blur-radius: var(--buttons-shadow-blur-radius);
  --shadow-opacity: var(--buttons-shadow-opacity);
  --shadow-visible: var(--buttons-shadow-visible);
  --border-offset: var(--buttons-border-offset); /* reduce radius edge artifacts */
  --border-opacity: calc(1 - var(--buttons-border-opacity));
  border-radius: var(--buttons-radius-outset);
  position: relative;
}

.button,
.shopify-challenge__button,
.customer button,
button.shopify-payment-button__button--unbranded {
  min-width: calc(12rem + var(--buttons-border-width) * 2);
  min-height: calc(4.5rem + var(--buttons-border-width) * 2);
}

.button,
.shopify-challenge__button,
.customer button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  font: inherit;
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(var(--color-button-text));
  transition: box-shadow var(--duration-short) ease;
  -webkit-appearance: none;
  appearance: none;
  background-color: rgba(var(--color-button), var(--alpha-button-background));
}

.button:before,
.shopify-challenge__button:before,
.customer button:before,
.shopify-payment-button__button--unbranded:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: var(--buttons-radius-outset);
  box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
    rgba(var(--color-shadow), var(--shadow-opacity));
}

.button:after,
.shopify-challenge__button:after,
.customer button:after,
.shopify-payment-button__button--unbranded:after {
  content: '';
  position: absolute;
  top: var(--buttons-border-width);
  right: var(--buttons-border-width);
  bottom: var(--buttons-border-width);
  left: var(--buttons-border-width);
  z-index: 1;
  border-radius: var(--buttons-radius);
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background));
  transition: box-shadow var(--duration-short) ease;
}

.button:not([disabled]):hover::after,
.shopify-challenge__button:hover::after,
.customer button:hover::after,
.shopify-payment-button__button--unbranded:hover::after {
  --border-offset: 1.3px;
  box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
      rgba(var(--color-button-text), var(--border-opacity)),
    0 0 0 calc(var(--buttons-border-width) + 1px) rgba(var(--color-button), var(--alpha-button-background));
}

.button--secondary:after {
  --border-opacity: var(--buttons-border-opacity);
}

.button:focus-visible,
.button:focus,
.button.focused,
.shopify-payment-button__button--unbranded:focus-visible,
.shopify-payment-button__button--unbranded:focus {
  outline: 0;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.5rem rgba(var(--color-foreground), 0.5),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.button:focus:not(:focus-visible):not(.focused),
.shopify-payment-button__button--unbranded:focus:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
}

.button::selection,
.shopify-challenge__button::selection,
.customer button::selection {
  background-color: rgba(var(--color-button-text), 0.3);
}

.button,
.button-label,
.shopify-challenge__button,
.customer button {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
}

.button--tertiary {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  min-width: calc(9rem + var(--buttons-border-width) * 2);
  min-height: calc(3.5rem + var(--buttons-border-width) * 2);
}

.button--small {
  padding: 1.2rem 2.6rem;
}

/* Shopify Accelerated Checkout */

shopify-accelerated-checkout {
  --shopify-accelerated-checkout-button-border-radius: var(--buttons-radius-outset);
  --shopify-accelerated-checkout-button-box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
  rgba(var(--color-shadow), var(--shadow-opacity));
}
shopify-accelerated-checkout-cart {
  --shopify-accelerated-checkout-button-border-radius: var(--buttons-radius-outset);
  --shopify-accelerated-checkout-button-box-shadow: var(--shadow-horizontal-offset) var(--shadow-vertical-offset) var(--shadow-blur-radius)
  rgba(var(--color-shadow), var(--shadow-opacity));
}


/* Button - other */

.button:disabled,
.button[aria-disabled='true'],
.button.disabled,
.customer button:disabled,
.customer button[aria-disabled='true'],
.customer button.disabled,
.quantity__button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.button.loading {
  color: transparent;
  position: relative;
}

@media screen and (forced-colors: active) {
  .button.loading {
    color: rgb(var(--color-foreground));
  }
}

.button.loading > .loading__spinner {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  height: 100%;
  display: flex;
  align-items: center;
}

.button.loading > .loading__spinner .spinner {
  width: fit-content;
}

.button.loading > .loading__spinner .path {
  stroke: rgb(var(--color-button-text));
}

/* Button - social share */

.share-button {
  display: block;
  position: relative;
}

.share-button details {
  width: fit-content;
}

.share-button__button {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  color: rgb(var(--color-link));
  margin-left: 0;
  padding-left: 0;
  min-height: 4.4rem;
}

details[open] > .share-button__fallback {
  animation: animateMenuOpen var(--duration-default) ease;
}

.share-button__button:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.share-button__button,
.share-button__fallback button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.share-button__button .icon-share {
  height: 1.2rem;
  margin-right: 1rem;
  min-width: 1.3rem;
}

.share-button__fallback {
  display: flex;
  align-items: center;
  position: absolute;
  top: 3rem;
  left: 0.1rem;
  z-index: 3;
  width: 100%;
  min-width: max-content;
  border-radius: var(--inputs-radius);
  border: 0;
}

.share-button__fallback:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.share-button__fallback:before {
  background: rgb(var(--color-background));
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
  z-index: -1;
}

.share-button__fallback button {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  right: var(--inputs-border-width);
}

.share-button__fallback button:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.share-button__fallback button:hover .svg-wrapper {
  transform: scale(1.07);
}

.share-button__close:not(.hidden) + .share-button__copy {
  display: none;
}

.share-button__close,
.share-button__copy {
  background-color: transparent;
  color: rgb(var(--color-foreground));
}

.share-button__copy:focus-visible,
.share-button__close:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.share-button__copy:focus,
.share-button__close:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.field:not(:focus-visible):not(.focused) + .share-button__copy:not(:focus-visible):not(.focused),
.field:not(:focus-visible):not(.focused) + .share-button__close:not(:focus-visible):not(.focused) {
  background-color: inherit;
}

.share-button__fallback .field:after,
.share-button__fallback .field:before {
  content: none;
}

.share-button__fallback .field {
  border-radius: 0;
  min-width: auto;
  min-height: auto;
  transition: none;
}

.share-button__fallback .field__input:focus,
.share-button__fallback .field__input:-webkit-autofill {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.1rem;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-background)), 0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.share-button__fallback .field__input {
  box-shadow: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  filter: none;
  min-width: auto;
  min-height: auto;
}

.share-button__fallback .field__input:hover {
  box-shadow: none;
}

.share-button__fallback .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.share-button__message:not(:empty) {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 0.8rem 0 0.8rem 1.5rem;
  margin: var(--inputs-border-width);
}

.share-button__message:not(:empty):not(.hidden) ~ * {
  display: none;
}

/* component-form */
.field__input,
.select__select,
.customer .field input,
.customer select {
  -webkit-appearance: none;
  appearance: none;
  background-color: rgb(var(--color-background));
  color: rgb(var(--color-foreground));
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  border-radius: var(--inputs-radius);
  height: 4.5rem;
  min-height: calc(var(--inputs-border-width) * 2);
  min-width: calc(7rem + (var(--inputs-border-width) * 2));
  position: relative;
  border: 0;
}

.field:before,
.select:before,
.customer .field:before,
.customer select:before,
.localization-form__select:before {
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
  z-index: -1;
}

.field:after,
.select:after,
.customer .field:after,
.customer select:after,
.localization-form__select:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.select__select {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.75);
}

.field:hover.field:after,
.select:hover.select:after,
.select__select:hover.select__select:after,
.customer .field:hover.field:after,
.customer select:hover.select:after,
.localization-form__select:hover.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width))
    rgba(var(--color-foreground), var(--inputs-border-opacity));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + var(--inputs-border-width)) rgba(var(--color-foreground));
  outline: 0;
  border-radius: var(--inputs-radius);
}

.localization-form__select:focus {
  outline: 0;
  box-shadow: none;
}

.text-area,
.select {
  display: flex;
  position: relative;
  width: 100%;
}

/* Select */

.select .svg-wrapper,
.customer select + .svg-wrapper {
  height: 0.6rem;
  width: 1rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 0;
}

.select__select,
.customer select {
  cursor: pointer;
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  padding: 0 calc(var(--inputs-border-width) + 3rem) 0 2rem;
  margin: var(--inputs-border-width);
  min-height: calc(var(--inputs-border-width) * 2);
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow var(--duration-short) ease;
}

.customer .field {
  display: flex;
}

.field--with-error {
  flex-wrap: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin: var(--inputs-border-width);
  transition: box-shadow var(--duration-short) ease;
}

.field__label,
.customer .field label {
  font-size: 1.6rem;
  left: calc(var(--inputs-border-width) + 2rem);
  top: calc(1rem + var(--inputs-border-width));
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--duration-short) ease, font-size var(--duration-short) ease;
  color: rgba(var(--color-foreground), 0.75);
  letter-spacing: 0.1rem;
  line-height: 1.5;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label {
  font-size: 1rem;
  top: calc(var(--inputs-border-width) + 0.5rem);
  left: calc(var(--inputs-border-width) + 2rem);
  letter-spacing: 0.04rem;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  padding: 2.2rem 1.5rem 0.8rem 2rem;
  margin: var(--inputs-border-width);
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 0;
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}

.field__button > .svg-wrapper {
  height: 2.5rem;
  width: 2.5rem;
}

.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:-webkit-autofill ~ label {
  color: rgb(0, 0, 0);
}

/* Text area */

.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  min-height: 10rem;
  resize: none;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

/* Form global */

.form__label {
  display: block;
  margin-bottom: 0.6rem;
}

.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}

.form__message--large {
  font-size: 1.6rem;
}

.customer .field .form__message {
  font-size: 1.4rem;
  text-align: left;
}

.form__message .icon,
.customer .form__message .svg-wrapper {
  flex-shrink: 0;
  height: 1.3rem;
  margin-right: 0.5rem;
  width: 1.3rem;
}

.form__message--large .icon,
.customer .form__message .svg-wrapper {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.customer .field .form__message .svg-wrapper {
  align-self: start;
}

.form-status {
  margin: 0;
  font-size: 1.6rem;
}

.form-status-list {
  padding: 0;
  margin: 2rem 0 4rem;
}

.form-status-list li {
  list-style-position: inside;
}

.form-status-list .link::first-letter {
  text-transform: capitalize;
}

/* component-quantity */
.quantity {
  color: rgba(var(--color-foreground));
  position: relative;
  width: calc(14rem / var(--font-body-scale) + var(--inputs-border-width) * 2);
  display: flex;
  border-radius: var(--inputs-radius);
  min-height: calc((var(--inputs-border-width) * 2) + 4.5rem);
}

.quantity:after {
  pointer-events: none;
  content: '';
  position: absolute;
  top: var(--inputs-border-width);
  right: var(--inputs-border-width);
  bottom: var(--inputs-border-width);
  left: var(--inputs-border-width);
  border: 0.1rem solid transparent;
  border-radius: var(--inputs-radius);
  box-shadow: 0 0 0 var(--inputs-border-width) rgba(var(--color-foreground), var(--inputs-border-opacity));
  transition: box-shadow var(--duration-short) ease;
  z-index: 1;
}

.quantity:before {
  background: rgb(var(--color-background));
  pointer-events: none;
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: var(--inputs-radius-outset);
  box-shadow: var(--inputs-shadow-horizontal-offset) var(--inputs-shadow-vertical-offset)
    var(--inputs-shadow-blur-radius) rgba(var(--color-shadow), var(--inputs-shadow-opacity));
  z-index: -1;
}

.quantity__input {
  color: currentColor;
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.6rem;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 0 0.5rem;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}

.quantity__button {
  width: calc(4.5rem / var(--font-body-scale));
  flex-shrink: 0;
  font-size: 1.8rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  padding: 0;
}

.quantity__button:first-child {
  margin-left: calc(var(--inputs-border-width));
}

.quantity__button:last-child {
  margin-right: calc(var(--inputs-border-width));
}

.quantity__button .svg-wrapper {
  width: 1rem;
  pointer-events: none;
}

.quantity__button:focus-visible,
.quantity__input:focus-visible {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.quantity__button:focus,
.quantity__input:focus {
  background-color: rgb(var(--color-background));
  z-index: 2;
}

.quantity__button:not(:focus-visible):not(.focused),
.quantity__input:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity__input[type='number'] {
  -moz-appearance: textfield;
}

.quantity__rules {
  margin-top: 0.5rem;
  position: relative;
  font-size: 1.2rem;
}

.quantity__rules .caption {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}

.quantity__rules .divider + .divider::before {
  content: '\2022';
  margin: 0 0.5rem;
}

.quantity__rules-cart {
  position: relative;
}

.product__info-container .loading__spinner:not(.hidden) ~ *,
.quantity__rules-cart .loading__spinner:not(.hidden) ~ * {
  visibility: hidden;
}

/* component-modal */
.modal__toggle {
  list-style-type: none;
}

.modal__toggle-close {
  display: none;
}

.modal__toggle-open {
  display: flex;
}

.modal__close-button.link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  height: 4.4rem;
  width: 4.4rem;
  background-color: transparent;
}

.modal__close-button .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-modal {
  cursor: zoom-out;
}

.media-modal .deferred-media {
  cursor: initial;
}

/* component-cart-count-bubble */
.cart-count-bubble:empty {
  display: none;
}

.cart-count-bubble {
  position: absolute;
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  height: 1.7rem;
  width: 1.7rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  bottom: 0.8rem;
  left: 2.2rem;
  line-height: calc(1 + 0.1 / var(--font-body-scale));
}

/* utility-bar */
.utility-bar {
  height: 100%;
}

.utility-bar--bottom-border {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

@media screen and (min-width: 990px) {
  .utility-bar--bottom-border-social-only {
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  }
}

.utility-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 'announcements';
}

.utility-bar__grid .list-social {
  justify-content: flex-start;
  align-content: center;
  margin-left: -1.2rem;
  grid-area: social-icons;
}

@media screen and (max-width: 989px) {
  .utility-bar .utility-bar__grid .list-social {
    display: none;
  }
}

.utility-bar .list-social__item .icon {
  scale: 0.9;
}

@media screen and (min-width: 990px) {
  .utility-bar__grid--3-col {
    grid-template-columns: 3fr 4fr 3fr;
    grid-template-areas: 'social-icons announcements language-currency';
  }

  .utility-bar__grid--2-col {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'social-icons language-currency';
  }

  .announcement-bar.announcement-bar--one-announcement,
  .announcement-bar--one-announcement .announcement-bar__link {
    width: fit-content;
    margin: auto;
  }
}

.announcement-bar,
.announcement-bar__announcement {
  color: rgb(var(--color-foreground));
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-content: center;
  grid-area: announcements;
}

.announcement-bar .slider--everywhere {
  margin-bottom: 0;
  scroll-behavior: auto;
}

.utility-bar__grid .announcement-bar-slider {
  width: 100%;
}

.utility-bar__grid .announcement-bar-slider {
  width: 100%;
}

.announcement-bar-slider,
.announcement-bar-slider .slider {
  width: 100%;
}

.announcement-bar .slider-button--next {
  margin-right: -1.5rem;
  min-width: 44px;
}

.announcement-bar .slider-button--prev {
  margin-left: -1.5rem;
  min-width: 44px;
}

.announcement-bar .slider-button--next:focus-visible,
.announcement-bar .slider-button--prev:focus-visible,
.utility-bar .list-social__link:focus-visible {
  outline-offset: -0.3rem;
  box-shadow: 0 0 0 -0.2rem rgb(var(--color-foreground));
}

.localization-wrapper {
  grid-area: language-currency;
  align-self: center;
  display: flex;
  justify-content: flex-end;
}

.localization-wrapper .localization-selector + .disclosure__list-wrapper {
  animation: animateMenuOpen var(--duration-default) ease;
}

.utility-bar .localization-wrapper .disclosure .localization-form__select,
.utility-bar .localization-wrapper .disclosure__link {
  font-size: calc(var(--font-heading-scale) * 1.3rem);
}

@media screen and (min-width: 990px) {
  body:has(.section-header .header:not(.drawer-menu)) .utility-bar .page-width {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .announcement-bar-slider {
    width: 60%;
  }

  .announcement-bar .slider-button {
    height: 3.8rem;
  }
}

.announcement-bar__link {
  display: flex;
  width: 100%;
  text-decoration: none;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.announcement-bar__link:hover {
  text-decoration: underline;
}

.announcement-bar__link .icon-arrow {
  display: inline-block;
  pointer-events: none;
  margin-left: 0.8rem;
  vertical-align: middle;
  margin-bottom: 0.2rem;
}

.announcement-bar__message {
  text-align: center;
  padding: 1rem 0;
  margin: 0;
  letter-spacing: 0.1rem;
  min-height: 3.8rem;
}

.announcement-bar-slider--fade-in-next .announcement-bar__message,
.announcement-bar-slider--fade-in-previous .announcement-bar__message,
.announcement-bar-slider--fade-out-next .announcement-bar__message,
.announcement-bar-slider--fade-out-previous .announcement-bar__message {
  animation-duration: var(--duration-announcement-bar);
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.announcement-bar-slider--fade-in-next .announcement-bar__message {
  --announcement-translate-from: -1.5rem;
  /* Prevent flicker */
  opacity: 0;
  animation-name: translateAnnouncementSlideIn;
  animation-delay: var(--duration-announcement-bar);
}

.announcement-bar-slider--fade-in-previous .announcement-bar__message {
  --announcement-translate-from: 1.5rem;
  /* Prevent flicker */
  opacity: 0;
  animation-name: translateAnnouncementSlideIn;
  animation-delay: var(--duration-announcement-bar);
}

.announcement-bar-slider--fade-out-next .announcement-bar__message {
  --announcement-translate-to: 1.5rem;
  animation-name: translateAnnouncementSlideOut;
}

.announcement-bar-slider--fade-out-previous .announcement-bar__message {
  --announcement-translate-to: -1.5rem;
  animation-name: translateAnnouncementSlideOut;
}

@keyframes translateAnnouncementSlideIn {
  0% {
    opacity: 0;
    transform: translateX(var(--announcement-translate-from));
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes translateAnnouncementSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(var(--announcement-translate-to));
  }
}

/* section-header */
.section-header.shopify-section-group-header-group {
  z-index: 3;
}

.shopify-section-header-sticky {
  position: sticky;
  top: 0;
}

.shopify-section-header-hidden {
  top: calc(-1 * var(--header-height));
}

.shopify-section-header-hidden.menu-open {
  top: 0;
}

.section-header.animate {
  transition: top 0.15s ease-out;
}

.shopify-section-group-header-group {
  z-index: 4;
}

.section-header ~ .shopify-section-group-header-group {
  z-index: initial;
}

/* Main Header Layout */
.header-wrapper {
  display: block;
  position: relative;
  background-color: rgb(var(--color-background));
}

.header-wrapper--border-bottom {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.header {
  display: grid;
  grid-template-areas: 'left-icons heading icons';
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

@media screen and (max-width: 749px) {
  .header--has-app {
    grid-template-columns: auto 1fr auto;
  }
}

@media screen and (min-width: 990px) {
  .header {
    grid-template-columns: 1fr auto 1fr;
  }

  .header--top-left,
  .header--middle-left:not(.header--has-menu) {
    grid-template-areas:
      'heading icons'
      'navigation navigation';
    grid-template-columns: 1fr auto;
  }

  .header--top-left.drawer-menu,
  .header--middle-left.drawer-menu {
    grid-template-areas: 'navigation heading icons';
    grid-template-columns: auto 1fr auto;
    column-gap: 1rem;
  }

  .header--middle-left {
    grid-template-areas: 'heading navigation icons';
    grid-template-columns: auto auto 1fr;
    column-gap: 2rem;
  }

  .header--middle-center:not(.drawer-menu) {
    grid-template-areas: 'navigation heading icons';
    grid-template-columns: 1fr auto 1fr;
    column-gap: 2rem;
  }

  .header--middle-center a.header__heading-link {
    text-align: center;
  }

  .header--top-center {
    grid-template-areas:
      'left-icons heading icons'
      'navigation navigation navigation';
  }

  .header--top-center.drawer-menu {
    grid-template-areas: 'left-icons heading icons';
    grid-template-columns: 1fr auto 1fr;
  }

  .header:not(.header--middle-left, .header--middle-center) .header__inline-menu {
    margin-top: 1.05rem;
  }
}

.header *[tabindex='-1']:focus {
  outline: none;
}

.header__heading {
  margin: 0;
  line-height: 0;
}

.header > .header__heading-link {
  line-height: 0;
}

.header__heading,
.header__heading-link {
  grid-area: heading;
  justify-self: center;
}

.header__heading-link {
  display: inline-block;
  padding: 0.75rem;
  text-decoration: none;
  word-break: break-word;
}

.header__heading-link:hover .h2 {
  color: rgb(var(--color-foreground));
}

.header__heading-link .h2 {
  line-height: 1;
  color: rgba(var(--color-foreground), 0.75);
}

.header__heading-logo {
  height: auto;
  max-width: 100%;
}

.header__heading-logo-wrapper {
  width: 100%;
  display: inline-block;
  transition: width 0.3s cubic-bezier(0.52, 0, 0.61, 0.99);
}

@media screen and (max-width: 989px) {
  .header__heading,
  .header__heading-link {
    text-align: center;
  }

  .header--mobile-left .header__heading,
  .header--mobile-left .header__heading-link {
    text-align: left;
    justify-self: start;
  }

  .header--mobile-left {
    grid-template-columns: auto 2fr 1fr;
  }
}

@media screen and (min-width: 990px) {
  .header--middle-left .header__heading-link,
  .header--top-left .header__heading-link {
    margin-left: -0.75rem;
  }

  .header__heading,
  .header__heading-link {
    justify-self: start;
  }

  .header--middle-center .header__heading-link,
  .header--middle-center .header__heading {
    justify-self: center;
    text-align: center;
  }

  .header--top-center .header__heading-link,
  .header--top-center .header__heading {
    justify-self: center;
    text-align: center;
  }
}

/* Header icons */
.header__icons {
  display: flex;
  grid-area: icons;
  justify-self: end;
  padding-right: 0.8rem;
}

.header__icons .shopify-app-block {
  max-width: 4.4rem;
  max-height: 4.4rem;
  overflow: hidden;
}

.header__icon:not(.header__icon--summary),
.header__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icon {
  color: rgb(var(--color-foreground));
}

.header__icon span {
  height: 100%;
}

.header__icon .svg-wrapper {
  width: 44px;
  height: 44px;
}

.header__icon::after {
  content: none;
}

.header__icon:hover .icon,
.modal__close-button:hover .icon {
  transform: scale(1.07);
}

.header__icon .icon {
  height: 2rem;
  width: 2rem;
  fill: none;
  vertical-align: middle;
}

.header__icon,
.header__icon--cart .icon {
  height: 4.4rem;
  width: 4.4rem;
  padding: 0;
}

.header__icon--cart {
  position: relative;
  margin-right: -1.2rem;
}

.header__icon--menu[aria-expanded='true']::before {
  content: '';
  top: 100%;
  left: 0;
  height: calc(var(--viewport-height, 100vh) - (var(--header-bottom-position, 100%)));
  width: 100%;
  display: block;
  position: absolute;
  background: rgba(var(--color-foreground), 0.5);
}

.header__icon--account shop-user-avatar {
  --shop-avatar-size: 2.8rem;
}

details .header__icon-close {
  display: none;
}

details[open] .header__icon-close {
  display: inline-block;
}

account-icon {
  display: flex;
}

/* Search */
menu-drawer + .header__search {
  display: none;
}

.header > .header__search {
  grid-area: left-icons;
  justify-self: start;
}

.header--top-center.drawer-menu > .header__search {
  margin-left: 3.2rem;
}

.header--top-center header-drawer {
  grid-area: left-icons;
}

.header:not(.header--has-menu) * > .header__search {
  display: none;
}

.header__search {
  display: inline-flex;
  line-height: 0;
}

.header--top-center > .header__search {
  display: none;
}

.header--top-center * > .header__search {
  display: inline-flex;
}

@media screen and (min-width: 990px) {
  .header:not(.header--top-center) * > .header__search,
  .header--top-center > .header__search {
    display: inline-flex;
  }

  .header:not(.header--top-center) > .header__search,
  .header--top-center * > .header__search {
    display: none;
  }
}

details[open] > .search-modal {
  opacity: 1;
  animation: animateMenuOpen var(--duration-default) ease;
}

details[open] .modal-overlay {
  display: block;
}

details[open] .modal-overlay::after {
  position: absolute;
  content: '';
  background-color: rgb(var(--color-foreground), 0.5);
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
}

.search-modal {
  opacity: 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  min-height: calc(100% + var(--inputs-margin-offset) + (2 * var(--inputs-border-width)));
  height: 100%;
}

.search-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 5rem 0 1rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  position: relative;
}

.search-modal__content-bottom {
  bottom: calc((var(--inputs-margin-offset) / 2));
}

.search-modal__content-top {
  top: calc((var(--inputs-margin-offset) / 2));
}

.search-modal__form {
  width: 100%;
}

.search-modal__close-button {
  position: absolute;
  right: 0.3rem;
}

@media screen and (min-width: 750px) {
  .search-modal__close-button {
    right: 1rem;
  }

  .search-modal__content {
    padding: 0 6rem;
  }
}

@media screen and (min-width: 990px) {
  .search-modal__form {
    max-width: 74.2rem;
  }

  .search-modal__close-button {
    position: initial;
    margin-left: 0.5rem;
  }
}

/* Header menu drawer */
.header__icon--menu .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: transform 150ms ease, opacity 150ms ease;
}

details:not([open]) > .header__icon--menu .icon-close,
details[open] > .header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-close {
  visibility: hidden;
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-hamburger {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}

.js details > .header__submenu {
  opacity: 0;
  transform: translateY(-1.5rem);
}

details[open] > .header__submenu {
  animation: animateMenuOpen var(--duration-default) ease;
  animation-fill-mode: forwards;
  z-index: 1;
}

@media (prefers-reduced-motion) {
  details[open] > .header__submenu {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Header menu */
.header__inline-menu {
  margin-left: -1.2rem;
  grid-area: navigation;
  display: none;
}

.header--top-center .header__inline-menu,
.header--top-center .header__heading-link {
  margin-left: 0;
}

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
  }

  .header--top-center .header__inline-menu {
    justify-self: center;
  }

  .header--top-center .header__inline-menu > .list-menu--inline {
    justify-content: center;
  }

  .header--middle-left .header__inline-menu {
    margin-left: 0;
  }
}

.header__menu {
  padding: 0 1rem;
}

.header__menu-item {
  padding: 1.2rem;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.75);
}

.header__menu-item:hover {
  color: rgb(var(--color-foreground));
}

.header__menu-item span {
  transition: text-decoration var(--duration-short) ease;
}

.header__menu-item:hover span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

details[open] > .header__menu-item {
  text-decoration: underline;
}

details[open]:hover > .header__menu-item {
  text-decoration-thickness: 0.2rem;
}

details[open] > .header__menu-item .icon-caret {
  transform: rotate(180deg);
}

.header__active-menu-item {
  transition: text-decoration-thickness var(--duration-short) ease;
  color: rgb(var(--color-foreground));
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.header__menu-item:hover .header__active-menu-item {
  text-decoration-thickness: 0.2rem;
}

.header__submenu {
  transition: opacity var(--duration-default) ease, transform var(--duration-default) ease;
}

.global-settings-popup,
.header__submenu.global-settings-popup {
  border-radius: var(--popup-corner-radius);
  border-color: rgba(var(--color-foreground), var(--popup-border-opacity));
  border-style: solid;
  border-width: var(--popup-border-width);
  box-shadow: var(--popup-shadow-horizontal-offset) var(--popup-shadow-vertical-offset) var(--popup-shadow-blur-radius)
    rgba(var(--color-shadow), var(--popup-shadow-opacity));
  z-index: -1;
}

.header__submenu.list-menu {
  padding: 1rem 0;
}

.header__submenu .header__submenu {
  background-color: rgba(var(--color-foreground), 0.03);
  padding: 1rem 0;
  margin: 1rem 0;
}

.header__submenu .header__menu-item:after {
  right: 2rem;
}

.header__submenu .header__menu-item {
  justify-content: space-between;
  padding: 0.8rem 2rem;
}

.header__submenu .header__menu-item:hover {
  text-decoration-line: underline;
}

.header__menu-item .icon-caret {
  right: 0.8rem;
}

.header__submenu .icon-caret {
  flex-shrink: 0;
  margin-left: 1rem;
  position: static;
}

header-menu > details,
details-disclosure > details {
  position: relative;
}

@keyframes animateMenuOpen {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.overflow-hidden-mobile,
.overflow-hidden-tablet,
.overflow-hidden-desktop {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .overflow-hidden-mobile {
    overflow: auto;
  }
}

@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}

.badge {
  border: 1px solid transparent;
  border-radius: var(--badge-corner-radius);
  display: inline-block;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 0.5rem 1.3rem 0.6rem 1.3rem;
  text-align: center;
  background-color: rgb(var(--color-badge-background));
  border-color: rgba(var(--color-badge-border), var(--alpha-badge-border));
  color: rgb(var(--color-badge-foreground));
  word-break: break-word;
}

.gradient {
  background: rgb(var(--color-background));
  background: var(--gradient-background);
  background-attachment: fixed;
}

@media screen and (forced-colors: active) {
  .icon {
    color: CanvasText;
    fill: CanvasText !important;
  }

  .icon-close-small path {
    stroke: CanvasText;
  }
}

.ratio {
  display: flex;
  position: relative;
  align-items: stretch;
}

.ratio::before {
  content: '';
  width: 0;
  height: 0;
  padding-bottom: var(--ratio-percent);
}

.content-container {
  border-radius: var(--text-boxes-radius);
  border: var(--text-boxes-border-width) solid rgba(var(--color-foreground), var(--text-boxes-border-opacity));
  position: relative;
}

.content-container:after {
  content: '';
  position: absolute;
  top: calc(var(--text-boxes-border-width) * -1);
  right: calc(var(--text-boxes-border-width) * -1);
  bottom: calc(var(--text-boxes-border-width) * -1);
  left: calc(var(--text-boxes-border-width) * -1);
  border-radius: var(--text-boxes-radius);
  box-shadow: var(--text-boxes-shadow-horizontal-offset) var(--text-boxes-shadow-vertical-offset)
    var(--text-boxes-shadow-blur-radius) rgba(var(--color-shadow), var(--text-boxes-shadow-opacity));
  z-index: -1;
}

.content-container--full-width:after {
  left: 0;
  right: 0;
  border-radius: 0;
}

@media screen and (max-width: 749px) {
  .content-container--full-width-mobile {
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .content-container--full-width-mobile:after {
    display: none;
  }
}

.global-media-settings {
  position: relative;
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  overflow: visible !important;
  background-color: rgb(var(--color-background));
}

.global-media-settings:after {
  content: '';
  position: absolute;
  top: calc(var(--media-border-width) * -1);
  right: calc(var(--media-border-width) * -1);
  bottom: calc(var(--media-border-width) * -1);
  left: calc(var(--media-border-width) * -1);
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
  z-index: -1;
  pointer-events: none;
}

.global-media-settings--no-shadow {
  overflow: hidden !important;
}

.global-media-settings--no-shadow:after {
  content: none;
}

.global-media-settings img,
.global-media-settings iframe,
.global-media-settings model-viewer,
.global-media-settings video,
.global-media-settings .placeholder-svg {
  border-radius: calc(var(--media-radius) - var(--media-border-width));
}

.content-container--full-width,
.global-media-settings--full-width,
.global-media-settings--full-width img,
.global-media-settings--full-width video,
.global-media-settings--full-width iframe,
.global-media-settings--full-width .placeholder-svg {
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* check for flexbox gap in older Safari versions */
@supports not (inset: 10px) {
  .grid {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .grid__item {
    padding-left: var(--grid-mobile-horizontal-spacing);
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }

  @media screen and (min-width: 750px) {
    .grid {
      margin-left: calc(-1 * var(--grid-desktop-horizontal-spacing));
    }

    .grid__item {
      padding-left: var(--grid-desktop-horizontal-spacing);
      padding-bottom: var(--grid-desktop-vertical-spacing);
    }
  }

  .grid--gapless .grid__item {
    padding-left: 0;
    padding-bottom: 0;
  }

  @media screen and (min-width: 749px) {
    .grid--peek .grid__item {
      padding-left: var(--grid-mobile-horizontal-spacing);
    }
  }

  .product-grid .grid__item {
    padding-bottom: var(--grid-mobile-vertical-spacing);
  }

  @media screen and (min-width: 750px) {
    .product-grid .grid__item {
      padding-bottom: var(--grid-desktop-vertical-spacing);
    }
  }
}

.font-body-bold {
  font-weight: var(--font-body-weight-bold);
}

/* outline and border styling for Windows High Contrast Mode */
@media (forced-colors: active) {
  .button,
  .shopify-challenge__button,
  .customer button {
    border: transparent solid 1px;
  }

  .button:focus-visible,
  .button:focus,
  .button.focused,
  .shopify-payment-button__button--unbranded:focus-visible,
  .shopify-payment-button [role='button']:focus-visible,
  .shopify-payment-button__button--unbranded:focus,
  .shopify-payment-button [role='button']:focus {
    outline: solid transparent 1px;
  }

  .field__input:focus,
  .select__select:focus,
  .customer .field input:focus,
  .customer select:focus,
  .localization-form__select:focus.localization-form__select:after {
    outline: transparent solid 1px;
  }

  .localization-form__select:focus {
    outline: transparent solid 1px;
  }
}

.rte:after {
  clear: both;
  content: '';
  display: block;
}

.rte > *:first-child {
  margin-top: 0;
}

.rte > *:last-child {
  margin-bottom: 0;
}

.rte table {
  table-layout: fixed;
}

@media screen and (min-width: 750px) {
  .rte table td {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

.rte img {
  height: auto;
  max-width: 100%;
  border: var(--media-border-width) solid rgba(var(--color-foreground), var(--media-border-opacity));
  border-radius: var(--media-radius);
  box-shadow: var(--media-shadow-horizontal-offset) var(--media-shadow-vertical-offset) var(--media-shadow-blur-radius)
    rgba(var(--color-shadow), var(--media-shadow-opacity));
  margin-bottom: var(--media-shadow-vertical-offset);
}

.rte ul,
.rte ol {
  list-style-position: inside;
  padding-left: 2rem;
}

.rte li {
  list-style: inherit;
}

.rte li:last-child {
  margin-bottom: 0;
}

.rte a {
  color: rgba(var(--color-link), var(--alpha-link));
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness var(--duration-short) ease;
}

.rte a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.rte blockquote {
  display: inline-flex;
}

.rte blockquote > * {
  margin: -0.5rem 0 -0.5rem 0;
}

/* Image mask global styles */

.shape--mask {
  display: block;
  height: 0;
  width: 0;
}

.shape--arch {
  clip-path: url('#Shape-Arch');
}

.shape--blob {
  clip-path: polygon(var(--shape--blob-1));
}

.shape--chevronleft {
  clip-path: polygon(100% 0%, 85% 50%, 100% 100%, 15% 100%, 0% 50%, 15% 0%);
}

.shape--chevronright {
  clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
}

.shape--circle {
  clip-path: circle(closest-side);
}

.shape--diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape--parallelogram {
  clip-path: polygon(15% 0, 100% 0%, 85% 100%, 0% 100%);
}

.shape--round {
  clip-path: ellipse(45% 45% at 50% 50%);
}

/* Fixed background */
.animate--fixed {
  clip-path: inset(0);
}

.animate--fixed > img:not(.zoom):not(.deferred-media__poster-button),
.animate--fixed > svg:not(.zoom):not(.deferred-media__poster-button) {
  position: fixed;
  height: 100vh;
}

/* Zoom in image on scroll */
.animate--zoom-in {
  --zoom-in-ratio: 1;
}

.animate--zoom-in > img,
.animate--zoom-in > .svg-wrapper {
  transition: scale var(--duration-short) linear;
  scale: var(--zoom-in-ratio);
}

/* Animations */

@media (prefers-reduced-motion: no-preference) {
  .animate--ambient > img,
  .animate--ambient > .svg-wrapper {
    animation: animateAmbient 30s linear infinite;
  }

  @keyframes animateAmbient {
    0% {
      transform: rotate(0deg) translateX(1em) rotate(0deg) scale(1.2);
    }
    100% {
      transform: rotate(360deg) translateX(1em) rotate(-360deg) scale(1.2);
    }
  }

  .scroll-trigger.animate--fade-in,
  .scroll-trigger.animate--slide-in {
    opacity: 0.01;
  }

  .scroll-trigger.animate--slide-in {
    transform: translateY(2rem);
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--fade-in {
    opacity: 1;
    animation: var(--animation-fade-in);
  }

  .scroll-trigger:not(.scroll-trigger--offscreen).animate--slide-in {
    animation: var(--animation-slide-in);
    animation-delay: calc(var(--animation-order) * 75ms);
  }

  .scroll-trigger.scroll-trigger--design-mode.animate--fade-in,
  .scroll-trigger.scroll-trigger--design-mode.animate--slide-in,
  .scroll-trigger.scroll-trigger--design-mode .slider,
  .scroll-trigger:not(.scroll-trigger--offscreen).scroll-trigger--cancel {
    opacity: 1;
    animation: none;
    transition: none;
    transform: none;
  }

  .scroll-trigger.scroll-trigger--design-mode.animate--slide-in {
    transform: translateY(0);
  }

  @keyframes slideIn {
    from {
      transform: translateY(2rem);
      opacity: 0.01;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0.01;
    }
    to {
      opacity: 1;
    }
  }
}

/* Element Hovers: Vertical Lift, 3d Lift */

@media (prefers-reduced-motion: no-preference) and (hover: hover) {
  .animate--hover-3d-lift .card-wrapper .card--card,
  .animate--hover-3d-lift .card-wrapper .card--standard .card__inner,
  .animate--hover-3d-lift .button:not(.button--tertiary),
  .animate--hover-3d-lift .shopify-challenge__button,
  .animate--hover-3d-lift .customer button,
  .animate--hover-3d-lift .shopify-payment-button__button,
  .animate--hover-3d-lift .deferred-media .deferred-media__poster-button {
    transition: transform var(--duration-long) ease, box-shadow var(--duration-long) ease;
    transform-origin: center;
  }

  .animate--hover-3d-lift .card-wrapper:hover .card--card,
  .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__inner,
  .animate--hover-3d-lift .button:not(.button--tertiary):not([disabled]):hover,
  .animate--hover-3d-lift .shopify-challenge__button:not([disabled]):hover,
  .animate--hover-3d-lift .customer button:not([disabled]):hover,
  .animate--hover-3d-lift .shopify-payment-button__button:hover,
  .animate--hover-3d-lift .deferred-media:hover .deferred-media__poster-button {
    transition: transform var(--duration-extended) ease, box-shadow var(--duration-long) ease; /* Slow the card transition speed while hover is active. */
    transform: rotate(1deg);
    box-shadow: -1rem -1rem 1rem -1rem rgba(0, 0, 0, 0.05), 1rem 1rem 1rem -1rem rgba(0, 0, 0, 0.05),
      0 0 0.5rem 0 rgba(255, 255, 255, 0), 0 2rem 3.5rem -2rem rgba(0, 0, 0, 0.5);
  }

  .animate--hover-3d-lift .deferred-media:hover .deferred-media__poster-button {
    transform: translate(-50%, -50%) scale(1.05); /* Apply a specialized transform to the video play button. */
  }

  .animate--hover-3d-lift .collage__item .card-wrapper:hover .card--card,
  .animate--hover-3d-lift .collage__item .card-wrapper:hover .card--standard .card__inner {
    transform: rotate(0.5deg); /* Less intense rotation for collage items. */
  }

  .animate--hover-3d-lift .product-grid .grid__item:hover,
  .animate--hover-3d-lift .collection-list .grid__item:hover,
  .animate--hover-3d-lift .collage__item:hover,
  .animate--hover-3d-lift .blog-articles .article:hover,
  .animate--hover-3d-lift .complementary-slide li:hover {
    z-index: 2; /* Make sure the hovered card is the topmost card. */
  }

  .animate--hover-3d-lift .product-grid {
    isolation: isolate; /* Ensure z-index changes here don't negatively effect other UI stacking. */
  }

  .animate--hover-3d-lift .card-wrapper .card--shape.card--standard:not(.card--text) .card__inner {
    box-shadow: none;
    transition: transform var(--duration-long) ease, filter var(--duration-long) ease;
  }

  .animate--hover-3d-lift .card-wrapper:hover .card--shape.card--standard:not(.card--text) .card__inner {
    transition: transform calc(2 * var(--duration-extended)) ease, filter var(--duration-long) ease; /* Slow the card transition speed while hover is active. */
    filter: drop-shadow(0rem 2rem 2rem rgba(0, 0, 0, 0.15)) drop-shadow(0rem 1rem 1rem rgba(0, 0, 0, 0.15));
  }

  .animate--hover-3d-lift .card-wrapper:hover .card--card:after,
  .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__inner:after,
  .animate--hover-3d-lift
    .card-wrapper:hover
    .card--shape.card--standard:not(.card--text)
    .card__inner
    .card__media:before {
    background-image: var(--easter-egg);
    background-size: 250px 250px;
    mix-blend-mode: color-dodge;
    pointer-events: none;
    z-index: 2;
  }

  .animate--hover-3d-lift
    .card-wrapper:hover
    .card--shape.card--standard:not(.card--text)
    .card__inner
    .card__media:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .animate--hover-3d-lift .card-wrapper .card--card:before,
  .animate--hover-3d-lift .card-wrapper .card--standard .card__media:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: background-position calc(2 * var(--duration-extended)) ease, opacity var(--duration-default) ease;
    mix-blend-mode: overlay;
    background-size: 400% 100%;
    background-position: 90% 0;
    background-repeat: no-repeat;
    background-image: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 1) 50%,
      rgba(255, 255, 255, 0) 55%
    );
  }

  .animate--hover-3d-lift .card-wrapper:hover .card--card:before,
  .animate--hover-3d-lift .card-wrapper:hover .card--standard .card__media:after {
    opacity: 0.2;
    transition: background-position 6s ease, opacity var(--duration-long) ease;
    background-position: left;
    z-index: 2;
  }

  :root {
    --easter-egg: none;
    --sparkle: url('./sparkle.gif');
  }

  .animate--hover-vertical-lift .button:not(.button--tertiary),
  .animate--hover-vertical-lift .shopify-challenge__button,
  .animate--hover-vertical-lift .customer button,
  .animate--hover-vertical-lift .shopify-payment-button__button {
    transition: transform var(--duration-default) var(--ease-out-slow);
  }

  .animate--hover-vertical-lift .card-wrapper .card--card,
  .animate--hover-vertical-lift .card-wrapper .card--standard .card__inner {
    transition: transform var(--duration-medium) var(--ease-out-slow);
  }

  .animate--hover-vertical-lift .card-wrapper:hover .card--card,
  .animate--hover-vertical-lift .card-wrapper:hover .card--standard .card__inner {
    transform: translateY(-0.75rem);
  }

  .animate--hover-vertical-lift .card-wrapper:active .card--card,
  .animate--hover-vertical-lift .card-wrapper:active .card--standard .card__inner {
    transform: translateY(-0.5rem);
  }

  .animate--hover-vertical-lift .button:not(.button--tertiary):not([disabled]):hover,
  .animate--hover-vertical-lift .shopify-challenge__button:not([disabled]):hover,
  .animate--hover-vertical-lift .customer button:not([disabled]):hover,
  .animate--hover-vertical-lift .shopify-payment-button__button:hover {
    transform: translateY(-0.25rem);
  }

  .animate--hover-vertical-lift .button:not(.button--tertiary):not([disabled]):active,
  .animate--hover-vertical-lift .shopify-challenge__button:not([disabled]):active,
  .animate--hover-vertical-lift .customer button:not([disabled]):active,
  .animate--hover-vertical-lift .shopify-payment-button__button:active {
    transform: translateY(0);
  }

  .animate--hover-vertical-lift .button:not([disabled]):hover:after,
  .animate--hover-vertical-lift .customer button:not([disabled]):hover:after,
  .animate--hover-vertical-lift .shopify-payment-button__button:not([disabled]):hover:after {
    --border-offset: 0.3px; /* Default is 1.3px as defined above in this file. This removes 1px to prevent the border from growing on buttons when this effect is on.  */
    box-shadow: 0 0 0 calc(var(--buttons-border-width) + var(--border-offset))
        rgba(var(--color-button-text), var(--border-opacity)),
      0 0 0 var(--buttons-border-width) rgba(var(--color-button), var(--alpha-button-background));
  }

  .animate--hover-vertical-lift .button:not([disabled]).button--secondary:hover:after {
    --border-offset: 0px; /* Prevent the border from growing on buttons when this effect is on. */
  }
}

/* Loading spinner */
.loading__spinner {
  position: absolute;
  z-index: 1;
  width: 1.8rem;
}

.loading__spinner {
  width: 1.8rem;
  display: inline-block;
}

.spinner {
  animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

.path {
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  transform-origin: center;
  stroke: rgb(var(--color-foreground));
  animation: dash 1.4s ease-in-out infinite;
}

@media screen and (forced-colors: active) {
  .path {
    stroke: CanvasText;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 280;
  }
  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(450deg);
  }
}

.loading__spinner:not(.hidden) + .cart-item__price-wrapper,
.loading__spinner:not(.hidden) ~ cart-remove-button {
  opacity: 50%;
}

.loading__spinner:not(.hidden) ~ cart-remove-button {
  pointer-events: none;
  cursor: default;
}

/* Progress bar */
.progress-bar-container {
  width: 100%;
  margin: auto;
}

.progress-bar {
  height: 0.13rem;
  width: 100%;
}

.progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(var(--color-foreground));
  animation: indeterminateAnimation var(--duration-extra-longer) infinite ease-in-out;
  transform-origin: 0;
}

.progress-bar .progress-bar-value {
  display: block;
}

@keyframes indeterminateAnimation {
  0% {
    transform: translateX(-20%) scaleX(0);
  }
  40% {
    transform: translateX(30%) scaleX(0.7);
  }
  100% {
    transform: translateX(100%) scaleX(0);
  }
}
/* ——— Boucle d’Or Paris — Thème Luxe Éditorial ——— */
/* Palette principale : ivoire nacré #FCFAF6 / or neutre #C9A44C / or clair #D6B765 / noir doux #111111 */

/* ===== STRUCTURE GÉNÉRALE ===== */
body {
  background-color: #FCFAF6;
  color: #111111;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* Titres (toutes tailles) */
h1, h2, h3, h4, .product__title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: #111111;
  letter-spacing: -0.01em;
  margin-top: 0;
  margin-bottom: 0.5em;
}

/* Grand titre éditorial (H1) */
h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  text-transform: none;
}

/* Sous-titres (H2, H3) */
h2 {
  font-size: 1.9rem;
  line-height: 1.3;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 400;
  color: #2b2b2b;
}

/* Paragraphes et texte */
p, li {
  font-size: 1rem;
  color: #111111;
  line-height: 1.7;
  margin-bottom: 1.2em;
}

/* ===== LIENS ===== */
a {
  color: #111111;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #C9A44C; /* survol doré doux */
}

/* ===== BOUTONS ===== */
.button, .shopify-payment-button__button {
  background-color: #121212;
  color: #FFFFFF;
  border: 1px solid #121212;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 12px 28px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.button:hover, .shopify-payment-button__button:hover {
  background-color: #C9A44C !important;
  border-color: #C9A44C !important;
  color: #FFFFFF !important;
  box-shadow: 0 0 8px rgba(201,164,76,0.4);
}

/* Bouton secondaire (contour seulement) */
.button--secondary {
  background-color: transparent;
  color: #111111;
  border: 1px solid #111111;
}
.button--secondary:hover {
  background-color: #C9A44C;
  color: #FFFFFF;
}

/* ===== CARTES PRODUITS ===== */
.card {
  background-color: #FFFFFF;
  border: 1px solid #EAE6DD;
  border-radius: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

/* Nom du produit */
.card__heading {
  font-family: "Cormorant Garamond", serif;
  color: #111111;
  font-weight: 500;
}

/* Prix */
.price, .price-item {
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ===== SÉPARATEURS ===== */
hr, .divider {
  border-color: #D6B765 !important;
  opacity: 0.5;
  margin: 2em 0;
}

/* ===== EN-TÊTE & LOGO ===== */
.header {
  background-color: #FCFAF6;
  border-bottom: 1px solid #EDE9E1;
}
.header__heading-logo {
  max-width: 220px;
}
@media (max-width: 768px) {
  .header__heading-logo {
    max-width: 160px;
  }
}

/* Menu de navigation */
.header__menu-item {
  color: #111111;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.header__menu-item:hover {
  color: #C9A44C;
}

/* ===== PIED DE PAGE ===== */
.footer {
  background-color: #FFFFFF;
  border-top: 1px solid #EDE9E1;
  color: #111111;
  font-size: 0.9rem;
  line-height: 1.6;
}
.footer a:hover {
  color: #C9A44C;
}

/* ===== FORMULAIRES ===== */
input, textarea, select {
  border: 1px solid #EDE9E1;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: "Inter", sans-serif;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus, select:focus {
  border-color: #C9A44C;
  outline: none;
}

/* ===== SECTIONS ===== */
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* ===== ANNONCE ===== */
.announcement-bar__message {
  background-color: #FCFAF6;
  color: #111111;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 0.5rem 0;
  text-transform: uppercase;
}

/* ===== DÉTAILS PRODUIT ===== */
.product__title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.product__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #111111;
}
.product-form__buttons {
  margin-top: 1.5em;
}

/* ===== VARIANTES (pills) ===== */
.product-form__input input[type="radio"]:checked + label {
  border-color: #C9A44C;
  box-shadow: 0 0 0 1px #C9A44C inset;
}
.product-form__input label:hover {
  border-color: #D6B765;
}

/* ===== SCROLL & DÉTAILS ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #C9A44C;
  border-radius: 10px;
}

/* ===== ANIMATIONS DOUCES ===== */
* {
  transition: all 0.2s ease-in-out;
}
/* ——— Boucle d’Or Paris — Optimisation Mobile ——— */
@media (max-width: 768px) {

  /* Marges plus resserrées pour éviter les “blancs vides” */
  body {
    font-size: 15px;
    line-height: 1.65;
    padding: 0 10px;
  }

  /* Titres redimensionnés harmonieusement */
  h1, .product__title {
    font-size: 1.9rem;
    line-height: 1.3;
    margin-bottom: 0.4em;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h3 {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  /* Paragraphes plus aérés et confortables à lire */
  p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1em;
  }

  /* Espacements de section */
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Boutons plus larges pour le tactile */
  .button, .shopify-payment-button__button {
    padding: 14px 24px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  /* Réduction logo pour conserver l’équilibre */
  .header__heading-logo {
    max-width: 160px;
  }

  /* Cartes produits : suppression du léger “hover” (inutile sur mobile) */
  .card:hover {
    transform: none;
    box-shadow: none;
  }

  /* Formulaires : plus grands champs tactiles */
  input, textarea, select {
    font-size: 0.95rem;
    padding: 12px 14px;
  }

  /* Footer : texte centré et plus petit */
  .footer {
    text-align: center;
    font-size: 0.85rem;
  }
}
/* ——— Boucle d’Or Paris — Identité typographique ——— */

/* Titres et éléments de prestige */
h1, h2, h3, h4, h5, h6,
.product__title,
.header__menu-item,
.footer__menu-item,
.card__heading,
.section-header__title,
blockquote {
  font-family: 'Gilda Display', serif !important;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #111111;
}

/* Texte courant et interfaces */
body, p, li, a, input, textarea, button, label, span {
  font-family: 'Lora', serif; /* Remplace par 'Source Sans Pro' ou 'Josefin Sans' selon ton choix */
  letter-spacing: 0.01em;
  font-weight: 400;
  color: #111111;
}
/* ——— Boucle d’Or Paris — Survol doré du menu (Dawn v13+) ——— */

/* Survol doré sur les liens du menu principal */
.header__menu-item a,
.header__submenu-item a,
.header__menu-item {
  color: #111111;
  transition: color 0.25s ease;
}

.header__menu-item a:hover,
.header__submenu-item a:hover,
.header__menu-item:hover {
  color: #C9A44C !important; /* ton doré Hermès */
}

/* Soulignement discret au survol (effet couture) */
.header__menu-item a:hover::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #C9A44C;
  margin-top: 4px;
  transition: all 0.3s ease;
}
/* ——— Boucle d’Or Paris — Harmonisation pages statiques (titres + texte) ——— */

/* Conteneur de lecture : largeur idéale magazine (desktop) */
.template-page .page-width,
.template-article .page-width,
.template-collection .page-width {
  max-width: 980px;      /* largeur globale de la zone */
  margin-left: auto;
  margin-right: auto;
}

/* Colonne de texte : confort de lecture (≈70ch) */
.template-page .rte,
.template-page .page-content,
.template-page .rich-text__text {
  max-width: 72ch;       /* limite la longueur des lignes */
  margin-left: auto;
  margin-right: auto;
}

/* Titre principal de page (H1) : sculptural mais sobre */
.template-page .main-page-title,
.template-page .page-title,
.template-article .article-template__title {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 46px;       /* ajuste à 44–50 si tu veux plus/moins d’impact */
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 14px;
  color: #111111;
  text-align: left;      /* passe à center si tu veux un effet plus cérémonial */
}

/* Filet doré discret sous le titre (effet couture) */
.template-page .main-page-title::after,
.template-page .page-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: #C9A44C;   /* or neutre Hermès */
  margin-top: 14px;
  margin-bottom: 18px;
  opacity: .65;
}

/* Sous-titres internes (rich text headings) */
.template-page .rich-text__heading,
.template-page h2 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 30px;       /* ajuste à 28–32 selon tes visuels */
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 28px auto 10px;
  color: #111111;
}

/* Paragraphe : taille confortable + respiration */
.template-page .rte p,
.template-page .page-content p,
.template-page .rich-text__text p {
  font-family: 'Lora', serif;  /* ta police de corps */
  font-size: 17px;             /* +1 par rapport à 16 pour lisibilité luxe */
  line-height: 1.8;
  letter-spacing: 0.005em;
  color: #111111;
  margin: 0 0 14px 0;
}

/* Interlignage des listes et citations */
.template-page .rte li { line-height: 1.8; }
.template-page blockquote {
  font-family: 'Gilda Display', serif;
  font-size: 20px;
  line-height: 1.6;
  color: #2b2b2b;
  border-left: 2px solid #D6B765; /* or clair Dior */
  padding-left: 14px;
  margin: 18px auto;
  max-width: 70ch;
}

/* Espacements de section (moins de vide, plus de rythme) */
.template-page .section {
  padding-top: 44px;
  padding-bottom: 44px;
}

/* Newsletter sur page : resserrer pour ne pas “casser” la lecture */
.section-newsletter, .newsletter, .newsletter-section {
  padding-top: 36px !important;
  padding-bottom: 36px !important;
}

/* ——— Responsive mobile ——— */
@media (max-width: 768px) {
  .template-page .page-width { padding: 0 14px; }
  .template-page .main-page-title,
  .template-page .page-title { font-size: 32px; line-height: 1.25; }
  .template-page .rich-text__heading, .template-page h2 { font-size: 24px; }
  .template-page .rte p,
  .template-page .page-content p { font-size: 15.5px; line-height: 1.75; }
  .template-page .main-page-title::after { margin-top: 10px; margin-bottom: 12px; }
  .template-page .section { padding-top: 36px; padding-bottom: 36px; }
}
/* ——— Boucle d’Or Paris — Pages statiques : mise en page + typos ——— */

/* Largeur globale confortable */
.page-width {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

/* Colonne de lecture : ~70 caractères */
.rte, .page-content, .rich-text__text {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

/* Titre principal de page (H1) */
.main-page-title, .page-title, .title--page {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 46px !important;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 14px;
  color: #111111;
}

/* Filet doré SOUS le H1 — placement correct via wrapper Dawn */
.title-wrapper-with-link .main-page-title::after,
.title-wrapper-with-link .page-title::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  background-color: #C9A44C;
  margin-top: 14px;
  margin-bottom: 18px;
  opacity: 0.65;
  margin-left: 0; /* aligné au bord gauche du titre */
}
/* Variante centrée si le H1 est centré dans l’éditeur */
.title-wrapper-with-link.text-center .main-page-title::after,
.title-wrapper-with-link.text-center .page-title::after {
  margin-left: auto;
  margin-right: auto;
}

/* Sous-titres (H2/H3) dans le contenu */
.rte h2, .rte h3, .page-content h2, .page-content h3, .rich-text__heading {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #111111;
  margin: 30px auto 12px;
}
.rte h2, .page-content h2, .rich-text__heading { font-size: 32px; }  /* 30–34 selon goût */
.rte h3, .page-content h3 { font-size: 24px; }                       /* 22–26 possible */

/* Filet doré discret sous les H2 du contenu (pas le H1) */
.rte h2::after, .page-content h2::after, .rich-text__heading::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  background: #C9A44C;
  margin-top: 10px;
  opacity: .65;
}

/* Corps de texte */
.rte p, .page-content p, .rich-text__text p, body p {
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.005em;
  color: #111111;
  margin: 0 0 14px;
}

/* Texte en gras dans les paragraphes */
.rte strong, .rte b, .page-content strong, .page-content b {
  font-family: 'Gilda Display', serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #111111;
}

/* Premier paragraphe légèrement “lead” */
.rte p:first-of-type, .page-content p:first-of-type {
  font-size: 16.5px;
  line-height: 1.85;
}

/* Formulaire de contact */
.contact form input,
.contact form textarea,
.contact .field__input {
  font-family: 'Lora', serif;
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid #EDE9E1;
  background-color: #FFFFFF;
}
.contact form button, .contact .button {
  background-color: #121212;
  color: #FFFFFF;
  border: 1px solid #121212;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 12px 24px;
  transition: all .25s ease;
}
.contact form button:hover, .contact .button:hover {
  background-color: #C9A44C !important;
  border-color: #C9A44C !important;
  color: #FFFFFF !important;
}

/* ——— Boucle d’Or Paris — Formulaire de contact centré et affiné ——— */

.contact form {
  max-width: 72ch;           /* largeur identique à la colonne de texte */
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* Aligne aussi le texte explicatif et le titre sur la même largeur */
.contact .page-width,
.template-page--contact .page-width {
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}

/* Champs à 100 % de la nouvelle largeur */
.contact form input,
.contact form textarea,
.contact .field__input {
  width: 100%;
  box-sizing: border-box;
}

/* Resserre légèrement l'espacement vertical pour plus d’équilibre */
.contact form {
  padding-top: 10px;
}

/* Mobile : reste fluide mais centré */
@media (max-width: 768px) {
  .contact form {
    max-width: 90%;
  }
}

/* Responsive mobile */
@media (max-width: 768px) {
  .page-width { padding: 0 14px; }
  .main-page-title, .page-title, .title--page { font-size: 32px !important; line-height: 1.25; }
  .rte h2, .page-content h2, .rich-text__heading { font-size: 26px; }
  .rte h3, .page-content h3 { font-size: 20px; }
  .rte p, .page-content p { font-size: 15.5px; line-height: 1.75; }
}
/* === PATCH Boucle d’Or Paris — Bold lisible + filet doré fiable === */

/* 1) GRAS lisible : utiliser Lora (vrai bold), pas Gilda qui n'a pas de 700 */
.rte strong, .rte b,
.page-content strong, .page-content b {
  font-family: 'Lora', serif !important;
  font-weight: 700 !important;    /* vrai gras */
  font-size: 18px;
  letter-spacing: 0;               /* pas de tracking négatif sur du bold */
  color: #111111;
}

/* Option : si tu veux un "sous-titre" style magazine quand le gras est isolé
   (ex. un paragraphe qui commence par une ligne en <strong>) */
.rte p > strong:first-child {
  display: inline-block;
  margin-bottom: 6px;
}

/* 2) FILET DORÉ SOUS LE TITRE PRINCIPAL (H1) — couvrir toutes les variantes Dawn */
.title-wrapper-with-link .main-page-title,
.title-wrapper-with-link .page-title,
.title-wrapper h1,
.page-title,
.main-page-title {
  position: relative; /* pour ancrer le pseudo-élément */
}

/* H1 underline */
.title-wrapper-with-link .main-page-title::after,
.title-wrapper-with-link .page-title::after,
.title-wrapper h1::after,
.page-title::after,
.main-page-title::after {
  content: "";
  display: block;
  width: 140px;                 /* longueur souhaitée */
  height: 1px;
  background-color: #C9A44C;   /* or */
  margin-top: 14px;
  margin-bottom: 18px;
  opacity: 0.65;
}

/* ——— Boucle d’Or Paris — Titre + filet doré centré ——— */

/* Centrage du titre principal sur toutes les pages */
.title-wrapper-with-link,
.title-wrapper,
.main-page-title,
.page-title {
  text-align: center !important;
}

/* Filet doré centré et harmonisé */
.title-wrapper-with-link .main-page-title::after,
.title-wrapper-with-link .page-title::after,
.title-wrapper h1::after,
.page-title::after,
.main-page-title::after {
  content: "";
  display: block;
  width: 140px;              /* allongé pour effet joaillerie */
  height: 1px;
  background-color: #C9A44C; /* or doux */
  margin: 14px auto 22px;    /* auto = centrage horizontal */
  opacity: 0.65;
}


/* 4) MOBILE : garder lisible mais hiérarchie intacte */
@media (max-width: 768px) {
  .rte strong, .rte b,
  .page-content strong, .page-content b { font-size: 17px; }
  .title-wrapper-with-link .main-page-title::after,
  .title-wrapper-with-link .page-title::after,
  .title-wrapper h1::after,
  .page-title::after,
  .main-page-title::after { width: 72px; }
}
/* ——— Boucle d’Or Paris — Ajustement typographique harmonisé ——— */

/* Titre principal de page (H1) : plus sobre et proportionné au logo */
.main-page-title, .page-title, .title--page, .title-wrapper h1 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 38px !important;   /* ↓ au lieu de 46px */
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 24px;
  margin-bottom: 14px;
  color: #111111;
  text-align: center;
}

/* Filet doré centré sous le titre (inchangé) */
.title-wrapper-with-link .main-page-title::after,
.title-wrapper-with-link .page-title::after,
.title-wrapper h1::after,
.page-title::after,
.main-page-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  background-color: #C9A44C;
  margin: 12px auto 18px;
  opacity: 0.65;
}

/* Sous-titres (H2/H3) : ajustés pour suivre la hiérarchie */
.rte h2, .page-content h2, .rich-text__heading {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 28px;             /* ↓ au lieu de 32px */
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #111111;
  margin: 28px auto 10px;
}
.rte h3, .page-content h3 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 22px;             /* ↓ au lieu de 24px */
  line-height: 1.35;
  color: #111111;
}

/* Mobile : on garde une hiérarchie équilibrée */
@media (max-width: 768px) {
  .main-page-title, .page-title, .title--page, .title-wrapper h1 {
    font-size: 30px !important;
  }
  .rte h2, .page-content h2, .rich-text__heading {
    font-size: 24px;
  }
  .rte h3, .page-content h3 {
    font-size: 19px;
  }
}
/* ——— Boucle d’Or Paris — Resserrement vertical avant le formulaire de contact ——— */

/* Réduit l’espace entre le texte et le formulaire (≈ -70 %) */
.contact form {
  margin-top: 20px !important;   /* au lieu d’environ 60–70px par défaut */
}

/* Pour certains thèmes, Shopify met le padding sur le conteneur section */
.section.contact, 
.template-page--contact .section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* ——— Boucle d’Or Paris — Réduire l'espace avant le formulaire de contact ——— */

/* 1) Quand un bloc de texte (.rte) est suivi du formulaire (.contact) */
.rte + .contact {
  margin-top: 10px !important;   /* ~ -70% vs gap par défaut */
}

/* 2) Conteneurs internes du formulaire qui ajoutent un décalage */
.contact,
.contact .grid,
.contact form {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 3) Certaines versions de Dawn mettent le padding sur la section */
.template-page .section,
.template-page--contact .section {
  padding-top: 24px !important;   /* valeur douce globale */
}

/* 4) Par sécurité : aligner l’intro + le form sur la même largeur */
.template-page--contact .page-width { max-width: 72ch; margin: 0 auto; }
.template-page--contact .contact form { max-width: 72ch; margin: 16px auto 0; }

/* === Boucle d’Or Paris — Footer harmonisé et centré === */

.footer-bdp {
  border-top: 1px solid rgba(201,164,76,0.35);
  background-color: #FCFAF6;
  padding: 50px 0 20px;
}

.footer-bdp__columns {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: left;
}
/* — Boucle d’Or Paris — Footer aéré : plus d'espace entre et autour des colonnes — */
.footer-bdp,
.footer-bdp__columns {
  display: flex;
  justify-content: space-evenly !important; /* distribue l’espace équitablement */
  align-items: flex-start;
  flex-wrap: nowrap;

  /* largeur totale alignée à la grille produits */
  max-width: var(--bdp-grid-width);
  margin-left: auto !important;
  margin-right: auto !important;

  /* espace latéral et entre colonnes */
  padding-left: 100px;   /* marge extérieure gauche */
  padding-right: 100px;  /* marge extérieure droite */
  gap: 140px;           /* espace entre les trois blocs */
}

/* sur petits écrans : on empile, mais toujours centré */
@media screen and (max-width: 900px) {
  .footer-bdp__columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }
}

.footer-bdp__col {
  flex: 1 1 240px;
  min-width: 200px;
}

.footer-bdp__col h4 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #111;
  margin-bottom: 6px;
}

.footer-bdp__desc {
  font-family: 'Lora', serif;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin: 0 0 10px;
}

.footer-bdp__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bdp__col li {
  margin: 6px 0;
}

.footer-bdp__col a {
  color: #111;
  text-decoration: none;
  transition: color .25s ease;
}

.footer-bdp__col a:hover {
  color: #C9A44C;
}

/* Séparation douce avant le footer natif */
footer.footer {
  border-top: 1px solid rgba(201,164,76,0.25);
  margin-top: 0;
  padding-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-bdp__columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .footer-bdp__col { max-width: 280px; }
}
/* ——— Boucle d’Or Paris — Fiche produit luxe ——— */

/* A. Grille produit : médias + infos (desktop) */
@media (min-width: 990px) {
  .product .grid { align-items: start; gap: 36px; }
  .product__media-wrapper { flex: 0 0 60%; max-width: 60%; }
  .product__info-wrapper  { flex: 0 0 40%; max-width: 40%; position: sticky; top: 96px; }
}

/* B. Galerie média en grille éditoriale (1 grande + 2 colonnes) */
.product__media-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 990px) {
  .product__media-list { grid-template-columns: 1fr 1fr; }
  .product__media-item:first-child { grid-column: 1 / -1; } /* première image pleine largeur */
}

/* C. Bloc narratif : titre centré + texte à gauche, largeur confortable */
.rich-text .rich-text__heading { text-align: center !important; }
.rich-text .rich-text__text { text-align: left !important; max-width: 72ch; margin: 0 auto; }
.rich-text.section { padding-top: 72px; padding-bottom: 36px; }

/* D. Titre/infos produit : hiérarchie apaisée */
.product .product__title { font-family:'Gilda Display',serif; font-size: 36px; line-height:1.2; margin-bottom:10px; }
.product .price__regular { font-family:'Lora',serif; font-size:18px; color:#444; }

/* E. Variantes “pills” élégantes */
.product .product-form__input input[type="radio"] + label,
.product .product-form__input input[type="radio"] + .button {
  border: 1px solid #E2DDCF;
  background: #FFF;
  border-radius: 999px;
  padding: 6px 12px;
  transition: all .2s ease;
}
.product .product-form__input input[type="radio"]:checked + label,
.product .product-form__input input[type="radio"]:checked + .button {
  border-color: #C9A44C;
  box-shadow: 0 0 0 1px rgba(201,164,76,.35) inset;
}
.product .product-form__input label:hover { border-color:#C9A44C; }

/* F. Bouton “Ajouter au panier” façon maison */
.product-form__submit, .product .product-form__buttons .button {
  background:#111 !important;
  color:##ffffff !important;
  border:1px solid #111;
  border-radius: 12px;
  height: 48px;
  letter-spacing:.06em;
  text-transform: uppercase;
  transition: all .25s ease;
}
.product-form__submit:hover, .product .product-form__buttons .button:hover {
  background:#C9A44C !important;
  border-color:#C9A44C !important;
  color:#111 !important;
}
/* masque le bouton Shop Pay dynamique si encore visible */
.shopify-payment-button { display:none !important; }

/* G. Micro-respirations */
.product__info-container .share-button,
.product__info-container .product__share { margin-top: 10px; opacity:.75; }
.rte p { margin-bottom: 14px; }

/* H. Mobile : confort et rythme */
@media (max-width: 989px) {
  .product__info-wrapper { position: static; }
  .product__title { font-size: 30px; }
  .product__media-list { grid-template-columns: 1fr; }
}
/* — Boucle d’Or Paris — Fiche produit : finitions rapides — */

/* A. Colonne infos “sticky” + proportions propres */
@media (min-width: 990px) {
  .product .grid { align-items: start; gap: 36px; }
  .product__media-wrapper { flex: 0 0 60%; max-width: 60%; }
  .product__info-wrapper  { flex: 0 0 40%; max-width: 40%; position: sticky; top: 96px; }
}

/* B. Titre/infos apaisés */
.product .product__title { font-family:'Gilda Display',serif; font-size: 36px; line-height:1.2; margin-bottom:10px; }
.product .price__regular { font-family:'Lora',serif; font-size:18px; color:#444; }
.product .product__tax { color:#777; font-size:12px; }

/* C. Variantes pill élégantes */
.product .product-form__input input[type="radio"] + label {
  border: 1px solid #E2DDCF; background:#FFF; border-radius: 999px; padding: 6px 12px; transition: all .2s ease;
}
.product .product-form__input input[type="radio"]:checked + label { border-color:#C9A44C; box-shadow:0 0 0 1px rgba(201,164,76,.35) inset; }
.product .product-form__input label:hover { border-color:#C9A44C; }

/* D. CTA plein largeur, luxe */
.shopify-payment-button { display:none !important; }      /* masque Shop Pay */
.product-form__submit {
  width:100% !important; height:48px; border-radius:12px;
  background:#111 !important; color:#fff !important; border:1px solid #111;
  text-transform:uppercase; letter-spacing:.06em; transition:all .25s ease;
}
.product-form__submit:hover { background:#C9A44C !important; border-color:#C9A44C !important; color:#111 !important; }

/* E. Bloc narratif : titre centré / texte à gauche + respiration */
.rich-text .rich-text__heading { text-align:center !important; }
.rich-text .rich-text__text { text-align:left !important; max-width:72ch; margin:0 auto; }
.rich-text.section { padding-top:72px; padding-bottom:36px; }

/* F. Micro-détails */
.share-button, .product__share { opacity:.65; font-size:12px; }
.rte p { margin-bottom:14px; }

/* Mobile */
@media (max-width: 989px) {
  .product__info-wrapper { position: static; }
  .product .product__title { font-size: 30px; }
}
/* ——— Boucle d’Or Paris — Fiche produit : finitions demandées ——— */

/* >>> Réglage global : largeur de référence pour toutes les sections éditoriales */
:root { --bdp-section-width: 1100px; }   /* ajuste à 1040/1120 si besoin */

/* 1) Sous-titres des rangées réductibles (accordéons) : plus grands, au-dessus du corps */
.collapsible-content summary,
.collapsible-content .accordion__title,
.collapsible-content .summary__title,
.collapsible-content .collapsible-content__heading {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  font-size: 20px;            /* ↑ augmente si tu veux 22px */
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #111111;
}
.collapsible-content .rte p { font-size: 16px; }  /* corps du texte sous le sous-titre */

/* 1 bis) Texte du bouton “Ajouter au panier” visible en blanc sur bouton noir */
.product-form__submit { 
  color: #FFFFFF !important; 
}
.product-form__submit .loading__spinner,
.product-form__submit svg { fill: #FFFFFF; stroke: #FFFFFF; } /* icônes/blocages éventuels */

/* 2) Liseré doré du “Texte enrichi” centré sous le titre */
.rich-text .rich-text__heading {
  position: relative;
  text-align: center !important;
}
.rich-text .rich-text__heading::after {
  content: "";
  display: block;
  width: 120px;              /* longueur du liseré */
  height: 1px;
  background: #C9A44C;
  opacity: .65;
  margin: 12px auto 0;       /* auto = CENTRÉ */
}

/* 3) Bloc “Texte enrichi” aligné sur la largeur du produit (image + infos) */
.rich-text.section .page-width { 
  max-width: var(--bdp-section-width);   /* même largeur que le produit */
  margin-left: auto; 
  margin-right: auto;
}
/* …mais le texte reste confortable à lire */
.rich-text .rich-text__text { 
  max-width: 72ch; 
  margin-left: auto; 
  margin-right: auto; 
  text-align: left !important; 
}

/* 4) Bannière image alignée sur la largeur des multicolonnes */
.image-banner .banner__media,
.image-banner .banner {
  max-width: var(--bdp-section-width);
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;          /* mets 8px si tu veux des angles doux */
}

/* 5) Contenus réductibles alignés sur la largeur des multicolonnes (et produit) */
.collapsible-content .page-width,
.collapsible-content .collapsible-content__grid {
  max-width: var(--bdp-section-width);
  margin-left: auto;
  margin-right: auto;
}

/* (déjà en place sur ta page) — CTA luxe + pill variantes (rappel utile) */
.shopify-payment-button { display: none !important; }
.product-form__submit {
  width: 100% !important; height: 48px; border-radius: 12px;
  background:#111 !important; border:1px solid #111; 
  text-transform: uppercase; letter-spacing:.06em; transition: all .25s ease;
}
.product-form__submit:hover { background:#C9A44C !important; border-color:#C9A44C !important; color:#111 !important; }
.product .product-form__input input[type="radio"] + label {
  border: 1px solid #E2DDCF; background:#FFF; border-radius:999px; padding:6px 12px; transition:.2s;
}
.product .product-form__input input[type="radio"]:checked + label { border-color:#C9A44C; box-shadow:0 0 0 1px rgba(201,164,76,.35) inset; }
/* ——— Boucle d’Or Paris — Liserés or du bloc narratif ——— */

/* Premier liseré sous le titre enrichi : centré + espacement amplifié */
.rich-text .rich-text__heading::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #C9A44C;
  opacity: .65;
  margin: 12px auto 48px; /* ← 12px haut + 48px bas (x4 ton espacement précédent) */
}

/* Second liseré sous le texte principal */
.rich-text .rich-text__text::after {
  content: "";
  display: block;
  width: 120px;
  height: 1px;
  background: #C9A44C;
  opacity: .65;
  margin: 48px auto 0; /* même espace qu’au-dessus du premier */
}
/* ——— Boucle d’Or Paris — Harmonisation bannière image et galerie ——— */

/* Conteneur de la bannière : limite sa largeur au même gabarit que la galerie */
.image-banner,
.banner,
.banner__media {
  max-width: var(--bdp-section-width);  /* même variable utilisée pour la multicolonne */
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;  /* tu peux mettre 8px si tu veux des coins doux */
  overflow: hidden;
}

/* Ajuste aussi l’image à l’intérieur pour qu’elle garde la bonne proportion */
.banner__media img,
.image-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
/* — Boucle d’Or Paris — Hiérarchie luxe (titres vs sous-titres réductibles) — */

/* Titre principal du bloc (ex. Rencontrez votre gemme) */
.collapsible-content h2,
.collapsible-content .title,
.collapsible-content .accordion__title--main {
  font-family: 'Gilda Display', serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: #111111;
  margin-bottom: 10px;
}

/* Sous-titres des rangées réductibles (Subtile, Merveilleuse…) */
.collapsible-content summary,
.collapsible-content .summary__title {
  font-family: 'Gilda Display', serif;
  font-size: 16px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.75);
  border-bottom: 1px solid #EDE9E1;
  padding: 14px 0;
  transition: color .25s ease;
}
.collapsible-content summary:hover {
  color: #C9A44C;
}
/* — Boucle d’Or Paris — Hiérarchie accords (priorité maximale) — */

/* TITRES DES BLOCS (ex : Rencontrez votre gemme / Informations techniques) */
.collapsible-content .title-wrapper-with-link .title,
.collapsible-content .title-wrapper-with-link h2,
.collapsible-content .collapsible-content__heading,
.section-template--collapsible-content h2 {
  font-family: 'Gilda Display', serif !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: #111 !important;
  margin-bottom: 10px !important;
}

/* SOUS-TITRES DES RANGÉES (Subtile, Merveilleuse, Prodigieuse, etc.) */
.collapsible-content details > summary,
.collapsible-content details > summary .summary__title,
.collapsible-content details > summary .summary__title > h2,
.collapsible-content details > summary .summary__title > h3,
.collapsible-content details > summary .accordion__title,
.collapsible-content .summary__title,
.collapsible-content .accordion__title,
.collapsible-content .h3,
.collapsible-content .h4 {
  font-family: 'Gilda Display', serif !important;
  font-size: 15px !important;            /* ↑/↓ ici si besoin */
  line-height: 1.3 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(17,17,17,.75) !important;
  border-bottom: 1px solid #EDE9E1 !important;
  padding: 12px 0 !important;
}

/* Hover doré discret sur le libellé (pas sur l’icône) */
.collapsible-content details > summary:hover .summary__title,
.collapsible-content details > summary:hover .accordion__title {
  color: #C9A44C !important;
}
/* — Boucle d’Or Paris — Correction du bouton “Ajouter au panier” — */

.product-form__submit,
.shopify-payment-button__button--unbranded,
button.shopify-payment-button__button,
button[name="add"],
button[type="submit"],
.button,
.button--primary {
  background-color: #111111 !important; /* fond noir profond */
  color: #FFFFFF !important;            /* texte blanc pur */
  border: 1px solid #111111 !important;
  font-family: 'Gilda Display', serif !important;
  font-size: 15px !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 12px 26px;
  transition: all 0.3s ease;
}

/* Effet hover doré élégant */
.product-form__submit:hover,
.shopify-payment-button__button--unbranded:hover,
.button--primary:hover {
  background-color: #C9A44C !important;
  border-color: #C9A44C !important;
  color: #FFFFFF !important;
}
/* — Boucle d’Or Paris — Bouton “Ajouter au panier” lisible — */

/* 1) Forcer les variables de couleur du bouton dans la zone produit */
.product__info-wrapper,
.product__info-container,
.product-form,
.product-form__buttons {
  --color-button: #111111 !important;        /* fond du bouton */
  --color-button-text: #FFFFFF !important;   /* texte du bouton */
  --alpha-button-background: 1 !important;   /* opacité 100% */
}

/* 2) Sélecteurs directs (certains thèmes ignorent les vars en état hover/active) */
.product-form__submit,
.product-form__submit.button--primary,
.product .button--primary[name="add"],
.product .product-form__buttons .button {
  background-color: #111111 !important;
  border: 1px solid #111111 !important;
  color: #FFFFFF !important;
}

/* 3) Forcer aussi le texte/icônes internes (span, svg) */
.product-form__submit *,
.product .product-form__buttons .button *,
.product .button--primary * {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

/* 4) Hover doré élégant */
.product-form__submit:hover,
.product .product-form__buttons .button:hover {
  background-color: #C9A44C !important;
  border-color: #C9A44C !important;
  color: #111111 !important;
}
.product-form__submit:hover *,
.product .product-form__buttons .button:hover * {
  color: #111111 !important;
  fill: #111111 !important;
  stroke: #111111 !important;
}

/* 5) Cas extrême : certains schémas appliquent un filtre “inverted” sur .button */
.button:where(.button--primary) {
  filter: none !important;
}
/* — Boucle d’Or Paris — Alignement des boutons de variantes sur une seule ligne — */

/* Conteneur de variantes */
.product-form__input,
.product-form__input .product-form__input--pill,
.product-form__input input[type="radio"] + label {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
}

/* Boutons de variantes : forcer un alignement horizontal fluide */
.product-form__input input[type="radio"] + label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-right: 8px !important;
}

/* Supprime les retours à la ligne intempestifs */
.product-form__input input[type="radio"] {
  display: none;
}

.product-form__input {
  flex-wrap: nowrap !important;
  overflow-x: auto;  /* permet de scroller sur mobile si trop de variantes */
}
/* --- Alignement texte collection Boucle d'Or --- */
.collection-hero__text,
.collection-description {
  max-width: 72ch;          /* largeur confortable de lecture */
  margin-left: 0 !important; /* aligne à gauche du titre */
  margin-right: auto;
  text-align: left;          /* garantit l’alignement du texte */
}
/* — Boucle d’Or Paris — Collections : titre + description alignés à gauche — */

/* 1) Ne centre plus le wrapper du titre sur les pages de collection */
.template-collection .title-wrapper-with-link,
.template-collection .title-wrapper-with-link.text-center,
.template-collection .title-wrapper--center {
  text-align: left !important;
  justify-content: flex-start !important;
}

/* 2) Description/texte d’intro de la collection : aligné à gauche */
.template-collection .collection-hero__description,
.template-collection .collection-hero__text,
.template-collection .collection-hero .rte,
.template-collection .collection-hero .rte p,
.template-collection .collection__description,
.template-collection .collection__description .rte {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  max-width: 72ch; /* largeur de lecture élégante */
}

/* 3) Option : caler la même largeur que le titre si tu utilises un conteneur global */
:root { --bdp-collection-width: 1100px; } /* ajuste si besoin */
.template-collection .title-wrapper-with-link,
.template-collection .collection-hero {
  max-width: var(--bdp-collection-width);
  margin-left: auto;
  margin-right: auto;
}
/* — Collections : aligner Titre + Description à gauche — */
.template-collection .collection-hero__text-wrapper,
.template-collection .collection-hero__title,
.template-collection .collection-hero__description,
.template-collection .collection-hero__description.rte,
.template-collection .collection-hero__description.rte p {
  text-align: left !important;
}

/* largeur de lecture élégante et calée sous le titre */
:root { --bdp-collection-width: 1100px; } /* ajuste 1040/1120 si besoin */
.template-collection .collection-hero__inner.page-width {
  max-width: var(--bdp-collection-width);
  margin-left: auto;
  margin-right: auto;
}
.template-collection .collection-hero__description.rte {
  max-width: 72ch;
  margin-left: 0 !important;
  margin-right: auto !important;
}
/* — Collections : forcer l’alignement à gauche du texte d’intro — */

/* 1) Le wrapper ne centre plus : on aligne les enfants à gauche */
.template-collection .collection-hero__text-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;   /* ← clé */
  text-align: left !important;
  margin-left: 0 !important;
}

/* 2) Titre + description suivent la même règle */
.template-collection .collection-hero__title,
.template-collection .collection-hero__description,
.template-collection .collection-hero__description.rte,
.template-collection .collection-hero__description.rte p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

/* 3) Si un centrage générique est injecté (ex. .text-center), on l’écrase ici */
.template-collection [class*="text-center"] {
  text-align: left !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

/* 4) Largeur élégante (optionnel) */
.template-collection .collection-hero__description.rte { max-width: 72ch; }
/* — Boucle d’Or Paris — Corrige l’alignement centré du texte d’intro des collections — */

/* 1. On aligne le bloc principal à gauche au lieu du centrage flex */
.template-collection .collection-hero__inner.page-width {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

/* 2. Le texte suit le flux à gauche */
.template-collection .collection-hero__text-wrapper,
.template-collection .collection-hero__title,
.template-collection .collection-hero__description,
.template-collection .collection-hero__description.rte,
.template-collection .collection-hero__description.rte p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  width: 100%;
  max-width: 72ch;
}

/* 3. Supprime tout centrage hérité */
.template-collection [class*="text-center"],
.template-collection .center {
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}
/* — Collections (Dawn) : caler le titre + texte d’intro à gauche — */

/* 0) On annule le flex centré du conteneur et on repasse en bloc */
.template-collection .collection-hero__inner.page-width {
  display: block !important;
  text-align: left !important;
}

/* 1) Le wrapper texte n’est plus centré */
.template-collection .collection-hero__text-wrapper {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
}

/* 2) Titre + description : alignés à gauche, pas d’auto-marges */
.template-collection .collection-hero__title,
.template-collection .collection-hero__description,
.template-collection .collection-hero__description.rte,
.template-collection .collection-hero__description.rte p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 3) Largeur élégante du paragraphe sous le titre (optionnel) */
:root { --bdp-collection-width: 1100px; } /* ajuste 1040/1120 si besoin */
.template-collection .collection-hero__description.rte {
  max-width: 72ch;
}
/* Filet ultime : n’importe quel centrage hérité dans le hero */
.template-collection .collection-hero *[style*="text-align:center"] {
  text-align: left !important;
}
/* === Boucle d’Or Paris — Collections : titre + description alignés à gauche === */

/* 1) Le conteneur du hero ne centre plus le contenu */
.template-collection .collection-hero__inner.page-width {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  text-align: left !important;
}

/* 2) Le wrapper texte suit le flux à gauche */
.template-collection .collection-hero__text-wrapper {
  align-self: flex-start !important;
  text-align: left !important;
  margin: 0 !important;              /* supprime le centrage par auto-marges */
}

/* 3) Titre + description : alignés à gauche, pas de marges auto */
.template-collection .collection-hero__title {
  text-align: left !important;
  margin: 0 0 12px 0 !important;
}

.template-collection .collection-hero__description,
.template-collection .collection-hero__description.rte {
  display: block !important;
  text-align: left !important;
  max-width: 72ch;                   /* largeur de lecture élégante */
  margin: 0 !important;              /* annule "margin: 0 auto" du thème */
  margin-left: 0 !important;         /* ceinture + bretelles */
  margin-right: auto !important;
  align-self: flex-start !important; /* inutile si 1) a bien pris, mais sûr */
}

/* 4) Si un centrage générique est injecté quelque part, on l’écrase */
.template-collection .collection-hero *[class*="text-center"],
.template-collection .collection-hero *[style*="text-align:center"] {
  text-align: left !important;
}
/* === Boucle d’Or Paris | Correction du centrage du texte de collection === */

/* Neutraliser le centrage imposé par component-collection-hero.css */
.collection-hero__description,
.collection-hero__description.rte {
  margin-left: 0 !important;
  margin-right: auto !important;
  text-align: left !important;
  max-width: 72ch !important; /* largeur de lecture harmonieuse */
  display: block !important;
  align-self: flex-start !important;
}

/* S'assurer que le conteneur ne recentre pas le contenu */
.collection-hero__inner.page-width {
  display: block !important;
  text-align: left !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}
/* === Boucle d’Or Paris | Harmoniser largeur description et grille produits === */

.collection-hero__description,
.collection-hero__description.rte {
  max-width: 100% !important;  /* la description prend la largeur du conteneur */
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Pour un rendu plus équilibré sur très grands écrans, on peut limiter légèrement */
@media (min-width: 1400px) {
  .collection-hero__description,
  .collection-hero__description.rte {
    max-width: 1200px !important;  /* ajuste : 1160–1240px selon ton ressenti */
  }
}
/* === Boucle d’Or Paris | Espacement interne élégant dans les cartes produits === */

/* Espace autour du titre et du prix */
.card__information {
  padding: 0 18px 18px 18px !important;   /* haut / droite / bas / gauche */
}

/* Harmoniser l’espacement entre les lignes (titre + prix) */
.card__heading,
.card__information .price {
  margin-left: 0 !important;
  text-align: left !important;
}
/* Alignement global */
.card__information {
  text-align: left !important;
}
/* Optionnel : si tu veux plus d’air sous l’image aussi */
.card__media {
  padding-bottom: 6px !important;
}
/* === Boucle d’Or Paris | Harmonisation typographique des cartes produits === */

/* Style du titre produit */
.card__heading {
  font-family: 'Gilda Display', serif;
  font-size: 15px !important;  /* harmonisé avec la ligne du prix */
  line-height: 1.6;
  color: #111111;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 4px; /* petit espace subtil avant le prix */
}

/* Style du prix */
.card__information .price {
  font-family: 'Lora', serif;
  font-size: 15px !important;  /* même taille que le titre */
  line-height: 1.6;
  color: #111111;
  font-weight: 400;
  opacity: 0.9;  /* léger adoucissement pour que le titre domine */
}

/* Alignement global */
.card__information {
  text-align: left !important;
}
/* === Boucle d’Or Paris | Ajustement de l’espacement entre titre et prix === */

.card__heading {
  margin-bottom: 2px !important; /* ↓ réduit l’écart (valeur idéale : 1–3px) */
}
/* — Boucle d’Or Paris — Réduire l’espace Titre ↔ Prix sur les cartes produit — */

/* 1) marge du prix (c'est elle qui crée l'écart) */
.card__information .price,
.card--product .card__information .price,
.card--standard .card__information .price {
  margin-top: 2px !important; /* teste 0–4px selon ton goût */
}

/* 2) sécurité : titre sans marge basse excessive */
.card__information .card__heading,
.card--product .card__heading,
.card--standard .card__heading {
  margin-bottom: 2px !important;
  padding-bottom: 0 !important;
  line-height: 1.35; /* compact mais lisible */
}

/* 3) si le lien interne ajoute un espace, on le neutralise aussi */
.card__heading .full-unstyled-link {
  display: inline-block;
  margin-bottom: 0 !important;
}
/* — Boucle d’Or Paris — Espace entre image et texte sur les cartes produit — */

/* Ajoute de l'espace au-dessus du bloc texte (titre+prix) */
.card--product .card__information,
.card--standard .card__information {
  margin-top: 12px !important;   /* ajuste 8–18px selon ton œil */
}

/* Certains Dawn gèrent l'écart via le conteneur de contenu */
.card--product .card__content,
.card--standard .card__content {
  padding-top: 10px !important;  /* renforce l'écart si nécessaire */
}

/* D’autres via la marge sous le média */
.card--product .card__media,
.card--standard .card__media {
  margin-bottom: 10px !important;
}

/* Desktop : un peu plus d’air */
@media (min-width: 990px) {
  .card--product .card__information,
  .card--standard .card__information { margin-top: 14px !important; }
}
/* — Boucle d’Or Paris — Espace entre image et texte sur les cartes produit (version affinée -20%) — */

/* 1) Bloc texte sous la photo (titre + prix) */
.card--product .card__information,
.card--standard .card__information {
  margin-top: 6px !important;   /* anciennement 12px → -20% */
}

/* 2) Conteneur de contenu global */
.card--product .card__content,
.card--standard .card__content {
  padding-top: 4px !important;   /* anciennement 10px → -20% */
}

/* 3) Marge sous le média */
.card--product .card__media,
.card--standard .card__media {
  margin-bottom: 4px !important; /* anciennement 10px → -20% */
}

/* Desktop : légèrement plus d’air, mais cohérent */
@media (min-width: 990px) {
  .card--product .card__information,
  .card--standard .card__information {
    margin-top: 8px !important; /* anciennement 14px → -20% */
  }
}
/* — Boucle d’Or Paris — Réduction de l’espace entre description de collection et grille produits — */

/* Espace vertical sous la description */
.collection-hero__description,
.collection-hero__description.rte {
  margin-bottom: 18px !important; /* ↓ réduit depuis ~48px → 18px */
}

/* Si Dawn ajoute une marge via le wrapper principal */
.collection-hero {
  padding-bottom: 20px !important; /* au lieu de 40–60px selon le thème */
}

/* Ajustement global du container avant la grille */
.collection {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* === Boucle d’Or Paris | Réduction espace description ↔ grille produits === */

/* 1) Cible le conteneur principal de la collection */
.template-collection .collection {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 2) Supprime le grand espace sous le bloc “hero” */
.template-collection .collection-hero {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* 3) Ajuste directement l’espace sous le texte descriptif */
.template-collection .collection-hero__description,
.template-collection .collection-hero__description.rte {
  margin-bottom: 4px !important;  /* test : réduit depuis ~60px */
}

/* 4) Neutralise le padding du conteneur de section */
.template-collection .section-template--main,
.template-collection .section-template--16548763255826__main,
.template-collection .section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 5) Option : si la grille a un padding interne, on le réduit */
.template-collection .collection-product-grid,
.template-collection .product-grid {
  margin-top: 4px !important;
  padding-top: 0 !important;
}
/* — Boucle d’Or Paris — Réduire l’espace sous la bannière de collection — */

/* 1) Espace sous le hero de collection (bannière) */
.template-collection .collection-hero {
  margin-bottom: 8px !important;
  padding-bottom: 8px !important;
}

/* Si tu utilises une "Bannière avec image" comme en-tête éditorial */
.template-collection .image-banner,
.template-collection .banner,
.template-collection .section[class*="image-banner"],
.template-collection .shopify-section[class*="image_banner"] {
  margin-bottom: 4px !important;
  padding-bottom: 0 !important;
}

/* 2) Espace au-dessus de la grille produits (quel que soit l'ID utilisé par Dawn) */
.template-collection #MainCollectionProductGrid,
.template-collection section[id^="MainCollectionProductGrid"],
.template-collection .collection-product-grid,
.template-collection .product-grid,
.template-collection .collection {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 3) Cas fréquent : le conteneur des filtres ajoute aussi une marge */
.template-collection .facets-container {
  margin-top: 4px !important;
  padding-top: 0 !important;
}

/* 4) Sélecteur "marteau" : la section juste après le hero n'a pas de marge haute */
.template-collection .collection-hero + .shopify-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* === Boucle d’Or Paris | Réduire (vraiment) l’espace sous la bannière de collection === */

/* 0) Variables de section (plusieurs noms selon les versions de Dawn) */
.template-collection :root {
  --spacing-sections: 0px !important;
  --section-vertical-spacing: 0px !important;
  --space-section: 0px !important;
}

/* 1) Le HERO de collection (bannière + titre + description) ne laisse quasi pas d'espace */
.template-collection .collection-hero,
.template-collection [id^="shopify-section-template--"][id$="__collection-hero"] {
  margin-bottom: 4px !important;
  padding-bottom: 4px !important;
}

/* 2) La section juste après le hero (généralement la grille produits) : pas d'espace haut */
.template-collection .collection-hero + .shopify-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 3) Section “Main product grid” (toutes variantes d'ID) : pas d'espace haut */
.template-collection #MainCollectionProductGrid,
.template-collection section[id^="MainCollectionProductGrid"],
.template-collection [id^="shopify-section-template--"][id$="__product-grid"],
.template-collection [id^="shopify-section-template--"][id$="__main"],
.template-collection .collection-product-grid,
.template-collection .product-grid {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 4) Certains thèmes injectent un padding via un wrapper générique de section */
.template-collection .shopify-section,
.template-collection .section {
  scroll-margin-top: 0 !important; /* évite un décalage “ancré” qui simule un espace */
}

/* 5) Les filtres/facettes ajoutent parfois une marge haute : on la réduit */
.template-collection .facets-container,
.template-collection .collection__view-all {
  margin-top: 4px !important;
  padding-top: 0 !important;
}

/* 6) Description : marge basse réduite (au cas où elle recrée l'espace) */
.template-collection .collection-hero__description,
.template-collection .collection-hero__description.rte {
  margin-bottom: 4px !important;
}

/* 7) Dernier filet : si une section applique un “padding-top” inline, on l'annule */
.template-collection .shopify-section[style*="padding-top"],
.template-collection .section[style*="padding-top"] {
  padding-top: 0 !important;
}
/* — Boucle d’Or Paris | Resserre l'espace sous la bannière de collection — */

/* 1) Réduit l'espacement standard entre sections sur les pages collection */
.template-collection {
  --spacing-sections-desktop: 4px !important;
  --spacing-sections-mobile: 4px !important;
}

/* 2) Forçage ciblé : la section product-grid juste après le hero */
.template-collection .collection-hero + [id*="__product-grid"] {
  margin-top: 4px !important;   /* mets 0 si tu veux coller */
  padding-top: 0 !important;
}

/* 3) Sélecteur sécurité : toute section “product-grid” sur collection */
.template-collection [id*="__product-grid"] {
  margin-top: 4px !important;
  padding-top: 0 !important;
}
/* — Boucle d’Or Paris — Réduire l'espace entre la bannière de collection et la grille — */

/* Écrase la règle générique "section + .section" uniquement sur les pages collection */
@media screen and (min-width: 750px){
  .template-collection .section + .section { margin-top: 4px !important; } /* mets 0 si tu veux coller */
}
@media screen and (max-width: 749.98px){
  .template-collection .section + .section { margin-top: 4px !important; }
}

/* Sélecteur ultra-ciblé sur TA section product-grid (vue dans ta capture) */
#shopify-section-template--26661239161179__product-grid {
  margin-top: 4px !important;
  padding-top: 0 !important;
}

/* Le hero ne rajoute pas d'espace supplémentaire */
.template-collection .collection-hero { margin-bottom: 8px !important; padding-bottom: 0 !important; }

/* Stopper l'ajout du € via CSS (on le gère en Liquid) */
.price .price-item::after { content: none !important; }

/* Si tu avais masqué des “currency” en CSS, on réactive par défaut */
.price .price__currency,
.price .price__root .currency,
.price .price__regular .currency,
.price .price__sale .currency {
  display: inline;
}
/* — Boucle d’Or Paris — Harmonisation du pied de page avec la grille produits — */

/* 1) Choisis la largeur de référence (celle de ta grille) */
:root {
  /* essaie 1160px, 1120px ou 1200px selon ton rendu exact */
  --bdp-grid-width: 1160px;
}

/* 2) Contraint et centre les blocs du footer sur cette largeur */
.footer .page-width,
.footer .footer__content-top .page-width,
.footer .footer__content-bottom .page-width {
  max-width: var(--bdp-grid-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 3) Sécurité : certains Dawn n’imbriquent pas “.page-width” dans le footer */
.footer__content-top,
.footer__content-bottom,
.footer-block--newsletter,
.footer .newsletter {
  max-width: var(--bdp-grid-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 4) Option : même calage pour la rangée “copyright / politiques / coordonnées” */
.footer__content-bottom .footer__column--info,
.footer__content-bottom .footer__copyright,
.footer__content-bottom .list-payment,
.footer__content-bottom .footer__policies {
  max-width: 100%;
}

/* 5) Option visuelle : un peu moins d’air au-dessus du footer si besoin */
.footer {
  padding-top: 28px; /* ajuste 20–36px selon ton œil */
}
/* — Boucle d’Or Paris — centrage du pied de page sur la grille produits — */
footer.footer,
.footer,
.shopify-section-group-footer-group,
.footer__content-top,
.footer__content-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;       /* 💎 centre tout horizontalement */
  justify-content: center;
  text-align: left;          /* garde les titres alignés à gauche à l’intérieur */
  width: 100%;
}

/* Largeur fixe harmonisée avec la grille produits */
.footer > div,
.footer__content-top > div,
.footer__content-bottom > div,
.shopify-section-group-footer-group > div {
  max-width: 1160px;         /* 🔧 ajuste selon ta grille : 1100–1200px */
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Centrage des trois colonnes ("La Maison / Informations / Législation") */
.footer__content-top {
  display: flex;
  justify-content: center;    /* centre les trois blocs */
  gap: 80px;                  /* espace régulier entre eux */
  flex-wrap: wrap;
}

/* Centrage de la ligne du bas (copyright, politiques, etc.) */
.footer__content-bottom {
  text-align: center !important;
  justify-content: center !important;
}

/* Option : ajuster les espacements verticaux */
.footer {
  padding-top: 40px;
  padding-bottom: 30px;
}
/* — Boucle d’Or Paris | Footer centré sur la largeur de la grille produits — */
:root { --bdp-grid-width: 1160px; } /* ajuste 1120–1200px selon ta grille */

/* Contraindre la largeur des zones du footer et les centrer */
.footer__content-top.page-width,
.footer__content-bottom.page-width,
.footer__content-middle.page-width {
  max-width: var(--bdp-grid-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 3 colonnes “La Maison / Informations / Législation” : centrer la grille */
.footer__blocks-wrapper.grid {
  justify-content: center !important;   /* centre les colonnes dans la rangée */
}

/* Ligne du bas (copyright / coordonnées / politiques / icônes) */
.footer__content-bottom .grid {
  justify-content: center !important;   /* centre la rangée */
}
.footer__policies {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copyright {
  text-align: center !important;
}
/* --- Partie haute : "La Maison / Informations / Législation" --- */
.footer-bdp,
.footer-bdp__columns {
  display: flex;
  justify-content: center !important;  /* centre les 3 colonnes */
  gap: 60px;                           /* réduit l’espace entre colonnes (était 80px) */
  flex-wrap: wrap;
  max-width: var(--bdp-grid-width);
  margin-left: auto !important;
  margin-right: auto !important;
}

/* taille minimale des colonnes pour éviter le retour à la ligne trop tôt */
.footer-bdp__col {
  min-width: 200px;                    /* ajuste : 180–220px selon ton espace */
  flex: 1 1 auto;
  text-align: left;
}

/* sur petits écrans, les colonnes se superposent joliment */
@media screen and (max-width: 900px) {
  .footer-bdp__columns {
    gap: 30px;
  }
  .footer-bdp__col {
    min-width: 100%;
    text-align: center;
  }
}
/* --- Alignement des 3 colonnes du footer sur la grille produits --- */
.footer-bdp,
.footer-bdp__columns {
  display: flex;
  justify-content: space-between !important; /* étire les 3 colonnes sur toute la largeur */
  max-width: var(--bdp-grid-width);
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  flex-wrap: nowrap;
}

/* Assure une largeur minimale correcte sans retour à la ligne */
.footer-bdp__col {
  flex: 1;
  min-width: 200px;
  text-align: left;
}

/* Version responsive : sur petits écrans, on recentre et empile */
@media screen and (max-width: 900px) {
  .footer-bdp__columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}

/* Module d’abonnement : largeur et hauteur élégantes */
.footer .newsletter, 
.footer .footer__content-top .newsletter,
.footer .footer-block--newsletter {
  max-width: 520px;            /* ← resserre le bloc */
  margin: 24px auto !important;/* centre horizontalement */
  text-align: center;
}

/* Champ + bouton plus compacts et alignés */
.footer .newsletter form,
.footer .footer-block--newsletter form {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.footer .newsletter input[type="email"],
.footer .footer-block--newsletter input[type="email"]{
  height: 44px;                /* ↓ si trop grand : 40px */
  padding: 0 14px;
  font-size: 15px;
}
.footer .newsletter button,
.footer .footer-block--newsletter button{
  height: 44px;                /* même hauteur que le champ */
  padding: 0 16px;
  font-size: 14px;
  border-radius: 10px;         /* garde ta patte luxe */
}

/* Mobile : un dessous de l’autre pour éviter l’écrasement */
@media (max-width: 600px){
  .footer .newsletter form,
  .footer .footer-block--newsletter form{
    flex-direction: column;
    align-items: center;
  }
  .footer .newsletter button,
  .footer .footer-block--newsletter button{
    width: 100%;
  }
}
/* — Boucle d’Or Paris | Footer : plus d’espace entre les 3 blocs + marges extérieures — */



/* 1) On force la mise en page en GRID pour maîtriser les espacements */
.shopify-section-group-footer-group .footer-bdp__columns,
.footer .footer-bdp__columns,
.footer-bdp__columns {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(220px, 1fr)); /* 3 colonnes stables */
  column-gap: 120px !important;   /* ← espace ENTRE blocs (augmente/réduis ici) */
  row-gap: 0 !important;

  /* marges extérieures à gauche/droite du groupe */
  padding-left: 80px !important;  /* ← augmente si tu veux plus d’air sur les côtés */
  padding-right: 80px !important;

  max-width: var(--bdp-grid-width, 1160px);
  margin-left: auto !important;
  margin-right: auto !important;
  align-items: start;
}

/* 2) Sécurité : chaque colonne se comporte bien en grid */
.footer-bdp__col {
  min-width: 220px;               /* évite les retours à la ligne */
  text-align: left;
}

/* 3) Responsive : empile joliment sur mobile */
@media (max-width: 900px){
  .shopify-section-group-footer-group .footer-bdp__columns,
  .footer .footer-bdp__columns,
  .footer-bdp__columns {
    grid-template-columns: 1fr;
    column-gap: 0 !important;
    row-gap: 30px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
/* ——— Boucle d’Or Paris | Footer : centrage & raffinement final ——— */

/* 1) Bloc newsletter — centré et taille harmonieuse */
.shopify-section-group-footer-group .footer-block--newsletter,
.footer__newsletter {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  margin: 40px auto !important;
  width: 100%;
}

/* Réduction et élégance du champ d’inscription */
.footer__newsletter .newsletter-form__field-wrapper input[type="email"],
.newsletter-form__field-wrapper input[type="email"] {
  max-width: 360px !important; /* ← largeur du champ (ajuste 320–400 selon ton goût) */
  height: 46px !important;     /* hauteur chic */
  border-radius: 8px;
  font-size: 15px;
  border: 1px solid #D6CBA8;   /* léger contour doré-beige */
  text-align: center;
  padding: 10px 14px;
}

/* Bouton "S’abonner" assorti */
.footer__newsletter .newsletter-form__button,
.newsletter-form__button {
  background-color: #111 !important;
  color: #fff !important;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 12px;
  transition: all .3s ease;
}

.footer__newsletter .newsletter-form__button:hover,
.newsletter-form__button:hover {
  background-color: #C9A44C !important;
  color: #fff !important;
}

/* 2) Mini-footer (copyright, politiques, etc.) — centré et raffiné */
.footer__content-bottom,
.shopify-section-group-footer-group .footer__content-bottom {
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  gap: 6px;
  margin-top: 30px;
  margin-bottom: 10px;
}

/* Liens du bas : discrets mais lisibles */
.footer__content-bottom a {
  font-family: 'Lora', serif;
  font-size: 13px;
  color: #111111;
  text-decoration: none;
}

.footer__content-bottom a:hover {
  color: #C9A44C;
}
/* ——— Boucle d’Or Paris | Footer élégant (newsletter + bas de page) ——— */

/* 1) Newsletter — centrée, compacte, largeur chic */
.shopify-section-group-footer-group .footer-block--newsletter,
.footer .footer__newsletter,
.footer .newsletter {                         /* couvre les variations de Dawn */
  max-width: 560px;                           /* largeur totale du bloc */
  margin: 28px auto 18px !important;          /* centré & resserré */
  text-align: center !important;
}

/* Titre newsletter (optionnel, plus fin) */
.footer .footer-block--newsletter h2,
.footer .footer__newsletter h2,
.footer .newsletter h2 {
  font-size: 18px;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

/* Champ d’e-mail : réduire et centrer */
.footer .newsletter-form__field-wrapper {
  max-width: 420px !important;                /* ← largeur du champ */
  margin: 0 auto !important;
  position: relative;
}
.footer .newsletter-form__field-wrapper input[type="email"]{
  height: 44px !important;
  font-size: 15px;
  border: 1px solid #D9D0BC;                 /* liseré beige-doré discret */
  border-radius: 10px;
  padding: 0 44px 0 14px;                    /* réserve pour le bouton */
  text-align: center;
}

/* Bouton envoyer (celui tout noir à droite) */
.footer .newsletter-form__button{
  height: 44px !important;
  width: 44px !important;                     /* carré soigné */
  right: 0;                                   /* collé au bord du champ */
  top: 0;
  border-radius: 10px;
  background: #111 !important;
  color: #fff !important;
}
.footer .newsletter-form__button:hover{
  background: #C9A44C !important;
}

/* Icônes sociales sous la newsletter — centrées et aérées */
.footer .list-social{
  display: flex !important;
  justify-content: center !important;
  gap: 16px;
  margin-top: 14px;
}
.footer .list-social a{
  opacity: .85;
  transition: opacity .2s ease;
}
.footer .list-social a:hover{ opacity: 1; }

/* 2) Mini-footer (copyright, politiques, moyens de paiement, pays) — centré et net */
.footer__content-bottom-wrapper.page-width{
  max-width: var(--bdp-grid-width, 1160px);
  margin: 22px auto 10px !important;
  text-align: center !important;
}
.footer__content-bottom{
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  gap: 10px;
}

/* Bloc pays/région */
.footer__content-bottom .localization-form{
  margin: 0 auto !important;
}

/* Liens politiques / conditions — centrés, taille harmonisée */
.footer__content-bottom .policies{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin: 2px auto 0 !important;
}
.footer__content-bottom .policies a{
  font-size: 13px;
  text-decoration: none;
}
.footer__content-bottom .policies a:hover{ color: #C9A44C; }

/* Icônes de paiement — centrées */
.footer__content-bottom .list-payment{
  display: flex !important;
  justify-content: center !important;
  gap: 8px;
  margin: 0 auto !important;
}

/* 3) Espacement vertical global (sous les 3 colonnes) */
.shopify-section-group-footer-group .footer__content-top + .footer__content-bottom{
  border-top: 1px solid #F0EAE0;              /* filet très léger */
  padding-top: 20px;
}

/* Responsive : évite l’écrasement sur mobile */
@media (max-width: 640px){
  .footer .newsletter-form__field-wrapper{ max-width: 320px !important; }
  .footer .newsletter-form__field-wrapper input[type="email"]{ font-size: 14px; }
}
/* ——— Boucle d’Or Paris | Footer élégant (newsletter + bas de page) ——— */

/* 1) Newsletter — centrée, compacte, largeur chic */
.shopify-section-group-footer-group .footer-block--newsletter,
.footer .footer__newsletter,
.footer .newsletter {                         /* couvre les variations de Dawn */
  max-width: 560px;                           /* largeur totale du bloc */
  margin: 28px auto 18px !important;          /* centré & resserré */
  text-align: center !important;
}

/* Titre newsletter (optionnel, plus fin) */
.footer .footer-block--newsletter h2,
.footer .footer__newsletter h2,
.footer .newsletter h2 {
  font-size: 18px;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

/* Champ d’e-mail : réduire et centrer */
.footer .newsletter-form__field-wrapper {
  max-width: 420px !important;                /* ← largeur du champ */
  margin: 0 auto !important;
  position: relative;
}
.footer .newsletter-form__field-wrapper input[type="email"]{
  height: 44px !important;
  font-size: 15px;
  border: 1px solid #D9D0BC;                 /* liseré beige-doré discret */
  border-radius: 10px;
  padding: 0 44px 0 14px;                    /* réserve pour le bouton */
  text-align: center;
}

/* Bouton envoyer (celui tout noir à droite) */
.footer .newsletter-form__button{
  height: 44px !important;
  width: 44px !important;                     /* carré soigné */
  right: 0;                                   /* collé au bord du champ */
  top: 0;
  border-radius: 10px;
  background: #111 !important;
  color: #fff !important;
}
.footer .newsletter-form__button:hover{
  background: #C9A44C !important;
}

/* Icônes sociales sous la newsletter — centrées et aérées */
.footer .list-social{
  display: flex !important;
  justify-content: center !important;
  gap: 16px;
  margin-top: 14px;
}
.footer .list-social a{
  opacity: .85;
  transition: opacity .2s ease;
}
.footer .list-social a:hover{ opacity: 1; }

/* 2) Mini-footer (copyright, politiques, moyens de paiement, pays) — centré et net */
.footer__content-bottom-wrapper.page-width{
  max-width: var(--bdp-grid-width, 1160px);
  margin: 22px auto 10px !important;
  text-align: center !important;
}
.footer__content-bottom{
  display: flex !important;
  flex-direction: column;
  align-items: center !important;
  gap: 10px;
}

/* Bloc pays/région */
.footer__content-bottom .localization-form{
  margin: 0 auto !important;
}

/* Liens politiques / conditions — centrés, taille harmonisée */
.footer__content-bottom .policies{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin: 2px auto 0 !important;
}
.footer__content-bottom .policies a{
  font-size: 13px;
  text-decoration: none;
}
.footer__content-bottom .policies a:hover{ color: #C9A44C; }

/* Icônes de paiement — centrées */
.footer__content-bottom .list-payment{
  display: flex !important;
  justify-content: center !important;
  gap: 8px;
  margin: 0 auto !important;
}

/* 3) Espacement vertical global (sous les 3 colonnes) */
.shopify-section-group-footer-group .footer__content-top + .footer__content-bottom{
  border-top: 1px solid #F0EAE0;              /* filet très léger */
  padding-top: 20px;
}

/* Responsive : évite l’écrasement sur mobile */
@media (max-width: 640px){
  .footer .newsletter-form__field-wrapper{ max-width: 320px !important; }
  .footer .newsletter-form__field-wrapper input[type="email"]{ font-size: 14px; }
}
/* ——— Footer Boucle d’Or | Correctifs newsletter + mini-footer ——— */

/* 1) CONTENEUR NEWSLETTER — centré et borné */
.footer__content-top.page-width .footer-block--newsletter {
  max-width: 640px !important;         /* largeur totale du bloc NL */
  margin: 28px auto 18px !important;    /* centré */
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

/* 2) FORMULAIRE NL — on annule la mise en page Shopify (overlay) et on passe en flex */
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  position: static !important;          /* annule layouts relatifs */
}

/* 3) CHAMP E-MAIL — réduit et élégant */
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter input[type="email"] {
  width: 380px !important;              /* ← ajuste 340–420 selon ton goût */
  max-width: 90vw !important;
  height: 46px !important;
  padding: 0 14px !important;
  text-align: center !important;
  border: 1px solid #D9D0BC !important; /* liseré beige doré fin */
  border-radius: 10px !important;
  font-size: 15px !important;
  background: #fff !important;
}

/* 4) BOUTON — à côté du champ (fini le carré superposé) */
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter button,
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter .newsletter-form__button {
  position: static !important;          /* enlève le positionnement absolu de Dawn */
  width: auto !important;
  min-width: 44px !important;
  height: 46px !important;
  padding: 0 18px !important;
  border-radius: 10px !important;
  background: #111 !important;
  color: #fff !important;
  line-height: 46px !important;
}
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter button:hover,
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter .newsletter-form__button:hover {
  background: #C9A44C !important;
  color: #fff !important;
}

/* 5) ICÔNES SOCIALES — centrées et aérées */
.footer__content-top.page-width .list-social {
  display: flex !important;
  justify-content: center !important;
  gap: 16px !important;
  margin-top: 14px !important;
}

/* 6) MINI-FOOTER — tout centré et compact */
.footer__content-bottom.page-width {
  max-width: var(--bdp-grid-width, 1160px) !important;
  margin: 24px auto 8px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}

/* Pays/région */
.footer__content-bottom.page-width .localization-form {
  margin: 0 auto !important;
}

/* Icônes paiement */
.footer__content-bottom.page-width .list-payment {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 auto !important;
}

/* Liens politiques / conditions */
.footer__content-bottom.page-width .policies {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px 16px !important;
  margin: 0 auto !important;
}
.footer__content-bottom.page-width .policies a {
  font-size: 13px !important;
  text-decoration: none !important;
}
.footer__content-bottom.page-width .policies a:hover { color: #C9A44C !important; }

/* 7) Filet léger au-dessus de la zone newsletter + mini-footer */
.shopify-section-group-footer-group .footer__content-top + .footer__content-bottom {
  border-top: 1px solid #F0EAE0 !important;
  padding-top: 20px !important;
}

/* 8) Responsive : empile proprement sous 600px */
@media (max-width: 600px) {
  .footer__content-top.page-width .footer-block--newsletter form.footer__newsletter {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .footer__content-top.page-width .footer-block--newsletter form.footer__newsletter input[type="email"] {
    width: 300px !important;
  }
  .footer__content-top.page-width .footer-block--newsletter form.footer__newsletter button {
    width: 100% !important;
  }
}
/* ——— Footer | ajustements newsletter & bas de page ——— */

/* 0) Contexte : on cible le bloc NL que tu as (cf. capture) */
.footer__content-top.page-width .footer-block--newsletter { position: relative; }

/* 1) Réduire de moitié l’espace entre le filet doré et le titre “Rejoignez l’univers…” */
.footer__content-top.page-width .footer-block--newsletter {
  margin-top: 14px !important;        /* ↓ tire le bloc vers le haut (ajuste 10–18px) */
}

/* 6) Réduire de 60% l’espace entre le titre et le champ e-mail */
.footer__content-top.page-width .footer-block--newsletter h2 {
  margin-bottom: 8px !important;      /* était nettement plus grand */
}
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter {
  margin-top: 6px !important;         /* resserre encore le champ sous le titre */
}

/* 2) Supprimer le “filet noir” autour du formulaire */
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter,
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__field-wrapper {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Champ e-mail : style propre, sans liseré sombre */
.footer__content-top.page-width .footer-block--newsletter input[type="email"]{
  border: 1px solid #D9D0BC !important;   /* liseré beige-doré discret */
  outline: none !important;
}
.footer__content-top.page-width .footer-block--newsletter input[type="email"]:focus{
  border-color: #C9A44C !important;
  box-shadow: none !important;
}

/* 3) Aligner le bouton noir avec le champ (hauteur/bords identiques) */
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter{
  display: flex !important;
  align-items: center !important;      /* centre verticalement input + bouton */
  gap: 10px !important;
}
.footer__content-top.page-width .footer-block--newsletter input[type="email"],
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__button{
  height: 44px !important;
  border-radius: 10px !important;
  line-height: 44px !important;
}
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__button{
  position: static !important;         /* enlève le positionnement absolu par défaut */
  padding: 0 16px !important;
  background: #111 !important;
  color: #fff !important;
}

/* 4) Ajouter “OK” sur le bouton noir (et masquer l’icône) */
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__button .icon{
  display: none !important;
}
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__button::after{
  content: "OK";
  font-weight: 600;
  letter-spacing: .02em;
}

/* 5) Icônes Facebook/Instagram : +30% et alignées à droite, sur la ligne du titre */
.footer__content-top.page-width .footer-block--newsletter { /* conteneur base */
  display: block; /* on garde la colonne titre/forme, mais on peut positionner les icônes */
}
.footer__content-top.page-width .footer-block--newsletter .list-social{
  position: absolute;     /* place les icônes sur la même ligne que le titre */
  top: 0;                 /* aligné en haut, à hauteur du titre */
  right: 0;               /* à droite de la page */
  transform: translateY(4px); /* petit ajustement vertical si besoin (−/+) */
  display: flex !important;
  gap: 14px !important;
}
.footer__content-top.page-width .footer-block--newsletter .list-social a svg{
  width: 26px !important;   /* ~ +30% par rapport à 20px–22px */
  height: 26px !important;
}

/* (optionnel) Si les icônes passent sous le titre sur petits écrans, on les remet en dessous */
@media (max-width: 720px){
  .footer__content-top.page-width .footer-block--newsletter .list-social{
    position: static;
    justify-content: center !important;
    transform: none;
    margin-top: 10px;
  }
}
/* ——— Footer NL — suppression contour, alignement bouton, texte OK centré ——— */

/* 1) SUPPRIMER le contour noir autour du champ (et de son wrapper) */
.footer__content-top.page-width .footer-block--newsletter .field,
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__field-wrapper,
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
}
.footer__content-top.page-width .footer-block--newsletter .field::before,
.footer__content-top.page-width .footer-block--newsletter .field::after {
  display: none !important;
}

/* 2) ALIGNE input + bouton comme un seul composant */
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter{
  display: flex !important;
  align-items: stretch !important;    /* mêmes hauteurs */
  justify-content: center !important;
  gap: 0 !important;                   /* pas d’espace entre les deux */
  width: 100% !important;
}

/* Champ e-mail : liseré doré, bords gauche arrondis, pas d’ombre */
.footer__content-top.page-width .footer-block--newsletter input[type="email"]{
  width: 420px !important;             /* ajuste 360–440 si besoin */
  max-width: 90vw !important;
  height: 44px !important;
  padding: 0 14px !important;
  border: 1px solid #D9D0BC !important;   /* liseré beige/doré */
  border-right: 0 !important;              /* fusionne avec le bouton */
  border-radius: 10px 0 0 10px !important;
  box-shadow: none !important;
  outline: none !important;
  background: #fff !important;
  text-align: center !important;
}

/* Bouton noir : même hauteur, aligné, bord droit arrondi, texte centré */
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__button,
.footer__content-top.page-width .footer-block--newsletter button[type="submit"]{
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;  /* ← centre “OK” dans le bouton */
  min-width: 56px !important;
  height: 44px !important;
  padding: 0 18px !important;
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #D9D0BC !important;   /* même liseré que l’input */
  border-left: 0 !important;               /* fusion visuelle */
  border-radius: 0 10px 10px 0 !important;
  line-height: normal !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  font-size: 14px;
}

/* Masque l’icône par défaut et insère “OK” si nécessaire */
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__button .icon { 
  display: none !important; 
}
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__button::after{
  content: "OK";
}

/* ——— Icônes sociales : x2 et à droite sur la ligne du titre ——— */
.footer__content-top.page-width .footer-block--newsletter { position: relative; }
.footer__content-top.page-width .footer-block--newsletter .list-social{
  position: absolute !important;
  top: 0;                /* même ligne que le titre */
  right: 0;              /* à droite */
  display: flex !important;
  gap: 16px !important;
}
.footer__content-top.page-width .footer-block--newsletter .list-social a svg{
  width: 52px !important;   /* x2 par rapport à ~26px */
  height: 52px !important;
}

/* Sécurité responsive : repasser en dessous et recentrer < 720px */
@media (max-width: 720px){
  .footer__content-top.page-width .footer-block--newsletter .list-social{
    position: static !important;
    justify-content: center !important;
    margin-top: 10px !important;
  }
}
/* ——— Newsletter : contour supprimé, alignement parfait, texte OK centré ——— */

/* 1) Supprimer le contour (noir) résiduel autour du champ et de son wrapper */
.footer__content-top.page-width .footer-block--newsletter .field,
.footer__content-top.page-width .footer-block--newsletter .newsletter-form__field-wrapper,
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  background: transparent !important;
  padding: 0 !important;
}
.footer__content-top.page-width .footer-block--newsletter .field::before,
.footer__content-top.page-width .footer-block--newsletter .field::after {
  display: none !important;
}

/* 2) Met le formulaire en flex, sans gap, et force mêmes hauteurs */
.footer__content-top.page-width .footer-block--newsletter form.footer__newsletter{
  display: flex !important;
  align-items: stretch !important;          /* mêmes hauteurs pour input + bouton */
  justify-content: center !important;
  gap: 0 !important;
  width: 100% !important;
}

/* Champ e-mail : liseré doré + même hauteur + fusion avec bouton */
.footer__content-top.page-width .footer-block--newsletter .field__input,
.footer__content-top.page-width .footer-block--newsletter input[type="email"]{
  box-sizing: border-box !important;
  width: 420px !important;                  /* ajuste 360–440 si besoin */
  max-width: 90vw !important;
  height: 44px !important;
  padding: 0 14px !important;
  border: 1px solid #D9D0BC !important;     /* liseré beige/doré */
  border-right: 0 !important;               /* fusion visuelle avec le bouton */
  border-radius: 10px 0 0 10px !important;
  background: #fff !important;
  outline: none !important;
  text-align: center !important;
}

/* 3) Bouton noir “OK” : même hauteur, aligné, texte centré */
#Subscribe.newsletter-form__button.field__button {
  box-sizing: border-box !important;
  position: static !important;              /* enlève tout absolu résiduel */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;       /* centre le texte */
  min-width: 56px !important;
  height: 44px !important;
  padding: 0 18px !important;
  border: 1px solid #D9D0BC !important;     /* même liseré que l’input */
  border-left: 0 !important;
  border-radius: 0 10px 10px 0 !important;
  background: #111 !important;
  color: #fff !important;
  line-height: normal !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  font-size: 14px;
}

/* On masque l’icône par défaut et on injecte "OK" */
#Subscribe.newsletter-form__button.field__button .svg-wrapper,
#Subscribe.newsletter-form__button.field__button .icon {
  display: none !important;
}
#Subscribe.newsletter-form__button.field__button::after {
  content: "OK";
}

/* 4) Icônes sociales : x2 et à droite sur la ligne du titre */
.footer__content-top.page-width .footer-block--newsletter { position: relative; }
.footer__content-top.page-width .footer-block--newsletter .list-social{
  position: absolute !important;
  top: 0;                                   /* aligné sur le titre */
  right: 0;                                 /* à droite */
  display: flex !important;
  gap: 16px !important;
}
.footer__content-top.page-width .footer-block--newsletter .list-social a svg{
  width: 52px !important;                   /* x2 (~26px → 52px) */
  height: 52px !important;
}

/* Sécurité responsive */
@media (max-width: 720px){
  .footer__content-top.page-width .footer-block--newsletter .list-social{
    position: static !important;
    justify-content: center !important;
    margin-top: 10px !important;
  }
}
/* — Alignement parfait du champ e-mail et du bouton OK — */

/* Même hauteur, mêmes bords, aucun décalage */
.footer__content-top.page-width .footer-block--newsletter .field {
  display: flex !important;
  align-items: stretch !important;   /* input et bouton = même hauteur */
  gap: 0 !important;
}

/* Input : bords gauche, pas d'ombre */
.footer__content-top.page-width .footer-block--newsletter .field__input {
  box-sizing: border-box !important;
  height: 44px !important;
  border: 1px solid #D9D0BC !important;
  border-right: 0 !important;                     /* fusionne avec le bouton */
  border-radius: 10px 0 0 10px !important;
  box-shadow: none !important;
  outline: none !important;
  margin: 0 !important;
}

/* Bouton : on enlève tous les décors natifs (coins/pseudo-éléments) */
#Subscribe.newsletter-form__button.field__button {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  min-width: 56px !important;
  padding: 0 18px !important;
  margin: 0 !important;
  background: #111 !important;
  color: #fff !important;
  border: 1px solid #D9D0BC !important;          /* même bord que l’input */
  border-left: 0 !important;                      /* fusion visuelle */
  border-radius: 0 10px 10px 0 !important;
  line-height: 44px !important;
  vertical-align: middle !important;
  position: relative !important;
  top: 0 !important;                               /* pas d’offset vertical */
}

/* Supprime les petits coins/bevels du thème Dawn */
#Subscribe.newsletter-form__button.field__button::before,
#Subscribe.newsletter-form__button.field__button::after,
#Subscribe.newsletter-form__button.field__button .svg-wrapper,
#Subscribe.newsletter-form__button.field__button .icon {
  display: none !important;
}

/* Texte “OK” centré (si pas déjà rendu côté HTML) */
#Subscribe.newsletter-form__button.field__button::after {
  content: "OK";
  font-weight: 600;
  letter-spacing: .04em;
}

/* (Micro-ajustement au cas où) :
   si tu vois encore 1px d’écart, dé-commente et ajuste la valeur. */
/*
#Subscribe.newsletter-form__button.field__button { top: -1px !important; }
*/
/* — Bouton Newsletter : flèche blanche élégante au centre — */

/* Neutralise tout le décor du bouton */
#Subscribe.newsletter-form__button.field__button,
#Subscribe.newsletter-form__button.field__button::before,
#Subscribe.newsletter-form__button.field__button::after {
  all: unset;
}

#Subscribe.newsletter-form__button.field__button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  width: 56px !important;
  background: #111 !important;              /* noir profond */
  border: 1px solid #D9D0BC !important;     /* liseré doré clair */
  border-left: 0 !important;
  border-radius: 0 10px 10px 0 !important;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Ajoute la flèche blanche centrée */
#Subscribe.newsletter-form__button.field__button::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;             /* flèche blanche */
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);                /* oriente la flèche → */
}

/* Variante dorée : active ce bloc et commente le précédent si tu préfères un doré clair */
/*
#Subscribe.newsletter-form__button.field__button::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #D9D0BC;
  border-bottom: 2px solid #D9D0BC;
  transform: rotate(-45deg);
}
*/

/* Effet au survol (facultatif) */
#Subscribe.newsletter-form__button.field__button:hover {
  background: #333 !important;
}
/* — Bouton Newsletter : flèche visible, centrée et élégante — */

#Subscribe.newsletter-form__button.field__button {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  width: 56px !important;
  background: #111 !important;               /* fond noir */
  border: 1px solid #D9D0BC !important;      /* liseré doré clair */
  border-left: 0 !important;
  border-radius: 0 10px 10px 0 !important;
  cursor: pointer;
  overflow: visible !important;              /* permet à la flèche d’apparaître */
}

/* Flèche blanche bien centrée */
#Subscribe.newsletter-form__button.field__button::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;              /* couleur flèche */
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  pointer-events: none;
}

/* — Variante dorée : décommente si tu préfères un doré clair — */
/*
#Subscribe.newsletter-form__button.field__button::after {
  border-right-color: #D9D0BC;
  border-bottom-color: #D9D0BC;
}
*/

/* Effet de survol léger */
#Subscribe.newsletter-form__button.field__button:hover {
  background: #2c2c2c !important;
}
/* —— BOUTON NL : force l'icône flèche visible —— */

/* 0) base du bouton (hauteur, fusion avec l'input) */
#Subscribe.newsletter-form__button.field__button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  min-width: 56px !important;
  padding: 0 16px !important;
  margin: 0 !important;

  background: #111 !important;
  color: #fff !important;

  border: 1px solid #D9D0BC !important;   /* liseré doré clair */
  border-left: 0 !important;
  border-radius: 0 10px 10px 0 !important;

  box-shadow: none !important;
  overflow: visible !important;            /* rien n'est masqué */
  line-height: 44px !important;
}

/* 1) MASQUER les décorations natives et le span interne */
#Subscribe.newsletter-form__button.field__button .svg-wrapper { display: none !important; }
#Subscribe.newsletter-form__button.field__button::before { content: none !important; }
#Subscribe.newsletter-form__button.field__button::after { content: none !important; }

/* 2) AJOUTER NOTRE FLÈCHE (priorité maximale) */
#Subscribe.newsletter-form__button.field__button::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) rotate(-45deg) !important;

  width: 12px !important;
  height: 12px !important;
  box-sizing: border-box !important;

  border-right: 2px solid #ffffff !important;   /* ← flèche BLANCHE */
  border-bottom: 2px solid #ffffff !important;

  z-index: 3 !important;
  pointer-events: none !important;
}

/* — Variante doré clair : décommente ces 2 lignes si tu préfères — */
/*
#Subscribe.newsletter-form__button.field__button::after {
  border-right-color: #D9D0BC !important;
  border-bottom-color: #D9D0BC !important;
}
*/
/* — BOUTON NL : flèche en image de fond (pas de pseudo-élément) — */

/* Base propre + fusion avec l’input (garde tes règles de hauteur 44px) */
#Subscribe.newsletter-form__button.field__button {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 44px !important;
  min-width: 56px !important;
  padding: 0 !important;                 /* pas de texte => pas besoin de padding */
  margin: 0 !important;

  background-color: #111 !important;     /* fond noir */
  border: 1px solid #D9D0BC !important;  /* liseré doré clair */
  border-left: 0 !important;             /* fusionne avec l’input */
  border-radius: 0 10px 10px 0 !important;

  line-height: 1 !important;
  box-shadow: none !important;
  overflow: visible !important;
  cursor: pointer;
}

/* On masque tout contenu interne éventuel (icône native / span) */
#Subscribe.newsletter-form__button.field__button .svg-wrapper,
#Subscribe.newsletter-form__button.field__button .icon {
  display: none !important;
}

/* 1) Variante FLÈCHE BLANCHE (par défaut) */
#Subscribe.newsletter-form__button.field__button {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='12 5 19 12 12 19'/></svg>");
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 14px 14px !important;   /* ajuste 12–16 si besoin */
}

/* 2) Variante FLÈCHE DORÉE : décommente ce bloc si tu préfères */
/*
#Subscribe.newsletter-form__button.field__button {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23D9D0BC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>');
}
*/

/* Effet hover discret */
#Subscribe.newsletter-form__button.field__button:hover {
  background-color: #2c2c2c !important;
}
/* Code pour centrer le logo de la page mot de passe sur Dawn (Desktop) */
@media (min-width: 750px) { 
  [id*='password'] .password-header { 
    display: flex !important;
    justify-content: center !important;
  }
}
/* 1. Définir le bouton par son ID unique pour l'écrasement des styles */
#Submit-template--26682393259029__email-signup-banner-button {
    position: relative !important;
    background-color: #000 !important;
    color: white !important;
    border: none !important;
    padding: 10px !important;
    overflow: hidden !important; /* Important pour le positionnement */
}
/* CORRECTION ULTIME V2 : Remplace l'icône SVG par une flèche CSS */

/* 1. Force le bouton à utiliser notre flèche CSS au lieu de la flèche SVG */
#Submit-template--26682393259029__email-signup-banner-button {
    /* Maintient le style de base */
    background-color: #000 !important;
    color: white !important;
    border: none !important;
    position: relative !important;
    
    /* SUPPRIME L'ICONE SVG DU THÈME ET AJOUTE NOTRE FLÈCHE */
    background-image: none !important; /* Désactive la flèche SVG */
}

/* 2. Ajoute la flèche blanche via un nouveau pseudo-élément ::before (le plus sûr pour éviter les conflits) */
#Submit-template--26682393259029__email-signup-banner-button::before {
    /* Reset des propriétés existantes si elles existent */
    background-image: none !important;
    box-shadow: none !important;

    /* Flèche blanche CSS */
    content: '' !important;
    display: block !important;
    width: 8px !important;
    height: 8px !important;
    border-top: 2px solid white !important;
    border-right: 2px solid white !important;
    
    /* Centrage */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
    
    z-index: 10 !important; /* Force la flèche à être au-dessus de tout */
}

/* 3. S'assure que le texte "S'inscrire" n'est pas visible */
#Submit-template--26682393259029__email-signup-banner-button span {
    display: none !important; 
}

/* 4. Annule tous les autres pseudo-éléments potentiels pour la flèche */
#Submit-template--26682393259029__email-signup-banner-button::after {
    display: none !important;
    content: none !important;
}
/* CODE AJOUTÉ : Flèche de bouton personnalisée */
/* ------------------------------------------- */

/* 1. Styles du bouton et suppression de l'icône SVG par défaut */
.custom-arrow {
    background-image: none !important; /* Force la suppression de l'icône SVG de Shopify */
    background-color: #000 !important; /* Fond noir */
    color: white !important; /* Couleur du texte (non visible ici, mais bonne pratique) */
    border: none !important;
    position: relative !important;
    overflow: hidden !important; 
}

/* 2. Styles du conteneur pour positionner la flèche */
.custom-arrow-container {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

/* 3. Création de la flèche CSS (le pseudo-élément ::before) */
.custom-arrow-container::before {
    content: '' !important;
    display: block !important;
    width: 8px !important;
    height: 8px !important;
    border-top: 2px solid white !important; /* Ligne supérieure de la flèche */
    border-right: 2px solid white !important; /* Ligne droite de la flèche */
    
    /* Centrage et rotation de 45 degrés */
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
    z-index: 10 !important;
}
/* Corrige l'espacement vertical créé par le texte en gras */
p strong, p b {
  font-weight: 700;              /* garde la graisse normale du gras */
  line-height: 1.4em !important; /* uniformise la hauteur de ligne */
  vertical-align: baseline;      /* évite de remonter le texte gras */
}

/* Réduction de l'espace sous le titre "Produits" sur la page Boutique */
.template-collection .collection .section-header,
.template-collection .collection .collection-hero,
.template-collection .shopify-section-template--product-grid {
  margin-bottom: 1.5rem !important;  /* valeur ajustée */
  padding-bottom: 0 !important;
}

 * Correction de l'espacement excessif créé par le texte en gras.
 * Le 'vertical-align' remonte légèrement la zone de ligne du gras (<strong>)
 * pour qu'il ne pousse pas la ligne de texte vers le bas.
*/
strong, b {
    /* * 'vertical-align: middle' est le plus sûr, mais peut ne pas suffire.
     * Si le problème persiste, essayez 'vertical-align: -0.1em;' 
     * ou 'vertical-align: -1px;' pour un ajustement fin.
    */
    vertical-align: baseline; /* Commence par la valeur par défaut pour s'assurer */
    line-height: 1;           /* Force l'interligne à la hauteur de la police */
    /* Réglage fin pour remonter légèrement la zone si nécessaire */
    position: relative; 
    top: -0.01em; /* Ajustez cette valeur si l'espace est toujours trop grand */
}

/* Réduit l'espace général entre le haut de la page et la grille produits */
.template-collection .collection {
  padding-top: 1rem !important; /* réduit de ~70% par rapport aux ~6rem par défaut */
}


.collection-header {
    margin-bottom: 1rem !important;
}

/* --- 🌙 BANNIÈRE RESPONSIVE BOUCLE D’OR --- */

/* 1️⃣ — Gestion des images desktop et mobile */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}

@media screen and (max-width: 749px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
}

/* 2️⃣ — Ajustement du positionnement du contenu mobile */
@media screen and (max-width: 749px) {
  /* Boîte globale du contenu (titre + bouton) */
  .banner__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* place tout en bas */
    padding-bottom: 3.5rem !important; /* distance par rapport au bord bas */
    min-height: 100%; /* assure que le conteneur prend toute la hauteur */
  }

  /* Le texte reste centré horizontalement */
  .banner__box {
    align-items: center;
    text-align: center;
  }

  /* Bouton plus bas, bien séparé du titre */
  .banner__buttons {
    margin-top: 1.5rem !important;
  }
}

/* 3️⃣ — Style optionnel : légère ombre au texte sur mobile pour lisibilité */
@media screen and (max-width: 749px) {
  .banner__heading {
    text-


}
@media screen and (max-width: 749px) {
  .banner__buttons {
    margin-top: 18rem !important; /* ajuste cette valeur */
  }

@media screen and (max-width: 749px) {
  .banner__buttons .button {
    font-size: 0.9rem !important;
    padding: 0.5em 1.2em !important;
  }
  /* ----- Upsell panier : Agate Solitaire (Boucle d’Or Paris) ----- */
.cart__upsell-bop{
  border-top: 1px solid #D4B037;
  padding-top: 16px;
  margin-top: 20px;
  background: linear-gradient(180deg, rgba(250,247,240,0.35), rgba(250,247,240,0));
  border-radius: 10px;
  text-align: center;
}
.cart__upsell-headline{
  font-family: 'Gilda Display', serif;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: #0D0250;
  margin-bottom: 6px;
}
.cart__upsell-text{
  font-family: 'Lora', serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: #1A1A1A;
  margin: 0 0 12px;
}
.cart__upsell-cta.button{
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  background-color: #D4B037;
  border: 1px solid #D4B037;
  color: #fff;
  text-transform: none;
  letter-spacing: .02em;
  font-weight: 500;
  transition: transform .18s ease, background-color .18s ease;
}
.cart__upsell-cta.button:hover{ background-color: #bfa02f; border-color: #bfa02f; transform: translateY(-1px); }
.cart__upsell-cta.button.alt{ background-color: #111; border-color: #111; }
.cart__upsell-cta.button.alt:hover{ background-color: #2a2a2a; border-color: #2a2a2a; }

.cart__upsell-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 10px;
}
.cart__upsell-card{
  display: flex; flex-direction: column; align-items: center; text-decoration: none;
  border: 1px solid #E8E1D0; border-radius: 10px; padding: 10px; background: #FFFEFB;
}
.cart__upsell-card img{ width: 100%; height: auto; border-radius: 8px; }
.cart__upsell-card-title{ margin-top: 8px; font-size: 14.5px; color: #111; text-align: center; }
.cart__upsell-card-cta{ margin-top: 4px; font-size: 13px; color: #0D0250; }
@media (max-width: 749px){ .cart__upsell-grid{ grid-template-columns: 1fr 1fr; } }

/* Styles pour que les agates solitaires s'affichent en ligne dans le panier */

.cartdrawer__upsell-grid {
  display: flex; /* Utilise Flexbox pour aligner les éléments sur une ligne */
  flex-wrap: wrap; /* Permet aux éléments de passer à la ligne si l'écran est trop petit */
  gap: 1.5rem; /* Ajoute un espace entre les cartes d'upsell (ajustez si besoin) */
  justify-content: center; /* Centre les cartes si elles ne remplissent pas toute la largeur */
  /* max-width: 100%; <- Si vous avez des problèmes de débordement, assurez-vous que ceci est bien en place sur un conteneur parent */
}

.cartdrawer__upsell-card {
  flex: 0 0 auto; /* Empêche les cartes de s'étirer ou de rétrécir automatiquement */
  width: calc((100% / 5) - 1.5rem); /* Calcule la largeur pour 5 éléments par ligne avec un gap (ajustez le "5" si vous voulez moins d'éléments par ligne) */
  text-align: center; /* Centre le texte sous chaque image */
  text-decoration: none; /* Enlève le soulignement des liens */
  color: inherit; /* Utilise la couleur de texte par défaut */
  display: flex; /* Permet de mieux contrôler l'alignement vertical des éléments dans la carte */
  flex-direction: column; /* Organise le contenu de la carte en colonne */
  align-items: center; /* Centre les éléments de la carte horizontalement */
}

/* Styles spécifiques pour les images dans les cartes d'upsell */
.cartdrawer__upsell-card img {
  max-width: 100%; /* S'assure que l'image ne déborde pas de sa carte */
  height: auto; /* Maintient le ratio d'aspect */
  object-fit: contain; /* S'assure que l'image entière est visible */
  margin-bottom: 0.5rem; /* Un peu d'espace sous l'image */
}

/* Media Queries pour le Responsive (très important !) */
@media screen and (max-width: 990px) { /* Par exemple, pour les tablettes */
  .cartdrawer__upsell-card {
    width: calc((100% / 3) - 1.5rem); /* 3 éléments par ligne */
  }
}

@media screen and (max-width: 749px) { /* Par exemple, pour les mobiles */
  .cartdrawer__upsell-card {
    width: calc((100% / 2) - 1.5rem); /* 2 éléments par ligne */
  }
}

@media screen and (max-width: 480px) { /* Petits mobiles */
  .cartdrawer__upsell-card {
    width: 100%; /* 1 élément par ligne */
  }
}
/* Assurez-vous que ce bloc est bien ajouté à votre CSS (base.css ou custom.css) */

.cartdrawer__upsell-card {
  /* ... (autres styles pour la mise en page en ligne) ... */
  
  /* CES TROIS LIGNES SONT CRUCIALES POUR LE CONTENU DE LA CARTE */
  display: flex; /* Active Flexbox pour la carte */
  flex-direction: column; /* Force le contenu à s'empiler verticalement */
  align-items: center; /* Centre le contenu (image, titre, bouton) horizontalement */
  
  /* Pour gérer les sauts de ligne du texte si besoin */
  text-align: center;
}

/* Ajoutez un peu d'espace si le titre est collé à l'image */
.cartdrawer__upsell-card img {
  margin-bottom: 0.5rem; /* Ajoute un petit espace sous l'image */
}

/* AJUSTEMENT POUR LA GRILLE EN LIGNE (5 produits) */
.cartdrawer__upsell-grid {
  display: flex;
  flex-wrap: wrap; 
  gap: 1.5rem; /* Espace entre les cartes */
  justify-content: space-between; 
}

/* FORCER LA CARTE À ÊTRE EN COLONNE (Image en haut, texte en bas) */
.cartdrawer__upsell-card {
  /* Ces propriétés sont CRUCIALES pour l'empilement vertical */
  display: flex !important; /* Ajout de !important si nécessaire */
  flex-direction: column !important; /* Force l'empilement vertical */
  align-items: center; /* Centre le contenu horizontalement */
  
  /* Largeur pour 5 colonnes */
  width: 18%; /* 18% pour laisser 2% de marge entre chaque élément */
  text-align: center;
}

/* S'assurer que les éléments de texte prennent la place nécessaire */
.cartdrawer__upsell-card .cartdrawer__upsell-card-title,
.cartdrawer__upsell-card .button {
  width: 100%; /* Permet de centrer les blocs de texte */
  margin-top: 0.5rem; /* Espace entre les éléments */
}

/* Ajuster l'image */
.cartdrawer__upsell-card img {
  max-width: 100%;
  height: auto;
}

/* Media Query pour le Responsive (très important !) */
@media screen and (max-width: 990px) {
  .cartdrawer__upsell-card {
    width: 30%; /* 3 éléments par ligne */
  }
}
/* ===== Upsell Panier – grille 5 colonnes ===== */

#CartUpsell,
#CartUpsell ul,
#CartUpsell .list,
.cartupsell__grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 1200px){ #CartUpsell{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 960px) { #CartUpsell{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { #CartUpsell{ grid-template-columns: repeat(2, 1fr); } }

.cartupsell__card { 
  display: flex; 
  flex-direction: column; 
  text-align: center; 
}

.cartupsell__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 6%);
}

.cartupsell__name { margin-top: .5rem; font-size: .92rem; }

.cartupsell__btn {
  margin-top: .5rem;
  padding: .55rem .9rem;
  font-size: .9rem;
  width: 100%;
  border-radius: 999px;
}
/* --- Correctif Upsell Panier (Boucle d'Or Paris) --- */

#CartUpsell {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  justify-items: center;
}

@media (max-width: 1200px) {
  #CartUpsell { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 960px) {
  #CartUpsell { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  #CartUpsell { grid-template-columns: repeat(2, 1fr); }
}

.cartupsell__card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Taille d’image harmonisée */
.cartupsell__img {
  width: 140px !important;
  height: 140px !important;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 6%);
}

/* Nom du produit */
.cartupsell__name {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

/* Bouton "Ajouter" */
.cartupsell__btn {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background-color: #0d0d0d;
  color: white;
  transition: background-color 0.3s ease;
}

.cartupsell__btn:hover {
  background-color: #3c3c3c;
}
