/* La Maison Winnie — Bundle CSS consolidé par GitHub Pages. */

/* ===== beta-v3-19.css ===== */
:root {
  --cream: #fdf6f0;
  --paper: #fffaf6;
  --sand: #f6e4d7;
  --brown: #6f4032;
  --dark: #341e17;
  --terra: #e8947a;
  --border: #e8c4ac;
  --green: #dff5de;
  --gb: #94c98d;
  --shadow: 0 22px 60px rgba(111, 64, 50, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Jost, sans-serif;
  color: var(--brown);
  background: linear-gradient(180deg, var(--cream), #fff 45%, var(--sand));
  overflow-x: hidden;
}
button,
input,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 34px));
  margin: auto;
}
.nav {
  position: sticky;
  top: 12px;
  z-index: 30;
  width: min(1080px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(253, 246, 240, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 35px rgba(111, 64, 50, 0.08);
}
.brand {
  font:
    600 19px "Playfair Display",
    serif;
  color: var(--dark);
}
.navlinks {
  display: flex;
  gap: 16px;
  align-items: center;
}
.navlinks a {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.btn.secondary {
  background: #fff;
  color: var(--brown);
  border: 1px solid var(--border);
}
.hero {
  padding: 68px 0 46px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  padding: 8px 13px;
  border: 1px solid rgba(232, 148, 122, 0.35);
  border-radius: 999px;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  font-weight: 600;
}
h1 {
  font-size: clamp(43px, 7vw, 74px);
  line-height: 0.97;
  letter-spacing: -0.05em;
  margin: 18px 0 0;
}
h1 em {
  color: var(--terra);
}
h2 {
  font-size: clamp(31px, 5vw, 49px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 14px 0 0;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: #8e5b48;
  margin: 18px 0 0;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-name-field {
  max-width: 650px;
  margin-top: 20px;
}
.hero-name-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}
.hero-name-control {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
}
.hero-name-control input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  outline: none;
  background: #fff;
  color: var(--dark);
  font-size: 17px;
  box-shadow: 0 8px 24px rgba(111, 64, 50, 0.06);
}
.hero-name-control input:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 4px rgba(232, 148, 122, 0.18);
}
.hero-name-field small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
}
.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 17px;
}
.pill {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}
.visual {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-inside-box {
  padding: 28px;
  background: linear-gradient(145deg, #fffaf6, #fff1e8);
}
.hero-inside-box .inside-box {
  width: 100%;
}
.boxart {
  min-height: 390px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(232, 148, 122, 0.25),
      transparent 30%
    ),
    radial-gradient(
      circle at 70% 40%,
      rgba(148, 201, 141, 0.26),
      transparent 32%
    ),
    linear-gradient(145deg, #fff7f0, #f6e4d7);
}
.mock {
  width: min(350px, 100%);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}
.mock small {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mock strong {
  display: block;
  margin-top: 10px;
  font:
    600 38px "Playfair Display",
    serif;
  color: var(--dark);
}
.mock .line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.section {
  padding: 62px 0;
  border-top: 1px solid rgba(232, 196, 172, 0.65);
}
.center {
  text-align: center;
}
.center .lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.proof {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
}
.stars {
  color: var(--terra);
  font-weight: 900;
}
.proof p {
  line-height: 1.6;
  color: #8e5b48;
}
.proof strong {
  color: var(--dark);
}
.builder {
  background: linear-gradient(180deg, #fffaf5, #f6e4d7);
}
.builder-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 22px;
  align-items: start;
  margin-top: 28px;
}
.panel,
.cart {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}
.cart {
  position: sticky;
  top: 92px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.step {
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: #8e5b48;
  font-size: 12px;
  font-weight: 900;
}
.step.active {
  background: #fff1e8;
  border-color: var(--brown);
  color: var(--brown);
}
.screen {
  display: none;
}
.screen.active {
  display: block;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.field input {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: var(--dark);
}
.help {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--paper);
  line-height: 1.55;
  color: #8e5b48;
}
.category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 20px 0 10px;
}
.category span {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.items {
  display: grid;
  gap: 9px;
}
.item {
  display: grid;
  grid-template-columns: 52px 1fr 126px 96px;
  gap: 10px;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.thumbwrap {
  position: relative;
}
.thumb {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.info {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--brown);
  color: #fff;
  font:
    700 14px Georgia,
    serif;
  box-shadow: 0 4px 12px rgba(52, 30, 23, 0.22);
}
.item h4 {
  margin: 0;
  font-size: 15px;
  color: var(--dark);
}
.meta {
  font-size: 12px;
  color: #8e5b48;
}
.price {
  font-size: 13px;
  font-weight: 900;
  color: var(--terra);
}
.mode {
  height: 38px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 800;
  color: var(--brown);
}
.monthly-note {
  grid-column: 3 / -1;
  margin: -2px 2px 1px;
  color: #315b2e;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
}
.qty {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
}
.qty button {
  width: 31px;
  height: 31px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-weight: 900;
}
.qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
  color: var(--dark);
}
.actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
}
.label {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff1e8;
  font-weight: 900;
}
.label span {
  display: block;
  margin-top: 4px;
  font:
    600 25px "Playfair Display",
    serif;
  color: var(--dark);
}
.delivery-mode-choice {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  color: var(--brown);
  font-size: 13px;
}
.delivery-mode-choice > strong {
  color: var(--dark);
  font-size: 14px;
}
.delivery-mode-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 800;
}
.delivery-mode-choice input {
  accent-color: var(--brown);
}
.delivery-mode-choice span {
  color: #8e5b48;
  font-size: 12px;
  line-height: 1.4;
}
.cart-lines {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: #8e5b48;
}
.cart-line strong {
  color: var(--dark);
}
.empty {
  margin-top: 14px;
  color: #8e5b48;
}
.total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}
.big {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 8px;
}
.big strong {
  font:
    600 38px "Playfair Display",
    serif;
  color: var(--dark);
}
.delivery {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--gb);
  border-radius: 17px;
  background: var(--green);
  color: #315b2e;
  font-size: 13px;
  line-height: 1.45;
}
.delivery-title,
.delivery-detail {
  display: block;
}
.delivery-title {
  font-size: 14px;
  font-weight: 900;
}
.delivery-detail {
  margin-top: 3px;
  font-weight: 700;
}
.delivery-progress {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(49, 91, 46, 0.16);
}
.delivery-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #4f8449;
  transition: width 0.3s ease;
}
.delivery.reached {
  border-color: #75a46e;
  background: #d8f1d4;
}
.delivery.reached .delivery-progress span {
  background: #315b2e;
}
.surprise {
  margin-top: 10px;
  padding: 12px;
  border: 1px dashed var(--terra);
  border-radius: 17px;
  background: #fff8f2;
  font-size: 13px;
  font-weight: 800;
}
.doseguide {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid var(--gb);
  border-radius: 20px;
  background: var(--green);
  color: #315b2e;
  font-size: 13px;
  line-height: 1.55;
}
.doseguide strong {
  display: block;
  margin-bottom: 5px;
  color: #244722;
}
.dose-line,
.dose-warning {
  display: block;
  margin-top: 8px;
}
.dose-warning {
  font-weight: 800;
}
.introduction-guide {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid #e6b26f;
  border-radius: 20px;
  background: #fff8e8;
  color: #795025;
  font-size: 13px;
  line-height: 1.55;
}
.introduction-guide strong {
  display: block;
  margin-bottom: 5px;
  color: #5d3818;
}
.mobile-guidance {
  display: none;
}
.mobile-guidance summary {
  position: relative;
  padding: 13px 42px 13px 14px;
  border: 1px solid var(--gb);
  border-radius: 16px;
  background: var(--green);
  color: #315b2e;
  cursor: pointer;
  list-style: none;
}
.mobile-guidance summary::-webkit-details-marker {
  display: none;
}
.mobile-guidance summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #fff;
  color: #315b2e;
  font-size: 18px;
  font-weight: 800;
  line-height: 23px;
  text-align: center;
  transform: translateY(-50%);
}
.mobile-guidance[open] summary::after {
  content: "−";
}
.mobile-guidance summary strong,
.mobile-guidance summary span {
  display: block;
}
.mobile-guidance summary strong {
  margin-bottom: 2px;
  font-size: 13px;
}
.mobile-guidance summary span {
  font-size: 11px;
}
.mobile-guidance-body {
  padding: 4px 14px 10px;
  border: 1px solid var(--gb);
  border-top: 0;
  border-radius: 0 0 16px 16px;
  background: #f5fff3;
  color: #315b2e;
  font-size: 12px;
  line-height: 1.45;
}
.mobile-guidance[open] summary {
  border-radius: 16px 16px 0 0;
}
.mobile-guidance-body p {
  margin: 10px 0 0;
}
.mobile-guidance-alert {
  font-weight: 800;
}
.beta {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff1e8;
  font-size: 13px;
  font-weight: 800;
}
.checkout-button {
  width: 100%;
  margin-top: 12px;
}
.checkout-button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.checkout-feedback {
  min-height: 0;
  margin-top: 8px;
  color: #a43f35;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.floating-cart {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 270px;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 250, 246, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(52, 30, 23, 0.22);
  color: var(--brown);
  text-align: left;
}
.floating-cart:hover {
  transform: translateY(-2px);
}
.float-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--brown);
  color: #fff;
  font-size: 21px;
}
.float-copy {
  flex: 1;
}
.float-copy small {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8e5b48;
}
.float-copy strong {
  display: block;
  margin-top: 2px;
  color: var(--dark);
  font-size: 15px;
}
.float-total {
  font:
    600 20px "Playfair Display",
    serif;
  color: var(--dark);
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(52, 30, 23, 0.42);
}
.drawer.open {
  display: block;
}
.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(430px, 100%);
  padding: 24px;
  background: #fffaf5;
  box-shadow: -24px 0 70px rgba(52, 30, 23, 0.2);
  overflow: auto;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.drawer-head h3 {
  margin: 0;
}
.drawer-name {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff1e8;
  font-weight: 900;
}
.drawer-name span {
  display: block;
  margin-top: 3px;
  font:
    600 24px "Playfair Display",
    serif;
  color: var(--dark);
}
.drawer-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-size: 20px;
}
.drawer-footer {
  position: sticky;
  bottom: -24px;
  margin: 20px -24px -24px;
  padding: 16px 24px 24px;
  background: linear-gradient(180deg, rgba(255, 250, 245, 0), #fffaf5 22%);
}
@media (max-width: 640px) {
  .floating-cart {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-width: 0;
  }
  .float-total {
    font-size: 18px;
  }
  .drawer-panel {
    width: 100%;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(52, 30, 23, 0.5);
}
.modal.open {
  display: flex;
}
.modalbox {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fffaf5;
  box-shadow: var(--shadow);
}
.close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-size: 20px;
}
.modalbox h3 {
  font-size: 31px;
}
.modalbox p {
  line-height: 1.7;
  color: #8e5b48;
}
.fact {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.fact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark);
}
.fact span {
  line-height: 1.55;
}
.product-composition {
  background: #fff8f1;
}
.fact-alert {
  border-color: #e6b26f;
  background: #fff8e8;
}
.footer {
  padding: 34px 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 249, 244, 0.72);
  font-size: 13px;
  color: #8e5b48;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(320px, 1.4fr) auto;
  gap: 24px;
  align-items: center;
}
.footer-brand {
  display: grid;
  gap: 5px;
}
.footer-brand strong {
  font-family: "Playfair Display", serif;
  color: var(--dark);
  font-size: 20px;
}
.footer-brand span,
.footer-meta small {
  line-height: 1.45;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}
.footer-links a {
  color: var(--brown);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(111, 64, 50, 0.28);
  text-underline-offset: 4px;
}
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--dark);
  text-decoration-color: currentColor;
}
.footer-meta {
  display: grid;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}
.footer-meta small {
  color: #9b6c5a;
}
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-meta {
    text-align: center;
    white-space: normal;
  }
}
@media (max-width: 980px) {
  .hero-grid,
  .builder-grid {
    grid-template-columns: 1fr;
  }
  .cart {
    position: relative;
    top: 0;
  }
  .proof-grid {
    grid-template-columns: 1fr;
  }
  .item {
    grid-template-columns: 52px 1fr;
  }
  .mode,
  .qty {
    grid-column: 2;
  }
  .item .monthly-note {
    grid-column: 2;
    margin-top: 0;
  }
  .qty {
    justify-content: flex-start;
  }
  .navlinks a:not(.btn) {
    display: none;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px);
  }
  .hero {
    padding-top: 42px;
  }
  h1 {
    font-size: 41px;
  }
  .lead {
    font-size: 15px;
  }
  .btn {
    width: 100%;
  }
  .hero-actions,
  .actions {
    flex-direction: column;
  }
  .hero-name-control {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .panel,
  .cart {
    padding: 16px;
    border-radius: 24px;
  }
  .screen h2 {
    margin-bottom: 8px;
    font-size: 27px;
  }
  .help {
    margin: 8px 0 10px;
    padding: 10px 12px;
    border-radius: 15px;
    font-size: 13px;
  }
  .help-detail {
    display: none;
  }
  .desktop-guidance {
    display: none;
  }
  .mobile-guidance {
    display: block;
    margin: 10px 0 14px;
  }
  .category {
    margin-top: 16px;
  }
  .boxart {
    min-height: 310px;
  }
}
.reason-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.reason-card,
.trust-card {
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
  box-shadow: 0 12px 34px rgba(111, 64, 50, 0.06);
}
.reason-card h3,
.trust-card h3 {
  font-size: 23px;
  margin: 10px 0 0;
}
.reason-card p,
.trust-card p {
  margin: 9px 0 0;
  line-height: 1.62;
  color: #8e5b48;
}
.reason-icon,
.trust-card > span {
  font-size: 27px;
}
.variety-section {
  background: linear-gradient(145deg, #f5f4e8, #fffaf5);
}
.variety-section .lead {
  max-width: 820px;
  margin-inline: auto;
}
.variety-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}
.variety-card {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  text-align: left;
  box-shadow: 0 14px 38px rgba(111, 64, 50, 0.07);
}
.variety-card > span {
  font-size: 31px;
}
.variety-card h3 {
  margin: 12px 0 0;
  font-size: 25px;
}
.variety-card p {
  margin: 10px 0 0;
  color: #8e5b48;
  line-height: 1.65;
}
.flowers-card {
  border-top: 4px solid #e8a35f;
}
.leaves-card {
  border-top: 4px solid #75a66c;
}
.treats-card {
  border-top: 4px solid #d96f75;
}
.variety-rule {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--gb);
  border-radius: 22px;
  background: var(--green);
  color: #315b2e;
}
.variety-rule strong {
  margin-right: 4px;
}
.variety-rule span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.variety-rule i {
  font-style: normal;
  font-weight: 900;
}
.health-note {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 15px 18px;
  border: 1px solid #e6b26f;
  border-radius: 20px;
  background: #fff8e8;
  color: #795025;
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}
.photo-proof {
  background: #fffaf5;
}
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: #fff;
  text-align: left;
}
.photo-card img,
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.photo-card.client-proof img {
  object-fit: contain;
  object-position: center;
  background: #f6eee7;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: linear-gradient(145deg, #fff1e8, #f6e4d7);
  text-align: center;
}
.photo-placeholder > span {
  font-size: 38px;
}
.photo-placeholder strong {
  margin-top: 10px;
  color: var(--dark);
}
.photo-placeholder small {
  margin-top: 7px;
  line-height: 1.5;
  color: #8e5b48;
}
.photo-card figcaption {
  padding: 16px;
}
.photo-card figcaption strong {
  display: block;
  color: var(--dark);
}
.photo-card figcaption span {
  display: block;
  margin-top: 5px;
  color: #8e5b48;
  font-size: 13px;
}
.trust-section {
  background: linear-gradient(180deg, #fff, #fdf6f0);
}
.payment-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--gb);
  border-radius: 20px;
  background: var(--green);
  color: #315b2e;
}
.payment-strip span {
  font-size: 13px;
}
.story-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  align-items: center;
}
.story-visual {
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fff;
}
.story-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 23px;
}
.story-copy p {
  margin: 14px 0 0;
  line-height: 1.75;
  color: #8e5b48;
}
.story-signature {
  margin-top: 20px;
  font-weight: 900;
  color: var(--dark);
}
.faq-section {
  background: #fffaf5;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 38px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
}
.faq-item summary {
  padding: 17px 19px;
  list-style: none;
  font-weight: 900;
  color: var(--dark);
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:after {
  content: "+";
  float: right;
  font-size: 20px;
}
.faq-item[open] summary:after {
  content: "−";
}
.faq-item p {
  margin: 0;
  padding: 0 19px 18px;
  line-height: 1.65;
  color: #8e5b48;
}
@media (max-width: 980px) {
  .reason-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .story-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .variety-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .reason-grid,
  .trust-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }
  .section {
    scroll-margin-top: 84px;
  }
  .story-visual img {
    aspect-ratio: 16/11;
  }
  .variety-rule {
    align-items: stretch;
    flex-direction: column;
  }
  .variety-rule i {
    transform: rotate(90deg);
  }
}
.quick-add {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff1e8;
}
.quick-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.quick-head small {
  display: block;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8e5b48;
}
.quick-head strong {
  color: var(--dark);
}
.quick-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}
.quick-controls .mode {
  width: 100%;
  height: 44px;
}
.quick-monthly-note {
  margin: 9px 0 0;
  text-align: left;
}
.quick-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-qty button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--brown);
  font-weight: 900;
}
.quick-qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 900;
  color: var(--dark);
}
.quick-button {
  width: 100%;
  margin-top: 12px;
}
.quick-feedback {
  min-height: 20px;
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #315b2e;
}
@media (max-width: 520px) {
  .quick-controls {
    grid-template-columns: 1fr;
  }
  .quick-qty {
    justify-content: center;
  }
}
.mobile-order-cta {
  display: none;
  width: 100%;
  margin-top: 12px;
}
@media (max-width: 640px) {
  .mobile-order-cta {
    display: flex;
  }
  .cart {
    scroll-margin-top: 100px;
  }
}

/* V3.15: name personalization preview, integrated into the hero. */
.inside-box {
  position: relative;
  padding-top: 74px;
  filter: drop-shadow(0 24px 35px rgba(111, 64, 50, 0.16));
}
.inside-box-lid {
  position: absolute;
  top: 0;
  left: 5%;
  width: 90%;
  height: 115px;
  display: grid;
  place-items: center;
  border: 1px solid #d4ad91;
  border-radius: 28px 28px 10px 10px;
  background: linear-gradient(160deg, #eed4c0, #f9e9dc);
  transform: perspective(450px) rotateX(-38deg);
  transform-origin: bottom;
}
.inside-box-lid span {
  color: var(--dark);
  font:
    600 21px "Playfair Display",
    serif;
  letter-spacing: 0.03em;
}
.inside-box-base {
  position: relative;
  min-height: 255px;
  padding: 45px 28px 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4ad91;
  border-radius: 16px 16px 32px 32px;
  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(232, 148, 122, 0.2),
      transparent 25%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(148, 201, 141, 0.23),
      transparent 28%
    ),
    #fff;
  text-align: center;
  overflow: hidden;
}
.inside-box-base::before,
.inside-box-base::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 26px;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, #e8c6aa 0 4px, #f6dfcc 4px 8px);
  opacity: 0.7;
}
.inside-box-base::before {
  left: -24px;
  bottom: 25px;
  transform: rotate(22deg);
}
.inside-box-base::after {
  right: -24px;
  top: 30px;
  transform: rotate(-18deg);
}
.inside-box-base small {
  color: #8e5b48;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.inside-box-base strong {
  position: relative;
  z-index: 1;
  margin: 10px 0 8px;
  color: var(--terra);
  font:
    600 clamp(42px, 7vw, 66px) "Playfair Display",
    serif;
  line-height: 1;
}
.inside-box-base > span {
  color: var(--brown);
  font-size: 14px;
  font-weight: 800;
}
@media (max-width: 880px) {
  .inside-box {
    width: min(520px, 100%);
    margin: 4px auto 0;
  }
}
@media (max-width: 640px) {
  .inside-box-base {
    min-height: 225px;
    padding-inline: 18px;
  }
}

/* Native product image rendering. */
.thumb {
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(52, 30, 23, 0.14);
}
.thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-modal-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin: 8px 0 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
}
.product-modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: -7px 0 6px;
  color: #8e5b48;
  font-size: 13px;
  font-weight: 800;
}
@media (min-width: 981px) {
  .item {
    grid-template-columns: 68px 1fr 126px 96px;
  }
  .thumb {
    width: 68px;
    height: 68px;
  }
}
@media (max-width: 980px) {
  .thumb {
    width: 62px;
    height: 62px;
  }
  .item {
    grid-template-columns: 62px 1fr;
  }
}
@media (max-width: 640px) {
  .product-modal-image {
    aspect-ratio: 4/3;
  }
  .modalbox {
    padding: 22px;
  }
  .modalbox h3 {
    font-size: 28px;
  }
}


/* ===== beta-v3-20.css ===== */
.preview-loading,
.preview-error {
  width: min(680px, calc(100% - 34px));
  margin: 80px auto;
  padding: 24px;
  border: 1px solid var(--border, #e8c4ac);
  border-radius: 24px;
  background: #fffaf6;
  color: #6f4032;
  font-family: Jost, sans-serif;
  font-weight: 800;
  text-align: center;
}

.desktop-validation-intro,
.desktop-validation-back {
  display: none;
}

.desktop-validation-actions {
  display: contents;
}

@media (min-width: 1025px) and (hover: hover) and (pointer: fine) {
  .builder-grid.desktop-validation-mode {
    grid-template-columns: minmax(0, 860px);
    justify-content: center;
  }

  .builder-grid.desktop-validation-mode .panel {
    display: none;
  }

  .builder-grid.desktop-validation-mode .cart {
    position: relative;
    top: auto;
    width: 100%;
    padding: 28px;
  }

  .builder-grid.desktop-validation-mode .desktop-validation-intro {
    display: block;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
  }

  .builder-grid.desktop-validation-mode .desktop-validation-intro h2 {
    margin-top: 12px;
  }

  .builder-grid.desktop-validation-mode .desktop-validation-intro .help {
    margin-bottom: 0;
  }

  .builder-grid.desktop-validation-mode .cart > h3 {
    margin-top: 0;
    font-size: clamp(27px, 3vw, 38px);
  }

  .builder-grid.desktop-validation-mode .desktop-validation-actions {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
  }

  .builder-grid.desktop-validation-mode .desktop-validation-back {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .builder-grid.desktop-validation-mode .checkout-button {
    flex: 1 1 auto;
    width: auto;
    margin-top: 0;
  }
}


/* ===== beta-v3-22.css ===== */
/* Beta V3.22 uniquement :
   - bandeau supérieur « La Maison Winnie » masqué partout ;
   - hero photographique dédié sur mobile et desktop ;
   - bloc prénom mobile conservé avec l’identité visuelle du site officiel. */
.hero .inside-box-lid {
  display: none;
}

.v322-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 767px) {
  body.v322-mobile-layout .v321-commitments {
    display: none !important;
  }

  body.v322-mobile-layout .v322-mobile-hero {
    position: relative;
    min-height: clamp(800px, 218vw, 930px);
    padding: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 34px 34px;
    background: var(--cream);
  }

  body.v322-mobile-hero-ready .v322-mobile-hero {
    background-image: var(--v322-mobile-hero-bg-image);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
  }

  body.v322-mobile-hero-ready .v322-mobile-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(253, 246, 240, 0.28) 0%,
      rgba(253, 246, 240, 0.08) 58%,
      rgba(253, 246, 240, 0) 100%
    );
  }

  .v322-mobile-hero-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    padding: 38px 16px 0;
  }

  .v322-mobile-hero-card {
    width: min(100%, 720px);
    padding: 30px 22px 26px;
    border: 1px solid rgba(232, 196, 172, 0.92);
    border-radius: 30px;
    background: rgba(253, 246, 240, 0.88);
    box-shadow: 0 20px 55px rgba(111, 64, 50, 0.12);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    text-align: center;
  }

  .v322-mobile-kicker,
  .v322-section-kicker {
    display: block;
    color: var(--brown);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.19em;
    text-transform: uppercase;
  }

  .v322-mobile-hero-card h1 {
    margin: 17px 0 0;
    color: var(--dark);
    font-size: clamp(43px, 12vw, 58px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .v322-mobile-hero-card h1 em {
    display: block;
    margin-top: 12px;
    color: var(--terra);
    font-size: 0.6em;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  .v322-mobile-hero-card > p {
    margin: 23px 0 0;
    color: var(--brown);
    font-size: 15px;
    line-height: 1.62;
  }

  .v322-mobile-main-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    margin-top: 25px;
    padding: 13px 21px;
    border-radius: 999px;
    background: var(--brown);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 15px 32px rgba(111, 64, 50, 0.2);
  }

  .v322-mobile-notes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 17px;
  }

  .v322-mobile-notes span {
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 250, 246, 0.92);
    color: var(--brown);
    font-size: 10px;
    font-weight: 800;
  }

  .v322-personalise {
    padding: 50px 0 42px;
    border-bottom: 1px solid rgba(232, 196, 172, 0.7);
    background: linear-gradient(180deg, var(--paper), var(--cream));
  }

  .v322-personalise-inner {
    display: grid;
    gap: 26px;
  }

  .v322-personalise-copy {
    text-align: center;
  }

  .v322-personalise-copy h2 {
    margin: 13px 0 0;
    color: var(--dark);
    font-size: clamp(39px, 11vw, 52px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .v322-personalise-copy p {
    margin: 20px 0 0;
    color: var(--brown);
    font-size: 17px;
    line-height: 1.75;
  }

  .v322-name-card {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--sand);
    box-shadow: var(--shadow);
  }

  .v322-name-card .hero-name-field {
    max-width: none;
    margin: 0;
  }

  .v322-name-card .hero-name-field label {
    margin-bottom: 12px;
    color: var(--dark);
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.15;
  }

  .v322-name-card .hero-name-control {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v322-name-card .hero-name-control input {
    min-height: 58px;
    border-color: var(--border);
    border-radius: 999px;
    background: var(--paper);
    box-shadow: none;
  }

  .v322-name-card .btn {
    width: 100%;
    min-height: 58px;
    background: var(--brown);
  }

  .v322-name-card small {
    color: var(--brown);
  }
}

@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .v322-hero-ready .hero {
    position: relative;
    overflow: hidden;
    background: #f7f2eb;
  }

  .v322-hero-ready .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--v322-hero-bg-image);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    transform: scale(1.01);
  }

  .v322-hero-ready .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        rgba(249, 245, 239, 0.94) 0%,
        rgba(249, 245, 239, 0.89) 31%,
        rgba(249, 245, 239, 0.70) 52%,
        rgba(249, 245, 239, 0.37) 73%,
        rgba(249, 245, 239, 0.18) 100%
      ),
      linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  }

  .v322-hero-ready .hero .container {
    position: relative;
    z-index: 1;
  }

  .v322-hero-ready .hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.92fr);
    gap: 48px;
    align-items: center;
  }

  .v322-hero-ready .hero .hero-grid > :first-child {
    max-width: 575px;
  }

  .v322-hero-ready .hero .lead {
    max-width: 53ch;
  }

  .v322-hero-ready .hero .hero-name-field {
    padding: 22px;
    border: 1px solid rgba(232, 196, 172, 0.88);
    border-radius: 28px;
    background: rgba(255, 251, 247, 0.84);
    box-shadow: 0 18px 42px rgba(111, 64, 50, 0.09);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }

  .v322-hero-ready .hero .hero-actions,
  .v322-hero-ready .hero .pills {
    margin-top: 18px;
  }

  .v322-hero-ready .hero .pill {
    border-color: rgba(232, 196, 172, 0.86);
    background: rgba(255, 251, 247, 0.86);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .v322-hero-ready .hero .visual.hero-inside-box {
    justify-self: end;
    width: min(100%, 445px);
  }

  .v322-hero-ready .hero .hero-inside-box {
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .v322-hero-ready .hero .hero-inside-box .inside-box {
    visibility: visible;
    filter: drop-shadow(0 26px 38px rgba(111, 64, 50, 0.16));
  }
}

/* ===== beta-v3-23.css ===== */
/* Beta V3.23 : guide botanique détaillé dans la section
   « Pourquoi avoir choisi ces produits ? ». */
.v323-botanical-guide {
  margin-top: 42px;
  text-align: left;
}

.v323-botanical-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 24px;
}

.v323-botanical-copy,
.v323-feeding-note {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(111, 64, 50, 0.08);
}

.v323-botanical-copy h3,
.v323-season-card h3 {
  margin: 12px 0 0;
  color: var(--dark);
  font-size: clamp(28px, 4vw, 43px);
  line-height: 1.05;
}

.v323-botanical-copy p,
.v323-feeding-note p,
.v323-season-card p {
  margin: 14px 0 0;
  color: var(--brown);
  line-height: 1.7;
}

.v323-feeding-note {
  background: linear-gradient(145deg, var(--paper), var(--sand));
}

.v323-feeding-note strong {
  display: block;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: 23px;
}

.v323-botanical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.v323-botanical-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 245px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 42px rgba(111, 64, 50, 0.07);
}

.v323-botanical-image {
  min-height: 100%;
  background: var(--paper);
}

.v323-botanical-image img {
  width: 100%;
  height: 100%;
  min-height: 245px;
  object-fit: cover;
  display: block;
}

.v323-botanical-content {
  padding: 22px;
}

.v323-botanical-type,
.v323-season-kicker {
  display: inline-flex;
  color: var(--terra);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.v323-botanical-card h4 {
  margin: 8px 0 0;
  color: var(--dark);
  font-family: "Playfair Display", serif;
  font-size: 27px;
  line-height: 1.05;
}

.v323-botanical-card p {
  margin: 12px 0 0;
  color: var(--brown);
  line-height: 1.58;
}

.v323-botanical-interest {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(232, 196, 172, 0.7);
  color: #8e5b48;
  font-size: 13px;
  line-height: 1.55;
}

.v323-botanical-interest strong {
  color: var(--dark);
}

.v323-season-card {
  position: relative;
  margin-top: 22px;
  padding: clamp(26px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(148, 201, 141, 0.62);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 18%, rgba(148, 201, 141, 0.28), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(232, 148, 122, 0.19), transparent 29%),
    linear-gradient(145deg, #f8fff6, #fff7f1);
}

.v323-season-card h3 {
  max-width: 780px;
}

.v323-season-card p {
  max-width: 860px;
}

.v323-season-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 19px;
}

.v323-season-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(111, 64, 50, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--brown);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .v323-botanical-intro,
  .v323-botanical-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .v323-botanical-guide {
    margin-top: 30px;
  }

  .v323-botanical-copy,
  .v323-feeding-note {
    padding: 20px;
    border-radius: 24px;
  }

  .v323-botanical-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 225px;
    border-radius: 24px;
  }

  .v323-botanical-image img {
    min-height: 225px;
  }

  .v323-botanical-content {
    padding: 18px 16px;
  }

  .v323-botanical-card h4 {
    font-size: 24px;
  }

  .v323-botanical-card p {
    font-size: 14px;
  }

  .v323-season-card {
    border-radius: 26px;
  }
}


/* ===== beta-v3-24.css ===== */
/* Beta V3.24 — bandeau français et carrousel de la Bunny Army */
.v324-trust-rail {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(190, 129, 102, 0.24);
  background: rgba(255, 250, 246, 0.96);
}

.v324-trust-scroller,
.v324-bunny-rail {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-inline: contain;
  cursor: grab;
}

.v324-trust-scroller::-webkit-scrollbar,
.v324-bunny-rail::-webkit-scrollbar {
  display: none;
}

.v324-trust-scroller.is-dragging,
.v324-bunny-rail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.v324-trust-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: stretch;
  padding-inline: max(18px, calc((100vw - 1200px) / 2));
}

.v324-trust-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  min-height: 68px;
  padding: 8px 24px;
  border-right: 1px solid rgba(190, 129, 102, 0.22);
  color: var(--dark, #432a22);
  scroll-snap-align: start;
}

.v324-trust-item:first-child {
  border-left: 1px solid rgba(190, 129, 102, 0.22);
}

.v324-trust-item > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--dark, #704435);
}

.v324-trust-item svg {
  width: 100%;
  height: 100%;
}

.v324-trust-item strong {
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.v324-bunny-section {
  overflow: hidden;
  background: #fffdf9;
}

.v324-bunny-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-end;
  margin-bottom: 30px;
  text-align: left;
}

.v324-bunny-heading > div:first-child {
  max-width: 790px;
}

.v324-bunny-heading h2 {
  margin: 12px 0 0;
  color: var(--dark, #432a22);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.v324-bunny-heading .lead {
  max-width: 720px;
  margin: 16px 0 0;
}

.v324-bunny-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.v324-bunny-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(190, 129, 102, 0.34);
  border-radius: 50%;
  background: #fff9f4;
  color: var(--dark, #704435);
  font: inherit;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.v324-bunny-controls button:hover {
  transform: translateY(-2px);
  background: #f6e9df;
}

.v324-bunny-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 27vw, 370px);
  gap: 16px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  padding: 2px 2px 10px;
}

.v324-bunny-card {
  margin: 0;
  min-width: 0;
  scroll-snap-align: start;
}

.v324-bunny-media,
.v324-coming-media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(190, 129, 102, 0.24);
  border-radius: 24px;
  background: #eee5dd;
}

.v324-bunny-media video,
.v324-bunny-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v324-bunny-caption {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 13px 4px 0;
  text-align: left;
}

.v324-member-avatar {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark, #704435);
  color: #fffaf6;
  font-weight: 800;
}

.v324-bunny-caption strong,
.v324-bunny-caption small {
  display: block;
}

.v324-bunny-caption strong {
  color: var(--dark, #432a22);
  line-height: 1.2;
}

.v324-bunny-caption small {
  margin-top: 3px;
  color: var(--brown, #765b50);
  line-height: 1.35;
}

.v324-coming-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-style: dashed;
  background:
    radial-gradient(circle at 50% 20%, rgba(236, 151, 122, 0.16), transparent 34%),
    linear-gradient(180deg, #fff9f4 0%, #f4e9df 100%);
  color: var(--dark, #704435);
  text-align: center;
}

.v324-coming-media > span {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}

.v324-coming-media svg {
  width: 100%;
  height: 100%;
}

.v324-coming-media small {
  color: var(--peach, #d98968);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.v324-coming-media strong {
  margin-top: 8px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  line-height: 1.08;
}

.v324-coming-media p {
  max-width: 230px;
  margin: 10px 0 0;
  color: var(--brown, #765b50);
  line-height: 1.5;
}

@media (min-width: 1100px) {
  .v324-trust-track {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .v324-trust-scroller {
    scroll-snap-type: x proximity;
  }

  .v324-trust-track {
    padding-inline: 0;
  }

  .v324-trust-item {
    min-width: 260px;
    min-height: 62px;
    padding-inline: 18px;
  }

  .v324-trust-item:first-child {
    border-left: 0;
  }

  .v324-bunny-heading {
    align-items: flex-start;
    margin-bottom: 22px;
  }

  .v324-bunny-heading h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .v324-bunny-controls {
    display: none;
  }

  .v324-bunny-rail {
    grid-auto-columns: 82vw;
    gap: 12px;
    margin-right: calc(50% - 50vw);
    padding-right: 18px;
  }

  .v324-bunny-media,
  .v324-coming-media {
    border-radius: 21px;
  }
}


/* ===== beta-v3-24-cart.css ===== */
/* Beta V3.24 — quantités modifiables dans le panier mobile */
@media (max-width: 640px) {
  .v324-drawer-products {
    display: grid;
    gap: 0;
    margin-top: 18px;
  }

  .v324-drawer-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border, #e8c4ac);
  }

  .v324-drawer-product:first-child {
    border-top: 1px solid var(--border, #e8c4ac);
  }

  .v324-drawer-product-copy {
    min-width: 0;
  }

  .v324-drawer-product-copy strong,
  .v324-drawer-product-copy small {
    display: block;
  }

  .v324-drawer-product-copy strong {
    color: var(--dark, #341e17);
    font-size: 16px;
    line-height: 1.25;
  }

  .v324-drawer-product-copy small {
    margin-top: 4px;
    color: #8e5b48;
    font-size: 12px;
    line-height: 1.35;
  }

  .v324-drawer-quantity {
    display: grid;
    grid-template-columns: 38px 32px 38px;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--border, #e8c4ac);
    border-radius: 999px;
    background: #fff;
  }

  .v324-drawer-quantity button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff1e8;
    color: var(--brown, #6f4032);
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .v324-drawer-quantity button:active {
    transform: scale(0.94);
  }

  .v324-drawer-quantity span {
    color: var(--dark, #341e17);
    font-size: 16px;
    font-weight: 900;
    text-align: center;
  }
}


/* ===== beta-v3-25.css ===== */
/* Beta V3.25 — catalogue éditorial et composition mobile unifiée */
.v325-mobile-only {
  display: none;
}

@media (max-width: 767px) {
  body.v325-mobile-editorial {
    background: #f4e5cc;
  }

  body.v325-mobile-editorial .v325-mobile-only {
    display: block;
  }

  /* Section « Les 8 références » */
  .v325-catalog {
    position: relative;
    overflow: hidden;
    padding: 68px 0 58px;
    border-bottom: 1px solid rgba(83, 57, 42, 0.18);
    background:
      radial-gradient(circle at 10% 5%, rgba(255, 255, 255, 0.62), transparent 30%),
      #f1dfc2;
  }

  .v325-catalog-heading,
  .v325-composer-heading {
    width: calc(100% - 36px);
    margin: 0 auto;
    text-align: center;
  }

  .v325-kicker {
    display: block;
    color: #a56e37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

  .v325-catalog-heading h2 {
    max-width: 370px;
    margin: 18px auto 0;
    color: #2f211a;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 11vw, 52px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.035em;
  }

  .v325-catalog-heading p {
    max-width: 350px;
    margin: 18px auto 0;
    color: #77644f;
    font-size: 15px;
    line-height: 1.62;
  }

  .v325-catalog-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(248px, 72vw);
    gap: 15px;
    margin-top: 34px;
    padding: 4px calc((100vw - min(72vw, 300px)) / 2) 18px;
    overflow-x: auto;
    scroll-padding-inline: calc((100vw - min(72vw, 300px)) / 2);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
  }

  .v325-catalog-rail::-webkit-scrollbar {
    display: none;
  }

  .v325-catalog-card {
    display: grid;
    min-height: 350px;
    padding: 20px 19px 22px;
    scroll-snap-align: center;
    border: 1px solid rgba(93, 65, 47, 0.13);
    border-radius: 34px;
    background: rgba(255, 250, 242, 0.9);
    box-shadow: 0 20px 45px rgba(77, 52, 37, 0.09);
    text-align: center;
  }

  .v325-catalog-image {
    display: grid;
    width: 194px;
    height: 194px;
    margin: 0 auto;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #f7ead8;
    box-shadow: inset 0 0 0 1px rgba(92, 63, 44, 0.08);
  }

  .v325-catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .v325-catalog-card strong {
    align-self: end;
    margin-top: 18px;
    color: #2f211a;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
  }

  .v325-catalog-card small {
    display: block;
    margin-top: 7px;
    color: #8b765d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .v325-catalog-card button {
    display: inline-flex;
    justify-self: center;
    margin-top: 15px;
    padding: 8px 13px;
    border: 1px solid rgba(80, 54, 39, 0.2);
    border-radius: 999px;
    background: transparent;
    color: #5f4637;
    font-size: 11px;
    font-weight: 800;
  }

  .v325-swipe-hint {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 3px;
    color: #816f59;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* Composition en une seule vue */
  body.v325-mobile-editorial #composer {
    padding: 74px 0 64px;
    border-top: 0;
    background: #f4e5cc;
  }

  body.v325-mobile-editorial #composer > .container.center {
    display: none;
  }

  .v325-composer-heading {
    margin-bottom: 76px;
  }

  .v325-heading-line {
    display: block;
    width: 42px;
    height: 1px;
    margin: 16px auto 0;
    background: #a56e37;
  }

  .v325-composer-heading h2 {
    max-width: 390px;
    margin: 30px auto 0;
    color: #2f211a;
    font-family: "Playfair Display", serif;
    font-size: clamp(43px, 11.8vw, 56px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.035em;
  }

  .v325-composition-ui {
    width: 100%;
  }

  .v325-composition-inner {
    width: calc(100% - 32px);
    max-width: 620px;
    margin: 0 auto;
  }

  .v325-product-group + .v325-product-group {
    margin-top: 54px;
  }

  .v325-product-group > h3 {
    margin: 0 0 20px;
    color: #8a9a68;
    font-family: Jost, sans-serif;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .v325-product-group > h3 span {
    color: inherit;
  }

  .v325-choice-list {
    display: grid;
    gap: 13px;
  }

  .v325-choice-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    min-height: 78px;
    padding: 8px 10px 8px 9px;
    border: 1px solid rgba(91, 67, 50, 0.16);
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.9);
    box-shadow: 0 7px 18px rgba(73, 49, 34, 0.035);
    transition:
      border-color 0.2s ease,
      background 0.2s ease,
      box-shadow 0.2s ease;
  }

  .v325-choice-row.is-selected {
    border-color: rgba(84, 54, 37, 0.58);
    background: #fffaf1;
    box-shadow: 0 10px 25px rgba(73, 49, 34, 0.09);
  }

  .v325-choice-info {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
  }

  .v325-choice-image {
    display: block;
    width: 56px;
    height: 56px;
    overflow: hidden;
    border-radius: 50%;
    background: #f4e2c9;
  }

  .v325-choice-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .v325-choice-copy {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 9px;
  }

  .v325-choice-copy strong {
    min-width: 0;
    overflow: hidden;
    color: #2f211a;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .v325-choice-copy small {
    flex: 0 0 auto;
    color: #7f6d5b;
    font-size: 13px;
    white-space: nowrap;
  }

  .v325-choice-action {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .v325-choice-price {
    color: #786655;
    font-size: 13px;
    white-space: nowrap;
  }

  .v325-choice-add,
  .v325-choice-qty button {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(85, 58, 41, 0.18);
    border-radius: 50%;
    background: #f7ead8;
    color: #4d3427;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
  }

  .v325-choice-add:active,
  .v325-choice-qty button:active {
    transform: scale(0.94);
  }

  .v325-choice-qty {
    display: grid;
    grid-template-columns: 34px 24px 34px;
    gap: 3px;
    align-items: center;
  }

  .v325-choice-qty span {
    color: #2f211a;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
  }

  .v325-mode-switch {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4px;
    margin-top: 52px;
    padding: 4px;
    border: 1px solid rgba(91, 67, 50, 0.16);
    border-radius: 999px;
    background: rgba(255, 250, 241, 0.32);
  }

  .v325-mode-switch button {
    min-height: 52px;
    padding: 10px 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #75614f;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
  }

  .v325-mode-switch button.is-active {
    background: #35251d;
    color: #fffaf2;
    box-shadow: 0 8px 18px rgba(48, 31, 23, 0.15);
  }

  .v325-validation-copy {
    margin-top: 30px;
    color: #705f4e;
  }

  .v325-validation-copy p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
  }

  .v325-validation-copy p strong {
    color: #5d4b3d;
    font-weight: 500;
  }

  .v325-validation-copy small {
    display: block;
    margin-top: 15px;
    color: #8a7864;
    font-size: 13px;
    line-height: 1.55;
  }

  .v325-total-summary {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(91, 67, 50, 0.19);
  }

  .v325-total-line {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  }

  .v325-total-line > span {
    color: #756452;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .v325-total-line > strong {
    color: #2f211a;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 12vw, 58px);
    font-weight: 500;
    line-height: 0.95;
  }

  .v325-total-summary > p {
    margin: 24px 0 0;
    color: #8a9a68;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.45;
  }

  .v325-total-summary > p.is-reached {
    color: #815528;
    font-weight: 800;
  }

  .v325-total-progress {
    height: 7px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(121, 139, 93, 0.16);
  }

  .v325-total-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #879b68;
    transition: width 0.3s ease;
  }

  .v325-composition-preview {
    min-height: 360px;
    margin-top: 34px;
    padding: 28px 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(91, 67, 50, 0.15);
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.9);
    box-shadow: 0 14px 35px rgba(73, 49, 34, 0.045);
  }

  .v325-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    align-content: start;
  }

  .v325-preview-chip {
    position: relative;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-height: 58px;
    padding: 7px 10px 7px 7px;
    border-radius: 999px;
    background: #f8ecd9;
    color: #3a2a22;
    box-shadow: 0 8px 20px rgba(74, 49, 34, 0.05);
  }

  .v325-preview-chip img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
  }

  .v325-preview-chip span {
    min-width: 0;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.15;
    text-overflow: ellipsis;
  }

  .v325-preview-chip b {
    position: absolute;
    top: -5px;
    right: -3px;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    background: #4a3428;
    color: #fffaf2;
    font-size: 11px;
  }

  .v325-preview-empty {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 52px auto 0;
    color: #907d69;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
  }

  .v325-preview-caption {
    margin: 34px 15px 0;
    padding-top: 17px;
    border-top: 1px solid rgba(91, 67, 50, 0.17);
    color: #746250;
    font-size: 12px;
    letter-spacing: 0.17em;
    text-transform: uppercase;
  }

  .v325-review-button {
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    padding: 14px 20px;
    border: 0;
    border-radius: 999px;
    background: #6f4032;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(75, 45, 34, 0.16);
  }

  .v325-review-button:disabled {
    background: #baa995;
    cursor: not-allowed;
    box-shadow: none;
  }

  /* Le configurateur d’origine reste en arrière-plan pour la logique et réapparaît au récapitulatif */
  body.v325-mobile-editorial:not(.v324-mobile-recap-open) .builder-grid {
    display: none !important;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .v325-composer-heading,
  body.v325-mobile-editorial.v324-mobile-recap-open .v325-composition-ui {
    display: none !important;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open #composer {
    padding-top: 38px;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .builder-grid {
    display: block !important;
    width: calc(100% - 24px);
    margin-top: 0;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .builder-grid > .panel {
    display: none !important;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .builder-grid > .cart {
    display: block !important;
    width: 100%;
    padding: 22px 18px 20px;
    border-color: rgba(83, 57, 42, 0.16);
    border-radius: 32px;
    background: #f7e7cc;
    box-shadow: 0 20px 50px rgba(72, 48, 34, 0.09);
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .cart > h3 {
    margin-top: 0;
    text-align: center;
    font-size: 32px;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .cart > .label {
    border-color: rgba(83, 57, 42, 0.15);
    background: rgba(255, 250, 242, 0.76);
    text-align: center;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .cart > .delivery-mode-choice {
    border-color: rgba(83, 57, 42, 0.14);
    background: rgba(255, 250, 242, 0.82);
  }

  body.v325-mobile-editorial.v324-mobile-recap-open #cartContent {
    margin-top: 18px;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .cart .big strong {
    font-size: 42px;
    font-weight: 500;
  }

  body.v325-mobile-editorial.v324-mobile-recap-open .mobile-order-cta,
  body.v325-mobile-editorial.v324-mobile-recap-open #orderCta {
    min-height: 56px;
  }
}

@media (max-width: 390px) {
  .v325-composition-inner {
    width: calc(100% - 24px);
  }

  .v325-choice-row {
    gap: 5px;
    padding-right: 8px;
  }

  .v325-choice-info {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 9px;
  }

  .v325-choice-image {
    width: 50px;
    height: 50px;
  }

  .v325-choice-copy {
    display: grid;
    gap: 2px;
  }

  .v325-choice-copy strong {
    font-size: 15px;
  }

  .v325-choice-copy small,
  .v325-choice-price {
    font-size: 11px;
  }

  .v325-choice-add,
  .v325-choice-qty button {
    width: 31px;
    height: 31px;
  }

  .v325-choice-qty {
    grid-template-columns: 31px 20px 31px;
  }

  .v325-preview-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== beta-v3-26.css ===== */
/* Beta V3.26 — adaptation desktop de l’expérience V3.25 */
@media (min-width: 768px) {
  body.v326-desktop-layout .v325-mobile-only {
    display: block;
  }

  body.v326-desktop-layout .v325-catalog {
    padding: 104px 32px 112px;
    border-top: 1px solid rgba(83, 57, 42, 0.12);
    border-bottom: 1px solid rgba(83, 57, 42, 0.16);
    background:
      radial-gradient(circle at 12% 8%, rgba(255,255,255,.72), transparent 28%),
      linear-gradient(180deg, #f6ead8 0%, #f0dfc5 100%);
  }

  body.v326-desktop-layout .v325-catalog-heading {
    width: min(760px, 100%);
    margin: 0 auto;
    text-align: center;
  }

  body.v326-desktop-layout .v325-kicker {
    display: block;
    color: #a56e37;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase;
  }

  body.v326-desktop-layout .v325-catalog-heading h2,
  body.v326-desktop-layout .v325-composer-heading h2 {
    margin: 18px auto 0;
    color: #2f211a;
    font-family: "Playfair Display", serif;
    font-weight: 500;
    letter-spacing: -.045em;
  }

  body.v326-desktop-layout .v325-catalog-heading h2 {
    max-width: 720px;
    font-size: clamp(54px, 5vw, 76px);
    line-height: 1.02;
  }

  body.v326-desktop-layout .v325-catalog-heading p {
    max-width: 650px;
    margin: 24px auto 0;
    color: #745f4d;
    font-size: 18px;
    line-height: 1.7;
  }

  body.v326-desktop-layout .v325-catalog-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: min(1260px, 100%);
    margin: 52px auto 0;
    padding: 0;
    overflow: visible;
  }

  body.v326-desktop-layout .v325-catalog-card {
    display: grid;
    grid-template-rows: auto auto auto auto;
    min-height: 420px;
    padding: 24px 22px 26px;
    border: 1px solid rgba(91, 65, 47, .14);
    border-radius: 34px;
    background: rgba(255, 251, 245, .9);
    box-shadow: 0 20px 50px rgba(77, 52, 37, .08);
    text-align: center;
    transition: transform .22s ease, box-shadow .22s ease;
  }

  body.v326-desktop-layout .v325-catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(77, 52, 37, .13);
  }

  body.v326-desktop-layout .v325-catalog-image {
    display: grid;
    width: min(190px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #f7ead8;
    box-shadow: inset 0 0 0 1px rgba(92, 63, 44, .08);
  }

  body.v326-desktop-layout .v325-catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.v326-desktop-layout .v325-catalog-card strong {
    align-self: end;
    margin-top: 22px;
    color: #2f211a;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;
  }

  body.v326-desktop-layout .v325-catalog-card small {
    display: block;
    margin-top: 8px;
    color: #8b765d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  body.v326-desktop-layout .v325-catalog-card button {
    justify-self: center;
    margin-top: 18px;
    padding: 10px 15px;
    border: 1px solid rgba(80, 54, 39, .22);
    border-radius: 999px;
    background: transparent;
    color: #5f4637;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
  }

  body.v326-desktop-layout .v325-swipe-hint {
    display: none;
  }

  body.v326-desktop-layout #composer {
    padding: 110px 32px 126px;
    background:
      radial-gradient(circle at 88% 8%, rgba(255,255,255,.58), transparent 24%),
      #f4e5cc;
  }

  body.v326-desktop-layout #composer > .container.center,
  body.v326-desktop-layout #composer > .builder-grid {
    display: none !important;
  }

  body.v326-desktop-layout .v325-composer-heading {
    width: min(920px, 100%);
    margin: 0 auto 70px;
    text-align: center;
  }

  body.v326-desktop-layout .v325-heading-line {
    display: block;
    width: 48px;
    height: 1px;
    margin: 18px auto 0;
    background: #a56e37;
  }

  body.v326-desktop-layout .v325-composer-heading h2 {
    max-width: 900px;
    margin-top: 30px;
    font-size: clamp(58px, 5.6vw, 86px);
    line-height: 1.07;
  }

  body.v326-desktop-layout .v325-composition-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, .72fr);
    gap: 34px;
    align-items: start;
    width: min(1380px, 100%);
    margin: 0 auto;
  }

  body.v326-desktop-layout .v326-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
  }

  body.v326-desktop-layout .v325-product-group {
    padding: 28px;
    border: 1px solid rgba(83, 57, 42, .13);
    border-radius: 32px;
    background: rgba(255, 251, 245, .78);
    box-shadow: 0 18px 48px rgba(72, 48, 34, .07);
  }

  body.v326-desktop-layout .v325-product-group + .v325-product-group {
    margin-top: 0;
  }

  body.v326-desktop-layout .v325-product-group > h3 {
    margin: 0 0 22px;
    color: #8a9a68;
    font-family: Jost, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .11em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  body.v326-desktop-layout .v325-choice-list {
    display: grid;
    gap: 12px;
  }

  body.v326-desktop-layout .v325-choice-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    min-height: 84px;
    padding: 10px 12px 10px 10px;
    border: 1px solid rgba(91, 67, 50, .15);
    border-radius: 999px;
    background: rgba(255, 252, 247, .92);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  body.v326-desktop-layout .v325-choice-row:hover {
    transform: translateY(-1px);
    border-color: rgba(91, 67, 50, .28);
    box-shadow: 0 12px 26px rgba(73, 49, 34, .07);
  }

  body.v326-desktop-layout .v325-choice-row.is-selected {
    border-color: rgba(84, 54, 37, .62);
    background: #fffaf1;
    box-shadow: 0 12px 30px rgba(73, 49, 34, .10);
  }

  body.v326-desktop-layout .v325-choice-info {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 13px;
    align-items: center;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
  }

  body.v326-desktop-layout .v325-choice-image {
    display: block;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border-radius: 50%;
    background: #f4e2c9;
  }

  body.v326-desktop-layout .v325-choice-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.v326-desktop-layout .v325-choice-copy {
    display: flex;
    min-width: 0;
    align-items: baseline;
    gap: 10px;
  }

  body.v326-desktop-layout .v325-choice-copy strong {
    overflow: hidden;
    color: #34251e;
    font-size: 17px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.v326-desktop-layout .v325-choice-copy small,
  body.v326-desktop-layout .v325-choice-price {
    flex: 0 0 auto;
    color: #7b6856;
    font-size: 13px;
  }

  body.v326-desktop-layout .v325-choice-action {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  body.v326-desktop-layout .v325-choice-add,
  body.v326-desktop-layout .v325-choice-qty button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(78, 52, 37, .18);
    border-radius: 50%;
    background: #4d3428;
    color: #fffaf2;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
  }

  body.v326-desktop-layout .v325-choice-qty {
    display: grid;
    grid-template-columns: 38px 26px 38px;
    gap: 4px;
    align-items: center;
  }

  body.v326-desktop-layout .v325-choice-qty span {
    color: #34251e;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
  }

  body.v326-desktop-layout .v326-summary {
    position: sticky;
    top: 96px;
    padding: 30px;
    border: 1px solid rgba(83, 57, 42, .15);
    border-radius: 34px;
    background: rgba(255, 251, 245, .93);
    box-shadow: 0 24px 64px rgba(72, 48, 34, .12);
  }

  body.v326-desktop-layout .v326-summary-heading span {
    color: #a56e37;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  body.v326-desktop-layout .v326-summary-heading h3 {
    margin: 10px 0 0;
    color: #2f211a;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1.05;
  }

  body.v326-desktop-layout .v326-summary-heading p {
    margin: 14px 0 0;
    color: #76614f;
    font-size: 14px;
    line-height: 1.6;
  }

  body.v326-desktop-layout .v325-mode-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-top: 26px;
    padding: 5px;
    border: 1px solid rgba(83, 57, 42, .14);
    border-radius: 999px;
    background: #f1dfc4;
  }

  body.v326-desktop-layout .v325-mode-switch button {
    min-height: 48px;
    padding: 10px 13px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #725d49;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
  }

  body.v326-desktop-layout .v325-mode-switch button.is-active {
    background: #3f2b21;
    color: #fffaf2;
    box-shadow: 0 10px 24px rgba(63, 43, 33, .18);
  }

  body.v326-desktop-layout .v325-validation-copy {
    margin-top: 22px;
    padding: 18px;
    border-radius: 22px;
    background: #f8ecd9;
    color: #715d4b;
  }

  body.v326-desktop-layout .v325-validation-copy p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  body.v326-desktop-layout .v325-validation-copy small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  body.v326-desktop-layout .v325-total-summary {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(83, 57, 42, .16);
  }

  body.v326-desktop-layout .v325-total-line {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: baseline;
  }

  body.v326-desktop-layout .v325-total-line span {
    color: #74604f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  body.v326-desktop-layout .v325-total-line strong {
    color: #2f211a;
    font-family: "Playfair Display", serif;
    font-size: 46px;
    font-weight: 500;
  }

  body.v326-desktop-layout .v325-total-summary > p {
    margin: 13px 0 0;
    color: #8a9a68;
    font-size: 14px;
    font-weight: 700;
  }

  body.v326-desktop-layout .v325-total-summary > p.is-reached {
    color: #4f7e45;
  }

  body.v326-desktop-layout .v325-total-progress {
    height: 8px;
    margin-top: 14px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(126, 146, 101, .2);
  }

  body.v326-desktop-layout .v325-total-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #77935f;
  }

  body.v326-desktop-layout .v325-composition-preview {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(83, 57, 42, .13);
    border-radius: 26px;
    background: #fffdf9;
  }

  body.v326-desktop-layout .v325-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  body.v326-desktop-layout .v325-preview-chip {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    min-height: 52px;
    padding: 6px 9px 6px 6px;
    border-radius: 999px;
    background: #f8ecd9;
    color: #3a2a22;
  }

  body.v326-desktop-layout .v325-preview-chip img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
  }

  body.v326-desktop-layout .v325-preview-chip span {
    overflow: hidden;
    font-size: 12px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.v326-desktop-layout .v325-preview-chip b {
    position: absolute;
    top: -5px;
    right: -4px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 50%;
    background: #4d3428;
    color: white;
    font-size: 11px;
  }

  body.v326-desktop-layout .v325-preview-empty {
    grid-column: 1 / -1;
    margin: 0;
    color: #806c59;
    font-size: 13px;
    line-height: 1.55;
  }

  body.v326-desktop-layout .v325-preview-caption {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(83, 57, 42, .13);
    color: #786451;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-align: center;
    text-transform: uppercase;
  }

  body.v326-desktop-layout .v325-review-button {
    width: 100%;
    min-height: 58px;
    margin-top: 22px;
    padding: 14px 20px;
    border: 0;
    border-radius: 999px;
    background: #4d3428;
    color: #fffaf2;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(77, 52, 40, .2);
    cursor: pointer;
  }

  body.v326-desktop-layout .v325-review-button:disabled {
    opacity: .48;
    cursor: not-allowed;
    box-shadow: none;
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  body.v326-desktop-layout .v325-catalog-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.v326-desktop-layout .v325-composition-inner {
    grid-template-columns: 1fr;
  }

  body.v326-desktop-layout .v326-summary {
    position: static;
  }
}


/* ===== beta-v3-27.css ===== */
/* Beta V3.27 — hero, carrousel France et références mobiles infinies */
.v327-price-marker {
  width: 100%;
  max-width: 690px;
  margin: 0 0 24px;
}

.v327-price-box {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 68px;
  padding: 17px 24px 16px 28px;
  border: 2px solid rgba(139, 83, 61, 0.9);
  border-radius: 34px;
  background: rgba(255, 251, 247, 0.76);
  color: #4b3229;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.v327-price-dot {
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: #95624d;
}

.v327-price-box p {
  margin: 0;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.v327-price-box strong {
  color: #4a3027;
  font-weight: 900;
}

.v327-france-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: 100%;
  margin-top: 18px;
  padding: 13px 20px;
  border: 1px solid rgba(232, 196, 172, 0.38);
  border-radius: 999px;
  background: rgba(246, 226, 213, 0.9);
  color: #4b3229;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  box-shadow: 0 10px 26px rgba(111, 64, 50, 0.06);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.v327-france-flag {
  display: block;
  flex: 0 0 auto;
  width: 25px;
  height: 17px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(52, 30, 23, 0.08);
}

.v327-france-flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Nouveau carrousel de réassurance France, mobile et ordinateur */
.v324-trust-rail.v327-trust-carousel {
  position: relative;
  padding: 18px 0;
  border-block: 1px solid rgba(169, 112, 84, 0.18);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, 0.9), transparent 25%),
    linear-gradient(90deg, #f8eadb 0%, #fff9f3 48%, #f5e4d2 100%);
  isolation: isolate;
}

.v324-trust-rail.v327-trust-carousel::before,
.v324-trust-rail.v327-trust-carousel::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 42px;
  pointer-events: none;
}

.v324-trust-rail.v327-trust-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #f8eadb 8%, rgba(248, 234, 219, 0));
}

.v324-trust-rail.v327-trust-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #f5e4d2 8%, rgba(245, 228, 210, 0));
}

.v327-trust-scroller {
  position: relative;
  z-index: 1;
  padding: 4px 0 10px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.v327-trust-track {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 16px;
  width: max-content !important;
  min-width: 0 !important;
  padding-inline: max(28px, calc((100vw - 1280px) / 2)) !important;
}

.v327-trust-card {
  position: relative;
  display: grid;
  flex: 0 0 clamp(290px, 23vw, 355px);
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  min-height: 98px;
  padding: 17px 20px;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(114, 74, 54, 0.14);
  border-radius: 28px;
  background: rgba(255, 252, 248, 0.93);
  color: #3e2a22;
  box-shadow: 0 14px 34px rgba(85, 54, 39, 0.08);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.v327-trust-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(231, 143, 111, 0.09);
  pointer-events: none;
}

.v327-trust-card.is-loop-active {
  transform: translateY(-3px);
  border-color: rgba(116, 72, 51, 0.27);
  box-shadow: 0 20px 42px rgba(85, 54, 39, 0.13);
}

.v327-trust-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(111, 64, 50, 0.11);
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f5e6d8);
  color: #5b3c2f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.v327-trust-icon > svg {
  width: 36px;
  height: 36px;
}

.v327-trust-icon-flag .v327-france-flag {
  width: 34px;
  height: 23px;
  border-radius: 4px;
  box-shadow: 0 5px 14px rgba(52, 30, 23, 0.12);
}

.v327-trust-copy {
  display: block;
  min-width: 0;
  padding-right: 18px;
}

.v327-trust-copy small,
.v327-trust-copy strong {
  display: block;
}

.v327-trust-copy small {
  margin-bottom: 5px;
  color: #a16d4d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.v327-trust-copy strong {
  color: #3d2921;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.32;
}

.v327-trust-mini-flag {
  position: absolute;
  top: 13px;
  right: 14px;
  opacity: 0.72;
}

.v327-trust-mini-flag .v327-france-flag {
  width: 19px;
  height: 13px;
  border-radius: 2px;
}

@media (min-width: 768px) {
  .hero .hero-grid > :first-child {
    min-width: 0;
  }

  .hero .hero-name-field {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  body.v322-mobile-layout .v322-mobile-hero {
    min-height: clamp(910px, 237vw, 1020px);
  }

  .v322-mobile-hero-card .v327-price-marker {
    margin: 0 0 20px;
    text-align: left;
  }

  .v322-mobile-hero-card .v327-price-box {
    gap: 9px;
    min-height: 0;
    padding: 14px 14px 13px 16px;
    border-width: 1.5px;
    border-radius: 24px;
    background: rgba(255, 251, 247, 0.82);
  }

  .v322-mobile-hero-card .v327-price-dot {
    flex-basis: 8px;
    width: 8px;
    height: 8px;
    margin-top: 6px;
  }

  .v322-mobile-hero-card .v327-price-box p {
    font-size: 13px;
    line-height: 1.42;
  }

  .v322-mobile-hero-card .v327-france-badge {
    justify-content: center;
    width: 100%;
    margin-top: 17px;
    padding: 12px 13px;
    border-radius: 22px;
    font-size: 13px;
    line-height: 1.35;
    text-align: center;
  }

  .v322-mobile-hero-card .v327-france-flag {
    width: 23px;
    height: 16px;
  }

  .v324-trust-rail.v327-trust-carousel {
    padding: 14px 0 12px;
  }

  .v324-trust-rail.v327-trust-carousel::before,
  .v324-trust-rail.v327-trust-carousel::after {
    width: 18px;
  }

  .v327-trust-track {
    gap: 12px;
    padding-inline: 20px !important;
  }

  .v327-trust-card {
    flex-basis: min(82vw, 330px);
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 13px;
    min-height: 88px;
    padding: 14px 16px;
    border-radius: 24px;
    scroll-snap-align: center;
  }

  .v327-trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }

  .v327-trust-icon > svg {
    width: 31px;
    height: 31px;
  }

  .v327-trust-icon-flag .v327-france-flag {
    width: 30px;
    height: 20px;
  }

  .v327-trust-copy strong {
    font-size: 14px;
  }

  /* Le catalogue mobile reste centré et boucle sans fin. */
  .v327-infinite-catalog {
    scroll-snap-type: x mandatory;
  }

  .v327-infinite-catalog .v325-catalog-card {
    opacity: 0.6;
    transform: scale(0.94);
    transition:
      opacity 0.25s ease,
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .v327-infinite-catalog .v325-catalog-card.is-loop-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 24px 52px rgba(77, 52, 37, 0.14);
  }

  .v327-catalog-loop-ready .v325-swipe-hint {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }

  .v327-catalog-dots {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
  }

  .v327-catalog-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(80, 54, 39, 0.24);
    transition:
      width 0.22s ease,
      background 0.22s ease;
  }

  .v327-catalog-dot.is-active {
    width: 20px;
    background: #6f4032;
  }

  .v327-catalog-loop-label {
    color: #816f59;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .v327-price-box p {
    font-size: 15px;
  }

  .v327-france-badge {
    font-size: 14px;
  }

  .v327-trust-card {
    flex-basis: 310px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v327-trust-scroller,
  .v327-infinite-catalog {
    scroll-behavior: auto;
  }

  .v327-trust-card,
  .v327-infinite-catalog .v325-catalog-card,
  .v327-catalog-dot {
    transition: none;
  }
}

/* ===== styles auparavant intégrés au wrapper V3.27 ===== */



      html.v327-app-loading {
        overflow: hidden;
        background: #fdf6f0;
      }

      html.v327-app-loading body {
        opacity: 0;
        pointer-events: none;
      }

      html.v327-app-loading::before {
        content: "Préparation de La Maison Winnie…";
        position: fixed;
        z-index: 10000;
        inset: 0;
        display: grid;
        place-items: center;
        padding-top: 70px;
        background:
          radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.96), transparent 25%),
          linear-gradient(180deg, #fffaf6, #f6e4d7);
        color: #6f4032;
        font: 700 15px/1.4 Jost, sans-serif;
        letter-spacing: 0.08em;
        text-align: center;
        text-transform: uppercase;
      }

      html.v327-app-loading::after {
        content: "";
        position: fixed;
        z-index: 10001;
        top: calc(50% - 38px);
        left: calc(50% - 18px);
        width: 36px;
        height: 36px;
        border: 3px solid rgba(111, 64, 50, 0.16);
        border-top-color: #6f4032;
        border-radius: 50%;
        animation: v327-loading-spin 0.8s linear infinite;
      }

      html.v327-app-ready body {
        animation: v327-page-reveal 0.28s ease both;
      }

      @keyframes v327-loading-spin {
        to { transform: rotate(360deg); }
      }

      @keyframes v327-page-reveal {
        from { opacity: 0; }
        to { opacity: 1; }
      }

      @media (prefers-reduced-motion: reduce) {
        html.v327-app-loading::after { animation: none; }
        html.v327-app-ready body { animation: none; }
      }

      .v324-bunny-media { position: relative; }
      .v324-bunny-featured .v324-bunny-media {
        border: 2px solid rgba(216, 137, 104, 0.9);
        box-shadow: 0 20px 55px rgba(95, 57, 43, 0.15);
      }
      .v324-bunny-badge {
        position: absolute;
        z-index: 2;
        top: 14px;
        left: 14px;
        padding: 8px 12px;
        border-radius: 999px;
        background: rgba(67, 42, 34, 0.92);
        color: #fffaf6;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        pointer-events: none;
      }

      @media (max-width: 640px) {
        .v323-botanical-grid {
          display: grid;
          grid-template-columns: none;
          grid-auto-flow: column;
          grid-auto-columns: 84vw;
          gap: 12px;
          overflow-x: auto;
          margin-right: calc(50% - 50vw);
          padding: 2px 18px 12px 0;
          scroll-padding-left: 0;
          scroll-snap-type: x mandatory;
          scrollbar-width: none;
          -webkit-overflow-scrolling: touch;
          overscroll-behavior-inline: contain;
        }

        .v323-botanical-grid::-webkit-scrollbar {
          display: none;
        }

        .v323-botanical-card {
          min-width: 0;
          scroll-snap-align: start;
          scroll-snap-stop: always;
        }

        body:not(.v324-mobile-recap-open) .builder-grid > .cart {
          display: none !important;
        }

        body.v324-mobile-recap-open .builder-grid {
          display: block;
        }

        body.v324-mobile-recap-open .builder-grid > .panel {
          display: none !important;
        }

        body.v324-mobile-recap-open .builder-grid > .cart {
          display: block !important;
          width: 100%;
        }
      }
    
