/* --------------------------------------------------------------------------
   Omni Home GelatiMaker™ — Standalone Premium Stylesheet
   Reconstructs the exact visual styles from the Shopify theme ZIP sections
   -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=Fredoka:wght@400;500;600;700&display=swap');

:root {
  /* ── Palette Gelato : colorée & fun ── */
  --primary: #2B1A35;          /* prune profond (texte/titres) */
  --accent: #FF4E8B;           /* fraise (actions principales) */
  --accent-dark: #D81E63;      /* framboise (hover/dégradés) */
  --accent-light: #FFF0F6;     /* rose poudré (fonds doux) */
  --bg-light: #FFF8F1;         /* crème vanille */
  --text-main: #2B2230;        /* presque-noir chaud */
  --text-muted: #8C7B89;       /* mauve grisé */
  --border: #F1E1EA;           /* rose très clair */
  --success: #25A969;          /* pistache/menthe */

  /* Couleurs d'accent ludiques (couche fun) */
  --mint: #46D6B5;             /* menthe */
  --lemon: #FFD23F;            /* citron */
  --blueberry: #6C5CE7;        /* myrtille/raisin */
  --orange: #FF8A3D;           /* mangue */

  /* Rayons & ombres */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-soft: 0 10px 30px rgba(216, 30, 99, 0.10);
  --shadow-pop: 0 16px 40px rgba(255, 78, 139, 0.22);

  /* Font Families */
  --font-body: 'Inter', sans-serif;
  --font-title: 'Fredoka', 'Poppins', sans-serif;
  --font-display: 'Fredoka', 'Poppins', sans-serif;

  /* Layout variables */
  --header-height: 80px;
}

/* --- Base & Reset --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: #ffffff;
  color: var(--text-main);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* Utilities */
.container {
  width: min(1200px, 100% - 40px);
  margin-inline: auto;
}
.text-center { text-align: center; }

/* ── ANNOUNCEMENT BAR (Copié de header.liquid) ── */
.announcement {
  background-color: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 101;
  position: relative;
}

.pro-mobile-utility {
  background: #FFF0F6;
  color: var(--accent);
  text-align: center;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  display: none;
}
@media(max-width: 768px) {
  .pro-mobile-utility { display: block; }
}

/* ── HEADER & NAVIGATION (Copié de header.liquid) ── */
.header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.header.scroll {
  height: 70px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--primary);
}
.logo span {
  color: var(--accent);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  opacity: 0.85;
  padding: 8px 0;
  position: relative;
}
.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--accent);
}
.header-actions {
  display: flex;
  align-items: center;
}
.cart-toggle {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.2s;
}
.cart-toggle:hover {
  border-color: var(--accent);
}
.cart-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--text-main);
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile navigation */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 24px;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: all 0.2s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 20px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}
.mobile-nav.open {
  display: flex;
}
@media(max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
}


/* ── SECTION ACCUEIL (Copie conforme de acueil.liquid) ── */
.hp-hero {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(8, 13, 24, .78) 0%, rgba(8, 13, 24, .58) 42%, rgba(8, 13, 24, .18) 100%),
    url('https://cdn.shopify.com/s/files/1/1063/3737/0451/files/Capture_d_ecran_2026-05-09_a_10.58.33_PM.png?v=1778353336');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 118px 20px 126px;
  text-align: left;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.2));
  pointer-events: none;
}
.hp-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  max-width: 1100px;
  margin: 0 auto;
}
.hp-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.24);
  padding: 6px 18px; border-radius: 50px; font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hp-hero-eyebrow .live-dot { width: 6px; height: 6px; background: #4ADE80; border-radius: 50%; display: inline-block; }
.hp-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(38px, 6vw, 62px); font-weight: 800; line-height: 1.08;
  margin: 0 0 24px;
  max-width: 650px;
  letter-spacing: -1.5px;
  text-shadow: 0 18px 42px rgba(0,0,0,.32);
}
.hp-hero h1 em { font-style: normal; color: #DCEBFF; }
.hp-hero-sub {
  font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.86); line-height: 1.7;
  margin: 0 0 44px;
  max-width: 590px;
  text-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.hp-hero-cta { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; }
.hp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #D81E63; padding: 16px 32px; border-radius: 12px;
  font-family: var(--font-title); font-size: 16px; font-weight: 700;
  text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.hp-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.3); }
.hp-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff; padding: 16px 32px; border-radius: 12px;
  font-family: var(--font-title); font-size: 16px; font-weight: 600;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.3); transition: all 0.3s;
}
.hp-btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

@media(max-width: 720px) {
  .hp-hero {
    min-height: 620px;
    padding: 76px 18px 86px;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(8, 13, 24, .78) 0%, rgba(8, 13, 24, .58) 58%, rgba(8, 13, 24, .72) 100%),
      url('https://cdn.shopify.com/s/files/1/1063/3737/0451/files/Capture_d_ecran_2026-05-09_a_10.58.33_PM.png?v=1778353336');
    background-size: cover;
    background-position: 42% center;
  }
  .hp-hero-inner { width: min(560px, 100%); }
  .hp-hero h1, .hp-hero-sub { margin-left: auto; margin-right: auto; }
  .hp-hero-cta { justify-content: center; }
  .hp-btn-primary, .hp-btn-secondary { width: min(100%, 330px); justify-content: center; }
}

/* ── HP TRUST BAR ── */
.hp-trust { background: #fff; border-bottom: 1px solid var(--border); padding: 0 20px; }
.hp-trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.hp-trust-item {
  display: flex; align-items: center; gap: 10px; padding: 20px 28px;
  font-size: 14px; font-weight: 600; color: var(--text-main);
  border-right: 1px solid var(--border);
}
.hp-trust-item:last-child { border-right: none; }
@media(max-width: 700px) { .hp-trust-item { border-right: none; padding: 14px 16px; font-size: 13px; } }
.hp-trust-icon {
  width: 36px; height: 36px; border-radius: 8px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hp-trust-icon svg { color: var(--accent); }

/* ── HP COLLECTIONS GRID ── */
.hp-collections {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  padding: 92px 20px;
  border-bottom: 1px solid var(--border);
}
.hp-collections-container { max-width: 1100px; margin: 0 auto; }
.hp-collections-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 28px; margin-bottom: 34px;
}
.hp-collections-head .hp-section-title { margin-bottom: 0; }
.hp-collections-head .hp-section-sub { margin: 10px 0 0; max-width: 560px; }
.hp-collections-all {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); text-decoration: none;
  border: 1px solid var(--border); border-radius: 10px;
  padding: 12px 16px; font-size: 13px; font-weight: 800;
  transition: border-color .2s, background .2s;
}
.hp-collections-all:hover { border-color: var(--primary); background: var(--bg-light); }
.hp-collection-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media(min-width: 640px) { .hp-collection-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .hp-collection-grid { grid-template-columns: repeat(3, 1fr); } }
.hp-collection-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-main);
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  padding: 24px;
}
.hp-collection-card--wide {
  min-height: 0;
  background: #2B1A35;
  color: #fff;
}
@media(min-width: 1024px) {
  .hp-collection-card--wide { grid-column: span 2; }
}
.hp-collection-card:hover {
  transform: translateY(-3px);
  border-color: #FFD6E4;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .08);
}
.hp-collection-visual { display: none; }
.hp-collection-card--wide .hp-collection-visual {
  display: grid; 
  grid-template-columns: 1fr; 
  padding: 0; 
  min-height: 0; 
  background: radial-gradient(circle at 50% 45%, rgba(96,165,250,.36) 0%, rgba(15,23,42,0) 58%);
}
.hp-collection-visual img { display: none !important; }
.hp-collection-body {
  padding: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
}
.hp-collection-badge {
  width: fit-content;
  display: inline-flex; align-items: center;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.hp-collection-card--wide .hp-collection-badge {
  background: rgba(255,255,255,.12);
  color: #FFD6E4;
}
.hp-collection-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 19px; font-weight: 800; line-height: 1.2;
}
.hp-collection-card--wide h3 { font-size: clamp(26px, 3vw, 36px); }
.hp-collection-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px; line-height: 1.55;
}
.hp-collection-card--wide p {
  color: #CBD5E1;
  font-size: 15px;
  max-width: 420px;
}
.hp-collection-meta {
  margin-top: 20px;
  color: var(--accent);
  font-size: 12px; font-weight: 850; letter-spacing: .3px;
  display: flex; align-items: center; justify-content: flex-end;
}
.hp-collection-card--wide .hp-collection-meta { color: #fff; }

@media(max-width: 720px) {
  .hp-collections { padding: 64px 16px; }
  .hp-collections-head { display: block; }
  .hp-collections-all { margin-top: 20px; }
  .hp-collection-card { border-radius: 16px; }
  .hp-collection-card--wide .hp-collection-visual { display: none; }
  .hp-collection-card--wide h3 { font-size: 28px; line-height: 1.12; }
  .hp-collection-card--wide p { font-size: 15px; line-height: 1.45; }
}

/* ── HP STEPS (Comment ça marche) ── */
.hp-steps { background: var(--bg-light); padding: 100px 20px; }
.hp-steps-container { max-width: 1100px; margin: 0 auto; }
.hp-section-label {
  display: inline-block; background: var(--accent-light); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.hp-section-title {
  font-family: var(--font-title); font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; color: var(--text-main); margin-bottom: 14px; line-height: 1.15;
}
.hp-section-sub { color: var(--text-muted); font-size: 16px; line-height: 1.7; max-width: 500px; }
.hp-steps-layout {
  display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center;
}
@media(min-width: 900px) { .hp-steps-layout { grid-template-columns: 1fr 1fr; } }
.hp-steps-image {
  border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, #2B1A35, #D81E63);
  aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hp-steps-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.hp-steps-content { display: flex; flex-direction: column; gap: 0; }
.hp-step-row {
  display: flex; gap: 24px; padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.hp-step-row:first-child { padding-top: 0; }
.hp-step-row:last-child { border-bottom: none; padding-bottom: 0; }
.hp-step-num-badge {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent);
  color: #fff; font-family: var(--font-title); font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hp-step-row h3 { font-family: var(--font-title); font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.hp-step-row p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* ── HP FEATURES ── */
.hp-features { background: #fff; padding: 100px 20px; }
.hp-features-container { max-width: 1100px; margin: 0 auto; }
.hp-features-header { margin-bottom: 64px; }
.hp-features-grid { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
@media(min-width: 640px) { .hp-features-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1024px) { .hp-features-grid { grid-template-columns: repeat(3, 1fr); } }
.hp-feature-card { padding: 40px 32px; background: #fff; transition: all 0.25s; }
.hp-feature-card:hover { background: var(--accent-light); }
.hp-feature-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  transition: background 0.25s;
}
.hp-feature-card:hover .hp-feature-icon { background: #fff; }
.hp-feature-icon svg { color: var(--accent); }
.hp-feature-card h3 { font-family: var(--font-title); font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--text-main); }
.hp-feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* ── HP GUARANTEE ── */
.hp-guarantee { background: linear-gradient(135deg, #2B1A35, #D81E63); padding: 80px 20px; }
.hp-guarantee-container { max-width: 1100px; margin: 0 auto; }
.hp-guarantee-header { text-align: center; margin-bottom: 56px; }
.hp-guarantee-header h2 { font-family: var(--font-title); font-size: clamp(24px, 3.5vw, 36px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.hp-guarantee-header p { color: #94A3B8; font-size: 16px; }
.hp-guarantee-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media(min-width: 768px) { .hp-guarantee-grid { grid-template-columns: repeat(4, 1fr); } }
.hp-guarantee-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px 24px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  transition: background 0.3s;
}
.hp-guarantee-card:hover { background: rgba(255,255,255,0.1); }
.hp-guarantee-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
}
.hp-guarantee-card-icon svg { color: #FF8FB3; }
.hp-guarantee-card h4 { font-family: var(--font-title); font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.hp-guarantee-card p { font-size: 13px; color: #94A3B8; line-height: 1.6; margin: 0; }

/* ── HP ABOUT ── */
.hp-about { background: var(--bg-light); padding: 100px 20px; }
.hp-about-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media(min-width: 900px) { .hp-about-container { grid-template-columns: 1fr 1fr; } }
.hp-about-text p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 20px; }
.hp-about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.hp-about-stat { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; text-align: center; }
.hp-about-stat strong { display: block; font-family: var(--font-title); font-size: 26px; font-weight: 800; color: var(--accent); }
.hp-about-stat span { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.hp-about-checklist { display: flex; flex-direction: column; gap: 14px; }
.hp-about-check {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px;
  transition: border-color 0.2s;
}
.hp-about-check:hover { border-color: var(--accent); }
.hp-about-check-icon {
  width: 38px; height: 38px; border-radius: 10px; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.hp-about-check-icon svg { color: var(--accent); }
.hp-about-check strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-main); margin-bottom: 3px; }
.hp-about-check span { font-size: 13px; color: var(--text-muted); }

/* ── HP DELIVERY ── */
.hp-delivery { background: #fff; padding: 80px 20px; }
.hp-delivery-container { max-width: 860px; margin: 0 auto; text-align: center; }
.hp-delivery-steps { display: flex; align-items: flex-start; justify-content: center; margin-top: 56px; }
.hp-delivery-step { flex: 1; text-align: center; position: relative; }
.hp-delivery-step:not(:last-child)::after {
  content: ''; position: absolute; top: 22px; left: calc(50% + 26px);
  right: calc(-50% + 26px); height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--border));
}
.hp-delivery-dot {
  width: 48px; height: 48px; border-radius: 50%; background: var(--accent-light);
  border: 2px solid var(--accent); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative; z-index: 1;
}
.hp-delivery-dot svg { width: 22px; height: 22px; }
.hp-delivery-step h4 { font-size: 13px; font-weight: 700; color: var(--text-main); margin-bottom: 4px; }
.hp-delivery-step p { font-size: 12px; color: var(--text-muted); }

/* ── HP BOTTOM CTA ── */
.hp-cta-bottom { background: var(--accent); padding: 80px 20px; text-align: center; }
.hp-cta-bottom h2 { font-family: var(--font-title); font-size: clamp(24px, 4vw, 40px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.hp-cta-bottom p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 36px; }
.hp-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: var(--accent); padding: 18px 40px; border-radius: 14px;
  font-family: var(--font-title); font-size: 17px; font-weight: 700;
  text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.hp-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,0,0,0.3); }


/* ── PRODUCT HERO (Copie conforme de heroprodu.liquid) ── */
.pdh {
  --pdh-ink: #111315;
  --pdh-muted: #626975;
  --pdh-soft: #f7f1e7;
  --pdh-card: transparent;
  --pdh-line: #ded8cf;
  --pdh-blue: #2f6f55;
  --pdh-blue-soft: #f3eadc;
  --pdh-red: #9d174d;
  --pdh-green: #2f6f55;
  --pdh-gold: #b7791f;
  color: var(--pdh-ink);
  background: linear-gradient(135deg, #fffdf8 0%, #f8f3ea 55%, #eef3ef 100%);
  padding: 34px 16px 48px;
}
.pdh-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}
.pdh-media {
  background: linear-gradient(180deg, #fffaf0 0%, #ece5d8 100%);
  border: 1px solid var(--pdh-line);
  border-radius: 8px;
  overflow: hidden;
}
.pdh-main-image {
  aspect-ratio: 1 / 1;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.pdh-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pdh-thumbs {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid rgba(16, 24, 40, .08);
  background: rgba(255, 255, 255, .72);
  overflow-x: auto;
  scrollbar-width: none;
}
.pdh-thumbs::-webkit-scrollbar { display: none; }
.pdh-thumb {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 1px solid var(--pdh-line);
  border-radius: 6px;
  background: #FFFFFF;
  padding: 4px;
  cursor: pointer;
}
.pdh-thumb.on {
  border-color: var(--pdh-blue);
  box-shadow: 0 0 0 2px rgba(255, 78, 139, .14);
}
.pdh-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pdh-panel {
  border: 0;
  border-radius: 0;
  background: var(--pdh-card);
  padding: 18px 0;
  box-shadow: none;
}
.pdh-review-pill {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 4px;
  background: #fff4d8;
  border: 1px solid #f2d08a;
  color: #6b3f0b;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}
.pdh-stars {
  color: var(--pdh-gold);
  letter-spacing: .5px;
  white-space: nowrap;
}
.pdh-title {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: 0;
}
.pdh-copy {
  margin: 0 0 20px;
  color: var(--pdh-muted);
  font-size: 16px;
  line-height: 1.6;
}
.pdh-price-card {
  background: #fffdf8;
  border: 1px solid #d8cfc1;
  border-radius: 8px;
  padding: 16px;
  margin: 0 0 18px;
}
.pdh-price-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pdh-price-group {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pdh-price {
  font-family: var(--font-title);
  font-size: 38px;
  line-height: 1;
  font-weight: 850;
  color: var(--pdh-blue);
  letter-spacing: 0;
}
.pdh-was {
  color: #98A2B3;
  font-size: 20px;
  font-weight: 650;
  text-decoration: line-through;
}
.pdh-discount {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 11px;
  border-radius: 4px;
  background: var(--pdh-red);
  color: #FFFFFF;
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
}
.pdh-shipping {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--pdh-blue);
  font-size: 15px;
  font-weight: 750;
}
.pdh-shipping svg {
  width: 18px;
  height: 18px;
  color: var(--pdh-green);
  flex: 0 0 auto;
}
.pdh-bundle-story {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}
.pdh-bundle-heading {
  margin: 0;
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}
.pdh-bundle-grid {
  display: grid;
  gap: 9px;
}
.pdh-bundle-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  border: 1px solid #ded8cf;
  border-radius: 6px;
  background: rgba(255, 253, 248, .74);
  padding: 9px;
  min-width: 0;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.pdh-bundle-card.is-selected {
  border-color: #9d174d;
  background: #fff8e8;
  box-shadow: 0 0 0 2px rgba(157, 23, 77, .09);
}
.pdh-bundle-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pdh-bundle-media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  background: #f1eadf;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.pdh-bundle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdh-bundle-media.is-product img {
  object-fit: contain;
  padding: 5px;
}
.pdh-bundle-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}
.pdh-bundle-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}
.pdh-bundle-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--pdh-ink);
  font-size: 14px;
  line-height: 1.2;
}
.pdh-bundle-card span {
  display: block;
  color: var(--pdh-muted);
  font-size: 12px;
  line-height: 1.32;
}
.pdh-bundle-card em {
  display: block;
  margin-top: 5px;
  color: #2f6f55;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.25;
}
.pdh-bundle-tag {
  position: absolute;
  top: -8px;
  right: 9px;
  width: max-content;
  max-width: 110px;
  border-radius: 4px;
  background: #9d174d;
  color: #fff;
  padding: 6px 8px;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}
.pdh-bundle-choice {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--pdh-ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
}
.pdh-bundle-dot {
  width: 16px;
  height: 16px;
  border: 1px solid #9d174d;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.pdh-bundle-card.is-selected .pdh-bundle-dot::after {
  content: "✓";
  color: #fff;
  background: #9d174d;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.pdh-bundle-price {
  color: var(--pdh-green);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}
.pdh-bundle-subtitle {
  display: block;
  color: var(--pdh-ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
}
.pdh-form {
  margin: 0;
  display: grid;
  gap: 12px;
}
.pdh-btn {
  width: 100%;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  background: #111827;
  color: #FFFFFF;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, background .18s ease;
}
.pdh-btn:hover { background: var(--pdh-green); }
.pdh-btn:active { transform: translateY(1px); }
.pdh-btn:disabled { opacity: .65; cursor: progress; }
.pdh-btn svg { width: 20px; height: 20px; }
.pdh-payments {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  min-height: 24px;
  margin-top: 20px;
}
.pdh-payments svg, .pdh-payments img {
  height: 24px;
  width: auto;
}

@media (min-width: 900px) {
  .pdh { padding: 60px 22px 80px; }
  .pdh-shell { grid-template-columns: minmax(0, 1fr) minmax(440px, .85fr); align-items: start; gap: 56px; }
  .pdh-main-image { min-height: 580px; padding: 50px; }
  .pdh-thumbs { padding: 18px 24px 24px; gap: 14px; }
  .pdh-thumb { width: 76px; height: 76px; }
  .pdh-panel { padding: 40px; }
  .pdh-title { font-size: 42px; }
  .pdh-bundle-grid { gap: 11px; }
}

@media (max-width: 520px) {
  .pdh { padding: 16px 12px 30px; }
  .pdh-shell { gap: 14px; }
  .pdh-media, .pdh-panel { border-radius: 8px; }
  .pdh-main-image { min-height: 210px; padding: 14px; }
  .pdh-thumbs { padding: 8px; }
  .pdh-thumb { width: 56px; height: 56px; border-radius: 10px; }
  .pdh-panel { padding: 18px 8px 0; box-shadow: none; }
  .pdh-review-pill { width: fit-content; justify-content: center; gap: 6px; padding: 7px 9px; font-size: 11px; margin-bottom: 12px; }
  .pdh-title { font-size: 26px; margin-bottom: 8px; }
  .pdh-copy { margin: 0 0 14px; font-size: 14px; line-height: 1.45; }
  .pdh-price-card { padding: 12px; border-radius: 8px; margin: 0 0 14px; }
  .pdh-price-line { align-items: center; gap: 8px; }
  .pdh-price-group { gap: 8px; }
  .pdh-price { font-size: 31px; }
  .pdh-was { font-size: 14px; }
  .pdh-discount { min-height: 28px; padding: 6px 8px; border-radius: 4px; font-size: 11px; }
  .pdh-shipping { font-size: 13px; line-height: 1.25; }
  .pdh-bundle-heading { font-size: 16px; }
  .pdh-bundle-card { grid-template-columns: 132px minmax(0, 1fr); gap: 14px; align-items: center; min-height: 164px; padding: 12px; border-color: #d8d3ca; border-radius: 10px; background: #fffdf8; }
  .pdh-bundle-card.has-badge { padding-top: 12px; }
  .pdh-bundle-media { position: relative; aspect-ratio: 1 / 1; align-self: center; border-radius: 8px; }
  .pdh-bundle-copy { align-content: center; gap: 6px; padding: 0; }
  .pdh-bundle-head { grid-template-columns: 1fr; gap: 7px; }
  .pdh-bundle-card span { font-size: 12.5px; line-height: 1.28; }
  .pdh-bundle-card em { margin-top: 0; font-size: 12.5px; line-height: 1.3; }
  .pdh-bundle-choice { align-items: flex-start; gap: 9px; font-size: 15px; line-height: 1.18; }
  .pdh-bundle-dot { width: 18px; height: 18px; margin-top: 1px; }
  .pdh-bundle-price { font-size: 23px; line-height: 1.05; }
  .pdh-bundle-subtitle { margin-top: 3px; font-size: 12px; line-height: 1.25; }
  .pdh-bundle-tag { top: 20px; left: 20px; right: auto; max-width: 104px; border-radius: 6px; font-size: 9px; padding: 6px 8px; z-index: 1; }
  .pdh-btn { min-height: 54px; font-size: 15px; border-radius: 6px; }
  .pdh-payments { margin-top: 12px; }
}

@media (max-width: 380px) {
  .pdh-bundle-card { grid-template-columns: 104px minmax(0, 1fr); gap: 10px; min-height: 148px; padding: 10px; }
  .pdh-bundle-card.has-badge { padding-top: 10px; }
  .pdh-bundle-choice { font-size: 14px; }
  .pdh-bundle-price { font-size: 21px; }
  .pdh-bundle-card span, .pdh-bundle-card em { font-size: 11.5px; }
  .pdh-bundle-tag { top: 16px; left: 16px; max-width: 92px; }
}


#purchase-section,
#flavors {
  scroll-margin-top: 90px;
}

/* ── RECHARGE SAVEURS (Copie conforme de flavorsrestock.liquid) ── */
.fr-wrapper {
  background-color: #F8FAFC;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}
.fr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.fr-header {
  text-align: center;
  margin-bottom: 40px;
}
.fr-section-label {
  display: inline-block;
  background: #FFF0F6;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.fr-header h2 {
  font-family: var(--font-title);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 850;
  color: var(--text-main);
  margin: 0 0 16px;
  line-height: 1.15;
}
.fr-header p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.fr-slider-wrapper {
  padding-left: 20px;
}
@media(min-width: 1200px) {
  .fr-slider-wrapper { max-width: 1200px; margin: 0 auto; padding-left: 0; }
}
.fr-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
  padding-right: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.fr-slider::-webkit-scrollbar { display: none; }
.fr-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
  border-color: #FFD6E4;
}
.fr-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f1f5f9;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fr-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fr-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #101828;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}
.fr-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 8px;
}
.fr-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 6px;
  text-decoration: none;
  line-height: 1.3;
}
.fr-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
}
.fr-form {
  margin-top: auto;
}
.fr-btn {
  width: 100%;
  background: #F8FAFC;
  color: var(--text-main);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fr-btn svg { width: 18px; height: 18px; }
.fr-card:hover .fr-btn {
  background: var(--text-main);
  color: #fff;
  border-color: var(--text-main);
}
.fr-btn:active { transform: scale(0.98); }
.fr-btn.is-success {
  background: var(--success) !important;
  color: #fff !important;
  border-color: var(--success) !important;
}


/* ── SAVEURS INCLUSES (Copie conforme de starterkitflavor.liquid) ── */
.fk-wrapper {
  background-color: #F8FAFC;
  padding: 70px 0;
  border-top: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}
.fk-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.fk-badge {
  display: inline-block;
  background-color: #FEF2F2;
  color: #E11D48;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.fk-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 850;
  color: var(--text-main);
  margin: 0 0 16px;
  line-height: 1.2;
}
.fk-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.fk-slider-wrapper {
  padding-left: 20px;
}
@media(min-width: 900px) {
  .fk-slider-wrapper { max-width: 1100px; margin: 0 auto; padding-left: 0; }
  .fk-slider { justify-content: center; }
}
.fk-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px; 
  padding-right: 20px;
  scrollbar-width: none; 
  -webkit-overflow-scrolling: touch;
}
.fk-slider::-webkit-scrollbar { display: none; }
.fk-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.fk-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}
.fk-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.fk-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fk-card:nth-child(1) .fk-icon-wrapper { background: #FEF3C7; font-size: 32px; }
.fk-card:nth-child(2) .fk-icon-wrapper { background: #FFEDD5; font-size: 32px; }
.fk-card:nth-child(3) .fk-icon-wrapper { background: #FCE7F3; font-size: 32px; }
.fk-card h3 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 10px;
}
.fk-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.fk-instruction-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  margin-top: 10px;
}
.fk-instruction {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  text-align: left;
}
.fk-instruction span { color: #FF4E8B; }
@media (max-width: 500px) {
  .fk-instruction { flex-direction: column; text-align: center; gap: 8px; font-size: 14px; padding: 16px; }
}


/* ── OPTIONS APRÈS KIT (Copie conforme de aaa-omni-apres-kit.liquid) ── */
.oak {
  background: #fffdf8;
  padding: 72px 16px;
  font-family: 'Inter', sans-serif;
}
.oak-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}
.oak-header {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .75fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}
.oak-kicker {
  width: fit-content;
  margin-bottom: 12px;
  color: var(--fr-success);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.oak-title {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}
.oak-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}
.oak-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.oak-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  background: #fffdf8;
  border: 1px solid #ded8cf;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(72, 55, 34, .08);
}
.oak-media {
  position: relative;
  aspect-ratio: 1.22 / 1;
  overflow: hidden;
  background: #eee7dc;
}
.oak-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oak-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 4px;
  background: rgba(17, 24, 39, .9);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}
.oak-copy {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}
.oak-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 850;
}
.oak-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.oak-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.oak-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: center;
  color: var(--text-main);
  font-size: 13.5px;
  font-weight: 760;
  line-height: 1.25;
}
.oak-list svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}
.oak-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.oak-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 32px;
  border-radius: 6px;
  background: #111827;
  color: #fff;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
  transition: background .18s;
}
.oak-button:hover { background: var(--accent); }

@media (max-width: 900px) {
  .oak-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .oak-subtitle { max-width: 680px; }
}
@media (max-width: 700px) {
  .oak-grid { grid-template-columns: 1fr; gap: 14px; }
  .oak-card { grid-template-columns: minmax(132px, 42%) minmax(0, 1fr); grid-template-rows: auto; min-height: 190px; box-shadow: none; }
  .oak-media { height: 100%; min-height: 190px; aspect-ratio: auto; }
  .oak-copy { align-content: center; gap: 8px; padding: 16px; }
  .oak-card h3 { font-size: 18px; }
  .oak-card p { font-size: 12.5px; line-height: 1.45; }
  .oak-list { gap: 6px; }
  .oak-list li { font-size: 12px; }
  .oak-badge { top: 10px; left: 10px; min-height: 30px; padding: 7px 10px; font-size: 10px; }
}
@media (max-width: 480px) {
  .oak { padding: 46px 12px; }
  .oak-title { font-size: 29px; }
  .oak-subtitle { font-size: 14px; line-height: 1.5; }
  .oak-card { grid-template-columns: 116px minmax(0, 1fr); min-height: 168px; border-radius: 9px; }
  .oak-media { min-height: 168px; }
  .oak-copy { padding: 13px; }
  .oak-card h3 { font-size: 16px; }
  .oak-card p { font-size: 12px; line-height: 1.4; }
  .oak-list li { grid-template-columns: 15px 1fr; gap: 6px; font-size: 11.5px; }
  .oak-list svg { width: 15px; height: 15px; }
  .oak-actions { margin-top: 18px; }
  .oak-button { width: 100%; min-height: 52px; padding: 0 16px; font-size: 14px; }
}


/* ── SPECIFICATIONS TECHNIQUE (Copie conforme de customtech.liquid) ── */
.ct-wrapper { background: var(--bg-light); border-top: 1px solid var(--border); }
.ct-container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.ct-section-label {
  display: inline-block; background: var(--accent-light); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.ct-section-title {
  font-family: var(--font-title); font-size: clamp(22px, 3vw, 30px);
  font-weight: 800; color: var(--text-main); margin-bottom: 40px; line-height: 1.2;
}
.ct-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width: 900px) { .ct-layout { grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; } }
.ct-tech-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
@media(min-width: 600px) { .ct-tech-grid { grid-template-columns: repeat(2, 1fr); } }
.ct-tech-card { background: #fff; padding: 32px 28px; transition: background 0.2s; }
.ct-tech-card:hover { background: var(--accent-light); }
.ct-tech-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
  transition: background 0.2s;
}
.ct-tech-card:hover .ct-tech-card-icon { background: #fff; }
.ct-tech-card-icon svg { color: var(--accent); }
.ct-tech-card h3 { font-family: var(--font-title); font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-main); }
.ct-tech-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }
.ct-box-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; position: sticky; top: 112px; }
.ct-box-header { background: var(--primary); padding: 24px 28px; }
.ct-box-header h3 { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.ct-box-header p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }
.ct-box-items { padding: 8px 0; }
.ct-box-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 28px; border-bottom: 1px solid var(--border);
  font-size: 14px; font-weight: 500; color: var(--text-main);
}
.ct-box-item:last-child { border-bottom: none; }
.ct-box-item-check { width: 24px; height: 24px; border-radius: 50%; background: #DCFCE7; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-box-item-check svg { color: var(--success); }
.ct-box-footer { padding: 20px 28px; background: var(--bg-light); border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); text-align: center; line-height: 1.5; }
.ct-box-footer svg { vertical-align: middle; margin-right: 4px; color: var(--success); }


/* ── PRODUIT FAQ, CONTACT & STICKY BOTTOM BAR (Copie de aaa-faq-produit.liquid) ── */
.pd-bottom-wrapper {
  background-color: #FFFFFF; color: var(--text-main);
  padding-bottom: 130px; 
  border-top: 1px solid var(--border);
}
.pd-bc-container { max-width: 1100px; margin: 0 auto; padding: 80px 20px; }
.pd-bc-grid { display: grid; grid-template-columns: 1fr; gap: 60px; }
@media(min-width: 900px) { .pd-bc-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.pd-section-title {
  font-family: var(--font-title); font-size: clamp(22px, 3vw, 28px);
  font-weight: 800; margin-bottom: 8px; color: var(--text-main);
}
.pd-section-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.pd-faq-item { border-bottom: 1px solid var(--border); }
.pd-faq-item:first-of-type { border-top: 1px solid var(--border); }
details.pd-faq-item summary {
  padding: 18px 4px; font-weight: 600; font-size: 15px;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  list-style: none; outline: none; color: var(--text-main);
}
details.pd-faq-item summary::-webkit-details-marker { display: none; }
.pd-faq-chevron { font-size: 24px; color: var(--text-muted); transition: transform 0.2s; flex-shrink: 0; line-height: 1; }
details.pd-faq-item[open] .pd-faq-chevron { transform: rotate(45deg); color: var(--accent); }
.pd-faq-answer { padding: 0 0 18px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.pd-contact-card {
  background: var(--bg-light); border-radius: 20px; padding: 40px 36px; border: 1px solid var(--border);
}
.pd-contact-card form { display: flex; flex-direction: column; gap: 16px; }
.pd-contact-card input, .pd-contact-card textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border);
  border-radius: 10px; font-size: 14px;
  background: #fff; color: var(--text-main); outline: none; transition: border-color 0.2s;
  box-sizing: border-box;
}
.pd-contact-card input:focus, .pd-contact-card textarea:focus { border-color: var(--accent); }
.pd-contact-card textarea { min-height: 120px; resize: vertical; }
.pd-contact-btn {
  background: var(--accent); color: #fff; padding: 16px 28px;
  border-radius: 10px; font-weight: 700; font-size: 15px; border: none;
  cursor: pointer; font-family: var(--font-title); transition: background 0.2s;
}
.pd-contact-btn:hover { background: var(--accent-dark); }
.pd-contact-info-row { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); margin-bottom: 24px; font-weight: 600; }
.pd-contact-info-row svg { color: var(--success); }

/* STICKY BOTTOM BAR (iPhone Safe) */
.pd-sticky-bottom {
  position: fixed; 
  bottom: 0; left: 0; right: 0;
  background: #fff; 
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border); 
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  transform: translateZ(0);
}
.pd-sticky-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 600px; gap: 16px; margin: 0 auto; }
.pd-sticky-price-wrap { display: flex; flex-direction: column; }
.pd-sticky-price { font-family: var(--font-title); font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1.1; }
.pd-sticky-old { font-size: 14px; text-decoration: line-through; color: var(--text-muted); }
.pd-sticky-btn-wrapper { flex: 1; }
.pd-sticky-btn {
  width: 100%; display: block; background: #2B1A35; color: #fff;
  text-align: center; font-weight: 700; padding: 16px;
  border: 0; border-radius: 12px; text-decoration: none;
  font-family: var(--font-title); font-size: 16px;
  transition: background 0.2s; cursor: pointer;
}
.pd-sticky-btn:hover { background: var(--accent); }
.pd-sticky-trust { font-size: 11px; color: var(--text-muted); text-align: center; margin-top: 6px; font-weight: 600; }

@media(max-width: 600px) {
  .pd-sticky-price { font-size: 20px; }
  .pd-sticky-btn { padding: 14px; font-size: 15px; }
}


/* ── AVIS CLIENTS (Copie conforme de aaa-omni-avis-clients.liquid) ── */
.oar {
  --oar-ink: #111315;
  --oar-muted: #626977;
  --oar-paper: #fffdf8;
  --oar-soft: #f6f1e8;
  --oar-line: #ded8cf;
  --oar-green: #2f6f55;
  --oar-gold: #b7791f;
  color: var(--oar-ink);
  background: linear-gradient(180deg, #fffdf8 0%, #f6f1e8 100%);
  padding: 72px 16px;
  font-family: 'Inter', sans-serif;
}
.oar-shell { width: min(1180px, 100%); margin: 0 auto; }
.oar-header {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}
.oar-kicker {
  width: fit-content;
  margin-bottom: 12px;
  color: var(--oar-green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.oar-title {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}
.oar-summary { display: grid; gap: 8px; justify-items: start; color: var(--oar-muted); font-size: 15px; line-height: 1.5; }
.oar-score { display: inline-flex; align-items: center; gap: 8px; color: var(--oar-ink); font-weight: 850; }
.oar-stars { color: var(--oar-gold); letter-spacing: .04em; }
.oar-grid { display: grid; grid-template-columns: 1.05fr .95fr .95fr; gap: 16px; }
.oar-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-width: 0;
  padding: 22px;
  background: var(--oar-paper);
  border: 1px solid var(--oar-line);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(72, 55, 34, .08);
}
.oar-card.is-featured { padding: 0; overflow: hidden; }
.oar-photo { aspect-ratio: 1.15 / 1; overflow: hidden; background: #eee7dc; }
.oar-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.oar-featured-copy { display: grid; gap: 14px; padding: 22px; }
.oar-card p { margin: 0; color: var(--oar-ink); font-size: 15px; line-height: 1.62; }
.oar-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 2px; }
.oar-author { display: grid; gap: 2px; }
.oar-author strong { color: var(--oar-ink); font-size: 14px; font-weight: 850; }
.oar-author span { color: var(--oar-muted); font-size: 12px; font-weight: 650; }
.oar-verified { display: inline-flex; align-items: center; gap: 5px; color: var(--oar-green); font-size: 12px; font-weight: 850; white-space: nowrap; }
.oar-verified svg { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .oar { padding: 58px 14px; }
  .oar-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 24px; }
  .oar-grid { grid-template-columns: 1fr; gap: 14px; }
  .oar-card.is-featured { grid-template-columns: minmax(150px, 42%) minmax(0, 1fr); }
  .oar-photo { height: 100%; aspect-ratio: auto; }
  .oar-featured-copy { align-content: center; padding: 18px; }
}
@media (max-width: 560px) {
  .oar { padding: 46px 12px; }
  .oar-title { font-size: 29px; }
  .oar-summary { font-size: 13px; }
  .oar-card, .oar-featured-copy { padding: 16px; }
  .oar-card.is-featured { grid-template-columns: 1fr; }
  .oar-photo { aspect-ratio: 1.18 / 1; }
  .oar-card p { font-size: 13.5px; line-height: 1.55; }
  .oar-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
}


/* ── PAGE RECETTES (Copie de rectte.liquid) ── */
.rp-wrapper {
  --tag-vegan: #DCFCE7;
  --tag-vegan-text: #166534;
  --tag-classic: #FEF3C7;
  --tag-classic-text: #92400E;
  --tag-sorbet: #FFE4E6;
  --tag-sorbet-text: #9F1239;
  background-color: var(--bg-light);
  color: var(--text-main);
  padding: 80px 20px 100px;
  min-height: 80vh;
}
.rp-container { max-width: 1200px; margin: 0 auto; }
.rp-hero { text-align: center; margin-bottom: 60px; }
.rp-hero h1 { font-family: var(--font-title); font-size: clamp(36px, 5vw, 56px); font-weight: 850; margin-bottom: 20px; letter-spacing: -1px; line-height: 1.1; }
.rp-hero p { font-size: 18px; color: var(--text-muted); max-width: 650px; margin: 0 auto; line-height: 1.6; }
.rp-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .rp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rp-grid { grid-template-columns: repeat(3, 1fr); } }
.rp-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; cursor: pointer; }
.rp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); }
.rp-card-image { width: 100%; aspect-ratio: 4/3; background: #e2e8f0; position: relative; overflow: hidden; }
.rp-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.rp-card:hover .rp-card-image img { transform: scale(1.05); }
.rp-card-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.rp-card-tag { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: 0.5px; width: fit-content; margin-bottom: 14px; }
.rp-card-tag.vegan { background: var(--tag-vegan); color: var(--tag-vegan-text); }
.rp-card-tag.classic { background: var(--tag-classic); color: var(--tag-classic-text); }
.rp-card-tag.sorbet { background: var(--tag-sorbet); color: var(--tag-sorbet-text); }
.rp-card-body h3 { font-family: var(--font-title); font-size: 20px; font-weight: 800; margin-bottom: 10px; color: var(--text-main); }
.rp-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.55; margin-bottom: 20px; flex-grow: 1; }
.rp-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 18px; }
.rp-card-meta span { display: flex; align-items: center; gap: 6px; }
.rp-card-meta svg { color: var(--accent); }

/* Recettes filtres */
.rp-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rp-filter-btn {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.rp-filter-btn.active, .rp-filter-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(255, 78, 139, 0.2);
}

/* Modale de recettes */
.rp-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 20px;
}
.rp-modal.open { opacity: 1; visibility: visible; }
.rp-modal-container {
  background: #fff;
  border-radius: 24px;
  width: min(840px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
  transform: translateY(20px);
  transition: transform 0.3s;
}
.rp-modal.open .rp-modal-container { transform: translateY(0); }
.rp-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border: 1px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.rp-modal-close svg { width: 16px; height: 16px; }
.rp-modal-image { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.rp-modal-image img { width: 100%; height: 100%; object-fit: cover; }
.rp-modal-body { padding: 40px; }
.rp-modal-header { margin-bottom: 28px; }
.rp-modal-title { font-family: var(--font-title); font-size: clamp(24px, 3.5vw, 32px); font-weight: 850; margin-bottom: 12px; }
.rp-modal-meta-grid { display: flex; gap: 24px; font-size: 13px; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; }
.rp-modal-meta-grid span { display: flex; align-items: center; gap: 6px; }
.rp-modal-meta-grid svg { color: var(--accent); }
.rp-modal-columns { display: grid; grid-template-columns: 1fr; gap: 32px; border-top: 1px solid var(--border); padding-top: 32px; }
@media (min-width: 600px) { .rp-modal-columns { grid-template-columns: 1.2fr 1.8fr; } }
.rp-modal-col h4 { font-family: var(--font-title); font-size: 15px; font-weight: 800; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; letter-spacing: 0.5px; }
.rp-modal-col ul, .rp-modal-col ol { display: flex; flex-direction: column; gap: 10px; padding-left: 20px; font-size: 14.5px; color: #4B5563; }
.rp-modal-col ul { list-style: disc; }
.rp-modal-col ol { list-style: decimal; }


/* ── PAGE FAQ GENERALE (Copie de wholefaq.liquid) ── */
.faq-wrap { font-family: 'Inter', sans-serif; }
.faq-hero {
  background: linear-gradient(135deg, #2B1A35, #D81E63);
  color: #fff; padding: 80px 20px; text-align: center;
}
.faq-hero h1 { font-family: var(--font-title); font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 14px; }
.faq-hero p { color: #94A3B8; font-size: 17px; }
.faq-body { max-width: 820px; margin: 0 auto; padding: 60px 20px 100px; }
.faq-cat-title {
  font-family: var(--font-title); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; color: #FF4E8B;
  margin: 48px 0 16px; display: flex; align-items: center; gap: 10px;
}
.faq-cat-title::after { content: ''; flex: 1; height: 1px; background: #E2E8F0; }
details.faq-item {
  background: #F8FAFC; border: 1px solid #E2E8F0;
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
  transition: border-color 0.2s;
}
details.faq-item[open] { border-color: #FF4E8B; background: #fff; }
details.faq-item summary {
  padding: 20px 24px; font-weight: 600; font-size: 15px;
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; list-style: none; outline: none; color: #2B1A35;
}
details.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { font-size: 20px; color: #94A3B8; transition: transform 0.2s; flex-shrink: 0; }
details.faq-item[open] .faq-chevron { transform: rotate(45deg); color: #FF4E8B; }
.faq-answer { padding: 0 24px 20px; color: #4B5563; font-size: 15px; line-height: 1.7; border-top: 1px solid #E2E8F0; padding-top: 16px; }
.faq-contact-box {
  margin-top: 60px; background: linear-gradient(135deg, #FFF0F6, #FFE3EE);
  border: 1px solid #FFD6E4; border-radius: 20px; padding: 48px;
  text-align: center;
}
.faq-contact-box h3 { font-family: var(--font-title); font-size: 22px; font-weight: 800; color: #D81E63; margin-bottom: 12px; }
.faq-contact-box p { color: #1D4ED8; margin-bottom: 24px; font-size: 15px; }
.faq-contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #FF4E8B; color: #fff; padding: 14px 28px;
  border-radius: 10px; font-weight: 700; text-decoration: none; font-size: 15px;
  transition: background 0.2s;
}
.faq-contact-btn:hover { background: #D81E63; }


/* ── PAGE A PROPOS (Copie de apropos.liquid) ── */
.ap-wrapper {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  padding: 80px 20px;
  min-height: 70vh;
}
.ap-container { max-width: 1100px; margin: 0 auto; }
.ap-hero { text-align: center; margin-bottom: 80px; }
.ap-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 850;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}
.ap-hero p { font-size: 18px; color: var(--text-muted); max-width: 650px; margin: 0 auto; line-height: 1.6; }
.ap-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; margin-bottom: 80px; }
@media (min-width: 900px) {
  .ap-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .ap-grid--reverse .ap-image-col { order: 2; }
}
.ap-image-col { width: 100%; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: #e2e8f0; box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08); }
.ap-image-col img { width: 100%; height: 100%; object-fit: cover; }
.ap-text-col h2 { font-family: var(--font-title); font-size: 32px; font-weight: 800; margin-bottom: 24px; color: var(--text-main); line-height: 1.2; }
.ap-text-col p { color: var(--text-muted); font-size: 15.5px; line-height: 1.75; margin-bottom: 20px; }
.ap-text-col p:last-child { margin-bottom: 0; }


/* ── PAGE CONTACT (Copie de contactttmoi.liquid) ── */
.cp-wrapper {
  background-color: var(--bg-light);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  padding: 80px 20px;
  min-height: 70vh;
}
.cp-container { max-width: 1100px; margin: 0 auto; }
.cp-header { text-align: center; margin-bottom: 60px; }
.cp-header h1 { font-family: var(--font-title); font-size: clamp(32px, 5vw, 48px); font-weight: 850; color: var(--text-main); margin-bottom: 16px; letter-spacing: -0.5px; }
.cp-header p { font-size: 16px; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.6; }
.cp-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .cp-grid { grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; } }
.cp-info-box { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); }
.cp-info-title { font-family: var(--font-title); font-size: 22px; font-weight: 700; margin-bottom: 24px; color: var(--text-main); }
.cp-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.cp-info-item:last-child { margin-bottom: 0; }
.cp-info-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cp-info-icon svg { width: 20px; height: 20px; }
.cp-info-content h4 { font-family: var(--font-title); font-size: 14px; font-weight: 800; color: var(--text-main); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.cp-info-content p { font-size: 14px; color: var(--text-muted); margin: 0; }
.cp-info-content a { color: var(--accent); font-weight: 600; }
.cp-info-content a:hover { text-decoration: underline; }
.cp-contact-form { background-color: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 40px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); }
.cp-form-group { margin-bottom: 20px; }
.cp-form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; color: var(--text-main); }
.cp-form-control { width: 100%; background: var(--bg-light); border: 1px solid var(--border); padding: 14px 16px; border-radius: 10px; font-size: 14px; transition: border-color 0.2s, background 0.2s; box-sizing: border-box; }
.cp-form-control:focus { border-color: var(--accent); background: #fff; }
textarea.cp-form-control { height: 130px; resize: vertical; }
.cp-btn-submit {
  background: var(--accent); color: #fff; border: none; padding: 16px 32px; border-radius: 10px;
  font-family: var(--font-title); font-size: 15px; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.cp-btn-submit:hover { background: var(--accent-dark); }
.cp-btn-submit:active { transform: scale(0.98); }


/* ── PANIER COULISSANT (Copie de pro-cart-drawer.liquid) ── */
.pcd-root {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  visibility: hidden;
  pointer-events: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.pcd-root.is-open {
  visibility: visible;
  pointer-events: auto;
}
.pcd-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .36);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .42s ease;
}
.pcd-root.is-open .pcd-backdrop {
  opacity: 1;
}
.pcd-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(440px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  background: #f8fafc;
  color: #111827;
  box-shadow: -22px 0 80px rgba(15, 23, 42, .20);
  transform: translateX(102%) scale(.99);
  opacity: .98;
  transition:
    transform .52s cubic-bezier(.19, 1, .22, 1),
    opacity .32s ease;
  outline: none;
}
.pcd-root.is-open .pcd-panel {
  transform: translateX(0) scale(1);
  opacity: 1;
}
.pcd-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
.pcd-header p {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1;
}
.pcd-header h2 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
  color: var(--text-main);
  line-height: 1.1;
}
.pcd-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-main);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.pcd-close:hover { opacity: 1; }
.pcd-close svg { width: 22px; height: 22px; }

.pcd-progress {
  background: #FFF0F6;
  padding: 16px 24px;
  border-bottom: 1px solid #FFE3EE;
}
.pcd-progress-copy {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}
.pcd-progress-copy strong { color: #D81E63; }
.pcd-progress-copy span { color: #FF4E8B; font-weight: 600; }
.pcd-progress-bar {
  height: 6px;
  background: #E0F2FE;
  border-radius: 999px;
  overflow: hidden;
}
.pcd-progress-bar span {
  display: block;
  height: 100%;
  background: #FF4E8B;
  border-radius: 999px;
  transition: width 0.3s ease;
}

.pcd-items {
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pcd-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  text-align: center;
  padding: 40px 24px;
}
.pcd-empty-icon {
  background-color: #f1f5f9;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.pcd-empty-icon svg { width: 34px; height: 34px; }
.pcd-empty h3 { font-family: var(--font-title); font-size: 18px; font-weight: 800; color: var(--text-main); }
.pcd-empty p { color: var(--text-muted); font-size: 13.5px; line-height: 1.5; }
.pcd-empty-link {
  display: inline-flex;
  background: var(--text-main);
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}
.pcd-empty-link:hover { background: var(--accent); }

.pcd-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: start;
}
.pcd-item-image {
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pcd-item-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.pcd-item-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pcd-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.pcd-item-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.35;
}
.pcd-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #9ca3af;
  transition: color 0.2s;
  padding: 2px;
}
.pcd-remove:hover { color: #dc2626; }
.pcd-variant {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.pcd-item-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.pcd-qty {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #fff;
}
.pcd-qty button {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  color: #4b5563;
}
.pcd-qty input {
  width: 28px;
  height: 28px;
  border: none;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  -moz-appearance: textfield;
}
.pcd-qty input::-webkit-outer-spin-button,
.pcd-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pcd-item-bottom strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
}

.pcd-footer {
  padding: 24px;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}
.pcd-service-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pcd-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pcd-summary strong {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--accent);
}
.pcd-checkout {
  width: 100%;
  background: #111827;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 8px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
  text-align: center;
}
.pcd-checkout:hover { background: var(--accent); }
.pcd-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.pcd-continue:hover { color: var(--accent); }


/* ── PAGES JURIDIQUES/LÉGALES ── */
.legal-wrapper {
  background: var(--bg-light);
  padding: 60px 20px 100px;
}
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}
.legal-container h1 {
  font-family: var(--font-title);
  font-size: 28px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 12px;
  color: var(--text-main);
}
.legal-container h2 {
  font-family: var(--font-title);
  font-size: 18px;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-main);
}
.legal-container p { margin-bottom: 16px; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }
.legal-container ul { list-style: disc; padding-left: 20px; margin-bottom: 16px; color: var(--text-muted); font-size: 14.5px; }
.legal-container li { margin-bottom: 8px; }

@media(max-width: 600px) {
  .legal-container { padding: 30px 20px; }
  .legal-container h1 { font-size: 22px; }
}


/* ── PIED DE PAGE (Copie conforme de foooooote.liquid) ── */
.pf-footer {
  background: #2B1A35; color: #94A3B8;
  font-family: 'Inter', sans-serif; font-size: 14px;
}
.pf-strip {
  background: #1E293B; border-bottom: 1px solid #334155;
  padding: 16px 20px;
}
.pf-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.pf-strip-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #CBD5E1; }
.pf-strip-item svg { color: #4ADE80; }
.pf-main { padding: 72px 20px 48px; }
.pf-main-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width: 600px) { .pf-main-inner { grid-template-columns: 1fr 1fr; } }
@media(min-width: 992px) { .pf-main-inner { grid-template-columns: 2fr 1fr 1.25fr 1.1fr; gap: 56px; } }
.pf-brand-name {
  font-family: var(--font-title); font-size: 22px; font-weight: 800;
  color: #F8FAFC; margin-bottom: 14px; letter-spacing: -0.5px;
}
.pf-brand-name span { color: #FF8FB3; }
.pf-brand-desc { margin-bottom: 28px; line-height: 1.7; max-width: 280px; }
.pf-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.pf-contact-row svg { margin-top: 2px; flex-shrink: 0; color: #FF8FB3; }
.pf-contact-row a { color: #94A3B8; text-decoration: none; }
.pf-contact-row a:hover { color: #FF8FB3; }
.pf-col h4 { font-family: var(--font-title); font-size: 13px; font-weight: 800; color: #F8FAFC; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.pf-col ul { list-style: none; padding: 0; margin: 0; }
.pf-col ul li { margin-bottom: 12px; }
.pf-col ul li a { color: #94A3B8; text-decoration: none; transition: color 0.2s; font-size: 14px; }
.pf-col ul li a:hover { color: #FF8FB3; }
.pf-footer-card {
  padding: 18px;
  border: 1px solid #1E293B;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  margin-top: 20px;
}
.pf-footer-card strong {
  display: block;
  margin-bottom: 8px;
  color: #F8FAFC;
  font-size: 14px;
  font-weight: 850;
}
.pf-footer-card p {
  margin: 0 0 14px;
  color: #94A3B8;
  font-size: 13px;
  line-height: 1.55;
}
.pf-footer-card a {
  display: inline-flex;
  color: #2B1A35;
  background: #F8FAFC;
  border-radius: 9px;
  padding: 10px 13px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}
.pf-footer-card a:hover { background: #FF8FB3; color: #fff; }
.pf-bottom { border-top: 1px solid #1E293B; padding: 28px 20px; }
.pf-bottom-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center;
}
@media(min-width: 768px) { .pf-bottom-inner { flex-direction: row; justify-content: space-between; text-align: left; } }
.pf-copyright { font-size: 13px; color: #475569; }
.pf-legal-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.pf-legal-links a { color: #475569; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.pf-legal-links a:hover { color: #94A3B8; }
.pf-payment { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; align-items: center; }
.pf-payment svg, .pf-payment img { height: 22px; width: auto; opacity: 0.6; }

/* ── CUSTOM FEATURE & REVIEWS SECTION (customfeat.liquid - OMNI 05) ── */
.cf-features { background: var(--bg-light); border-top: 1px solid var(--border); }
.cf-container { max-width: 1200px; margin: 0 auto; padding: 100px 20px; }

.cf-section-label {
  display: inline-block; background: var(--accent-light); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
}
.cf-section-title {
  font-family: var(--font-title); font-size: clamp(26px, 3vw, 36px);
  font-weight: 850; color: var(--text-main); margin-bottom: 12px; line-height: 1.15;
}
.cf-section-sub { color: var(--text-muted); font-size: 16px; margin-bottom: 60px; max-width: 600px; line-height: 1.6; }

/* Grille d'images */
.cf-image-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media(min-width: 768px) { .cf-image-grid { grid-template-columns: repeat(3, 1fr); } }

.cf-image-card {
  border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.cf-image-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: #FFD6E4; }

.cf-image-media {
  position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden;
  background: #f1f5f9;
}
.cf-image-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cf-image-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  color: #94a3b8;
}

.cf-image-body { padding: 32px 28px; flex-grow: 1; }
.cf-image-tag {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); background: var(--accent-light);
  padding: 4px 10px; border-radius: 6px; margin-bottom: 16px;
}
.cf-image-body h4 { font-family: var(--font-title); font-size: 18px; font-weight: 800; color: var(--text-main); margin: 0 0 10px; line-height: 1.2; }
.cf-image-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── BLOC IMAGE LARGE (Split) ── */
.cf-feature-image-section { background: var(--text-main); }
.cf-feature-image-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; align-items: center;
}
@media(min-width: 900px) { .cf-feature-image-inner { grid-template-columns: 1fr 1fr; } }
.cf-feature-image-visual { aspect-ratio: 1/1; overflow: hidden; }
.cf-feature-image-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-feature-image-text { padding: 80px 48px; }
@media(max-width: 899px) { .cf-feature-image-text { padding: 50px 24px; } }
.cf-feature-image-label {
  display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8); font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}
.cf-feature-image-text h2 { font-family: var(--font-title); font-size: clamp(28px, 3.5vw, 42px); font-weight: 850; color: #fff; margin-bottom: 20px; line-height: 1.15; }
.cf-feature-image-text p { color: #94A3B8; font-size: 16px; line-height: 1.75; margin-bottom: 36px; max-width: 480px; }
.cf-feature-pills { display: flex; flex-direction: column; gap: 16px; }
.cf-feature-pill {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 18px 22px; color: #fff; font-size: 15px; font-weight: 600;
}
.cf-feature-pill svg { color: #FF8FB3; flex-shrink: 0; width: 22px; height: 22px; }

/* ── AVIS CLIENTS CF ── */
.cf-reviews { background: var(--bg-light); border-top: 1px solid var(--border); padding: 80px 20px; }
.cf-reviews-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 1200px; margin: 0 auto; }
@media(min-width: 768px) { .cf-reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.cf-review-card {
  background: #fff; border-radius: 12px; padding: 36px 32px;
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.cf-review-card:hover { box-shadow: 0 12px 30px rgba(0,0,0,0.06); transform: translateY(-3px); }
.cf-review-stars { display: flex; gap: 4px; }
.cf-review-stars svg { width: 18px; height: 18px; fill: #F59E0B; color: #F59E0B; }
.cf-review-text { font-size: 16px; line-height: 1.7; color: var(--text-main); font-style: italic; flex-grow: 1; }
.cf-review-author { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.cf-review-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title); font-weight: 700; font-size: 16px; color: var(--accent);
  flex-shrink: 0;
}
.cf-review-name { font-weight: 800; font-size: 15px; color: var(--text-main); margin-bottom: 2px; }
.cf-review-verified { font-size: 12px; color: var(--success); font-weight: 700; display: flex; align-items: center; gap: 4px; }
.cf-review-verified svg { width: 14px; height: 14px; }

/* ── COMMENT CA MARCHE OHW (omni-how-it-works.liquid) ── */
.ohw {
  --ohw-ink: #111315;
  --ohw-muted: #626977;
  --ohw-soft: #f6f1e8;
  --ohw-paper: #fffdf8;
  --ohw-line: #ded8cf;
  --ohw-green: #2f6f55;
  --ohw-gold: #8a642f;
  color: var(--ohw-ink);
  background: linear-gradient(180deg, #fffdf8 0%, #f6f1e8 100%);
  padding: 72px 16px;
}

.ohw * {
  box-sizing: border-box;
}

.ohw-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.ohw-header {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.ohw-kicker {
  width: fit-content;
  margin: 0 auto;
  color: var(--ohw-green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ohw-title {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.ohw-subtitle {
  margin: 0;
  color: var(--ohw-muted);
  font-size: 16px;
  line-height: 1.65;
}

.ohw-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ohw-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-width: 0;
  background: var(--ohw-paper);
  border: 1px solid var(--ohw-line);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(72, 55, 34, .08);
}

.ohw-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee7dc;
}

.ohw-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ohw-number {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 253, 248, .94);
  color: var(--ohw-gold);
  border: 1px solid rgba(138, 100, 47, .28);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 850;
}

.ohw-copy {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 20px;
}

.ohw-card h3 {
  margin: 0;
  font-family: var(--font-title);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: 0;
}

.ohw-card p {
  margin: 0;
  color: var(--ohw-muted);
  font-size: 14px;
  line-height: 1.55;
}

.ohw-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 24px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(47, 111, 85, .22);
  border-radius: 8px;
  background: rgba(47, 111, 85, .08);
  color: var(--ohw-green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.ohw-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .ohw {
    padding: 58px 14px;
  }

  .ohw-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ohw-card {
    grid-template-columns: minmax(128px, 42%) minmax(0, 1fr);
    grid-template-rows: auto;
    min-height: 178px;
  }

  .ohw-media {
    height: 100%;
    min-height: 178px;
    aspect-ratio: auto;
  }

  .ohw-copy {
    align-content: center;
    padding: 18px;
  }
}

@media (max-width: 560px) {
  .ohw {
    padding: 46px 12px;
  }

  .ohw-header {
    margin-bottom: 24px;
    text-align: left;
  }

  .ohw-kicker {
    margin: 0;
  }

  .ohw-title {
    font-size: 29px;
  }

  .ohw-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .ohw-card {
    grid-template-columns: 122px minmax(0, 1fr);
    min-height: 156px;
    border-radius: 9px;
    box-shadow: none;
  }

  .ohw-media {
    min-height: 156px;
  }

  .ohw-number {
    top: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .ohw-copy {
    gap: 7px;
    padding: 14px;
  }

  .ohw-card h3 {
    font-size: 17px;
    line-height: 1.18;
  }

  .ohw-card p {
    font-size: 12.5px;
    line-height: 1.42;
  }

  .ohw-note {
    width: 100%;
    margin-top: 16px;
    padding: 11px 12px;
    font-size: 12.5px;
  }
}

@media (max-width: 380px) {
  .ohw-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .ohw-copy {
    padding: 12px;
  }

  .ohw-card h3 {
    font-size: 16px;
  }

  .ohw-card p {
    font-size: 12px;
  }
}

/* ── RESPONSIVE OVERRIDES FOR HP SECTIONS ── */
@media (max-width: 768px) {
  .hp-delivery-steps {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .hp-delivery-step {
    width: 100%;
  }
  .hp-delivery-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .hp-about-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ==========================================================================
   ✦ COUCHE « FUN » — refonte colorée & gourmande (ajoutée en dernier)
   ========================================================================== */

/* Fond de page crème + titres ludiques plus marqués */
body {
  background:
    radial-gradient(900px 500px at 110% -5%, rgba(255, 78, 139, 0.06), transparent 60%),
    radial-gradient(800px 480px at -10% 8%, rgba(70, 214, 181, 0.07), transparent 60%),
    #FFFDFA;
}
h1, h2, h3, .hp-section-title, .pdh-title {
  letter-spacing: -0.01em;
}
h1, h2 { font-weight: 700; }

/* Bandeau d'annonce : pastel doux, défilement très lent */
.announcement {
  background: linear-gradient(90deg, #FFE7F0, #FDEFE6, #E9F8F3, #EFEBFD, #FFE7F0);
  background-size: 250% 100%;
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: .03em;
  text-shadow: none;
  animation: funShift 40s linear infinite;
}
@keyframes funShift { to { background-position: 250% 0; } }

/* Logo + lien actif colorés */
.logo span { color: var(--accent); }
.nav-link.active { color: var(--accent); }
.nav-link:hover { color: var(--accent); }

/* ── Boutons : dégradé fraise→framboise, bien ronds, ombre rose, rebond ── */
.hp-btn-primary,
.hp-cta-btn,
.pd-sticky-btn,
.pdh-btn,
.fr-btn,
.pcd-checkout,
.pcd-empty-link,
.contact-submit-btn,
.cp-btn-submit {
  background: linear-gradient(135deg, #FF9BC0 0%, #FF7AA8 55%, #FF6AA0 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 26px rgba(255, 122, 168, 0.30) !important;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease !important;
}
.hp-btn-primary:hover,
.hp-cta-btn:hover,
.pd-sticky-btn:hover,
.pdh-btn:hover,
.fr-btn:hover,
.pcd-checkout:hover,
.pcd-empty-link:hover,
.contact-submit-btn:hover,
.cp-btn-submit:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 34px rgba(255, 122, 168, 0.38) !important;
  filter: saturate(1.04) !important;
}
.pdh-btn:active, .fr-btn:active { transform: translateY(0) scale(.99) !important; }

/* Bouton secondaire : contour rond menthe */
.hp-btn-secondary {
  border-radius: 999px !important;
  border: 2px solid rgba(255,255,255,.85) !important;
}

/* ── Cartes : coins très arrondis + ombre colorée au survol ── */
.hp-collection-card,
.hp-feature-item,
.hp-guarantee-card,
.hp-about-stat,
.hp-delivery-item,
.cf-review-card,
.ohw-card,
.recipe-card,
.fr-card,
.ct-box-card,
.review-card {
  border-radius: var(--radius-md) !important;
  transition: transform .2s ease, box-shadow .25s ease !important;
}
.hp-collection-card:hover,
.recipe-card:hover,
.fr-card:hover,
.cf-review-card:hover,
.hp-feature-item:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 22px 46px rgba(108, 92, 231, 0.16) !important;
}

/* Pastilles d'icônes multicolores (au lieu du bleu uniforme) */
.hp-feature-icon { background: var(--accent-light) !important; color: var(--accent) !important; }
.hp-features-grid .hp-feature-item:nth-child(4n+1) .hp-feature-icon { background: #FFF0F6 !important; color: #FF4E8B !important; }
.hp-features-grid .hp-feature-item:nth-child(4n+2) .hp-feature-icon { background: #E7FBF5 !important; color: #1FAE8C !important; }
.hp-features-grid .hp-feature-item:nth-child(4n+3) .hp-feature-icon { background: #FFF6DC !important; color: #E0A400 !important; }
.hp-features-grid .hp-feature-item:nth-child(4n)   .hp-feature-icon { background: #EFEBFE !important; color: #6C5CE7 !important; }

/* Pills / badges plus ronds et toniques */
.pdh-review-pill, .hp-hero-eyebrow, .hp-collection-badge {
  border-radius: 999px !important;
}
.pdh-stars, .pdh-review-pill .pdh-stars { color: #FFB400 !important; }

/* CTA bas de page : dégradé doux et lumineux */
.hp-cta-bottom {
  background: linear-gradient(135deg, #B7A8F2 0%, #FF9BC0 55%, #FFC59B 100%) !important;
}
.hp-cta-bottom h2, .hp-cta-bottom p { color: #43305A !important; text-shadow: none !important; }
.hp-cta-bottom p { color: rgba(67,48,90,.78) !important; }

/* Section « Comment ça marche » & accueil : touches arrondies */
.hp-step-num, .hp-step-number {
  border-radius: 50% !important;
  background: linear-gradient(135deg, #FF9BC0, #FF7AA8) !important;
  color: #fff !important;
}

/* Footer : fond crème chaud déjà via palette, liens hover fraise */
.footer a:hover { color: var(--accent) !important; }

/* Champs de formulaire arrondis + focus rose */
input, textarea, select {
  border-radius: 12px !important;
}
input:focus, textarea:focus, select:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(255, 78, 139, .16) !important;
}

/* Barre sticky bas de page : ombre douce */
.pd-sticky-bottom { box-shadow: 0 -8px 30px rgba(216,30,99,.10) !important; }

/* Réduit l'effet sur très petits écrans (boutons un peu moins ronds) */
@media (max-width: 600px) {
  .hp-btn-primary, .hp-cta-btn, .pdh-btn, .fr-btn { border-radius: 18px !important; }
}

/* ── Éléments flottants doux (injectés par script.js) ── */
.float-layer {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.float-deco {
  position: absolute;
  font-size: 34px;
  opacity: .16;
  filter: blur(.2px);
  will-change: transform;
  animation: floatDrift var(--dur, 12s) ease-in-out var(--delay, 0s) infinite alternate;
}
@keyframes floatDrift {
  0%   { transform: translateY(0) rotate(-6deg); }
  100% { transform: translateY(-26px) rotate(6deg); }
}
@media (max-width: 700px) {
  .float-deco { font-size: 24px; opacity: .12; }
}
@media (prefers-reduced-motion: reduce) {
  .float-deco { animation: none; }
}
