@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@500;600;700;800&display=swap");

:root {
  --fdp-purple: #3d1b62;
  --fdp-purple-2: #3d1b62;
  --fdp-purple-dark: #3d1b62;
  --fdp-purple-deep: #2a1244;
  --fdp-purple-soft: rgba(61, 27, 98, 0.1);
  --fdp-ink: #1a1a1a;
  --fdp-muted: #6b6572;
  --fdp-bg: #ffffff;
  --fdp-line: #ece7f2;
  --fdp-footer: #14171e;
  --fdp-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --fdp-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --fdp-wrap: 1180px;
  --fdp-radius: 16px;
  --fdp-shadow: 0 8px 28px rgba(61, 27, 98, 0.1);
}

/* ---- Reset conflicting theme chrome on the new header/home ---- */
body.fdp-redesign {
  font-family: var(--fdp-sans);
  color: var(--fdp-ink);
  background: #fff;
  padding-top: var(--fdp-header-h, 174px);
}
body.fdp-redesign #header {
  background: #fff;
  box-shadow: none;
  border: 0;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 500;
}
body.fdp-redesign #header.is-stuck {
  box-shadow: 0 8px 24px rgba(61, 27, 98, 0.1);
}
body.fdp-redesign #header .header-banner,
body.fdp-redesign #header .header-nav,
body.fdp-redesign #header .header-top,
body.fdp-redesign #header .nav-full-width,
body.fdp-redesign #mobile_top_menu_wrapper {
  display: none !important;
}
body#index #top_home,
body#index #bottom_home,
body#index .breadcrumb,
body#index #left-column,
body#index #right-column,
body#index #_desktop_right_column,
body#index #_desktop_left_column,
body#index #_mobile_left_column,
body#index #_mobile_right_column {
  display: none !important;
}
body#index #wrapper {
  padding: 0 !important;
  background: #fff;
}
body#index #wrapper > .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
body#index #wrapper > .container > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body#index #content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  float: none !important;
  margin: 0 !important;
}
body#index #content.page-home,
body#index .page-content.card,
body#index #content.page-content {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body#index #main {
  padding: 0;
}
html:has(body#index),
body#index,
body#index #page {
  overflow-x: hidden;
  max-width: 100%;
}
body.fdp-redesign #footer {
  padding: 0;
  margin: 0;
  background: var(--fdp-footer);
}
body.fdp-redesign #footer .footer-container {
  padding: 0;
  background: transparent;
}
body.fdp-redesign #footer .fdp-foot {
  padding: 56px 0 28px;
}

.fdp-wrap {
  width: 100%;
  max-width: var(--fdp-wrap);
  margin: 0 auto;
  padding: 0 24px;
}
.fdp-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fdp-purple);
  margin-bottom: 8px;
}
.fdp-title {
  font-family: var(--fdp-serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--fdp-ink);
  margin: 0 0 8px;
}
.fdp-sub {
  font-size: 14px;
  color: var(--fdp-muted);
  line-height: 1.55;
  margin: 0;
}
.fdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--fdp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.fdp-btn--primary {
  background: var(--fdp-purple);
  color: #fff;
}
.fdp-btn--primary:hover {
  background: var(--fdp-purple-deep);
  color: #fff;
}
.fdp-btn--ghost {
  background: #fff;
  color: var(--fdp-purple);
  border: 1.5px solid var(--fdp-purple);
}
.fdp-btn--ghost:hover {
  background: var(--fdp-purple-soft);
  color: var(--fdp-purple);
}
.fdp-btn--white {
  background: #fff;
  color: var(--fdp-purple);
}
.fdp-btn--white:hover {
  background: var(--fdp-purple-soft);
  color: var(--fdp-purple);
}
.fdp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--fdp-purple);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.fdp-link:hover { text-decoration: underline; }
.fdp-section {
  padding: 56px 0;
}
.fdp-section--tight { padding: 36px 0; }
.fdp-headrow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.fdp-ess__grid,
.fdp-prods,
.fdp-well__grid,
.fdp-excl__grid,
.fdp-vids,
.fdp-rev__grid {
  align-items: stretch;
}
.fdp-ess-card,
.fdp-prod,
.fdp-well-card {
  height: 100%;
}

/* ===================== HEADER ===================== */
.fdp-topbar {
  background: var(--fdp-purple-dark);
  color: #fff;
  font-size: 12px;
  overflow: hidden;
}
.fdp-topbar__viewport {
  overflow: hidden;
  min-height: 36px;
}
.fdp-topbar__track {
  display: flex;
  width: max-content;
  align-items: center;
}
.fdp-topbar__group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 0 36px;
  flex: 0 0 auto;
  min-height: 36px;
}
.fdp-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  white-space: nowrap;
  opacity: 0.95;
}
.fdp-topbar__item svg {
  flex: 0 0 auto;
  opacity: 0.9;
}
@keyframes fdp-topbar-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (min-width: 1101px) {
  .fdp-topbar__viewport {
    max-width: var(--fdp-wrap);
    margin: 0 auto;
    padding: 0 24px;
  }
  .fdp-topbar__track {
    width: 100%;
    animation: none;
  }
  .fdp-topbar__group {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding: 0;
  }
  .fdp-topbar__group--clone { display: none; }
}
@media (max-width: 1100px) {
  .fdp-topbar__track {
    animation: fdp-topbar-marquee 32s linear infinite;
  }
  .fdp-topbar:hover .fdp-topbar__track,
  .fdp-topbar:focus-within .fdp-topbar__track {
    animation-play-state: paused;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fdp-topbar__track {
    animation: none !important;
  }
  .fdp-topbar__viewport {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.fdp-head {
  background: #fff;
  border-bottom: 1px solid #f0eef3;
}
.fdp-head__row {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 10px 0;
}
.fdp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--fdp-ink);
  min-width: 0;
}
.fdp-logo__img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.fdp-logo--foot {
  display: inline-flex;
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  max-width: 240px;
}
.fdp-logo--foot .fdp-logo__img {
  height: 40px;
}

.fdp-search {
  display: flex;
  align-items: center;
  height: 46px;
  background: #f5f5f6;
  border: 1px solid #e6e6e8;
  border-radius: 999px;
  overflow: hidden;
}
.fdp-search input[type="text"] {
  flex: 1;
  min-width: 0;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  font-size: 13.5px;
  color: var(--fdp-ink);
  outline: none;
  box-shadow: none;
}
.fdp-search input::placeholder { color: #9a94a3; }
.fdp-search__cat {
  position: relative;
  height: 46px;
  border-left: 1px solid #e2dde8;
  background: transparent;
}
.fdp-search__cat select {
  appearance: none;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0 34px 0 14px;
  font-size: 13px;
  color: #5c5664;
  cursor: pointer;
  outline: none;
  max-width: 220px;
}
.fdp-search__cat::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #7a7382;
  border-bottom: 1.5px solid #7a7382;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.fdp-search button {
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--fdp-purple);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fdp-search button:hover { color: var(--fdp-purple-dark); }

.fdp-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fdp-actions a,
.fdp-actions .fdp-cart-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 58px;
  padding: 6px 8px;
  color: var(--fdp-ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
}
.fdp-actions a:hover,
.fdp-actions .fdp-cart-link:hover { color: var(--fdp-purple); }
.fdp-actions svg { display: block; }
.fdp-badge {
  position: absolute;
  top: 2px;
  right: 10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 99px;
  background: var(--fdp-purple);
  color: #fff;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
}

/* restyle native cart widget sitting inside the action */
.fdp-actions #_desktop_cart,
.fdp-actions .blockcart {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fdp-actions .blockcart .header {
  padding: 0;
  background: none;
  border: 0;
}
.fdp-actions .blockcart .cart-link,
.fdp-actions .blockcart .header > a,
.fdp-actions .blockcart .header > span.cart-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--fdp-ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
}
.fdp-actions .blockcart .cart-img {
  width: 22px;
  height: 22px;
  background: none !important;
  position: relative;
}
.fdp-actions .blockcart .cart-img::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%231a1a1a' stroke-width='1.8' viewBox='0 0 24 24'><path d='M6 6h15l-1.5 9h-12z'/><circle cx='9' cy='20' r='1.4'/><circle cx='18' cy='20' r='1.4'/><path d='M6 6L5 3H2'/></svg>") center/contain no-repeat;
}
.fdp-actions .blockcart .cart-name {
  font-size: 0 !important;
  text-transform: none;
}
.fdp-actions .blockcart .cart-name::after {
  content: "Panier";
  font-size: 11px;
  font-weight: 600;
}
.fdp-actions .blockcart .cart-products-count {
  position: absolute;
  top: 0;
  right: 8px;
  background: var(--fdp-purple);
  color: #fff !important;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  font-size: 10px;
  line-height: 16px;
  text-align: center;
}
.fdp-actions .blockcart .cart-dropdown {
  right: 0;
  left: auto;
  z-index: 50;
}

.fdp-nav {
  background: #fff;
  border-bottom: 1px solid #f0eef3;
  position: relative;
  z-index: 500;
}
.fdp-nav__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
}
.fdp-catbtn,
.fdp-catbtn svg {
  color: #fff;
}
.fdp-catbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--fdp-purple);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}
.fdp-catbtn:hover { background: var(--fdp-purple-deep); color: #fff; }
.fdp-catbtn__x { display: none; }
.fdp-catbtn.is-open {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0;
  justify-content: center;
  gap: 0;
  background: transparent;
  border-radius: 0;
}
.fdp-catbtn.is-open svg,
.fdp-catbtn.is-open .fdp-catbtn__label { display: none; }
.fdp-catbtn.is-open .fdp-catbtn__x {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fdp-catbtn.is-open .fdp-catbtn__x span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0;
  background: var(--fdp-ink);
  transition: transform .15s ease, opacity .15s ease;
}
.fdp-catbtn.is-open .fdp-catbtn__x span:nth-child(1) { transform: translateY(2px) rotate(45deg); }
.fdp-catbtn.is-open .fdp-catbtn__x span:nth-child(2) { opacity: 0; }
.fdp-catbtn.is-open .fdp-catbtn__x span:nth-child(3) { transform: translateY(-2px) rotate(-45deg); }
.fdp-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
.fdp-menu > li { position: relative; }
.fdp-menu a {
  display: block;
  padding: 10px 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fdp-ink);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.fdp-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: 2px;
}
.fdp-menu__sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 8px 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(20, 10, 40, 0.14);
  z-index: 40;
}
.fdp-menu__drop:hover .fdp-menu__sub,
.fdp-menu__drop:focus-within .fdp-menu__sub {
  display: block;
}
.fdp-menu .fdp-menu__sub a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
  line-height: 1.3;
}
.fdp-menu__sub a.is-current::after { display: none; }
.fdp-menu__drop--families.is-open .fdp-menu__sub { display: flex; }
.fdp-menu__sub--families {
  left: auto;
  right: 0;
  gap: 8px;
  min-width: 0;
  padding: 16px 12px;
}
.fdp-menu__drop--families:hover .fdp-menu__sub--families,
.fdp-menu__drop--families:focus-within .fdp-menu__sub--families { display: flex; }
.fdp-menu__family { min-width: 220px; padding: 0 8px; }
.fdp-menu__family + .fdp-menu__family { border-left: 1px solid var(--fdp-line); }
.fdp-menu__family-title {
  margin: 0 0 6px;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fdp-purple);
}
.fdp-menu__drop--families.is-open > a .fdp-caret { transform: rotate(180deg); }
.fdp-menu a:hover,
.fdp-menu a.is-current { color: var(--fdp-purple); }
.fdp-menu > li > a.is-current::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 6px;
  height: 2px;
  background: var(--fdp-purple);
  border-radius: 1px;
}
.fdp-menu a:focus-visible,
.fdp-mega a:focus-visible {
  outline: 2px solid var(--fdp-purple);
  outline-offset: 2px;
}
.fdp-mega a.is-current {
  color: var(--fdp-purple);
  font-weight: 700;
}
.fdp-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  position: relative;
}
.fdp-burger--bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: 0;
  width: 46px;
  height: 46px;
  border-radius: 8px;
}
.fdp-burger--bar:hover { background: #f6f1f9; }
.fdp-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.fdp-burger.is-open span:nth-child(2) { opacity: 0; }
.fdp-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.fdp-burger span { transition: transform .15s ease, opacity .15s ease; }
.fdp-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fdp-ink);
  margin: 4px auto;
}

.fdp-mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  box-shadow: 0 18px 40px rgba(20, 10, 40, 0.14);
  z-index: 600;
  padding: 28px 0 32px;
  border-top: 1px solid var(--fdp-line);
}
.fdp-catwrap { position: static; }
#fdp-nav.is-open .fdp-mega { display: block; }
@media (min-width: 769px) {
  #fdp-nav.is-open .fdp-mega {
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  #fdp-nav.is-open .fdp-fly {
    position: fixed;
    top: var(--fdp-header-h, 120px);
    left: 0;
    bottom: 0;
    z-index: 700;
    min-height: 0;
    max-height: none;
    background: transparent;
  }
  #fdp-nav.is-open .fdp-fly__col--1 {
    width: 320px;
    height: 100%;
    margin-left: calc(-1 * var(--fdp-shift, 0px));
    background: #fff;
    box-shadow: 8px 0 28px rgba(20, 10, 40, 0.12);
  }
  /* Colonnes de niveau 2, 3, 4… (illimité) : chacune 320px à droite de la précédente.
     --fdp-shift (posé par le JS) fait glisser l'ensemble vers la gauche si l'écran est trop étroit. */
  #fdp-nav.is-open .fdp-fly__col.is-on:not(.fdp-fly__col--1) {
    position: fixed;
    top: var(--fdp-header-h, 120px);
    bottom: 0;
    left: calc((var(--fdp-d, 2) - 1) * 320px - var(--fdp-shift, 0px));
    z-index: calc(700 + var(--fdp-d, 2));
    width: 320px;
    height: auto;
    background: #fff;
    box-shadow: 8px 0 28px rgba(20, 10, 40, 0.08);
  }
}
.fdp-mega__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  gap: 28px;
}
.fdp-mega h3 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fdp-purple);
  margin: 0 0 12px;
  font-weight: 700;
}
.fdp-mega a {
  display: block;
  padding: 6px 0;
  color: #3a3540;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
}
.fdp-mega a:hover { color: var(--fdp-purple); }

/* social rail — vertical card, horizontal text (matches mockup) */
.fdp-rail {
  position: fixed;
  right: 0;
  top: 36%;
  z-index: 40;
  width: 118px;
  background: var(--fdp-purple);
  color: #fff;
  border-radius: 14px 0 0 14px;
  padding: 18px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  box-shadow: -4px 8px 24px rgba(55, 24, 104, 0.2);
}
.fdp-rail p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff !important;
  letter-spacing: 0.01em;
  hyphens: none;
  overflow-wrap: normal;
  word-break: keep-all;
}
.fdp-rail p span {
  display: block;
  white-space: nowrap;
}
.fdp-rail__icons {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.fdp-rail__icons a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fdp-rail__icons a:hover {
  background: rgba(255, 255, 255, 0.32);
  color: #fff;
}

/* ===================== HERO SLIDER ===================== */
.fdp-hero {
  position: relative;
  z-index: 1;
  background: #f4eef6;
  overflow: hidden;
  padding: 0 0 12px;
}
.fdp-slider {
  position: relative;
  outline: none;
}
.fdp-slider.is-ready .fdp-slide {
  display: block;
}
.fdp-slider__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  touch-action: pan-y;
}
.fdp-slider__track {
  display: flex;
  width: 100%;
  align-items: stretch;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.fdp-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.fdp-slider:not(.is-ready) .fdp-slide:not(.is-active) {
  display: none;
}
.fdp-slider.is-ready .fdp-slide[hidden] {
  display: block;
  visibility: visible;
}
.fdp-slide__visual {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 666;
  overflow: hidden;
  background: #f4eef6;
}
.fdp-slide__visual picture,
.fdp-slide__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.fdp-slide__copy {
  z-index: 4;
}
.fdp-slide__copy .fdp-kicker {
  font-family: var(--fdp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--fdp-purple);
}
.fdp-slide__copy h1,
.fdp-slide__copy h2 {
  font-family: var(--fdp-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.14;
  font-weight: 700;
  color: var(--fdp-purple-deep);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.fdp-slide__copy p {
  max-width: 460px;
  font-family: var(--fdp-sans);
  font-size: clamp(13px, 1.15vw, 16px);
  line-height: 1.6;
  color: #5a5462;
  margin: 0 0 20px;
}
.fdp-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fdp-hero__ctas .fdp-btn span {
  font-size: 16px;
  line-height: 1;
  margin-left: 2px;
}

.fdp-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--fdp-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: 0 6px 18px rgba(61, 27, 98, 0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.fdp-slider__nav:hover {
  background: var(--fdp-purple);
  color: #fff;
}
.fdp-slider__nav:focus-visible {
  outline: 2px solid var(--fdp-purple);
  outline-offset: 3px;
}
.fdp-slider__nav svg {
  pointer-events: none;
  display: block;
}
.fdp-slider__nav--prev { left: 16px; }
.fdp-slider__nav--next { right: 16px; }

.fdp-slider__dots {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 16px;
  z-index: 60;
  display: flex;
  justify-content: center;
  gap: 2px;
  transform: translateX(-50%);
  background: rgba(26, 18, 36, 0.28);
  border-radius: 999px;
  padding: 0 4px;
}
.fdp-slider__dots button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fdp-slider__dots button::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(61, 27, 98, 0.18);
  transition: width 0.2s, background 0.2s, border-radius 0.2s;
}
.fdp-slider__dots button[aria-selected="true"]::after {
  width: 22px;
  border-radius: 999px;
  background: var(--fdp-purple);
}
.fdp-slider__dots button:focus-visible {
  outline: 2px solid var(--fdp-purple);
  outline-offset: 2px;
}

@media (min-width: 1101px) {
  .fdp-ess-card--more,
  .fdp-prod--more { display: none; }
  .fdp-slide__copy {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(46%, 560px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 20px 56px 6%;
    box-sizing: border-box;
  }
  .fdp-slider__nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fdp-slider__track {
    transition: none;
  }
}

.fdp-usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 18px 0 8px;
  position: relative;
}
.fdp-usp__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
}
.fdp-usp__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--fdp-purple-soft);
  color: var(--fdp-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}
.fdp-usp__item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--fdp-ink);
}
.fdp-usp__item span {
  display: block;
  font-size: 12px;
  color: var(--fdp-muted);
}

/* ===================== ESSENTIALS ===================== */
.fdp-ess {
  padding: 28px 0 12px;
}
.fdp-ess__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fdp-ess-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--fdp-shadow);
  padding: 16px 16px 18px;
  text-decoration: none;
  color: var(--fdp-ink);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fdp-ess-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(55, 24, 104, 0.12);
  color: var(--fdp-ink);
}
.fdp-ess-card__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.fdp-ess-card__imgs img,
.fdp-ess-card img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  background: #faf8f6;
  border-radius: 10px;
}
.fdp-ess-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  min-height: 2.4em;
}
.fdp-ess-card p {
  font-size: 12.5px;
  color: var(--fdp-muted);
  margin: 0 0 10px;
  line-height: 1.4;
  flex: 1;
}
.fdp-ess-card .fdp-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--fdp-purple);
}
.fdp-ess-card--more {
  background: var(--fdp-purple);
  color: #fff;
  justify-content: center;
  box-shadow: none;
  display: flex;
}
.fdp-ess-card--more:hover { color: #fff; }
.fdp-ess-card--more h3,
.fdp-ess-card--more p,
.fdp-ess-card--more .fdp-more { color: #fff; }
.fdp-ess-card--more p { color: rgba(255,255,255,0.82); }

/* ===================== WELLNESS ===================== */
.fdp-well {
  position: relative;
  padding: 44px 0 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #faf6f2 0%, #fff 55%);
}
.fdp-well__decor {
  position: absolute;
  top: 0;
  height: 100%;
  width: min(34%, 420px);
  object-fit: cover;
  pointer-events: none;
  opacity: 0.38;
  z-index: 0;
}
.fdp-well__decor--l {
  left: 0;
  object-position: left center;
}
.fdp-well__decor--r {
  right: 0;
  object-position: right center;
  transform: scaleX(-1);
}
.fdp-well .fdp-wrap { position: relative; z-index: 1; }
.fdp-well__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fdp-well-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 268px;
  border-radius: 22px;
  padding: 0;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  border: 0;
  background: #2a1244;
  box-shadow: 0 16px 36px rgba(42, 18, 68, 0.14);
}
.fdp-well-card:hover { color: #fff; transform: translateY(-3px); }
.fdp-well-card:hover img { transform: scale(1.045); }
.fdp-well-card h3 {
  font-family: var(--fdp-serif);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.12;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.fdp-well-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.4;
  max-width: 36ch;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}
.fdp-well-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  background: none;
  transition: transform 0.55s ease;
}
.fdp-well-card--a img { object-position: center 32%; }
.fdp-well-card--b img { object-position: center 42%; }
.fdp-well-card--c img { object-position: center 38%; }
.fdp-well-card--d img { object-position: center 30%; }
.fdp-well-card__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 88px 22px 20px;
  background: linear-gradient(180deg, rgba(16, 6, 28, 0) 0%, rgba(16, 6, 28, 0.22) 34%, rgba(16, 6, 28, 0.78) 100%);
}
.fdp-well-card .fdp-more {
  display: inline-flex;
  margin-top: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.fdp-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--fdp-purple);
}

/* ===================== NEWS / PRODUCTS ===================== */
.fdp-news {
  padding: 28px 0 40px;
}
.fdp-prods {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.fdp-prod {
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: var(--fdp-ink);
  position: relative;
  padding: 12px 12px 16px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}
.fdp-prod:hover { color: var(--fdp-ink); }
.fdp-prod img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  margin-bottom: 10px;
}
.fdp-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--fdp-purple) !important;
  color: #fff !important;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
}
.fdp-prod h3 {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px;
  min-height: 36px;
}
.fdp-prod .price {
  font-size: 14px;
  font-weight: 700;
  color: var(--fdp-purple);
}
.fdp-prod--more {
  background: var(--fdp-purple);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  box-shadow: none;
}
.fdp-prod--more:hover { color: #fff; }
.fdp-prod--more h3,
.fdp-prod--more p,
.fdp-prod--more .price { color: #fff; min-height: 0; }
.fdp-prod--more p {
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.82);
}

/* ===================== SAVOIR-FAIRE ===================== */
.fdp-sf {
  background: var(--fdp-purple-dark);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.fdp-sf__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}
.fdp-sf__copy {
  padding: 28px 24px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fdp-sf .fdp-kicker {
  color: #d5c2e8 !important;
  margin-bottom: 6px;
}
.fdp-sf h2,
body.fdp-redesign .fdp-sf h2,
body#index .fdp-sf h2 {
  font-family: var(--fdp-serif);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.18;
  margin: 0 0 8px;
  font-weight: 700;
  color: #ffffff !important;
}
.fdp-sf p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 440px;
  margin: 0 0 14px;
}
.fdp-sf__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.fdp-sf .fdp-btn--primary {
  background: #fff;
  color: var(--fdp-purple);
}
.fdp-sf .fdp-btn--primary:hover {
  background: #f3eaf8;
  color: var(--fdp-purple);
}
.fdp-sf__facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px 12px;
  margin: 0;
  padding: 0;
}
.fdp-sf__facts li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  list-style: none;
  font-size: 12px;
  color: #d7d2de;
  line-height: 1.35;
}
.fdp-sf__facts svg {
  flex: 0 0 16px;
  margin-top: 1px;
}
.fdp-sf__visual {
  position: relative;
  min-height: 280px;
}
.fdp-sf__visual > img.fdp-sf__main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fdp-sf__stack {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 118px;
}
.fdp-sf__stack img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

/* ===================== PRESENTERS + VIDEOS ===================== */
.fdp-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
}
.fdp-split h2 {
  font-family: var(--fdp-serif);
  font-size: 28px;
  margin: 0 0 10px;
}
.fdp-checks { list-style: none; margin: 14px 0 22px; padding: 0; }
.fdp-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #3f3a46;
  padding: 5px 0;
}
.fdp-checks svg { color: var(--fdp-purple); flex: 0 0 auto; }
.fdp-presenters-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1280 / 720;
  display: block;
  border-radius: 16px;
  object-fit: cover;
  object-position: center 55%;
  background: #f4eef6;
}
.fdp-vids {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fdp-vid {
  text-decoration: none;
  color: var(--fdp-ink);
}
.fdp-vid:hover { color: var(--fdp-ink); }
.fdp-vid__thumb {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #111;
}
.fdp-vid__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72);
}
.fdp-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fdp-purple);
}
.fdp-vid h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 8px 0 0;
  line-height: 1.3;
}
.fdp-vid p {
  font-size: 12px;
  color: var(--fdp-muted);
  margin: 2px 0 0;
}

/* ===================== CTA TRIO ===================== */
.fdp-cta3 {
  display: grid;
  grid-template-columns: 1.12fr 1fr 1.12fr;
  gap: 12px;
  padding: 8px 0 48px;
  align-items: stretch;
}
.fdp-cta {
  border-radius: 14px;
  min-height: 200px;
  overflow: hidden;
}
.fdp-cta h3,
body.fdp-redesign .fdp-cta h3 {
  font-family: var(--fdp-sans) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase !important;
  margin: 0 0 8px !important;
  line-height: 1.25 !important;
}
.fdp-cta p {
  font-size: 12.5px;
  line-height: 1.4;
  margin: 0 0 12px;
}
.fdp-cta--rdv,
.fdp-cta--tour {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 18px 8px 18px 20px;
  background: #f7f3fa;
  border: 1px solid #eee6f4;
  color: var(--fdp-ink);
}
.fdp-cta--rdv h3,
.fdp-cta--tour h3,
body.fdp-redesign .fdp-cta--rdv h3,
body.fdp-redesign .fdp-cta--tour h3 {
  color: var(--fdp-purple) !important;
  font-size: 11.5px !important;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.fdp-cta--rdv p,
.fdp-cta--tour p { color: #5c5666; }
.fdp-cta__copy {
  flex: 1 1 56%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.fdp-cta--rdv .fdp-btn,
.fdp-cta--tour .fdp-btn {
  height: 34px;
  padding: 0 14px;
  font-size: 10px;
  white-space: nowrap;
  width: auto;
  flex: none;
}
.fdp-cta--pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--fdp-purple);
  color: #fff;
  text-align: center;
  padding: 24px 20px;
}
.fdp-cta--pro h3,
body.fdp-redesign .fdp-cta--pro h3 {
  font-size: 20px !important;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  white-space: normal;
}
.fdp-cta--pro p { color: #f0e8f8 !important; margin-bottom: 14px; }
.fdp-cta__perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  width: 100%;
  margin: 2px 0 16px;
  text-align: left;
}
.fdp-cta__perks span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #f4eefc;
  font-weight: 500;
}
.fdp-cta__perks svg {
  flex: 0 0 18px;
  color: #fff;
  opacity: 0.95;
}
.fdp-cta .fdp-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.fdp-cta__media {
  flex: 0 1 48%;
  width: 48%;
  height: 176px;
  object-fit: contain;
  object-position: center;
}

/* ===================== ABOUT ===================== */
.fdp-about {
  padding: 24px 0 56px;
}
.fdp-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 0.9fr;
  gap: 28px;
  align-items: center;
}
.fdp-about__photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
}
.fdp-about h2 {
  font-family: var(--fdp-serif);
  font-size: 28px;
  margin: 0 0 12px;
  line-height: 1.25;
}
.fdp-about p {
  font-size: 14px;
  color: #5a5460;
  line-height: 1.6;
  margin: 0 0 14px;
}
.fdp-about ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}
.fdp-about li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  padding: 4px 0;
  color: #3b3640;
}
.fdp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 12px;
}
.fdp-stat {
  text-align: center;
}
.fdp-stat__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: var(--fdp-purple-soft);
  color: var(--fdp-purple);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fdp-stat strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.fdp-stat span {
  display: block;
  font-size: 12px;
  color: var(--fdp-muted);
}

/* ===================== EXCLUSIVES ===================== */
.fdp-excl {
  padding: 12px 0 48px;
}
.fdp-excl .fdp-headrow {
  align-items: flex-start;
}
.fdp-excl .fdp-link {
  flex: 0 0 auto;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
  color: var(--fdp-purple);
  background: none;
  aspect-ratio: auto;
  overflow: visible;
  border-radius: 0;
  padding: 6px 0 0;
}
.fdp-excl__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.fdp-excl__grid a {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--fdp-line);
  text-decoration: none;
  color: var(--fdp-ink);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fdp-excl__grid a:hover {
  color: var(--fdp-ink);
  box-shadow: var(--fdp-shadow);
}
.fdp-excl__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  background: #faf8fc;
  padding: 10px;
  transition: transform 0.35s;
}
.fdp-excl__grid a:hover img { transform: scale(1.04); }
.fdp-excl__grid h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 10px 12px 0;
  line-height: 1.3;
}
.fdp-excl__grid p {
  font-size: 12.5px;
  color: var(--fdp-muted);
  margin: 2px 12px 12px;
}

/* ===================== REVIEWS ===================== */
.fdp-rev {
  padding: 8px 0 48px;
}
.fdp-rev__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fdp-rev-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: var(--fdp-shadow);
}
.fdp-stars {
  color: var(--fdp-purple);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}
.fdp-rev-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #3f3a46;
  margin: 0 0 12px;
}
.fdp-rev-card cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  color: var(--fdp-purple);
}

/* ===================== NEWSLETTER + FOOTER ===================== */
.fdp-nl {
  background: #4d2780;
  color: #fff;
  padding: 18px 0;
}
.fdp-nl__inner {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.9fr;
  gap: 20px;
  align-items: center;
}
.fdp-nl h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #ffffff !important;
  white-space: nowrap;
}
.fdp-nl p {
  margin: 0;
  font-size: 13px;
  color: #eadff6 !important;
}
.fdp-nl__form {
  display: flex;
  gap: 8px;
  background: transparent;
}
.fdp-nl__form input[type="email"] {
  flex: 1;
  height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
}
.fdp-nl__form button {
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #2a1148;
  color: #fff;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.fdp-nl__form button:hover { background: #1a0a30; }
.fdp-nl__perks {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: #f0e7fa;
}
.fdp-nl__perks span { display: flex; align-items: center; gap: 8px; }

.fdp-foot,
.fdp-foot p,
.fdp-foot a,
.fdp-foot li,
.fdp-foot h3,
body.fdp-redesign .fdp-foot h3 {
  font-family: var(--fdp-sans) !important;
}
.fdp-foot {
  background: var(--fdp-footer);
  color: #aeb3bc;
  padding: 56px 0 28px;
}
.fdp-foot__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr 1.25fr;
  gap: 32px 24px;
  align-items: start;
}
.fdp-foot a {
  color: #b8bdc6 !important;
  text-decoration: none;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
.fdp-foot a:hover { color: #fff !important; }
.fdp-foot h3,
body.fdp-redesign .fdp-foot h3,
body .fdp-foot h3 {
  color: #ffffff !important;
  font-family: var(--fdp-sans) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  margin: 0 0 14px !important;
  line-height: 1.3 !important;
  white-space: nowrap;
}
.fdp-foot ul { list-style: none; margin: 0; padding: 0; }
.fdp-foot li { padding: 3px 0; }
.fdp-foot__brand p {
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  margin: 14px 0 16px;
  max-width: 220px;
  color: #9aa1ab !important;
  letter-spacing: 0.01em;
}
.fdp-foot__social { display: flex; gap: 10px; }
.fdp-foot__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #3a3e48;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}
.fdp-foot__contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px !important;
  color: #b8bdc6;
  line-height: 1.55;
}
.fdp-foot__copy {
  border-top: 1px solid #262a33;
  margin-top: 32px;
  padding-top: 16px;
  font-size: 12px !important;
  letter-spacing: 0.02em;
  color: #8b909a !important;
}

/* hide leftover CE / old homepage widgets if any leak through — uniquement quand la page d'accueil statique (index.tpl) est affichée :
   en production, l'accueil est un contenu Creative Elements (Elementor) qui doit rester visible */
body#index:has(.fdp-news) .elementor,
body#index #ishiheaderblock,
body#index #ishiheadercontactblock,
body#index #top_home,
body#index #bottom_home {
  display: none !important;
}
.fdp-badge:empty,
.fdp-badge[data-cart-count="0"] { display: none; }

@media (max-width: 1100px) {
  .fdp-ess__grid { grid-template-columns: repeat(2, 1fr); }
  .fdp-prods { grid-template-columns: repeat(3, 1fr); }
  .fdp-excl__grid,
  .fdp-vids { grid-template-columns: repeat(2, 1fr); }
  .fdp-sf__grid,
  .fdp-split,
  .fdp-nl__inner,
  .fdp-foot__grid,
  .fdp-about__grid { grid-template-columns: 1fr 1fr; }
  .fdp-cta3 { grid-template-columns: 1fr 1fr 1fr; }
  .fdp-usp { grid-template-columns: 1fr 1fr; }
  .fdp-rev__grid { grid-template-columns: 1fr 1fr; }
  .fdp-stats { grid-column: 1 / -1; }

  .fdp-head__row { grid-template-columns: minmax(200px, 280px) 1fr auto; gap: 12px; }
  .fdp-sf__copy { padding-left: 0; }
  .fdp-nl h2 { white-space: normal; }
  .fdp-foot h3 { white-space: normal; }
  .fdp-hero { padding: 0 0 8px; }
  .fdp-slider.is-ready .fdp-slide,
  .fdp-slider.is-ready .fdp-slide[hidden] {
    display: flex;
    flex-direction: column;
  }
  .fdp-slide__copy {
    max-width: var(--fdp-wrap);
    width: 100%;
    margin: 0 auto;
    padding: 28px 24px 18px;
    box-sizing: border-box;
  }
  .fdp-slide__copy h1,
  .fdp-slide__copy h2 { font-size: 30px; }
  .fdp-slide__visual {
    aspect-ratio: auto;
    height: 340px;
    margin: 0 24px 16px;
    border-radius: 16px;
    overflow: hidden;
  }
  .fdp-slide__visual img { object-position: center 16%; }
  .fdp-slider__nav {
    top: auto;
    bottom: 170px;
    transform: none;
  }
  .fdp-slider__dots {
    left: 50%;
    right: auto;
    width: auto;
    transform: translateX(-50%);
    bottom: 28px;
  }
}
@media (max-width: 768px) {
  .fdp-rail { display: none; }
  .fdp-topbar {
    display: block;
    font-size: 11px;
  }
  .fdp-topbar__group {
    gap: 28px;
    padding: 0 28px;
  }
  .fdp-headrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
  }
  .fdp-head__row {
    grid-template-columns: 1fr auto;
    gap: 8px;
    min-height: 64px;
    padding: 8px 0;
  }
  .fdp-logo {
    grid-column: auto;
    min-width: 0;
  }
  .fdp-logo__img {
    height: 44px;
    width: auto;
    max-width: min(220px, calc(100vw - 168px));
    object-fit: contain;
  }
  .fdp-actions {
    gap: 0;
  }
  .fdp-actions a,
  .fdp-actions .fdp-cart-link {
    min-width: 40px;
    padding: 6px 8px;
  }
  .fdp-search { display: none; }
  .fdp-actions .fdp-burger { display: block; margin-left: 0; width: 40px; height: 40px; }
  .fdp-burger--bar { display: none; }
  .fdp-nav {
    display: none;
    border-bottom: 0;
  }
  .fdp-nav.is-open {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--fdp-header-h, 64px);
    bottom: 0;
    overflow-y: auto;
    background: #fff;
    z-index: 640;
    box-shadow: var(--fdp-shadow);
  }
  .fdp-nav__inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 8px 16px 24px;
  }
  .fdp-catwrap { order: 1; position: static; }
  .fdp-catbtn { display: none; }
  .fdp-mega {
    display: block;
    position: static;
    box-shadow: none;
    border-top: 0;
    padding: 8px 0 0;
  }
  .fdp-mega__grid { grid-template-columns: 1fr; gap: 4px; padding: 0; }
  .fdp-mega h3 { margin: 16px 0 8px; }
  .fdp-mega a { padding: 8px 0; font-size: 15px; }
  .fdp-menu {
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 0 8px;
    margin-top: 0;
    border-top: 0;
    border-bottom: 1px solid var(--fdp-line);
  }
  .fdp-menu a { padding: 10px 0; font-size: 13px; }
  .fdp-menu__sub {
    display: block;
    position: static;
    min-width: 0;
    padding: 0 0 6px 12px;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  .fdp-menu__sub a {
    padding: 7px 0;
    font-size: 15px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
  }
  .fdp-menu > li > a.is-current::after { left: 0; right: 0; }
  .fdp-menu__sub--families,
  .fdp-menu__drop--families:hover .fdp-menu__sub--families { display: none; flex-direction: column; gap: 0; padding: 0 0 6px 12px; }
  .fdp-menu__drop--families.is-open .fdp-menu__sub--families { display: flex; }
  .fdp-menu__family { min-width: 0; padding: 0; }
  .fdp-menu__family + .fdp-menu__family { border-left: 0; }
  .fdp-menu__family-title { padding: 10px 0 2px; }
  .fdp-wrap { padding: 0 16px; }
  .fdp-slide__copy {
    padding: 20px 16px 14px;
  }
  .fdp-slide__copy h1,
  .fdp-slide__copy h2 { font-size: 24px; margin-bottom: 10px; }
  .fdp-slide__copy p { font-size: 13px; margin-bottom: 14px; line-height: 1.5; }
  .fdp-slide__visual {
    height: 220px;
    margin: 0 16px 12px;
    border-radius: 14px;
  }
  .fdp-slide__visual img { object-position: center 28%; }
  .fdp-hero__ctas {
    flex-wrap: wrap;
    gap: 8px;
  }
  .fdp-hero__ctas .fdp-btn {
    flex: 1 1 auto;
    min-width: 0;
    height: auto;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.06em;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
    word-break: normal;
  }
  .fdp-slider__nav {
    width: 36px;
    height: 36px;
    top: auto;
    bottom: 110px;
    transform: none;
  }
  .fdp-slider__nav--prev { left: 24px; }
  .fdp-slider__nav--next { right: 24px; }
  .fdp-slider__dots { bottom: 24px; }
  .fdp-ess__grid,
  .fdp-rev__grid,
  .fdp-vids,
  .fdp-prods,
  .fdp-excl__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .fdp-well {
    padding: 28px 0 12px;
  }
  .fdp-well__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .fdp-well .fdp-sub { margin-bottom: 14px !important; }
  .fdp-sf__grid,
  .fdp-split,
  .fdp-cta3,
  .fdp-about__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fdp-prod {
    padding: 8px 8px 12px;
  }
  .fdp-prod img {
    height: 118px;
    margin-bottom: 8px;
  }
  .fdp-prod h3 {
    font-size: 12.5px;
    min-height: 0;
    margin-bottom: 6px;
  }
  .fdp-prod .price {
    font-size: 13px;
  }
  .fdp-flag {
    top: 8px;
    left: 8px;
    font-size: 8px;
    padding: 3px 6px;
  }
  .fdp-split {
    gap: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .fdp-split h2 { font-size: 24px; }
  .fdp-sf__copy { padding: 20px 0 16px; }
  .fdp-sf h2,
  body.fdp-redesign .fdp-sf h2,
  body#index .fdp-sf h2 { font-size: 22px; }
  .fdp-sf p { margin-bottom: 12px; font-size: 13px; }
  .fdp-sf__ctas {
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 12px;
  }
  .fdp-sf__ctas .fdp-btn {
    flex: 1 1 0;
    min-width: 0;
    height: auto;
    min-height: 40px;
    padding: 8px 8px;
    font-size: 9px;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
  }
  .fdp-sf__facts { grid-template-columns: 1fr; gap: 8px; }
  .fdp-sf__copy { padding: 24px 4px 16px; }
  .fdp-sf__visual {
    min-height: 0;
    margin: 0;
    border-radius: 0;
    overflow: visible;
  }
  .fdp-sf__stack { width: 88px; right: 12px; gap: 6px; }
  .fdp-sf__stack img { height: 68px; }
  .fdp-title { font-size: 24px; }
  .fdp-well-card {
    min-height: 210px;
    border-radius: 18px;
  }
  .fdp-well-card__copy { padding: 72px 16px 16px; }
  .fdp-well-card h3 { font-size: 24px; }
  .fdp-well-card p { font-size: 13px; }
  .fdp-well-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
  }
  .fdp-ess-card { padding: 10px 10px 12px; }
  .fdp-ess-card p { display: none; }
  .fdp-ess-card h3 { font-size: 14px; min-height: 0; margin-bottom: 4px; }
  .fdp-ess-card__imgs { gap: 4px; margin-bottom: 8px; }
  .fdp-ess-card__imgs img { height: 86px; }
  .fdp-cta--pro { grid-column: auto; order: 0; }
  .fdp-cta--rdv,
  .fdp-cta--tour {
    flex-direction: row;
    padding: 16px 12px;
    gap: 8px;
    min-height: 148px;
  }
  .fdp-cta--rdv h3,
  .fdp-cta--tour h3 { white-space: normal; }
  .fdp-cta__copy { flex: 1 1 55%; width: auto; }
  .fdp-cta__media {
    flex: 0 1 40%;
    width: 40%;
    height: 112px;
  }
  .fdp-about__photo { height: 200px; width: 100%; }
  .fdp-stats { grid-column: auto; }
  .fdp-presenters-img {
    max-height: none;
    width: 100%;
    object-fit: contain;
    border-radius: 14px;
  }
  .fdp-actions a span { display: none; }

  /* Newsletter + footer: full width, no cropped title / form */
  .fdp-nl { padding: 22px 0; }
  .fdp-nl__inner {
    grid-template-columns: 1fr !important;
    gap: 14px;
    align-items: start;
  }
  .fdp-nl h2 {
    white-space: normal !important;
    font-size: 18px;
    line-height: 1.3;
  }
  .fdp-nl__form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
  }
  .fdp-nl__form input[type="email"] {
    flex: 1 1 160px;
    min-width: 0;
    width: auto;
  }
  .fdp-nl__form button {
    flex: 0 0 auto;
    padding: 0 16px;
  }
  .fdp-nl__perks { width: 100%; }
  .fdp-foot__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px 20px;
  }
  .fdp-foot__brand {
    grid-column: 1 / -1;
  }
  .fdp-foot__brand p { max-width: none; }

  body.fdp-redesign,
  body.fdp-redesign #wrapper,
  body.fdp-redesign #content-wrapper,
  body.fdp-redesign .container {
    max-width: 100%;
    overflow-x: clip;
  }

  /* Product gallery: Ishi mask is 420px and overflows phones */
  #main .images-container .js-qv-mask,
  #main .images-container .js-qv-mask.scroll {
    width: 100% !important;
    max-width: 100%;
  }
  .scroll-box-arrows i {
    height: 36px !important;
    width: 36px;
    line-height: 36px !important;
    font-size: 22px !important;
    top: 40%;
    bottom: auto !important;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 2px 8px rgba(20, 10, 40, 0.12);
  }

  /* Listing chrome + overlay icons */
  #product-list-top,
  #js-product-list-top {
    padding: 12px 14px;
  }
  #js-product-list-top .products-sort-order .select-title,
  #js-product-list-top select {
    max-width: 100%;
  }
  .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons > div,
  .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons .quickview-btn,
  .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons .wishlist-btn {
    width: 28px !important;
    height: 28px !important;
  }
  .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a,
  .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons i.material-icons {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
  }
}

@media (min-width: 1101px) {
  a.fdp-ess-card.fdp-ess-card--more,
  a.fdp-prod.fdp-prod--more,
  .fdp-prods .fdp-prod:nth-child(n + 6) {
    display: none !important;
  }
  .fdp-ess-card__imgs { display: block; }
  .fdp-ess-card__imgs img:last-child { display: none; }
  .fdp-ess-card__imgs img { background: transparent; }
  .fdp-well__decor,
  .fdp-well .fdp-kicker { display: none; }
  .fdp-well {
    background: #fff;
    padding: 36px 0 20px;
  }
  .fdp-well-card {
    border: 0;
    min-height: 300px;
  }
  .fdp-well-card img {
    object-fit: cover;
    height: 100%;
    border-radius: 0;
  }
}

/* Catalog listing: keep 2 products per row on phones */
@media (max-width: 767px) {
  #js-product-list .products {
    display: flex;
    flex-wrap: wrap;
    margin-left: -4px;
    margin-right: -4px;
  }
  #js-product-list .products article.product-miniature,
  .featured-products .products:not(.slick-initialized) article.product-miniature,
  .product-accessories article.product-miniature {
    width: 50% !important;
    max-width: 50%;
    flex: 0 0 50%;
    float: left;
    clear: none !important;
    padding: 4px;
  }
  #js-product-list .products article.product-miniature .product-container,
  .featured-products article.product-miniature .product-container {
    max-width: none;
    margin: 0;
  }
  .ph-recommend-products .slick-slide,
  [id^="product-carousel-"] .slick-slide {
    padding: 0 4px;
  }
  .ph-recommend-products .product-miniature .product-container,
  [id^="product-carousel-"] .product-miniature .product-container {
    max-width: none !important;
    margin: 0;
  }
}

/* "Vous aimerez aussi" sits directly above "Dans la même catégorie" */
body.fdp-redesign .product-accessories-block {
  margin-bottom: 0;
}
body.fdp-redesign .product-accessories-block .home-title {
  margin-bottom: 8px;
}
body.fdp-redesign .ph-recommend-products.featured-products {
  margin-top: 4px;
}
body.fdp-redesign .ph-recommend-products.featured-products > h2.home-title {
  margin-bottom: 10px;
  padding-bottom: 8px;
}
body.fdp-redesign #ishi-product-accessories {
  position: relative;
}
body.fdp-redesign #ishi-product-accessories .owl-nav {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
}
body.fdp-redesign #ishi-product-accessories .owl-nav .owl-prev,
body.fdp-redesign #ishi-product-accessories .owl-nav .owl-next {
  position: absolute;
  top: 38%;
  margin: 0;
  pointer-events: auto;
}
body.fdp-redesign #ishi-product-accessories .owl-nav .owl-prev { left: 0; }
body.fdp-redesign #ishi-product-accessories .owl-nav .owl-next { right: 0; }
body.fdp-redesign .product-accessories-block .an_productattributes,
body.fdp-redesign .ph-recommend-products .an_productattributes {
  min-height: 0;
}

/* Legacy lilac #E3D4E7 / #E4D4E7 — listing chrome uses new brand, not Ishi lilac */
body.fdp-redesign .breadcrumb-container {
  display: block;
  background: transparent !important;
  padding: 14px 0 4px;
  margin: 0;
}
body#index .breadcrumb-container {
  display: none;
}
body.fdp-redesign .breadcrumb-container .breadcrumb {
  background: transparent;
  max-width: var(--fdp-wrap);
  margin: 0 auto;
  padding: 0 16px;
  text-align: left;
  text-transform: none;
}
body.fdp-redesign .breadcrumb-container .breadcrumb[data-depth="1"] {
  display: block;
}
body.fdp-redesign .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.fdp-redesign .breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-family: var(--fdp-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fdp-muted);
}
body.fdp-redesign .breadcrumb li::after {
  content: ">";
  color: #c9c0d2;
  margin: 0 8px;
  font-weight: 400;
}
body.fdp-redesign .breadcrumb li:last-child::after {
  content: none;
  margin: 0;
}
body.fdp-redesign .breadcrumb li a {
  color: var(--fdp-muted);
  text-decoration: none;
}
body.fdp-redesign .breadcrumb li a:hover {
  color: var(--fdp-purple);
}
body.fdp-redesign .breadcrumb li:last-child,
body.fdp-redesign .breadcrumb li:last-child a,
body.fdp-redesign .breadcrumb li:last-child span {
  color: var(--fdp-purple);
  font-weight: 600;
}
.block-category,
.block-category.card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
.block-category h1,
.block-category .h1 {
  color: var(--fdp-ink, #1a1a1a) !important;
}

#product-list-top,
#js-product-list-top,
#js-product-list-top.products-selection,
.pagination,
#left-column .block-title {
  background: var(--fdp-purple, #3d1b62) !important;
  background-color: var(--fdp-purple, #3d1b62) !important;
  color: #fff;
}
#product-list-top,
#js-product-list-top {
  border: 0;
  border-radius: 14px;
  padding: 12px 18px;
  margin-bottom: 18px;
}
.pagination {
  border: 0;
  border-radius: 14px;
  padding: 10px 16px;
}
#left-column .block-title {
  border-radius: 12px 12px 0 0;
  padding: 14px 16px;
}
#js-product-list-top .total-products p,
#js-product-list-top .showing,
#js-product-list-top .sort-by,
#js-product-list-top label,
.pagination .pagination-desc {
  color: #fff !important;
  margin: 0;
  font-size: 14px;
}
#js-product-list-top .products-sort-order .select-title,
#js-product-list-top select {
  background: #fff !important;
  color: var(--fdp-ink, #1a1a1a) !important;
  border-radius: 8px;
  border: 0;
}
.pagination a {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.pagination .current a,
.pagination a:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--fdp-purple, #3d1b62) !important;
}
.alert-success,
.alert-info {
  background-color: #3D1B62 !important;
  color: #fff;
}
.tabs .nav-tabs .nav-link:hover,
.product-actions .add-to-cart:hover {
  background-color: #3D1B62 !important;
  border-color: #3D1B62 !important;
  color: #fff !important;
}
.jms-megamenu .dropdown-menu {
  border-top-color: #3D1B62 !important;
}

/* Active filters: removable on phone like desktop */
#fdp-active-filters #js-active-search-filters.active_filters {
  background: #f6f1f9;
  padding: 10px 12px;
  margin: 0 0 12px;
  border-radius: 12px;
}
#fdp-active-filters .active-filter-title {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fdp-purple);
}
#fdp-active-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
#fdp-active-filters .filter-block {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--fdp-line);
  border-radius: 999px;
  padding: 4px 6px 4px 12px;
  font-size: 13px;
  color: var(--fdp-ink);
}
#fdp-active-filters .filter-block a.js-search-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  color: var(--fdp-purple);
  margin: 0;
  cursor: pointer;
}
#fdp-active-filters .filter-block a.js-search-link .material-icons {
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}
@media (max-width: 767px) {
  #fdp-active-filters .filter-block a.js-search-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}

.fdp-sf__band { display: none; }

.fdp-nos__kicker {
  display: none;
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fdp-purple);
}
.fdp-nos__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  background: #f3eaf8;
  color: var(--fdp-purple);
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 36px;
}
.fdp-nos__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fdp-nos__thumb--sm {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 8px;
  font-size: 11px;
}
.fdp-nos__item.has-children .fdp-nos__name { font-weight: 700; }
@media (min-width: 769px) {
  .fdp-nos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 28px;
    max-height: 70vh;
    overflow: auto;
    padding-bottom: 8px;
  }
  .fdp-mega .fdp-nos__link,
  .fdp-mega .fdp-nos__sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--fdp-ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
  }
  .fdp-mega .fdp-nos__link { padding: 0; }
  .fdp-nos__sub { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; padding-left: 8px; }
  .fdp-nos__toggle { display: none; }
  .fdp-nos__link:hover,
  .fdp-nos__sub a:hover { color: var(--fdp-purple); }
}

/* Mobile: photo first, text second, purple closing under the copy */
@media (max-width: 768px) {
  body#index section.fdp-sf {
    padding: 16px 0 20px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
    overflow: visible;
  }
  body#index .fdp-sf__visual { order: 1; }
  body#index .fdp-sf__copy { order: 2; }
  body#index .fdp-sf__band { order: 3; display: none; }
  body#index .fdp-sf__visual {
    min-height: 0 !important;
    height: auto !important;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
  }
  body#index .fdp-sf__visual > img.fdp-sf__main {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    inset: auto !important;
    display: block;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    border-radius: 16px;
  }
  body#index .fdp-sf__copy {
    padding: 18px 4px 0;
  }
  body#index .fdp-sf__stack {
    top: 50%;
  }
}

@media (max-width: 768px) {
  .fdp-nos__kicker { display: block; }
  .fdp-nos__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #f0eef3;
  }
  .fdp-mega .fdp-nos__link {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 0;
    color: var(--fdp-ink);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
  }
  .fdp-nos__item.has-children .fdp-nos__name { font-weight: 700; }
  .fdp-nos__thumb { width: 44px; height: 44px; flex-basis: 44px; border-radius: 12px; }
  .fdp-nos__toggle {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: var(--fdp-purple);
    cursor: pointer;
  }
  .fdp-nos__sub { display: none; width: 100%; padding: 0 0 10px 12px; }
  .fdp-nos__item.is-open .fdp-nos__sub { display: flex; flex-direction: column; gap: 4px; }
  .fdp-mega .fdp-nos__sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    color: #3a3540;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
  }
  .fdp-nos__item.is-open .fdp-caret { transform: rotate(180deg); }
  .fdp-nav.is-open .fdp-nav__inner { padding-left: 0; padding-right: 0; }
  .fdp-catwrap { order: 0; width: 100%; }
  .fdp-fly__kicker {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 0 4px;
    padding: 16px 16px;
    background: var(--fdp-purple);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
  }
  .fdp-menu {
    order: 1;
    align-self: stretch;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 28px 0 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }
  .fdp-menu > li { width: 100%; }
  .fdp-menu > li > a {
    display: flex;
    align-items: center;
    min-height: 48px;
    margin: 0;
    padding: 0 16px;
    border: 0;
    border-bottom: 1px solid #efeaf3;
    border-radius: 0;
    background: #f7f4f8;
    color: var(--fdp-purple);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
  }
  .fdp-menu > li > a::after { display: none; }
  .fdp-menu > li.fdp-menu__pick--promo > a,
  .fdp-menu > li.fdp-menu__pick--promo > a::before {
    background: var(--fdp-purple);
    color: #fff !important;
    font-weight: 800 !important;
    border-bottom: 0;
  }
  .fdp-menu > li.fdp-menu__pick--promo > a::before {
    content: "★";
    margin-right: 8px;
    font-size: 12px;
    background: transparent;
  }
  .fdp-menu > li.fdp-menu__pick--quiet > a {
    background: transparent;
    color: #6d6574;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    min-height: 44px;
  }
  .fdp-menu > li > a.is-current {
    color: var(--fdp-purple);
    background: #f3eaf8;
  }
  .fdp-menu > li.fdp-menu__pick--promo > a.is-current { color: #fff; background: var(--fdp-purple-deep); }
}

.fdp-fly { display: flex; align-items: stretch; min-height: 420px; max-height: 70vh; background: #fff; }
.fdp-fly__col { width: 340px; max-width: 100%; overflow: auto; background: #fff; border-right: 1px solid #eee; }
.fdp-fly__col:not(.fdp-fly__col--1) { display: none; }
.fdp-fly__col.is-on { display: block; }
.fdp-fly__pane[hidden] { display: none !important; }
.fdp-fly__kicker {
  margin: 0;
  padding: 14px 16px 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}
.fdp-mega .fdp-fly__row {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  min-height: 56px;
  padding: 8px 36px 8px 14px;
  border-bottom: 1px solid #eee;
  color: #1c1c1c;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.fdp-mega .fdp-fly__row.has-sub { font-weight: 700; }
.fdp-mega .fdp-fly__row.is-active,
.fdp-mega .fdp-fly__row.has-sub:hover { background: #f6f1f9; color: var(--fdp-purple); }
.fdp-fly__thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3eaf8;
  color: var(--fdp-purple);
  font-weight: 700;
}
.fdp-fly__thumb img { width: 100%; height: 100%; object-fit: cover; }
.fdp-fly__arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  line-height: 1;
  color: #3a3540;
}
.fdp-fly__pane:not([hidden]) {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.fdp-mega .fdp-fly__all,
.fdp-mega .fdp-fly__all strong,
.fdp-mega .fdp-fly__all span,
.fdp-mega .fdp-fly__all .fdp-fly__all-go {
  color: #fff !important;
}
.fdp-mega .fdp-fly__all {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 12px 16px;
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--fdp-purple);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(61, 27, 98, 0.28);
}
.fdp-fly__all-copy {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 5px;
  min-width: 0;
}
.fdp-mega .fdp-fly__all-copy span,
.fdp-mega .fdp-fly__all strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  opacity: 1;
  line-height: 1.25;
  color: #fff;
}
.fdp-mega .fdp-fly__all .fdp-fly__all-go {
  margin-left: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 28px;
}
.fdp-mega .fdp-fly__all:hover {
  background: var(--fdp-purple-deep);
}
.fdp-mega .fdp-fly__all:hover,
.fdp-mega .fdp-fly__all:hover strong,
.fdp-mega .fdp-fly__all:hover span {
  color: #fff;
}
.fdp-fly__back {
  display: none;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-bottom: 1px solid #eee;
  background: #f6f1f9;
  color: var(--fdp-purple);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 769px) {
  .fdp-fly__kicker { display: none; }
}
@media (max-width: 768px) {
  .fdp-fly { display: block; min-height: 0; max-height: none; }
  .fdp-fly__col { width: 100%; border-right: 0; }
  .fdp-fly__col:not(.fdp-fly__col--1) { display: none; }
  .fdp-nav.is-open .fdp-fly__col.is-on:not(.fdp-fly__col--1) {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--fdp-header-h, 64px);
    bottom: 0;
    z-index: calc(660 + var(--fdp-d, 2));
    background: #fff;
    overflow: auto;
  }
  .fdp-fly__back { display: block; }
}

/* Phones: keep the category list in normal flow so it cannot collapse */
@media (max-width: 1024px) {
  #fdp-nav.is-open {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
  #fdp-nav.is-open .fdp-mega,
  #fdp-nav.is-open .fdp-fly,
  #fdp-nav.is-open .fdp-fly__col--1 {
    display: block !important;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    box-shadow: none !important;
  }
}

/* Visiteurs / groupes sans accès aux prix : aucun supplément de prix des options produit */
.fdp-no-prices .price-impact-badge,
.fdp-no-prices .price-impact-badge-selected { display: none !important; }
.fdp-blockcart-holder[hidden] { display: none !important; }
.fdp-actions .fdp-logout-link span { white-space: nowrap; }
@media (max-width: 480px) {
  .fdp-actions .fdp-logout-link { display: none; }
}

/* ===================== Prix réservés / boutons « Ajouter au panier » ===================== */
.fdp-price-locked {
  display: block;
  margin: 6px 0 10px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--fdp-purple-soft);
  font-size: 12.5px;
  line-height: 1.45;
  color: #5b4f66;
  text-align: left;
  white-space: normal;
}
.fdp-price-locked__title {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fdp-purple);
}
.fdp-price-locked a {
  color: var(--fdp-purple);
  font-weight: 700;
  text-decoration: underline;
}
.fdp-price-locked a:hover { color: var(--fdp-purple-deep); }

/* Un seul bouton par produit dans les listes : celui du module (quantité + déclinaison) remplace celui posé sur la photo */
.product-miniature:has(.addToCartFormWrapper) .cart-btn { display: none !important; }

/* Cartes « nouveautés » de l'accueil */
.fdp-prod { display: flex; flex-direction: column; }
.fdp-prod__link { display: block; color: inherit; text-decoration: none; flex: 1 1 auto; }
.fdp-prod__link:hover { color: var(--fdp-ink); }
.fdp-prod > .price { display: block; margin: 0 0 10px; }
.fdp-prod__cart { margin: 0; }
.fdp-prod .fdp-prod__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--fdp-purple-dark);
  border-radius: 999px;
  background: var(--fdp-purple-dark);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.fdp-prod .fdp-prod__btn .material-icons { font-size: 18px; }

/* Survol des boutons d'ajout au panier : violet (le thème les passait en noir) */
.add-to-cart:hover:not(:disabled):not(.disabled),
.add-to-cart:focus:not(:disabled):not(.disabled),
.ajax_add_to_cart_button:hover:not(:disabled),
.cart-btn a:hover,
.cart-btn button:hover:not(:disabled),
#products .product-container .thumbnail-container .thumbnail-inner .cart-btn a:hover,
.featured-products .product-container .thumbnail-container .thumbnail-inner .cart-btn a:hover,
#ishispecialdeals .block_content .product-miniature .product-container .product-description .cart-btn a:hover,
.fdp-prod .fdp-prod__btn:hover,
.fdp-prod .fdp-prod__btn:focus {
  background: #6a35a3 !important;
  border-color: #6a35a3 !important;
  color: #fff !important;
}

/* Listes : moins d'espace réservé sous le titre (2 lignes au lieu de 3) et message « prix réservés » resserré */
.product-miniature h2.h3.product-title,
.product-miniature h3.h3.product-title {
  min-height: 44px !important;
  margin-bottom: 4px !important;
}
.product-miniature .fdp-price-locked { margin: 2px 0 10px; }

/* Meilleures ventes / Nouveautés / Promotions : pleine largeur comme les catégories (la colonne de gauche est vide) */
body#best-sales #content-wrapper,
body#new-products #content-wrapper,
body#prices-drop #content-wrapper { width: 100% !important; }
body#best-sales #left-column,
body#new-products #left-column,
body#prices-drop #left-column { display: none !important; }

/* ===================== Bloc de réassurance (panier, commande, fiche produit) ===================== */
.fdp-reassure { margin: 20px 0 0; }
.fdp-reassure__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.fdp-reassure__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--fdp-line);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(61, 27, 98, 0.05);
}
.fdp-reassure__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--fdp-purple-soft);
  color: var(--fdp-purple);
}
.fdp-reassure__icon img { display: block; width: 22px; height: 22px; object-fit: contain; }
.fdp-reassure__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; text-align: left; }
.fdp-reassure__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--fdp-ink);
}
.fdp-reassure__text {
  font-size: 13px;
  line-height: 1.45;
  color: #6d6574;
}

/* ===================== Favoris : cœur toujours visible ===================== */
/* Listes de produits : les boutons « aperçu » et « favoris » ne sont plus cachés jusqu'au survol */
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  right: 10px !important;
  top: 10px !important;
  z-index: 5;
}
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons > div {
  position: static !important;
  top: auto !important;
  right: auto !important;
  width: 36px !important;
  height: 36px !important;
  opacity: 1 !important;
  transform: none !important;
}
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  line-height: 1 !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(61, 27, 98, 0.22);
  text-decoration: none;
  font-size: 0 !important;
  transition: background .2s, transform .2s;
}
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a:hover { transform: scale(1.08); }
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a::after { content: none !important; display: none !important; }
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a > i,
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a > span { display: none !important; }
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a::before {
  font-family: "Material Icons";
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  color: var(--fdp-purple-dark);
}
html body .product-miniature .thumbnail-buttons .quick-view::before { content: "visibility"; }
html body .product-miniature .thumbnail-buttons .wishlist_button::before { content: "favorite_border"; }
html body .product-miniature .thumbnail-buttons .wishlist_button.is-wished { background: var(--fdp-purple-dark) !important; }
html body .product-miniature .thumbnail-buttons .wishlist_button.is-wished::before { content: "favorite"; color: #fff; }

/* Cartes « nouveautés » de l'accueil */
.fdp-prod { position: relative; }
.fdp-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--fdp-purple-dark);
  box-shadow: 0 2px 10px rgba(61, 27, 98, 0.22);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.fdp-fav:hover { transform: scale(1.08); }
.fdp-fav .material-icons { font-size: 20px; }
.fdp-fav.is-wished { background: var(--fdp-purple-dark); color: #fff; }

/* Fiche produit : « Ajouter aux favoris » sous forme de bouton lisible */
.addToWishlist {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 0;
  padding: 10px 18px;
  border: 1.5px solid var(--fdp-purple-dark);
  border-radius: 999px;
  color: var(--fdp-purple-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.addToWishlist:hover { background: var(--fdp-purple-soft); color: var(--fdp-purple-dark); text-decoration: none; }
.addToWishlist.checked, .addToWishlist.is-wished { background: var(--fdp-purple-dark); color: #fff; }
.addToWishlist .fa { font-family: "Material Icons"; font-style: normal; font-size: 18px; line-height: 1; }
.addToWishlist .fa::before { content: none; }
.addToWishlist .fa-heart-o::after { content: "favorite_border"; }
.addToWishlist.checked .fa-heart-o::after, .addToWishlist.is-wished .fa-heart-o::after { content: "favorite"; }

/* Tous les « Ajouter au panier » : violet foncé au repos (fiche produit incluse) */
.add-to-cart:not(:disabled):not(.disabled),
.ajax_add_to_cart_button:not(:disabled):not(.disabled),
.cart-btn button:not(:disabled),
.cart-btn a:not([disabled]) {
  background-color: var(--fdp-purple-dark) !important;
  border-color: var(--fdp-purple-dark) !important;
  color: #fff !important;
  opacity: 1;
}

/* Survol : violet clair (doit rester après le bloc « repos » ci-dessus) */
html body .add-to-cart:hover:not(:disabled):not(.disabled),
html body .add-to-cart:focus:not(:disabled):not(.disabled),
html body .ajax_add_to_cart_button:hover:not(:disabled),
html body .cart-btn a:hover,
html body .cart-btn button:hover:not(:disabled),
html body .fdp-prod .fdp-prod__btn:hover {
  background-color: #6a35a3 !important;
  border-color: #6a35a3 !important;
  color: #fff !important;
}

/* --- Favoris : corrections de spécificité (état « en favori » des listes), glyphes de l'accueil, lien de la fiche produit --- */
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a.wishlist_button.is-wished {
  background: var(--fdp-purple-dark) !important;
}
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a.wishlist_button.is-wished::before {
  content: "favorite";
  color: #fff;
}
html body .product-miniature .thumbnail-container .thumbnail-inner .thumbnail-buttons a.wishlist_button:not(.is-wished)::before {
  content: "favorite_border";
}
.fdp-fav .fdp-fav__on { display: none; }
.fdp-fav.is-wished .fdp-fav__off { display: none; }
.fdp-fav.is-wished .fdp-fav__on { display: inline-block; }

html body p.wishlist_login { margin: 14px 0 0; }
html body p.wishlist_login a.wishlist_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px 10px 16px;
  border: 1.5px solid var(--fdp-purple-dark);
  border-radius: 999px;
  background: #fff;
  color: var(--fdp-purple-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background .2s, color .2s;
}
html body p.wishlist_login a.wishlist_button::before {
  position: static;
  content: "favorite_border";
  font-family: "Material Icons";
  font-size: 20px;
  line-height: 1;
  color: inherit;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
}
html body p.wishlist_login a.wishlist_button span { padding: 0; font-weight: 700; color: inherit; text-transform: none; line-height: 1.2; }
html body p.wishlist_login a.wishlist_button:hover { background: var(--fdp-purple-soft); }
html body p.wishlist_login a.wishlist_button.is-wished { background: var(--fdp-purple-dark); color: #fff; }
html body p.wishlist_login a.wishlist_button.is-wished::before { content: "favorite"; }

/* ===================== Panier : formulaire de code promo ===================== */
html body #promo-code .promo-code { position: relative; padding: 6px 0 4px; }
html body #promo-code .promo-code form {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: calc(100% - 40px);
  margin: 0;
}
html body #promo-code .promo-code form .promo-input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 46px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid var(--fdp-line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  box-shadow: none;
}
html body #promo-code .promo-code form .promo-input:focus { outline: none; border-color: var(--fdp-purple-dark); }
html body #promo-code .promo-code form .btn {
  flex: 0 0 auto;
  height: 46px;
  margin: 0;
  padding: 0 22px;
  border-radius: 999px;
  white-space: nowrap;
}
html body #promo-code .promo-code .cancel-promo {
  position: absolute;
  top: 12px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
  color: #6d6574;
}
html body #promo-code .promo-code .cancel-promo:hover { color: var(--fdp-purple-dark); }
html body #promo-code .promo-code .alert { margin: 10px 0 0; }

/* Barre de recherche : « Toutes les catégories » et la loupe centrés sur la même ligne que le champ */
html body .fdp-search { align-items: stretch; }
html body .fdp-search .fdp-search__cat {
  display: flex;
  align-items: center;
  align-self: stretch;
  margin: 0;
  padding: 0;
  height: auto;
}
html body .fdp-search .fdp-search__cat select {
  height: 100%;
  margin: 0;
  padding: 0 38px 0 16px;
  line-height: 1.2;
  text-align: left;
}
html body .fdp-search .fdp-search__cat::after { top: 50%; transform: translateY(-65%) rotate(45deg); }
html body .fdp-search input[type="text"],
html body .fdp-search button { align-self: stretch; margin: 0; }
html body .fdp-search button { display: flex; align-items: center; justify-content: center; padding: 0; }

/* ===================== Largeur des pages internes ===================== */
/* Résultats de recherche : pleine largeur, la colonne de gauche est vide (comme catégories et meilleures ventes) */
body#search #content-wrapper { width: 100% !important; }
body#search #left-column { display: none !important; }

/* Fiches produit, recherche et listes : même largeur que le header et le pied de page (1180 px au lieu de 1140 px) */
@media (min-width: 1220px) {
  body#product #wrapper > .container,
  body#search #wrapper > .container,
  body#category #wrapper > .container,
  body#best-sales #wrapper > .container,
  body#new-products #wrapper > .container,
  body#prices-drop #wrapper > .container,
  body#manufacturer #wrapper > .container,
  body#supplier #wrapper > .container {
    width: 1180px !important;
    max-width: 1180px !important;
  }
}

/* Visiteur : le champ quantité caché (lu par le lien « favoris ») ne doit pas afficher ses flèches TouchSpin */
html body .product-add-to-cart > .bootstrap-touchspin { display: none !important; }

/* Fenêtre « Produit bien ajouté à votre Panier » : les deux boutons en violet foncé (« Retour à la boutique » paraissait inactif) */
html body #blockcart-modal .cart-content-btn .btn,
html body #blockcart-modal .btn-primary,
html body #blockcart-modal .btn-secondary {
  background-color: var(--fdp-purple-dark) !important;
  border-color: var(--fdp-purple-dark) !important;
  color: #fff !important;
  opacity: 1;
}
html body #blockcart-modal .cart-content-btn .btn:hover,
html body #blockcart-modal .btn-primary:hover,
html body #blockcart-modal .btn-secondary:hover,
html body #blockcart-modal .cart-content-btn .btn:focus {
  background-color: #6a35a3 !important;
  border-color: #6a35a3 !important;
  color: #fff !important;
}
