/** Shopify CDN: Minification failed

Line 44:0 All "@import" rules must come first

**/
/* ============================================================
   HÉRITAGE BOTANIQUE — Brand Stylesheet
   Charte : vert foncé #264444 · crème #F4EDDF · terracotta #C07653
            bordeaux #5E2424 · bleu-gris #9AADAC
   ============================================================ */

/* ── Fond beige global corps de page ── */
body.gradient {
  background: #F4EDDF !important;
}

/* ── Fond beige section trois-piliers (4 étapes) ── */
#shopify-section-template--28579783704953__trois-piliers {
  background-color: #F4EDDF !important;
  background-image: none !important;
}
.shopify-section:has(.hb-etapes) {
  background-color: #F4EDDF !important;
}
.hb-etapes,
.hb-etapes > div,
.shopify-section .hb-etapes {
  background-color: #F4EDDF !important;
}

/* ── Indicateur bains ── */
.hb-bains-indicator {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #264444;
  opacity: 0.75;
  letter-spacing: 0.03em;
  margin: 8px 0 0;
  line-height: 1.4;
}

/* --- Google Fonts ------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* --- CSS Tokens -------------------------------------------- */
:root {
  --hb-vert:       #264444;
  --hb-creme:      #F4EDDF;
  --hb-terracotta: #C07653;
  --hb-bordeaux:   #5E2424;
  --hb-bleu-gris:  #9AADAC;

  --hb-font-display: 'Cormorant Garamond', Georgia, serif;
  --hb-font-body:    'Montserrat', Helvetica Neue, sans-serif;

  --hb-ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --hb-ease-out: cubic-bezier(0, 0, 0.2, 1);
  --hb-duration: 0.35s;
}

/* ============================================================
   TYPOGRAPHIE GLOBALE
   ============================================================ */

body {
  font-family: var(--hb-font-body) !important;
  font-weight: 400;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.h0, .h1, .h2, .h3, .hxl, .hxxl,
.card__heading,
.product__title {
  font-family: var(--hb-font-display) !important;
  font-weight: 300 !important;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

/* ============================================================
   SECTION : HERO TRIO (3 photos côte à côte)
   ============================================================ */

.hb-hero-trio-section {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.hb-hero-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: var(--trio-height, 580px);
  gap: 2px;
  width: 100%;
}

.hb-hero-trio__item {
  position: relative;
  overflow: hidden;
}

.hb-hero-trio__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--hb-ease);
}

.hb-hero-trio__item:hover .hb-hero-trio__img {
  transform: scale(1.04);
}

/* Mobile : empilés en 1 colonne */
@media screen and (max-width: 749px) {
  .hb-hero-trio {
    grid-template-columns: 1fr;
    height: auto;
    gap: 2px;
  }

  .hb-hero-trio__item {
    height: 280px;
  }
}

/* ============================================================
   SECTION : CARTES BOTANIQUES OVALES
   ============================================================ */

.hb-botanical-features {
  display: block;
}

.hb-features {
  padding-top: var(--hb-features-pt, 60px);
  padding-bottom: var(--hb-features-pb, 60px);
}

.hb-features__title {
  text-align: center;
  margin-bottom: 3rem;
}

.hb-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  align-items: center;
  max-width: 900px;
  margin-inline: auto;
}

/* La carte */
.hb-oval-card {
  display: flex;
  justify-content: center;
}

.hb-oval-card__inner {
  position: relative;
  width: 100%;
  /* Forme ovale / pill */
  border-radius: 999px;
  aspect-ratio: 3 / 4.8;
  overflow: hidden;
  cursor: default;
  transition: transform var(--hb-duration) var(--hb-ease-out),
              box-shadow var(--hb-duration) var(--hb-ease-out);
}

.hb-oval-card__inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(38, 68, 68, 0.18);
}

/* Background image */
.hb-oval-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--hb-ease);
}

.hb-oval-card__inner:hover .hb-oval-card__bg {
  transform: scale(1.06);
}

/* Background couleur unie */
.hb-oval-card__bg--color {
  background-size: auto;
}

/* Overlay vert sur les cartes image */
.hb-oval-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(38, 68, 68, 0.40);
  transition: background 0.5s ease;
  z-index: 1;
}

.hb-oval-card__inner:hover .hb-oval-card__overlay {
  background: rgba(38, 68, 68, 0.95);
}

/* Contenu texte */
.hb-oval-card__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 2rem;
  text-align: center;
  color: #F4EDDF;
}

.hb-oval-card__title {
  font-family: var(--hb-font-display) !important;
  font-weight: 300 !important;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #FFFFFF !important;
  margin: 0 0 1rem;
}

/* Carte couleur unie : titre en italique */
.hb-oval-card--color .hb-oval-card__title {
  font-style: italic;
  font-size: clamp(2rem, 2.2vw, 3rem);
}

.hb-oval-card__text {
  font-family: var(--hb-font-body) !important;
  font-size: 1.35rem;
  line-height: 1.75;
  color: #FFFFFF !important;
  margin: 0;
}

.hb-oval-card__link {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F4EDDF;
  border-bottom: 1px solid rgba(244, 237, 223, 0.5);
  padding-bottom: 2px;
  transition: border-color var(--hb-duration) var(--hb-ease);
  text-decoration: none;
}

.hb-oval-card__link:hover {
  border-color: #F4EDDF;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .hb-features__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 320px;
  }

  .hb-oval-card__inner {
    aspect-ratio: 3 / 4;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.header__heading-link,
.header__menu-item {
  font-family: var(--hb-font-body) !important;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.2rem !important;
}

/* Logo texte */
.header__heading .h2 {
  font-family: var(--hb-font-display) !important;
  font-weight: 300 !important;
  letter-spacing: 0.2em;
  font-size: 2.2rem;
}

/* Barre annonce : diamond separators */
.announcement-bar .announcement-bar__message {
  font-family: var(--hb-font-body) !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
}

/* ============================================================
   BOUTONS
   ============================================================ */

.button,
.shopify-payment-button__button {
  font-family: var(--hb-font-body) !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  transition: background var(--hb-duration) var(--hb-ease),
              color var(--hb-duration) var(--hb-ease),
              border-color var(--hb-duration) var(--hb-ease),
              opacity var(--hb-duration) var(--hb-ease) !important;
}

.button:not(.button--secondary):hover {
  opacity: 0.85;
}

/* ============================================================
   CARTES PRODUITS
   ============================================================ */

.card-wrapper {
  transition: transform var(--hb-duration) var(--hb-ease-out);
}

.card-wrapper:hover {
  transform: translateY(-4px);
}

.card__media {
  overflow: hidden;
}

.card__media img {
  transition: transform 0.65s var(--hb-ease);
}

.card-wrapper:hover .card__media img {
  transform: scale(1.05);
}

.card__heading a {
  font-family: var(--hb-font-display) !important;
  font-weight: 300 !important;
  letter-spacing: 0.06em;
  font-size: 1.8rem;
}

.price {
  font-family: var(--hb-font-body) !important;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ============================================================
   SECTION : INTRO DE MARQUE (rich-text)
   ============================================================ */

.rich-text__heading {
  font-size: clamp(2.8rem, 3.5vw, 4.8rem) !important;
  font-style: italic;
}

.rich-text__text {
  font-size: 1.55rem !important;
  line-height: 1.85 !important;
  max-width: 680px;
  margin-inline: auto;
  opacity: 0.82;
}

/* ============================================================
   SECTION : IMAGE + TEXTE
   ============================================================ */

.image-with-text__heading {
  font-size: clamp(2.2rem, 2.8vw, 3.6rem);
  font-style: italic;
}

.image-with-text__text {
  font-size: 1.5rem;
  line-height: 1.8;
  opacity: 0.88;
}

/* Caption / surtitre */
.caption {
  font-family: var(--hb-font-body) !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ============================================================
   SECTION : MULTICOLONNE / VALEURS
   ============================================================ */

.multicolumn-card__title {
  font-family: var(--hb-font-display) !important;
  font-weight: 300 !important;
  font-size: 2rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.multicolumn-card__info {
  font-size: 1.45rem;
  line-height: 1.75;
  opacity: 0.82;
}

/* Trait décoratif terracotta */
.multicolumn-card::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 1px;
  background-color: var(--hb-terracotta);
  margin: 0 auto 1.8rem;
}

.multicolumn .multicolumn__grid {
  text-align: center;
}

/* ============================================================
   SECTION : NEWSLETTER
   ============================================================ */

.newsletter__heading {
  font-size: clamp(2.4rem, 3vw, 4rem) !important;
  font-style: italic;
}

.newsletter .field__input {
  border-radius: 0 !important;
  font-family: var(--hb-font-body) !important;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer__content-top .footer-block__heading {
  font-family: var(--hb-font-display) !important;
  font-weight: 300 !important;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

/* ============================================================
   DÉTAIL PRODUIT
   ============================================================ */

.product__title {
  font-size: clamp(2.8rem, 3.5vw, 4.4rem) !important;
  font-style: italic;
}

.product__description {
  font-size: 1.5rem;
  line-height: 1.85;
}

/* ============================================================
   MICRO-INTERACTIONS GLOBALES
   ============================================================ */

a:not(.button):not(.btn) {
  transition: opacity var(--hb-duration) var(--hb-ease);
}

a:not(.button):not(.btn):hover {
  opacity: 0.65;
}

/* ============================================================
   PAGE À PROPOS — Styles spécifiques
   ============================================================ */

/* Titre "MON HISTOIRE" — grande serif uppercase */
.template-page .rich-text__heading {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(4rem, 6vw, 7.2rem) !important;
  font-style: normal !important;
  color: var(--hb-vert);
}

/* Blocs image + texte de l'histoire : arrondi sur les images */
.template-page .image-with-text__media {
  border-radius: 10px;
  overflow: hidden;
}

/* Arrondi images sur toutes les pages À PROPOS */
.template-page .media {
  border-radius: 10px;
  overflow: hidden;
}

/* Caption "NOTRE MISSION" / "NOTRE VISION" — terracotta, uppercase, label */
.template-page .image-with-text__text-item .caption {
  color: var(--hb-terracotta) !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  margin-bottom: 1.6rem !important;
  display: block;
}

/* Heading NOTRE MISSION/VISION — sous le caption, statement fort */
.template-page .image-with-text__heading {
  font-size: clamp(1.8rem, 2.2vw, 2.8rem) !important;
  font-style: normal !important;
  font-weight: 300 !important;
  line-height: 1.3 !important;
  color: var(--hb-vert);
  margin-top: 0;
}

/* Texte corps à propos */
.template-page .image-with-text__text {
  font-size: 1.45rem !important;
  line-height: 1.85 !important;
  opacity: 0.88;
}

/* Signature fondatrice en italique */
.template-page .image-with-text__text em {
  display: block;
  margin-top: 2rem;
  font-style: italic;
  font-family: var(--hb-font-display) !important;
  font-size: 1.6rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ============================================================
   SECTION : BANDE STATISTIQUES
   ============================================================ */

.hb-stats-band {
  display: block;
}

.hb-stats-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.hb-stats-band__item {
  flex: 1;
  text-align: center;
  padding: 0 3rem;
}

.hb-stats-band__number {
  font-family: var(--hb-font-display) !important;
  font-weight: 300 !important;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  color: rgb(var(--color-foreground));
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.hb-stats-band__label {
  font-family: var(--hb-font-body) !important;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(var(--color-foreground));
  opacity: 0.8;
}

.hb-stats-band__divider {
  width: 1px;
  height: 4rem;
  background-color: rgba(var(--color-foreground), 0.3);
  flex-shrink: 0;
}

/* Mobile */
@media screen and (max-width: 749px) {
  .hb-stats-band__inner {
    flex-direction: column;
    gap: 2.4rem;
  }

  .hb-stats-band__divider {
    width: 3rem;
    height: 1px;
  }

  .hb-stats-band__item {
    padding: 0 1.6rem;
  }
}

/* ============================================================
   FOOTER — 4 colonnes
   ============================================================ */

.footer__content-top {
  border-top: 1px solid rgba(var(--color-foreground), 0.12);
}

.footer__content-top .footer-block__heading {
  font-family: var(--hb-font-display) !important;
  font-weight: 300 !important;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
  margin-bottom: 1.6rem;
}

.footer__list a {
  font-size: 1.35rem;
  line-height: 2.2;
  opacity: 0.75;
  transition: opacity var(--hb-duration) var(--hb-ease);
}

.footer__list a:hover {
  opacity: 1;
}

/* Disclaimer text dans footer */
.footer-block .rte p {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.55;
  margin-top: 0.8rem;
}

.footer__copyright {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

/* ============================================================
   RESPONSIVE AJUSTEMENTS
   ============================================================ */

@media screen and (max-width: 749px) {
  .rich-text__text {
    font-size: 1.45rem !important;
  }

  .multicolumn-card::before {
    margin-bottom: 1.2rem;
  }

  .template-page .rich-text__heading {
    font-size: clamp(3rem, 10vw, 5rem) !important;
    letter-spacing: 0.08em;
  }
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes hb-fade-up {
  from { opacity: 0; transform: translateY(2rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hb-scroll-pulse {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   SCROLL REVEAL — .hb-reveal / .hb-visible
   Removed via JS after transition to avoid hover conflicts
   ============================================================ */

.hb-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hb-reveal.hb-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hb-reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   HERO TRIO — Overlay texte & scroll indicator
   ============================================================ */

.hb-hero-trio-section {
  position: relative;
}

.hb-hero-trio__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.38) 50%,
    rgba(0, 0, 0, 0.18) 100%
  );
  z-index: 5;
  pointer-events: none;
}

.hb-hero-trio__overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem 8rem;
  pointer-events: none;
}

.hb-hero-trio__eyebrow {
  display: block;
  font-family: var(--hb-font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 237, 223, 0.78);
  margin-bottom: 2rem;
  animation: hb-fade-up 0.85s var(--hb-ease-out) 0.2s both;
}

.hb-hero-trio__headline {
  font-family: var(--hb-font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 6.5vw, 7.2rem);
  letter-spacing: 0.06em;
  color: #F4EDDF;
  line-height: 1.08;
  margin: 0 0 3.6rem;
  max-width: 84rem;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.22);
  animation: hb-fade-up 0.85s var(--hb-ease-out) 0.42s both;
}

.hb-hero-trio__cta {
  display: inline-block;
  font-family: var(--hb-font-body);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F4EDDF;
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(244, 237, 223, 0.45);
  pointer-events: all;
  animation: hb-fade-up 0.85s var(--hb-ease-out) 0.64s both;
  transition: border-color 0.3s var(--hb-ease), letter-spacing 0.3s var(--hb-ease);
}
.hb-hero-trio__cta:hover {
  border-color: rgba(244, 237, 223, 1);
  letter-spacing: 0.28em;
  opacity: 1 !important;
}

.hb-hero-trio__scroll {
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  pointer-events: none;
  animation: hb-fade-in 1s var(--hb-ease-out) 1.2s both;
}
.hb-hero-trio__scroll-label {
  font-family: var(--hb-font-body);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 223, 0.45);
}
.hb-hero-trio__scroll-line {
  display: block;
  width: 1px;
  height: 4rem;
  background: rgba(244, 237, 223, 0.35);
  animation: hb-scroll-pulse 2.2s ease-in-out 1.6s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hb-hero-trio__eyebrow,
  .hb-hero-trio__headline,
  .hb-hero-trio__cta,
  .hb-hero-trio__scroll { animation: none; opacity: 1; transform: none; }
}
@media screen and (max-width: 749px) {
  .hb-hero-trio__scroll { display: none; }
  .hb-hero-trio__headline { font-size: clamp(2.4rem, 8vw, 4rem); }
  .hb-hero-trio__overlay { padding-bottom: 4rem; }
}

/* ============================================================
   PAGE À PROPOS — Améliorations
   ============================================================ */

/* Ligne terracotta sous le titre MON HISTOIRE */
.template-page .section-rich-text:first-of-type .rich-text__heading {
  padding-bottom: 3.2rem;
  position: relative;
}
.template-page .section-rich-text:first-of-type .rich-text__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.2rem;
  height: 1px;
  background-color: var(--hb-terracotta);
}

/* Cadre décalé derrière les photos portrait */
.template-page .image-with-text__media {
  position: relative;
  z-index: 1;
}
.template-page .image-with-text__media::after {
  content: '';
  position: absolute;
  top: 1.6rem;
  right: -1.6rem;
  bottom: -1.6rem;
  left: 1.6rem;
  border: 1px solid rgba(38, 68, 68, 0.18);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}

/* Paragraphes du récit */
.template-page .image-with-text__text-item .image-with-text__text p {
  font-size: 1.5rem !important;
  line-height: 1.9 !important;
}

/* Signature de la fondatrice */
.template-page .image-with-text__text-item .image-with-text__text em {
  font-family: var(--hb-font-display) !important;
  font-size: 1.7rem;
  font-style: italic;
  display: block;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(38, 68, 68, 0.12);
}

/* ============================================================
   PAGE NOS PLANTES — Multirow hover
   ============================================================ */

/* Caption terracotta */
.section-multirow .caption-with-letter-spacing {
  color: var(--hb-terracotta) !important;
}

/* Heading italic */
.section-multirow .multirow__heading {
  font-style: italic;
  font-size: clamp(2.4rem, 3.2vw, 3.8rem) !important;
}

/* Corps de texte */
.section-multirow .rte p {
  font-size: 1.5rem !important;
  line-height: 1.85 !important;
  opacity: 0.85;
  max-width: 52rem;
}

/* Hover sur chaque rangée */
.section-multirow .multirow__grid {
  transition: background-color 0.45s var(--hb-ease);
  padding-top: 5.6rem;
  padding-bottom: 5.6rem;
}
.section-multirow .multirow__grid:hover {
  background-color: rgba(38, 68, 68, 0.03);
}

/* Séparateur entre rangées */
.section-multirow .multirow__grid + .multirow__grid {
  border-top: 1px solid rgba(38, 68, 68, 0.1);
}

/* Zoom image au hover */
.section-multirow .multirow__grid .media {
  overflow: hidden;
  border-radius: 10px;
}
.section-multirow .multirow__grid .media img {
  transition: transform 0.85s var(--hb-ease) !important;
}
.section-multirow .multirow__grid:hover .media img {
  transform: scale(1.06) !important;
}

/* ============================================================
   HOMEPAGE — Améliorations
   ============================================================ */

/* Ligne verticale terracotta avant brand intro */
.section-rich-text .rich-text__wrapper--center {
  position: relative;
  padding-top: 4.8rem;
}
.section-rich-text .rich-text__wrapper--center::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 4rem;
  background-color: var(--hb-terracotta);
  opacity: 0.55;
}

/* Cartes produit : lift + shadow renforcés */
.card-wrapper:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 56px rgba(38, 68, 68, 0.14) !important;
}

/* Titre produit italic */
.card__heading a { font-style: italic; }

/* Prix terracotta au hover */
.card-wrapper:hover .price__regular {
  color: var(--hb-terracotta);
  transition: color 0.3s var(--hb-ease);
}

/* ============================================================
   GRAIN TEXTURE — Stats band
   ============================================================ */

.hb-stats-band-section {
  position: relative;
  isolation: isolate;
}
.hb-stats-band-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: soft-light;
}

/* ============================================================
   HEADER SPLIT NAV — desktop uniquement (min-width: 990px)
   Structure : [nav gauche] [logo absolu centré] [nav droite + icônes]
   ============================================================ */

@media screen and (min-width: 990px) {
  /* 1. Hamburger toujours caché sur desktop */
  header-drawer { display: none !important; }

  /* 2. Header : flex horizontal, fond crème, hauteur ajustée pour logo 114px */
  .header--middle-center {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background-color: #F4EDDF;
    padding: 0 40px;
    height: 130px;
    gap: 0;
  }

  /* 3. Logo : absolu, parfaitement centré */
  .header--middle-center > .header__heading {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2;
    margin: 0;
  }

  /* 4. Nav inline : flex horizontal */
  .header--middle-center > .header__inline-menu {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    margin: 0;
    z-index: 1;
  }

  /* 5. Icônes : flex horizontal */
  .header--middle-center .header__icons {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  /* 6. Cache les icônes Dawn standalone (elles sont dans .hb-right-group) */
  .header--middle-center > .header__icons { display: none !important; }

  /* 7. Groupe droit : nav droite + icônes ensemble */
  .header--middle-center > .hb-right-group {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    z-index: 1;
  }

  /* 8. Logo image — dimensions Wix exactes : 249×114px */
  .header--middle-center .hb-logo-img {
    height: 114px;
    width: auto;
    max-width: 249px;
    object-fit: contain;
    display: block;
  }

  /* 9. Typographie des liens nav — calquée sur heritagebotanique.com */
  .hb-nav-link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #264444;
    text-decoration: none;
    opacity: 0.8;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }
  .hb-nav-link:hover,
  .hb-nav-link[aria-current="page"] { opacity: 1; }

  /* 10. Texte "Se connecter" visible sur desktop */
  .header--middle-center .header__icon--account .visually-hidden {
    position: static !important;
    clip: unset !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
  }
}

#shopify-section-template--28579783704953__trois-piliers {
  background-color: #F4EDDF !important;
  background-image: none !important;
}

/* ── Kit actif — fiche produit ── */
.hb-pack.active {
  border: 3px solid #264444 !important;
  background: #F4EDDF !important;
  box-shadow: 0 4px 18px rgba(38, 68, 68, 0.2) !important;
}

/* ── Boutons "Découvrir" — cartes produits homepage ── */
.hb-card__btn {
  background: #264444 !important;
  color: #F4EDDF !important;
  border-radius: 4px !important;
  letter-spacing: 0.1em !important;
  padding: 12px 16px !important;
  transition: background 0.25s ease !important;
}
.hb-card__btn:hover {
  background: #264444 !important;
  opacity: 1 !important;
}

/* ── Logo + header compacts sur mobile ── */
@media screen and (max-width: 749px) {
  .hb-logo-img {
    max-width: 160px !important;
    width: 160px !important;
    height: auto !important;
  }
  .header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* Section Trois Piliers - fond beige */
[id*="trois-piliers"],
[id*="trois_piliers"] {
  background-color: #F4EDDF !important;
  background-image: none !important;
}

[id*="trois-piliers"] h2,
[id*="trois-piliers"] h3 {
  font-family: 'Cormorant Garamond', serif !important;
  font-style: italic !important;
  font-weight: 300 !important;
  color: #264444 !important;
}

[id*="trois-piliers"] p {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 300 !important;
  color: #4a4a4a !important;
  line-height: 1.8 !important;
}

[id*="trois-piliers"] .hb-etapes__grid > div > p:first-child {
  font-size: 10px !important;
  letter-spacing: 0.2em !important;
  color: #5c4a2a !important;
  text-transform: uppercase !important;
}
