/* =============================================================================
   Pages — accueil et sections Elementor / ShopBuilder
   Plein Sud child theme. N'utiliser QUE les tokens (var(--ps-*) / var(--rt-*)).
   ============================================================================= */

/* --- Boutons ShopBuilder : couleur de marque (or) au lieu du bleu par défaut -
   La maquette n'utilise aucun bleu : CTA = or, survol = encre.            */
.rtsb-shopbuilder-button .rtsb-btn,
.rtsb-btn.rtsb-sb-button {
  background-color: var(--ps-gold);
  border-color: var(--ps-gold);
  color: var(--ps-white);
}
.rtsb-shopbuilder-button .rtsb-btn:hover {
  color: var(--ps-white);
}
/* L'overlay de survol (::before) passe en encre pour un survol chic */
.rtsb-shopbuilder-button .rtsb-btn:before {
  background-color: var(--ps-ink) !important;
}

/* =============================================================================
   ACCUEIL
   ============================================================================= */
.ps-home { display: block; }

/* --------------------------------- HERO ------------------------------------ */
.ps-hero {
  max-width: var(--ps-content);
  margin: 24px auto 0;
  padding: 0 20px;
}
.ps-hero__inner {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 460px;
  background: linear-gradient(105deg, #f1cb8d 0%, #ecba76 52%, #e4aa61 100%);
}
.ps-hero__slides { position: relative; min-height: 460px; }
.ps-hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}
.ps-hero__slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
/* Sans slider (1 seul slide), le slide reste en flux */
.ps-hero:not([data-hero-slider]) .ps-hero__slide { position: relative; opacity: 1; visibility: visible; }
.ps-hero__content {
  position: relative;
  z-index: 2;
  flex: 0 1 56%;
  padding: 42px clamp(24px, 4.5vw, 60px);
}
.ps-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ps-ink);
  color: #efe7d8;
  border-radius: var(--ps-radius-pill);
  padding: 6px 18px 6px 6px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ps-hero__badge-num {
  background: var(--ps-gold);
  color: var(--ps-ink);
  border-radius: var(--ps-radius-pill);
  padding: 4px 11px;
  font-weight: 700;
}
.ps-hero__title {
  font-family: var(--ps-font-heading);
  color: var(--ps-ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 18px 0 0;
}
.ps-hero__hl { color: var(--ps-terracotta); }
.ps-hero__text {
  color: #4a3f30;
  font-size: 16px;
  line-height: 1.6;
  max-width: 440px;
  margin: 22px 0 0;
}
.ps-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  background: var(--ps-ink);
  color: #fff;
  text-decoration: none;
  padding: 17px 32px;
  border-radius: var(--ps-radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.ps-hero__btn:hover { background: #1b1917; color: #fff; transform: translateX(2px); }
.ps-hero__btn svg { width: 20px; height: 20px; }
/* Dots du slider (positionnés en bas, alignés au contenu) */
.ps-hero__dots {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  left: clamp(24px, 5vw, 72px);
  display: flex;
  gap: 8px;
}
.ps-hero__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(42, 39, 36, 0.28);
  cursor: pointer;
  transition: all 0.25s ease;
}
.ps-hero__dots button:hover { background: rgba(42, 39, 36, 0.5); }
.ps-hero__dots button.is-active {
  width: 22px;
  background: var(--ps-ink);
}
.ps-hero__media {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  width: 48%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ps-hero__img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
}

/* ------------------------- SECTION + GRILLE PRODUITS ----------------------- */
.ps-section { }
.ps-section__inner {
  max-width: var(--ps-content);
  margin: 0 auto;
  padding: 44px 20px 0;
  box-sizing: border-box;
}
.ps-sechead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}
.ps-sechead__title {
  font-family: var(--ps-font-heading);
  color: var(--ps-ink);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  margin: 5px 0 0;
}
.ps-sechead__link {
  flex: 0 0 auto;
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-pill);
  background: var(--ps-cream-soft);
  color: var(--ps-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.ps-sechead__link:hover { background: var(--ps-gold); border-color: var(--ps-gold); color: #fff; }

.ps-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* --- Carte produit --- */
.ps-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ps-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.ps-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ps-cream);
}
/* Fonds colorés cyclés (comme la maquette) */
.ps-products .ps-card:nth-child(4n+1) .ps-card__media { background: #f4edda; }
.ps-products .ps-card:nth-child(4n+2) .ps-card__media { background: #f5efe4; }
.ps-products .ps-card:nth-child(4n+3) .ps-card__media { background: #f3e5df; }
.ps-products .ps-card:nth-child(4n)   .ps-card__media { background: #e9ebdf; }
.ps-card__imglink { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: 16px; box-sizing: border-box; }
.ps-card__media img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.ps-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--ps-terracotta);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--ps-radius-pill);
  z-index: 2;
}
.ps-card__fav {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px !important; height: 36px !important;
  min-width: 36px; max-width: 36px;
  padding: 0 !important;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--ps-line);
  border-radius: 50%;
  color: var(--ps-ink);
  cursor: pointer;
  box-sizing: border-box;
  z-index: 2;
  transition: color .2s, border-color .2s;
}
.ps-card__fav svg { width: 17px; height: 17px; stroke: currentColor; transition: fill .2s; }
.ps-card__fav:hover { color: var(--ps-terracotta); border-color: var(--ps-terracotta); }
/* Favori actif : cœur rempli terracotta */
.ps-card__fav.is-active { color: var(--ps-terracotta); border-color: var(--ps-terracotta); background: rgba(190, 94, 60, .1); }
.ps-card__fav.is-active svg { fill: currentColor; }
.ps-product__wish.is-active { color: var(--ps-terracotta); border-color: var(--ps-terracotta); }
.ps-product__wish.is-active svg { fill: currentColor; }

.ps-card__body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.ps-card__cat {
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ps-gold-dark);
}
.ps-card__title { margin: 0; font-family: var(--ps-font-body); font-size: 14px; font-weight: 500; line-height: 1.3; }
.ps-card__title a { color: var(--ps-ink); text-decoration: none; }
.ps-card__title a:hover { color: var(--ps-gold); }
.ps-card__rating { display: flex; align-items: center; gap: 6px; }
.ps-stars { color: #dcd6c8; font-size: 13px; letter-spacing: 1px; line-height: 1; }
.ps-star.is-full { color: var(--ps-gold); }
.ps-card__rcount { color: var(--ps-muted); font-size: 11px; }
.ps-card__price { font-size: 15px; font-weight: 700; color: var(--ps-ink); }
.ps-card__price del { color: var(--ps-muted); font-weight: 400; font-size: 13px; margin-left: 6px; text-decoration: line-through; opacity: 1; }
.ps-card__price ins { text-decoration: none; background: none !important; color: var(--ps-ink); }
.ps-card__price ins .amount { background: none !important; color: var(--ps-ink); }
.ps-card__price .amount { color: inherit; background: none; }
.ps-card__price del .amount { color: var(--ps-muted); }
.ps-card__cart {
  margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 12px;
  border: 1px solid var(--ps-line);
  border-radius: var(--ps-radius-pill);
  background: #fff;
  color: var(--ps-ink);
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.ps-card__cart svg { width: 16px; height: 16px; }
.ps-card__cart:hover { background: var(--ps-ink); border-color: var(--ps-ink); color: #fff; }
.ps-card__cart.loading { opacity: .6; pointer-events: none; }
.ps-card__cart.added { background: var(--ps-gold); border-color: var(--ps-gold); color: #fff; }

/* ----------------------------- CARTES PROMO -------------------------------- */
.ps-promos {
  max-width: var(--ps-content);
  margin: 48px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}
.ps-promos__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ps-promo {
  display: flex;
  align-items: stretch;
  border-radius: 18px;
  overflow: hidden;
  min-height: 200px;
}
.ps-promo__body {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
}
.ps-promo__eyebrow {
  font-family: var(--ps-font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7f70;
}
.ps-promo__title {
  font-family: var(--ps-font-heading);
  color: var(--ps-ink);
  font-size: 22px;
  line-height: 1.15;
  margin: 10px 0 16px;
}
.ps-promo__btn {
  display: inline-block;
  padding: 11px 26px;
  border: 1.5px solid var(--ps-gold);
  border-radius: var(--ps-radius-pill);
  color: var(--ps-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.ps-promo__btn:hover { background: var(--ps-gold); color: #fff; }
.ps-promo__media {
  flex: 1 1 45%;
  position: relative;
  overflow: hidden;
}
.ps-promo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ----------------------------- RÉASSURANCE --------------------------------- */
.ps-reassure {
  border-top: 1px solid var(--ps-line);
  border-bottom: 1px solid var(--ps-line);
  margin-top: 28px;
  background: var(--ps-surface);
}
.ps-reassure__inner {
  max-width: var(--ps-content);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
}
.ps-reassure__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 18px;
}
.ps-reassure__item + .ps-reassure__item { border-left: 1px solid var(--ps-line); }
.ps-reassure__icon { color: var(--ps-gold); flex: 0 0 auto; }
.ps-reassure__icon svg { width: 30px; height: 30px; }
.ps-reassure__txt { display: flex; flex-direction: column; line-height: 1.3; }
.ps-reassure__txt strong { color: var(--ps-ink); font-size: 15px; font-weight: 600; }
.ps-reassure__txt span { color: var(--ps-muted); font-size: 13px; }

/* ------------------------------- SOLDES ------------------------------------ */
.ps-soldes {
  display: grid;
  grid-template-columns: 40% 60%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ps-line);
}
.ps-soldes__left {
  background: linear-gradient(150deg, #ac8730, #96762a);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 32px;
}
.ps-soldes__big {
  font-family: var(--ps-font-heading);
  color: #fff;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  text-align: center;
  letter-spacing: 0.01em;
}
.ps-soldes__right { background: #fff; padding: 32px 36px; }
.ps-soldes__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.ps-soldes__vite { font-family: var(--ps-font-heading); font-style: italic; color: var(--ps-gold-dark); font-size: 30px; }
.ps-countdown { display: flex; align-items: center; gap: 6px; }
.ps-countdown span { text-align: center; }
.ps-countdown b { display: block; font-family: var(--ps-font-heading); font-size: 26px; color: var(--ps-ink); }
.ps-countdown i { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ps-muted); font-style: normal; }
.ps-countdown em { color: var(--ps-line); font-style: normal; margin: 0 2px; align-self: flex-start; }
.ps-soldes__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.ps-srow { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.ps-srow__media { position: relative; flex: 0 0 auto; width: 58px; height: 58px; border-radius: 8px; overflow: hidden; background: var(--ps-cream); display: flex; align-items: center; justify-content: center; }
.ps-srow__media img { max-width: 100%; max-height: 100%; width: auto; mix-blend-mode: multiply; }
.ps-srow__badge { position: absolute; top: 3px; left: 3px; background: var(--ps-terracotta); color: #fff; font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 999px; }
.ps-srow__info { display: flex; flex-direction: column; gap: 2px; }
.ps-srow__cat { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ps-gold-dark); }
.ps-srow__name { font-size: 14px; color: var(--ps-ink); }
.ps-srow__price { font-size: 14px; font-weight: 700; color: var(--ps-ink); }
.ps-srow__price del { color: var(--ps-muted); font-weight: 400; font-size: 12px; margin-right: 5px; }
.ps-srow__price ins { text-decoration: none; background: none; color: var(--ps-ink); }

/* ------------------------------ EXPERTISE ---------------------------------- */
.ps-expertise {
  background: linear-gradient(135deg, #7f8259, #6f724d);
  border-radius: 18px;
  padding: 42px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  color: #fff;
}
.ps-eyebrow--light { color: rgba(255,255,255,.65); }
.ps-expertise__title { font-family: var(--ps-font-heading); color: #fff; font-size: clamp(26px, 3.2vw, 36px); line-height: 1.1; margin: 12px 0 16px; }
.ps-expertise__body { max-width: 640px; }
.ps-expertise__body p { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.7; margin: 0; }
.ps-btn-gold {
  flex: 0 0 auto;
  display: inline-block; padding: 15px 28px;
  background: var(--ps-gold); color: #fff; text-decoration: none;
  border-radius: var(--ps-radius-pill); font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  transition: background .2s;
}
.ps-btn-gold:hover { background: var(--ps-gold-dark); color: #fff; }

/* ----------------------------- BEST SELLERS -------------------------------- */
.ps-bestsellers { display: grid; grid-template-columns: 33% 1fr; gap: 24px; }
.ps-bestsellers__feature {
  position: relative; border-radius: 14px; overflow: hidden; background: #e6e8db;
  display: flex; align-items: flex-start; min-height: 100%; text-decoration: none;
}
.ps-bestsellers__featimg { position: absolute !important; inset: 0; width: 100% !important; height: 100% !important; object-fit: cover; object-position: center top; }
.ps-bestsellers__featttl {
  position: relative; z-index: 2; padding: 28px 26px; max-width: 62%;
  font-family: var(--ps-font-heading); color: var(--ps-ink); font-size: 26px; line-height: 1.12;
}
.ps-bestsellers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ps-bestsellers__grid .ps-products { display: contents; }

/* ------------------------------ CARTES INFO -------------------------------- */
.ps-infocards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ps-infocard { position: relative; border-radius: 18px; padding: 32px; }
.ps-infocard__plus { position: absolute; top: 24px; right: 24px; width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; }
.ps-infocard h3 { font-family: var(--ps-font-heading); font-size: 22px; line-height: 1.18; margin: 0 0 12px; max-width: 80%; }
.ps-infocard p { font-size: 13px; line-height: 1.6; margin: 0 0 20px; max-width: 90%; }
.ps-infocard--dark { background: var(--ps-ink); color: #fff; }
.ps-infocard--dark h3 { color: #fff; }
.ps-infocard--dark p { color: rgba(255,255,255,.7); }
.ps-infocard--dark .ps-infocard__plus { background: #46423d; color: #fff; }
.ps-infocard--gold { background: linear-gradient(135deg, #cba43f, #bf9433); color: #fff; }
.ps-infocard--gold h3 { color: #fff; }
.ps-infocard--gold p { color: rgba(255,255,255,.85); }
.ps-infocard--gold .ps-infocard__plus { background: rgba(0,0,0,.18); color: #fff; }
.ps-infocard__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.ps-btn-outline-light { display: inline-block; padding: 13px 24px; border: 1px solid rgba(255,255,255,.4); border-radius: var(--ps-radius-pill); color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; }
.ps-btn-outline-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.ps-btn-dark { display: inline-block; padding: 14px 26px; background: var(--ps-ink); color: #fff; text-decoration: none; border-radius: var(--ps-radius-pill); font-size: 13px; font-weight: 600; }
.ps-btn-dark:hover { background: #1b1917; color: #fff; }

/* --------------------------------- AVIS ------------------------------------ */
.ps-avis__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.ps-avis__score { font-family: var(--ps-font-heading); font-size: 26px; color: var(--ps-gold-dark); }
.ps-avis__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ps-avis__card { border: 1px solid var(--ps-line); border-radius: 14px; padding: 26px; background: var(--ps-cream-soft); }
.ps-avis__card .ps-stars { font-size: 15px; }
.ps-avis__text { font-size: 14px; line-height: 1.6; color: var(--ps-body); margin: 14px 0 22px; }
.ps-avis__author { display: flex; align-items: center; gap: 12px; }
.ps-avis__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--ps-cream); color: var(--ps-gold-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.ps-avis__author strong { color: var(--ps-ink); font-size: 14px; }
.ps-avis__loc { color: var(--ps-muted); font-size: 12px; }

/* ------------------------------ NEWSLETTER --------------------------------- */
.ps-newsletter {
  background: linear-gradient(135deg, #caa33e, #bd9332);
  border-radius: 18px; padding: 40px 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap;
}
.ps-newsletter__title { font-family: var(--ps-font-heading); color: #fff; font-size: clamp(26px, 3.2vw, 34px); line-height: 1.1; margin: 0 0 10px; }
.ps-newsletter__body p { color: rgba(255,255,255,.9); font-size: 15px; margin: 0; }
.ps-newsletter__body { flex: 1 1 340px; }
.ps-newsletter__form { flex: 1 1 420px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.ps-newsletter__form input { flex: 1 1 240px; height: 54px; border: 0; border-radius: var(--ps-radius-pill); padding: 0 24px; font-size: 15px; background: #fff; color: var(--ps-ink); }
.ps-newsletter__form button { flex: 0 0 auto; height: 54px; padding: 0 30px; border: 0; border-radius: var(--ps-radius-pill); background: var(--ps-ink); color: #fff; font-size: 15px; font-weight: 600; cursor: pointer; }
.ps-newsletter__form button:hover { background: #1b1917; }
.ps-newsletter__row { flex: 1 1 100%; width: 100%; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.ps-newsletter__fine { flex: 1 1 100%; }
.ps-newsletter__msg { flex: 1 1 100%; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: #fff; }
.ps-newsletter__msg svg { width: 18px; height: 18px; flex: 0 0 auto; }
.ps-newsletter__msg.is-err { opacity: .95; }
.ps-newsletter__fine { flex: 1 1 100%; color: rgba(255,255,255,.8); font-size: 12px; }

/* ------------------------------ Responsive --------------------------------- */
@media (max-width: 991px) {
  .ps-hero { padding: 0 16px; margin-top: 20px; }
  .ps-hero__inner, .ps-hero__slides { min-height: 580px; }
  /* Slide : contenu en haut, image en bas (mais slides toujours empilés pour le fondu) */
  .ps-hero__slide { flex-direction: column; align-items: stretch; }
  .ps-hero__content { flex: 0 0 auto; padding: 34px 26px 12px; }
  .ps-hero__title { font-size: clamp(30px, 8vw, 42px); }
  .ps-hero__text { font-size: 15px; }
  .ps-hero__btn { margin-top: 24px; }
  .ps-hero__media {
    position: relative;
    width: 100%;
    flex: 1 1 auto;
    min-height: 200px;
    align-items: flex-end;
  }
  .ps-hero__dots { bottom: 18px; left: 26px; }

  .ps-promos { margin-top: 32px; }
  .ps-promos__inner { grid-template-columns: 1fr; gap: 16px; }
  .ps-promo { min-height: 170px; }

  .ps-section__inner { padding-top: 44px; }
  .ps-products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ps-sechead { align-items: center; }
  .ps-sechead__link { padding: 10px 18px; font-size: 13px; }

  /* Soldes */
  .ps-soldes { grid-template-columns: 1fr; }
  .ps-soldes__left { padding: 36px 24px; }
  .ps-soldes__right { padding: 26px 22px; }
  .ps-soldes__head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ps-soldes__list { grid-template-columns: 1fr; }
  /* Expertise / Newsletter : empiler */
  .ps-expertise, .ps-newsletter { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
  /* Best sellers */
  .ps-bestsellers { grid-template-columns: 1fr; }
  .ps-bestsellers__feature { min-height: 260px; }
  .ps-bestsellers__grid { grid-template-columns: repeat(2, 1fr); }
  /* Info cards */
  .ps-infocards { grid-template-columns: 1fr; }
  .ps-infocard { padding: 32px 26px; }
  .ps-infocard h3, .ps-infocard p { max-width: 100%; }
  /* Avis */
  .ps-avis__grid { grid-template-columns: 1fr; }

  .ps-reassure__inner { flex-wrap: wrap; }
  .ps-reassure__item { flex: 1 1 50%; }
  .ps-reassure__item:nth-child(odd) { border-left: 0; }
  .ps-reassure__item { border-bottom: 1px solid var(--ps-line); }
}
/* Grille produits : 3 colonnes en desktop intermédiaire */
@media (max-width: 1199px) and (min-width: 992px) {
  .ps-products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575px) {
  .ps-hero__content { padding: 28px 22px 10px; }
  .ps-reassure__item { flex: 1 1 100%; border-left: 0; }
  .ps-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ps-card__body { padding: 14px 12px 16px; }
  .ps-card__cart span { font-size: 13px; }
}
