/** Shopify CDN: Minification failed

Line 5156:0 Unexpected "<"

**/
/* ==========================================================================
   DopaDrop — feuille de styles globale
   Reprise des styles du site source, convertis en classes + tokens.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --dd-accent: #4f46e5;
  --dd-accent-dark: #413ac7;
  --dd-accent-soft: rgba(79, 70, 229, 0.08);
  --dd-accent-soft-strong: rgba(79, 70, 229, 0.14);
  --dd-ink: #13141a;
  --dd-ink-2: #2e333b;
  --dd-body: #5a616b;
  --dd-body-2: #3f4651;
  --dd-muted: #8a8f98;
  --dd-muted-2: #9aa0a8;
  --dd-line: #e7eaee;
  --dd-line-2: #eef0f3;
  --dd-surface: #ffffff;
  --dd-surface-2: #f4f6f8;
  --dd-surface-3: #fafbfc;
  --dd-dark: #0b0b0f;
  --dd-darker: #060912;
  --dd-success: #0e9f6e;
  --dd-warning: #d97706;
  --dd-danger: #dc2626;
  --dd-teal: #0d9488;

  --dd-font-heading: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --dd-font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --dd-radius-sm: 8px;
  --dd-radius: 14px;
  --dd-radius-lg: 18px;
  --dd-radius-xl: 24px;
  --dd-pill: 999px;

  --dd-page-width: 1240px;
  --dd-gutter: clamp(20px, 4vw, 48px);
  --dd-section-y: clamp(56px, 8vw, 104px);
}

/* --------------------------------------------------------------------------
   2. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  background: var(--dd-surface);
  color: var(--dd-ink);
  font-family: var(--dd-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--dd-accent);
}

button {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--dd-font-heading);
  color: var(--dd-ink);
  margin: 0;
}

p {
  margin: 0;
}

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

.skip-to-content:focus {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  background: #fff;
  border-radius: var(--dd-radius-sm);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.2);
}

/* --------------------------------------------------------------------------
   3. Animations
   -------------------------------------------------------------------------- */
@keyframes ddUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ddFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fondu pur, sans transform : un transform animé sur <body> transformerait
   le body en bloc conteneur des éléments position:fixed (popup, mini-nav)
   et les décalerait hors du viewport. */
@keyframes ddPageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ddPulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

@keyframes ddFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes ddScrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

@keyframes ddGlow {
  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12), 0 6px 22px rgba(79, 70, 229, 0.28);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(79, 70, 229, 0.18), 0 12px 34px rgba(79, 70, 229, 0.5);
  }
}

@keyframes ddGlowSoft {
  0%,
  100% {
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.08), 0 3px 12px rgba(79, 70, 229, 0.14);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.11), 0 5px 16px rgba(79, 70, 229, 0.22);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .dd-page-in {
    animation: ddPageIn 0.45s ease both;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dd-hero-card,
  .dd-glow-btn,
  .dd-glow-soft,
  .dd-scrolldown,
  [data-dd-anim] {
    animation: none !important;
  }
}

[data-dd-anim] {
  animation: ddUp 0.7s ease both;
}

/* --------------------------------------------------------------------------
   4. Layout helpers
   -------------------------------------------------------------------------- */
.dd-section {
  position: relative;
  overflow: hidden;
}

.dd-section--white {
  background: var(--dd-surface);
}

.dd-section--grey {
  background: var(--dd-surface-2);
}

.dd-section--dark {
  background: var(--dd-dark);
  color: #fff;
}

.dd-section--glow {
  background: var(--dd-surface);
  background-image:
    radial-gradient(70% 90% at 15% 0%, rgba(79, 70, 229, 0.07), transparent 60%),
    radial-gradient(60% 90% at 92% 100%, rgba(79, 70, 229, 0.05), transparent 60%);
}

.dd-section--dark-glow {
  background: var(--dd-dark);
  color: #fff;
  background-image:
    radial-gradient(70% 100% at 20% 0%, rgba(79, 70, 229, 0.22), transparent 55%),
    radial-gradient(60% 90% at 90% 20%, rgba(79, 70, 229, 0.14), transparent 55%);
}

.dd-container {
  max-width: var(--dd-page-width);
  margin: 0 auto;
  padding-inline: var(--dd-gutter);
}

.dd-container--narrow {
  max-width: 760px;
}

.dd-container--md {
  max-width: 1000px;
}

.dd-container--lg {
  max-width: 1180px;
}

.dd-pad-y {
  padding-block: var(--dd-section-y);
}

.dd-pad-y--sm {
  padding-block: clamp(40px, 5vw, 64px);
}

.dd-pad-y--lg {
  padding-block: clamp(64px, 9vw, 116px);
}

.dd-grid {
  display: grid;
  gap: 20px;
}

.dd-grid--auto {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.dd-grid--auto-lg {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.dd-grid--auto-sm {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dd-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   5. Typographie
   -------------------------------------------------------------------------- */
.dd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dd-muted);
}

.dd-eyebrow--light {
  color: rgba(255, 255, 255, 0.66);
  letter-spacing: 0.16em;
}

.dd-eyebrow--accent {
  color: var(--dd-accent);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.dd-eyebrow__dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dd-accent);
}

.dd-h1 {
  font-weight: 800;
  font-size: clamp(33px, 4.9vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.dd-h2 {
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 46px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.dd-h3 {
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dd-lead {
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.65;
  color: var(--dd-body);
}

.dd-text {
  font-size: 15px;
  line-height: 1.72;
  color: var(--dd-body);
}

.dd-note {
  font-size: 13px;
  line-height: 1.65;
  color: var(--dd-muted-2);
}

.dd-section-head {
  max-width: 680px;
  margin: 0 auto clamp(32px, 4.5vw, 52px);
  text-align: center;
}

.dd-section-head > .dd-h2 {
  margin-top: 18px;
}

.dd-section-head > .dd-lead {
  margin-top: 16px;
}

.dd-section-head--left {
  margin-left: 0;
  text-align: left;
}

.dd-rte > * + * {
  margin-top: 1em;
}

.dd-rte a {
  color: var(--dd-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.dd-rte img {
  border-radius: var(--dd-radius);
}

.dd-rte ul,
.dd-rte ol {
  padding-left: 1.2em;
}

/* --------------------------------------------------------------------------
   6. Boutons
   -------------------------------------------------------------------------- */
.dd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--dd-font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 28px;
  border-radius: var(--dd-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.dd-btn:hover {
  transform: translateY(-2px);
}

.dd-btn--primary {
  background: var(--dd-accent);
  color: #fff;
}

.dd-btn--primary:hover {
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}

.dd-btn--dark {
  background: var(--dd-ink);
  color: #fff;
}

.dd-btn--dark:hover {
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.22);
}

.dd-btn--outline {
  background: transparent;
  color: var(--dd-ink);
  border-color: var(--dd-ink);
}

.dd-btn--outline:hover {
  background: var(--dd-ink);
  color: #fff;
}

.dd-btn--accent-outline {
  background: #fff;
  color: var(--dd-accent);
  border-color: var(--dd-accent);
}

.dd-btn--accent-outline:hover {
  background: var(--dd-accent);
  color: #fff;
}

.dd-btn--light {
  background: #fff;
  color: var(--dd-ink);
}

.dd-btn--light:hover {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.dd-btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.dd-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.dd-btn--glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.dd-btn--block {
  width: 100%;
}

.dd-btn--square {
  border-radius: var(--dd-radius-sm);
}

.dd-btn[disabled],
.dd-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.dd-glow-btn {
  animation: ddGlow 2.8s ease-in-out infinite;
}

.dd-glow-btn:hover {
  animation: none;
  border-color: var(--dd-accent);
  box-shadow: 0 0 0 7px rgba(79, 70, 229, 0.22), 0 14px 38px rgba(79, 70, 229, 0.55);
}

.dd-glow-soft {
  animation: ddGlowSoft 3.4s ease-in-out infinite;
}

.dd-glow-soft:hover {
  animation: none;
  border-color: var(--dd-accent);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.16), 0 8px 22px rgba(79, 70, 229, 0.32);
}

.dd-link {
  color: var(--dd-accent);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.dd-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dd-link--underline {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
/* Le sticky vit sur le WRAPPER de section Shopify (.dd-header-section) :
   posé sur .dd-header seul, il resterait confiné dans son wrapper (qui ne
   fait que la hauteur du header) et ne collerait jamais au scroll. */
.shopify-section.dd-header-section {
  position: sticky;
  top: 0;
  z-index: 400;
  width: 100%;
  padding-top: 14px;
  margin-bottom: -86px;
  background-color: transparent;
  pointer-events: none;
}

/* Respecte le réglage « En-tête fixe » décoché dans l'éditeur */
.shopify-section.dd-header-section:has(.dd-header--static) {
  position: static;
  margin-bottom: 14px;
}

.dd-header {
  position: relative;
  z-index: 100;
  padding: 0 clamp(12px, 3vw, 24px);
  margin: 0;
  pointer-events: auto;
}

.dd-header__inner {
  max-width: 1160px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(234, 237, 240, 0.9);
  border-radius: var(--dd-pill);
  box-shadow: 0 12px 38px rgba(16, 24, 40, 0.12);
  padding: 9px 12px 9px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dd-logo {
  text-decoration: none;
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: var(--dd-ink);
  display: flex;
  align-items: center;
  gap: 9px;
}

.dd-logo__img {
  display: block;
  width: auto;
}

.dd-logo__drop {
  position: relative;
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dd-logo__drop::before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--dd-accent);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
  box-shadow: 0 3px 7px rgba(16, 24, 40, 0.22);
}

.dd-logo__drop::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

.dd-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
}

.dd-navitem {
  position: relative;
}

.dd-navitem::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  right: -10px;
  height: 16px;
}

.dd-navlink {
  text-decoration: none;
  color: #4a515b;
  padding: 9px 13px;
  border-radius: var(--dd-pill);
  display: inline-flex;
  align-items: center;
  transition: color 0.18s ease;
}

.dd-navlink:hover,
.dd-navlink[aria-current="page"] {
  color: var(--dd-accent);
}

.dd-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--dd-line-2);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.16);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  margin: 0;
  list-style: none;
}

.dd-navitem:hover .dd-dropdown,
.dd-navitem:focus-within .dd-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dd-ddlink {
  display: block;
  padding: 11px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dd-body-2);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}

.dd-ddlink:hover {
  background: #f0effc;
  color: var(--dd-accent);
}

.dd-caret {
  display: inline-block;
  margin-left: 5px;
  font-size: 9px;
  opacity: 0.55;
  transition: transform 0.2s ease;
}

.dd-navitem:hover .dd-caret {
  transform: rotate(180deg);
}

.dd-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dd-header__cta {
  padding: 11px 20px;
  font-size: 14px;
}

.dd-header__cta--soft {
  padding: 9.5px 18px;
  font-size: 14px;
}

.dd-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--dd-ink);
  text-decoration: none;
  transition: background 0.18s ease;
}

.dd-cart-link:hover {
  background: rgba(16, 24, 40, 0.06);
}

.dd-cart-link__count {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--dd-pill);
  background: var(--dd-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.dd-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--dd-line);
  border-radius: 50%;
  background: #fff;
  color: var(--dd-ink);
  cursor: pointer;
}

.dd-mobile-nav {
  display: none;
  max-width: 1160px;
  margin: 10px auto 0;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.16);
  padding: 12px;
}

.dd-mobile-nav[data-open="true"] {
  display: block;
}

.dd-mobile-nav__link {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--dd-ink);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.dd-mobile-nav__link:hover {
  background: #f0effc;
  color: var(--dd-accent);
}

.dd-mobile-nav__sublink {
  display: block;
  padding: 9px 14px 9px 26px;
  border-radius: 10px;
  color: var(--dd-body);
  font-size: 14px;
  text-decoration: none;
}

.dd-mobile-nav__sublink:hover {
  background: #f6f6fd;
  color: var(--dd-accent);
}

@media (max-width: 1080px) {
  .dd-nav {
    display: none;
  }

  .dd-burger {
    display: inline-flex;
  }

  .dd-header__cta--soft {
    display: none;
  }
}

@media (max-width: 640px) {
  .dd-header__cta {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   8. Announcement bar
   -------------------------------------------------------------------------- */
.dd-announcement {
  background: var(--dd-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 10px var(--dd-gutter);
}

.dd-announcement a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.dd-hero {
  position: relative;
  overflow: hidden;
  background: var(--dd-darker);
  display: flex;
  align-items: center;
}

.dd-hero--full {
  min-height: 100vh;
}

.dd-hero--tall {
  min-height: 640px;
}

.dd-hero--medium {
  min-height: 520px;
}

.dd-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dd-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 9, 18, 0.94) 0%,
    rgba(6, 9, 18, 0.72) 42%,
    rgba(6, 9, 18, 0.34) 100%
  );
}

.dd-hero__scrim--center {
  background: linear-gradient(
    180deg,
    rgba(6, 9, 18, 0.62) 0%,
    rgba(6, 9, 18, 0.48) 45%,
    rgba(6, 9, 18, 0.78) 100%
  );
}

.dd-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(55% 45% at 66% 40%, rgba(219, 39, 119, 0.2), transparent 72%);
}

.dd-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--dd-page-width);
  margin: 0 auto;
  padding: clamp(104px, 13vw, 132px) var(--dd-gutter) clamp(56px, 7vw, 72px);
}

.dd-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

@media (min-width: 900px) {
  .dd-hero__grid--split {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.dd-hero__body {
  max-width: 720px;
}

.dd-hero__title {
  font-weight: 800;
  font-size: clamp(38px, 6vw, 76px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin-top: 20px;
  color: #fff;
}

.dd-hero__text {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 22px;
  max-width: 500px;
}

.dd-hero--center .dd-hero__body,
.dd-hero--center .dd-hero__text {
  margin-left: auto;
  margin-right: auto;
}

.dd-hero--center {
  text-align: center;
}

.dd-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.dd-hero--center .dd-hero__actions {
  justify-content: center;
}

.dd-hero__card {
  background: #fbfaf7;
  border-radius: 22px;
  padding: clamp(20px, 3vw, 34px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.dd-hero__card img {
  display: block;
  width: 100%;
  border-radius: 10px;
  mix-blend-mode: multiply;
}

.dd-hero__card--light {
  background: linear-gradient(150deg, #f4f1fb 0%, #fbfafe 100%);
  border: 1px solid #ece9f6;
  border-radius: var(--dd-radius-xl);
  box-shadow: 0 30px 70px rgba(16, 24, 40, 0.1);
}

/* Hero clair (page Programme) */
.dd-hero--light {
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 75%);
}

.dd-hero--light .dd-hero__title {
  color: var(--dd-ink);
}

.dd-hero--light .dd-hero__text {
  color: var(--dd-body);
}

.dd-hero--light .dd-scrolldown {
  color: var(--dd-ink);
  border-color: rgba(16, 24, 40, 0.35);
  background: rgba(16, 24, 40, 0.04);
}

.dd-hero__links--stacked {
  margin-top: 30px;
  max-width: 420px;
}

.dd-hero__links {
  display: grid;
  gap: 8px;
}

@media (min-width: 700px) {
  .dd-hero__links--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

.dd-hpill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 10px 15px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dd-hpill:hover {
  background: rgba(79, 70, 229, 0.28);
  border-color: rgba(165, 160, 245, 0.65);
  transform: translateX(4px);
}

.dd-hpill .ar {
  opacity: 0.6;
  transition: transform 0.2s ease;
}

.dd-hpill:hover .ar {
  transform: translateX(4px);
  opacity: 1;
}

.dd-scrolldown {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, border-color 0.2s ease;
  animation: ddScrollBounce 1.8s ease-in-out infinite;
}

.dd-scrolldown:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.8);
}

/* Crossfade morph (titre animé du hero) */
.dd-morph {
  position: relative;
  display: block;
  height: 1.12em;
}

.dd-morph__layer {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.dd-morph__accent {
  color: var(--dd-accent);
}

.dd-hero--center .dd-morph__layer {
  left: 50%;
  transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
  .dd-morph__layer {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.dd-stats {
  background: var(--dd-accent);
}

.dd-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 34px 24px;
}

.dd-stat__value {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(36px, 4.4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.dd-stat__label {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 12px;
}

.dd-stats__source {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.66);
  margin-top: 32px;
}

.dd-stats--light .dd-stat__value {
  color: var(--dd-ink);
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
}

.dd-stats--light .dd-stat__label {
  color: var(--dd-body);
  font-size: 14px;
  max-width: 220px;
  margin-inline: auto;
  margin-top: 14px;
}

.dd-stats--accent .dd-stat__value {
  color: var(--dd-accent);
  font-size: clamp(34px, 4vw, 48px);
}

.dd-stats--accent .dd-stat__label {
  color: var(--dd-body);
  font-size: 14px;
  margin-top: 8px;
}

.dd-stats--boxed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--dd-line);
  border: 1px solid var(--dd-line);
  border-radius: 20px;
  overflow: hidden;
}

.dd-stats--boxed .dd-stat {
  background: #fff;
  padding: clamp(26px, 3vw, 34px);
}

.dd-stats--boxed .dd-stat__value {
  color: var(--dd-accent);
  font-size: clamp(34px, 4vw, 48px);
}

.dd-stats--boxed .dd-stat__label {
  color: var(--dd-body);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   11. Cartes & blocs de contenu
   -------------------------------------------------------------------------- */
.dd-card {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 20px;
  padding: clamp(26px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(16, 24, 40, 0.12);
}

.dd-card--center {
  text-align: center;
  align-items: center;
}

.dd-card--flat:hover {
  transform: none;
  box-shadow: none;
}

.dd-card__title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
}

.dd-card__text {
  color: var(--dd-body);
  font-size: 15.5px;
  line-height: 1.72;
}

.dd-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--dd-accent);
  background: rgba(79, 70, 229, 0.09);
  padding: 4px 11px;
  border-radius: var(--dd-pill);
  white-space: nowrap;
}

.dd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

/* Cartes d'orientation (« Je suis concerné », « Je suis parent ») */
.dd-choicecard {
  position: relative;
  background: transparent;
  border: 1px solid var(--dd-ink);
  border-radius: var(--dd-radius-xl);
  padding: clamp(30px, 3.6vw, 44px);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.dd-choicecard__media {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.dd-choicecard__media img {
  max-height: 132px;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.dd-choicecard__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dd-muted);
  margin-top: 6px;
}

.dd-choicecard__title {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 10px 0 8px;
}

.dd-choicecard__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--dd-body);
  margin: 0 auto 26px;
  max-width: 320px;
}

.dd-choicecard__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: auto;
}

.dd-choice {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  color: var(--dd-ink);
  border: 1px solid var(--dd-ink);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: var(--dd-radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease,
    border-color 0.22s ease;
}

.dd-choice:hover {
  background: rgba(16, 24, 40, 0.05);
  transform: translateY(-2px);
}

.dd-choice .dd-arrow {
  opacity: 0.5;
  transition: transform 0.22s ease;
}

.dd-choice:hover .dd-arrow {
  transform: translateX(4px);
}

/* Bloc numéroté (pages Parents / Solutions) */
.dd-pblocks {
  max-width: 1080px;
  margin: clamp(40px, 5vw, 64px) auto 0;
  border-top: 1px solid var(--dd-line);
}

.dd-pblock {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  padding: clamp(32px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--dd-line);
  scroll-margin-top: 100px;
}

.dd-pblock:last-child {
  border-bottom: none;
}

.dd-pblock__left {
  flex: 1 1 320px;
  max-width: 40%;
  min-width: 260px;
}

.dd-pblock__right {
  flex: 1 1 480px;
  min-width: 280px;
}

.dd-pblock__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.dd-pblock__num {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--dd-accent);
}

.dd-pblock__title {
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 25px);
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.dd-pblock__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
  padding-left: calc(clamp(30px, 3.4vw, 42px) + 16px);
}

.dd-pblock__text {
  color: var(--dd-body);
  font-size: 15.5px;
  line-height: 1.75;
}

.dd-pblock__text + .dd-pblock__text {
  margin-top: 14px;
}

@media (max-width: 760px) {
  .dd-pblock__left {
    max-width: 100%;
  }
}

/* Séparateur de chapitre */
.dd-chapter {
  background: rgba(6, 9, 18, 0.035);
  border-top: 1px solid var(--dd-line);
  border-bottom: 1px solid var(--dd-line);
  scroll-margin-top: 90px;
}

.dd-chapter__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--dd-gutter);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Liste de ressources (nom + détail) */
.dd-reslist {
  border-top: 1px solid var(--dd-line);
}

.dd-reslist__item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--dd-line);
}

.dd-reslist__item--stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.dd-reslist__name {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--dd-ink);
  min-width: 200px;
}

.dd-reslist__item--stacked .dd-reslist__name {
  min-width: 0;
}

.dd-reslist__detail {
  color: var(--dd-body);
  font-size: 14.5px;
}

.dd-reslist__phone {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--dd-danger);
  text-decoration: none;
}

/* Références bibliographiques */
.dd-refgroup + .dd-refgroup {
  margin-top: 40px;
}

.dd-refgroup__title {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--dd-accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.dd-ref {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--dd-line);
}

.dd-ref:last-child {
  border-bottom: none;
}

.dd-ref__num {
  color: #c7cad1;
  font-weight: 700;
  font-size: 13px;
  padding-top: 2px;
}

.dd-ref__text {
  color: #3a4049;
  font-size: 15px;
  line-height: 1.6;
}

.dd-ref__text strong {
  color: var(--dd-ink);
}

/* Encadré mis en avant */
.dd-callout {
  background: var(--dd-accent-soft-strong);
  border-radius: var(--dd-radius-lg);
  padding: clamp(28px, 3.5vw, 40px);
  text-align: center;
}

.dd-callout--soft {
  background: var(--dd-accent-soft);
}

.dd-callout--outline {
  background: var(--dd-surface-3);
  border: 1px solid var(--dd-line-2);
}

.dd-callout__quote {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  line-height: 1.28;
  max-width: 760px;
  margin: 0 auto;
}

.dd-callout__source {
  font-size: 13px;
  color: var(--dd-muted);
  margin-top: 16px;
}

.dd-quote {
  max-width: 640px;
  margin: clamp(44px, 6vw, 64px) auto 0;
  text-align: center;
}

.dd-quote__rule {
  width: 40px;
  height: 1px;
  background: #d8dce2;
  margin: 0 auto 24px;
}

.dd-quote__text {
  font-family: var(--dd-font-heading);
  font-style: italic;
  font-size: clamp(17px, 1.9vw, 20px);
  line-height: 1.5;
  color: var(--dd-accent);
}

/* --------------------------------------------------------------------------
   12. Onglets (à propos)
   -------------------------------------------------------------------------- */
.dd-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.dd-tab {
  font-family: var(--dd-font-heading);
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--dd-pill);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 1px solid #d8dce2;
  background: transparent;
  color: var(--dd-body);
}

.dd-tab[aria-selected="true"] {
  border-color: var(--dd-accent);
  background: var(--dd-accent);
  color: #fff;
}

.dd-tabpanel[hidden] {
  display: none;
}

.dd-tabpanel {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(15px, 1.5vw, 16.5px);
  line-height: 1.75;
  color: #454c57;
}

.dd-tabpanel > * + * {
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   13. Features (icône + texte)
   -------------------------------------------------------------------------- */
.dd-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--dd-surface-3);
  border: 1px solid var(--dd-line);
  border-radius: 16px;
  padding: 24px 28px;
}

.dd-feature__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--dd-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-accent);
}

.dd-feature__title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.dd-feature__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--dd-body);
}

.dd-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dd-featurelist {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dd-featurelist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--dd-body-2);
}

.dd-featurelist__tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--dd-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-accent);
  font-weight: 700;
}

/* Effets alignés (page Comprendre) */
.dd-effect {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius-lg);
  padding: clamp(24px, 3vw, 32px) clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 40px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dd-effect:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.12);
}

.dd-effect__title {
  flex: 0 0 240px;
  font-weight: 700;
  font-size: 20px;
}

.dd-effect__text {
  flex: 1 1 400px;
  color: var(--dd-body);
  font-size: 15.5px;
  line-height: 1.72;
}

/* Étapes en zigzag (mécanisme) */
.dd-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.dd-step {
  width: min(54%, 560px);
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius);
  padding: 22px 24px;
  position: relative;
  z-index: 1;
}

.dd-step:nth-child(odd) {
  margin-left: auto;
}

.dd-step:nth-child(even) {
  margin-right: auto;
}

.dd-step__inner {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.dd-step__num {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--dd-accent);
  line-height: 1;
}

.dd-step__title {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 8px;
}

.dd-step__text {
  color: var(--dd-body);
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .dd-step {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   14. Témoignages
   -------------------------------------------------------------------------- */
.dd-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.dd-testimonial {
  display: flex;
  flex-direction: column;
  background: #fbfbfe;
  border: 1px solid #ded9f7;
  border-top: 3px solid var(--dd-accent);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dd-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(79, 70, 229, 0.12);
}

.dd-testimonial--teal {
  background: #fff;
  border-color: #d3ece8;
  border-top-color: var(--dd-teal);
}

.dd-testimonial--teal:hover {
  box-shadow: 0 20px 44px rgba(13, 148, 136, 0.12);
}

.dd-testimonial__meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a5a0f5;
}

.dd-testimonial--teal .dd-testimonial__meta {
  color: #5fbfb4;
}

.dd-testimonial__mark {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 56px;
  line-height: 0.4;
  color: var(--dd-accent);
  opacity: 0.22;
  margin: 18px 0 6px;
}

.dd-testimonial--teal .dd-testimonial__mark {
  color: var(--dd-teal);
}

.dd-testimonial__text {
  color: var(--dd-ink-2);
  font-size: 15px;
  line-height: 1.72;
  margin-bottom: 24px;
  flex: 1;
}

.dd-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--dd-line-2);
  padding-top: 18px;
}

.dd-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dd-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 16px;
  flex: none;
}

.dd-testimonial--teal .dd-testimonial__avatar {
  background: var(--dd-teal);
}

.dd-testimonial__name {
  color: var(--dd-body);
  font-size: 14px;
  font-weight: 500;
}

.dd-testimonial--plain {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
}

.dd-testimonial--plain:hover {
  transform: none;
  box-shadow: none;
}

.dd-testimonial--plain .dd-testimonial__meta {
  color: var(--dd-muted);
  font-size: 11.5px;
  letter-spacing: 0.16em;
}

.dd-testimonial--plain .dd-testimonial__mark {
  font-size: 42px;
  line-height: 1;
  opacity: 0.35;
  margin: 10px 0 0;
}

.dd-testimonial--plain .dd-testimonial__text {
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.65;
  color: #2a2e36;
  margin: 4px 0 18px;
}

.dd-testimonial--plain .dd-testimonial__author {
  border: none;
  padding: 0;
  justify-content: center;
}

.dd-testimonial--plain .dd-testimonial__name {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--dd-ink);
}

.dd-grouplabel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.dd-grouplabel__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--dd-font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dd-accent);
  background: #f0effc;
  padding: 8px 15px;
  border-radius: var(--dd-pill);
}

.dd-grouplabel__pill--teal {
  color: var(--dd-teal);
  background: #e4f5f2;
}

.dd-grouplabel__rule {
  flex: 1;
  height: 1px;
  background: var(--dd-line);
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.dd-faqgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 0 clamp(28px, 3vw, 48px);
  align-items: start;
}

.dd-faq {
  border: 1px solid var(--dd-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease;
}

.dd-faq[open] {
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
}

.dd-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--dd-ink);
}

.dd-faq summary::-webkit-details-marker {
  display: none;
}

.dd-faq__plus {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #c7cad1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--dd-accent);
  transition: transform 0.25s ease, border-color 0.2s ease;
}

.dd-faq[open] .dd-faq__plus {
  transform: rotate(45deg);
  border-color: var(--dd-accent);
}

.dd-faq__answer {
  padding: 0 26px 24px;
  color: #4f4b57;
  font-size: 15.5px;
  line-height: 1.72;
}

/* --------------------------------------------------------------------------
   16. Packs / tarifs
   -------------------------------------------------------------------------- */
.dd-packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.dd-pack {
  display: flex;
  flex-direction: column;
  position: relative;
  background: #fff;
  border: 1.5px solid #dadde3;
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dd-pack:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(16, 24, 40, 0.12);
}

.dd-pack--featured {
  border: 2px solid var(--dd-accent);
  box-shadow: 0 24px 56px rgba(79, 70, 229, 0.13);
}

.dd-pack--featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 66px rgba(79, 70, 229, 0.2);
}

.dd-pack__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dd-ink);
  color: #fff;
  font-family: var(--dd-font-heading);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--dd-pill);
  white-space: nowrap;
}

.dd-pack--featured .dd-pack__badge {
  background: var(--dd-accent);
}

.dd-pack__name {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--dd-ink);
}

.dd-pack__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 22px;
  flex-wrap: wrap;
}

.dd-pack__compare {
  font-size: 19px;
  color: #b4b9c1;
  text-decoration: line-through;
}

.dd-pack__price {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--dd-ink);
  line-height: 1;
}

.dd-pack--featured .dd-pack__price {
  color: var(--dd-accent);
}

.dd-pack__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  flex: 1;
}

.dd-pack__item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--dd-body-2);
  line-height: 1.5;
}

.dd-pack__tick {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--dd-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-accent);
  margin-top: 1px;
}

.dd-pack__save {
  font-size: 13px;
  font-weight: 700;
  color: #4a515b;
  background: #f1f3f5;
  padding: 8px 14px;
  border-radius: var(--dd-radius-sm);
  text-align: center;
  margin-bottom: 16px;
}

.dd-pack--featured .dd-pack__save {
  color: var(--dd-accent);
  background: var(--dd-accent-soft);
}

.dd-pack__note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--dd-muted-2);
  margin-top: 12px;
  text-align: center;
}

/* Tableau comparatif */
.dd-table-wrap {
  overflow-x: auto;
}

.dd-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 14.5px;
}

.dd-table th,
.dd-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--dd-line-2);
  text-align: center;
}

.dd-table thead th {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--dd-ink);
  border-bottom: 1px solid var(--dd-line);
  padding: 16px 14px;
}

.dd-table th:first-child,
.dd-table td:first-child {
  text-align: left;
  color: var(--dd-body-2);
}

.dd-table__col--highlight {
  background: var(--dd-accent-soft);
  color: var(--dd-accent);
}

.dd-table thead .dd-table__col--highlight {
  color: var(--dd-accent);
  border-bottom: 2px solid var(--dd-accent);
}

.dd-table__yes {
  color: var(--dd-accent);
  font-weight: 700;
}

.dd-table__no {
  color: #c7cad1;
}

/* Liste produits simple */
.dd-simplelist {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
}

.dd-simplelist__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--dd-line-2);
}

.dd-simplelist__row:last-child {
  border-bottom: none;
}

.dd-simplelist__title {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--dd-ink);
}

.dd-simplelist__meta {
  font-size: 13.5px;
  color: var(--dd-muted);
  margin-top: 4px;
}

.dd-simplelist__main {
  flex: 1 1 260px;
}

.dd-simplelist__price {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 19px;
  color: var(--dd-ink);
}

/* Répartition des bénéfices */
.dd-allocation {
  max-width: 760px;
  margin: clamp(32px, 4vw, 48px) auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 32px);
}

.dd-allocation__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.dd-allocation__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--dd-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-accent);
}

.dd-allocation__title {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--dd-ink);
}

.dd-allocation__text {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.5;
  margin-top: 2px;
}

.dd-allocation__pct {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--dd-accent);
}

.dd-allocation__track {
  height: 12px;
  background: #edeff2;
  border-radius: var(--dd-pill);
  overflow: hidden;
}

.dd-allocation__bar {
  width: 0;
  height: 100%;
  background: var(--dd-accent);
  border-radius: var(--dd-pill);
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Maquette téléphone */
.dd-phone {
  position: relative;
  width: 260px;
  height: 520px;
  margin: 0 auto;
  background: linear-gradient(170deg, #0c1120 0%, #141b2e 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 90px rgba(11, 17, 32, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.dd-phone__notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #05070d;
  border-radius: var(--dd-pill);
  z-index: 3;
}

.dd-phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(70% 55% at 50% 30%, rgba(79, 70, 229, 0.28), transparent 70%), #080b14;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.dd-phone__brand {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #fff;
}

.dd-phone__caption {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

.dd-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dd-accent);
  background: var(--dd-accent-soft);
  padding: 7px 14px;
  border-radius: var(--dd-pill);
}

.dd-badge-live__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dd-accent);
  animation: ddPulseDot 1.6s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   17. Profils de résultats (page Test)
   -------------------------------------------------------------------------- */
.dd-profileband {
  border-top: 1px solid var(--dd-line);
  border-bottom: 1px solid var(--dd-line);
  padding: 16px var(--dd-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--dd-font-heading);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dd-profileband__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}

.dd-profileband--green {
  background: #f6fbf8;
  color: var(--dd-success);
}

.dd-profileband--amber {
  background: #fef9f0;
  color: var(--dd-warning);
}

.dd-profileband--red {
  background: #fdf3f3;
  color: var(--dd-danger);
}

.dd-profile {
  text-align: center;
}

.dd-profile--green {
  background: #fbfefc;
}

.dd-profile--amber {
  background: #fffdf9;
}

.dd-profile--red {
  background: #fffcfc;
}

.dd-profile__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: var(--dd-pill);
}

.dd-profile__pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.dd-profile--green .dd-profile__pill {
  color: var(--dd-success);
  background: #e4f5ec;
}

.dd-profile--amber .dd-profile__pill {
  color: var(--dd-warning);
  background: #fbeed6;
}

.dd-profile--red .dd-profile__pill {
  color: var(--dd-danger);
  background: #fbe3e3;
}

.dd-profile__box {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius);
  padding: 24px 26px;
  margin-top: 16px;
  text-align: left;
}

.dd-profile--green .dd-profile__box {
  border-color: #dceee4;
}

.dd-profile--amber .dd-profile__box {
  border-color: #f1e2c4;
}

.dd-profile--red .dd-profile__box {
  border-color: #f3d4d4;
}

.dd-profile__boxtitle {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--dd-ink);
  margin-bottom: 10px;
  text-align: center;
}

.dd-profile__boxtext {
  font-size: 15px;
  line-height: 1.7;
  color: #4f4b57;
}

.dd-profile__cta {
  border-radius: 16px;
  padding: 28px 30px;
  margin-top: 24px;
}

.dd-profile--amber .dd-profile__cta {
  background: #fef9f0;
  border: 1px solid #f1e2c4;
}

.dd-profile--red .dd-profile__cta {
  background: #fdf3f3;
  border: 1px solid #f3d4d4;
}

.dd-inline-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}

/* Encadré « à dire / à éviter » */
.dd-dodont {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.dd-dodont__col {
  border-radius: 16px;
  padding: 22px;
}

.dd-dodont__col--do {
  background: #f1f8f3;
  border: 1px solid #d6ecdc;
}

.dd-dodont__col--dont {
  background: #fbf1f2;
  border: 1px solid #f1d6d9;
}

.dd-dodont__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dd-dodont__label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.dd-dodont__col--do .dd-dodont__label {
  color: #1f8a5b;
}

.dd-dodont__col--dont .dd-dodont__label {
  color: #c0392b;
}

.dd-dodont__col p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.dd-dodont__col--do p {
  color: #3b5346;
}

.dd-dodont__col--dont p {
  color: #6e4b48;
}

/* --------------------------------------------------------------------------
   18. Newsletter / formulaires
   -------------------------------------------------------------------------- */
.dd-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dd-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.dd-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dd-body-2);
}

.dd-input,
.dd-select,
.dd-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--dd-ink);
  background: #fff;
  border: 1px solid #d2d7dd;
  border-radius: var(--dd-radius-sm);
  padding: 13px 15px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.dd-input:focus,
.dd-select:focus,
.dd-textarea:focus {
  outline: none;
  border-color: var(--dd-accent);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.14);
}

.dd-textarea {
  min-height: 140px;
  resize: vertical;
}

.dd-form__message {
  font-size: 14px;
  line-height: 1.6;
  border-radius: var(--dd-radius-sm);
  padding: 12px 14px;
}

.dd-form__message--success {
  color: #1f8a5b;
  background: #f0faf5;
  border: 1px solid #c7edd9;
}

.dd-form__message--error {
  color: var(--dd-danger);
  background: #fdf0f0;
  border: 1px solid #f5cbcb;
}

.dd-form__message ul {
  margin: 6px 0 0;
  padding-left: 18px;
}

/* Newsletter inline (footer) */
.dd-newsletter-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 5px 5px 5px 14px;
  transition: border-color 0.18s ease;
}

.dd-newsletter-inline:focus-within {
  border-color: rgba(165, 160, 245, 0.5);
}

.dd-newsletter-inline input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13.5px;
  font-family: inherit;
}

.dd-newsletter-inline input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.dd-newsletter-inline button {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 9px;
  background: var(--dd-accent);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.dd-newsletter-inline button:hover {
  background: var(--dd-accent-dark);
}

.dd-newsletter-card {
  max-width: 520px;
  margin: 0 auto;
}

.dd-newsletter-card .dd-form {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.dd-newsletter-card .dd-field {
  flex: 1 1 240px;
}

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.dd-footer {
  position: relative;
  overflow: hidden;
  background: var(--dd-dark);
  color: #fff;
  background-image:
    radial-gradient(70% 90% at 12% 0%, rgba(79, 70, 229, 0.14), transparent 60%),
    radial-gradient(60% 80% at 95% 8%, rgba(79, 70, 229, 0.09), transparent 60%);
}

.dd-footer__top {
  position: relative;
  z-index: 2;
  max-width: var(--dd-page-width);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 88px) var(--dd-gutter) clamp(24px, 3vw, 36px);
}

.dd-footer__cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(24px, 3vw, 44px);
}

@media (max-width: 1000px) {
  .dd-footer__cols {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .dd-footer__cols {
    grid-template-columns: 1fr;
  }
}

.dd-footer__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}

.dd-footer__heading::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dd-accent);
}

.dd-footer__links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.dd-footer__link {
  text-decoration: none;
  color: #9ca0ac;
  font-size: 14.5px;
  transition: color 0.18s ease;
}

.dd-footer__link:hover {
  color: #fff;
}

.dd-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.dd-social {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c9ccd4;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.dd-social:hover {
  background: rgba(79, 70, 229, 0.16);
  color: #fff;
  border-color: rgba(165, 160, 245, 0.4);
}

.dd-footer__email {
  display: block;
  text-decoration: none;
  color: #c9ccd4;
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.18s ease;
}

.dd-footer__email:hover {
  color: #fff;
}

.dd-footer__newstitle {
  font-size: 13px;
  font-weight: 600;
  color: #e6e7eb;
  margin-bottom: 10px;
}

.dd-footer__watermark {
  position: relative;
  z-index: 1;
  padding: 0 clamp(12px, 2vw, 24px);
  user-select: none;
  pointer-events: none;
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(48px, 12.5vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--dd-accent);
  opacity: 0.1;
  white-space: nowrap;
}

.dd-footer__bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dd-footer__bottominner {
  max-width: var(--dd-page-width);
  margin: 0 auto;
  padding: 22px var(--dd-gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  gap: 10px;
}

.dd-footer__copy {
  color: #6b7280;
  font-size: 12.5px;
  text-align: center;
}

.dd-footer__copy a {
  color: #6b7280;
  text-decoration: none;
}

.dd-footer__copy a:hover {
  color: #9ca0ac;
}

.dd-totop {
  position: absolute;
  right: var(--dd-gutter);
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #c9ccd4;
  text-decoration: none;
  font-size: 17px;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.dd-totop:hover {
  background: rgba(79, 70, 229, 0.16);
  color: #fff;
  border-color: rgba(165, 160, 245, 0.4);
}

@media (max-width: 700px) {
  .dd-totop {
    display: none;
  }
}

.dd-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.dd-payment-icons svg {
  width: 38px;
  height: 24px;
}

/* --------------------------------------------------------------------------
   20. Produit
   -------------------------------------------------------------------------- */
.dd-product {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

@media (min-width: 900px) {
  .dd-product {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.dd-product__media {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 899px) {
  .dd-product__media {
    position: static;
  }
}

.dd-product__mainimage {
  background: linear-gradient(150deg, #f4f1fb 0%, #fbfafe 100%);
  border: 1px solid #ece9f6;
  border-radius: var(--dd-radius-xl);
  padding: clamp(20px, 3vw, 36px);
  overflow: hidden;
}

.dd-product__mainimage img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.dd-product__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dd-product__thumb {
  width: 76px;
  height: 76px;
  border-radius: 12px;
  border: 1px solid var(--dd-line);
  background: #fff;
  padding: 4px;
  cursor: pointer;
  overflow: hidden;
}

.dd-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.dd-product__thumb[aria-current="true"] {
  border-color: var(--dd-accent);
  box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.18);
}

.dd-product__vendor {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dd-muted);
}

.dd-product__title {
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 14px 0 0;
}

.dd-product__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 0;
}

.dd-product__description {
  margin-top: 24px;
  color: var(--dd-body);
  font-size: 15.5px;
  line-height: 1.75;
}

.dd-price {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--dd-ink);
  line-height: 1;
}

.dd-price--sale {
  color: var(--dd-accent);
}

.dd-price__compare {
  font-size: 19px;
  color: #b4b9c1;
  text-decoration: line-through;
}

.dd-price--card {
  font-size: 19px;
}

.dd-price--card .dd-price__compare {
  font-size: 15px;
}

.dd-price__unit {
  font-size: 13px;
  color: var(--dd-muted);
}

.dd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--dd-pill);
}

.dd-badge--sale {
  background: var(--dd-accent-soft);
  color: var(--dd-accent);
}

.dd-badge--soldout {
  background: #f1f3f5;
  color: #6b7280;
}

.dd-variant-picker {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 26px;
}

.dd-variant-option__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dd-muted);
  margin-bottom: 10px;
}

.dd-variant-option__values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.dd-swatch {
  position: relative;
}

.dd-swatch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.dd-swatch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border: 1px solid #d2d7dd;
  border-radius: var(--dd-radius-sm);
  background: #fff;
  color: #454c57;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.dd-swatch input:checked + span {
  background: var(--dd-accent);
  border-color: var(--dd-accent);
  color: #fff;
}

.dd-swatch input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.24);
}

.dd-swatch input:disabled + span {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.dd-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d2d7dd;
  border-radius: var(--dd-radius-sm);
  overflow: hidden;
  background: #fff;
}

.dd-quantity button {
  width: 42px;
  height: 46px;
  border: none;
  background: transparent;
  color: var(--dd-ink);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.18s ease;
}

.dd-quantity button:hover {
  background: #f4f6f8;
}

.dd-quantity input {
  width: 56px;
  height: 46px;
  border: none;
  border-inline: 1px solid #d2d7dd;
  text-align: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--dd-ink);
  -moz-appearance: textfield;
}

.dd-quantity input::-webkit-outer-spin-button,
.dd-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.dd-buy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.dd-buy__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dd-buy__row .dd-btn {
  flex: 1 1 220px;
}

.dd-product__meta {
  margin-top: 28px;
  border-top: 1px solid var(--dd-line);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--dd-body);
}

.dd-product__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.dd-product__meta-row dt {
  color: var(--dd-muted);
}

.dd-product__meta-row dd {
  margin: 0;
  font-weight: 600;
  color: var(--dd-ink);
}

.dd-collapsible {
  border-top: 1px solid var(--dd-line);
}

.dd-collapsible summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--dd-ink);
}

.dd-collapsible summary::-webkit-details-marker {
  display: none;
}

.dd-collapsible__body {
  padding-bottom: 20px;
  color: var(--dd-body);
  font-size: 15px;
  line-height: 1.72;
}

/* --------------------------------------------------------------------------
   21. Collection / cartes produit
   -------------------------------------------------------------------------- */
.dd-collection__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(32px, 4vw, 48px);
}

.dd-collection__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dd-line);
  margin-bottom: clamp(24px, 3vw, 36px);
}

.dd-collection__count {
  font-size: 14px;
  color: var(--dd-muted);
}

.dd-productgrid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.dd-productgrid--2 {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.dd-productgrid--4 {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.dd-productcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dd-productcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(16, 24, 40, 0.1);
}

.dd-productcard__media {
  position: relative;
  display: block;
  background: linear-gradient(150deg, #f4f1fb 0%, #fbfafe 100%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.dd-productcard__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  transition: transform 0.35s ease;
}

.dd-productcard:hover .dd-productcard__media img {
  transform: scale(1.03);
}

.dd-productcard__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c7cad1;
}

.dd-productcard__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.dd-productcard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px 22px;
  flex: 1;
}

.dd-productcard__vendor {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dd-muted);
}

.dd-productcard__title {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.dd-productcard__title a {
  color: var(--dd-ink);
  text-decoration: none;
}

.dd-productcard__title a:hover {
  color: var(--dd-accent);
}

.dd-productcard__excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--dd-muted);
}

.dd-productcard__footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.dd-empty {
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
  color: var(--dd-body);
}

/* Pagination */
.dd-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: clamp(36px, 5vw, 56px);
}

.dd-pagination__item {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius-sm);
  color: var(--dd-ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: #fff;
  transition: all 0.18s ease;
}

.dd-pagination__item:hover {
  border-color: var(--dd-accent);
  color: var(--dd-accent);
}

.dd-pagination__item[aria-current="page"] {
  background: var(--dd-accent);
  border-color: var(--dd-accent);
  color: #fff;
}

.dd-pagination__gap {
  color: var(--dd-muted);
  padding: 0 4px;
}

/* --------------------------------------------------------------------------
   22. Panier
   -------------------------------------------------------------------------- */
.dd-cart__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

@media (min-width: 950px) {
  .dd-cart__layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.9fr);
  }
}

.dd-cart__items {
  border-top: 1px solid var(--dd-line);
}

.dd-cartline {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--dd-line);
  align-items: start;
}

.dd-cartline__image {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  border: 1px solid var(--dd-line);
  background: linear-gradient(150deg, #f4f1fb 0%, #fbfafe 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dd-cartline__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.dd-cartline__body {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.dd-cartline__info {
  flex: 1 1 220px;
}

.dd-cartline__title {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--dd-ink);
  text-decoration: none;
}

.dd-cartline__title:hover {
  color: var(--dd-accent);
}

.dd-cartline__variant {
  font-size: 13.5px;
  color: var(--dd-muted);
  margin-top: 4px;
}

.dd-cartline__props {
  font-size: 12.5px;
  color: var(--dd-muted);
  margin-top: 6px;
}

.dd-cartline__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.dd-cartline__remove {
  font-size: 13px;
  color: var(--dd-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.dd-cartline__remove:hover {
  color: var(--dd-danger);
}

.dd-cartline__total {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--dd-ink);
}

.dd-cart__summary {
  background: var(--dd-surface-3);
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius-lg);
  padding: clamp(24px, 3vw, 32px);
  position: sticky;
  top: 100px;
}

@media (max-width: 949px) {
  .dd-cart__summary {
    position: static;
  }
}

.dd-cart__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  color: var(--dd-body);
  padding: 8px 0;
}

.dd-cart__row--total {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 20px;
  color: var(--dd-ink);
  border-top: 1px solid var(--dd-line);
  margin-top: 10px;
  padding-top: 16px;
}

.dd-cart__note {
  margin-top: 16px;
}

.dd-cart__taxnote {
  font-size: 12.5px;
  color: var(--dd-muted);
  margin-top: 12px;
  text-align: center;
}

/* --------------------------------------------------------------------------
   23. Articles / blog
   -------------------------------------------------------------------------- */
.dd-articlegrid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.dd-articlecard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dd-articlecard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(16, 24, 40, 0.1);
}

.dd-articlecard__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.dd-articlecard__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.dd-articlecard__date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dd-muted);
}

.dd-articlecard__title a {
  color: var(--dd-ink);
  text-decoration: none;
}

.dd-articlecard__title a:hover {
  color: var(--dd-accent);
}

.dd-article {
  max-width: 760px;
  margin: 0 auto;
}

.dd-article__header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.dd-article__image {
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.dd-article__body {
  font-size: 16.5px;
  line-height: 1.78;
  color: #454c57;
}

.dd-comment {
  border-top: 1px solid var(--dd-line);
  padding: 22px 0;
}

.dd-comment__meta {
  font-size: 13px;
  color: var(--dd-muted);
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   24. Comptes clients
   -------------------------------------------------------------------------- */
.dd-account {
  max-width: 520px;
  margin: 0 auto;
}

.dd-account--wide {
  max-width: 960px;
}

.dd-account__card {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
}

.dd-account__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
}

.dd-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}

.dd-order-table th,
.dd-order-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--dd-line-2);
}

.dd-order-table th {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  color: var(--dd-muted);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   25. Divers
   -------------------------------------------------------------------------- */
.dd-mininav {
  position: fixed;
  top: 78px;
  left: 50%;
  transform: translateX(-50%) translateY(-14px);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-pill);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.14);
  padding: 6px 7px;
  display: flex;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
}

.dd-mininav[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dd-mininav a {
  text-decoration: none;
  color: var(--dd-body);
  padding: 8px 15px;
  border-radius: var(--dd-pill);
  transition: background 0.2s ease, color 0.2s ease;
}

.dd-mininav a:hover,
.dd-mininav a[aria-current="true"] {
  background: var(--dd-accent-soft);
  color: var(--dd-accent);
}

@media (max-width: 700px) {
  .dd-mininav {
    display: none;
  }
}

.dd-embed {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-radius-lg);
  padding: clamp(14px, 2.5vw, 26px);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.dd-embed iframe {
  display: block;
  border: none;
  width: 100%;
}

.dd-media-figure img {
  display: block;
  width: 100%;
  border-radius: var(--dd-radius-lg);
}

.dd-media-figure--blend img {
  mix-blend-mode: multiply;
}

.dd-imgtext {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.dd-imgtext--reverse > :first-child {
  order: 2;
}

@media (max-width: 700px) {
  .dd-imgtext--reverse > :first-child {
    order: 0;
  }
}

.dd-contactbox {
  background: var(--dd-surface-3);
  border: 1px solid var(--dd-line-2);
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 44px) clamp(28px, 6vw, 88px);
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
}

.dd-contactbox__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   25b. Tableau comparatif packs (dd-cmp)
   -------------------------------------------------------------------------- */
.dd-cmp__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--dd-line);
  border-radius: 18px;
  background: #fff;
}

.dd-cmp {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}

.dd-cmp th,
.dd-cmp td {
  padding: 13px 12px;
  text-align: center;
  border-bottom: 1px solid var(--dd-line-2);
  vertical-align: middle;
}

.dd-cmp tbody tr:last-child th,
.dd-cmp tbody tr:last-child td {
  border-bottom: none;
}

.dd-cmp__sticky {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  text-align: left;
  box-shadow: 1px 0 0 var(--dd-line-2);
}

.dd-cmp__rowlabel {
  font-weight: 600;
  color: var(--dd-ink);
  min-width: 185px;
  max-width: 230px;
  font-size: 14px;
  line-height: 1.4;
}

.dd-cmp__corner,
.dd-cmp__solohead {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--dd-muted);
}

.dd-cmp thead th {
  vertical-align: top;
  padding-top: 20px;
  padding-bottom: 16px;
}

.dd-cmp__packhead {
  min-width: 138px;
  position: relative;
}

.dd-cmp__badge {
  display: inline-block;
  font-family: var(--dd-font-heading);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--dd-accent);
  padding: 4px 11px;
  border-radius: var(--dd-pill);
  margin-bottom: 8px;
  white-space: nowrap;
}

.dd-cmp__packname {
  display: block;
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.25;
  color: var(--dd-ink);
}

.dd-cmp__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin-top: 8px;
}

.dd-cmp__value {
  color: #b4b9c1;
  font-size: 12.5px;
}

.dd-cmp__price {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--dd-ink);
}

.dd-cmp__savings {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #1f8a5b;
  background: #eaf6f0;
  padding: 3px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.dd-cmp__check {
  color: var(--dd-accent);
  font-weight: 800;
  font-size: 15px;
}

.dd-cmp__offered {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dd-accent);
  background: var(--dd-accent-soft);
  border: 1px solid var(--dd-accent-soft-strong);
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.dd-cmp__none {
  color: #c7cad1;
}

.dd-cmp__solo {
  min-width: 118px;
}

.dd-cmp__soloprice {
  display: block;
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--dd-body);
}

.dd-cmp__solobuy {
  margin-top: 7px;
  font-family: var(--dd-font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--dd-ink);
  background: #fff;
  border: 1.5px solid var(--dd-line);
  border-radius: 7px;
  padding: 5px 13px;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.dd-cmp__solobuy:hover {
  border-color: var(--dd-ink);
}

.dd-cmp__cta {
  vertical-align: top;
  padding-top: 16px;
  padding-bottom: 20px;
}

.dd-cmp__buy {
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 12px;
  width: 100%;
  white-space: normal;
  line-height: 1.3;
  background: #fff;
  color: var(--dd-ink);
  border: 1.5px solid var(--dd-ink);
}

.dd-cmp__buy:hover {
  background: var(--dd-ink);
  color: #fff;
}

.dd-cmp__buy--featured {
  background: var(--dd-accent);
  border-color: var(--dd-accent);
  color: #fff;
}

.dd-cmp__buy--featured:hover {
  background: var(--dd-accent-dark);
  border-color: var(--dd-accent-dark);
}

.dd-cmp__note {
  margin: 10px 0 0;
  font-size: 11px;
  font-style: italic;
  line-height: 1.45;
  color: var(--dd-muted);
}

/* Liste de produits : cartes avec badge, ombre légère et hover */
.dd-simplelist__row {
  background: #fff;
  border: 1px solid var(--dd-line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.dd-simplelist__row:hover {
  transform: translateY(-2px);
  border-color: var(--dd-accent-soft-strong);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.1);
}

.dd-availability-badge {
  display: inline-block;
  font-family: var(--dd-font-heading);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--dd-pill);
  margin-bottom: 7px;
  white-space: nowrap;
}

.dd-availability-badge--preorder {
  color: var(--dd-accent);
  background: var(--dd-accent-soft);
  border: 1px solid var(--dd-accent-soft-strong);
}

.dd-availability-badge--instant {
  color: #1f8a5b;
  background: #eaf6f0;
  border: 1px solid #c7edd9;
}

/* Stats : 2 × 2 sur mobile */
@media (max-width: 640px) {
  .dd-stats--light.dd-stats__grid,
  .dd-stats--light .dd-stat {
    text-align: center;
  }

  .dd-stats__grid.dd-stats--light {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

/* Colonne pack mise en avant */
.dd-cmp__cell--hl {
  background: var(--dd-accent-soft);
}

.dd-cmp__cell--hl-top {
  border-top: 2px solid var(--dd-accent);
}

.dd-cmp__cell--hl-bottom {
  border-bottom: 2px solid var(--dd-accent);
}

/* Stats : valeurs en couleur accent (grands chiffres violets) */
.dd-stats--accentval .dd-stat__value {
  color: var(--dd-accent);
}

/* --------------------------------------------------------------------------
   25c. Page produits — design « Claude Design » (dd-pp)
   -------------------------------------------------------------------------- */
.dd-pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dd-accent);
}

.dd-pp-eyebrow .dd-eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dd-accent);
}

.dd-pp-h2 {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(28px, 3.8vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 0;
  color: #111;
}

.dd-pp-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #6b7280;
  margin: 14px auto 0;
  max-width: 620px;
}

.dd-pp-head {
  text-align: center;
  margin-bottom: clamp(34px, 4vw, 48px);
}

/* Hero produit */
.dd-pp-hero {
  background: #fff;
}

.dd-pp-hero__inner {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  /* Le header sticky chevauche la section de ~86px : le padding-top le compense. */
  padding: clamp(150px, 17vh, 190px) clamp(20px, 4vw, 44px) clamp(28px, 4vh, 48px);
  text-align: center;
}

.dd-pp-hero__title {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(26px, 4.6vw, 54px);
  letter-spacing: -0.035em;
  line-height: 1.06;
  margin: 0;
  color: #111;
}

.dd-pp-hero__text {
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.6;
  color: #6b7280;
  margin: clamp(12px, 2vh, 22px) auto 0;
  max-width: 620px;
}

.dd-pp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: clamp(16px, 2.6vh, 30px);
}

.dd-pp-btn {
  text-decoration: none;
  display: inline-block;
  background: var(--dd-accent);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dd-pp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(79, 70, 229, 0.38);
}

.dd-pp-btn--outline {
  background: #fff;
  color: var(--dd-accent);
  border: 1.5px solid var(--dd-accent);
  padding: 14px 30px;
  transition: background 0.2s ease, color 0.2s ease;
}

.dd-pp-btn--outline:hover {
  background: var(--dd-accent);
  color: #fff;
  transform: none;
  box-shadow: none;
}

/* Bande stats violette claire */
.dd-stats--soft-band {
  background: #ede9fe;
}

.dd-stats--soft-band .dd-statsgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(16px, 2.4vw, 32px);
  text-align: center;
}

.dd-stats--soft-band .dd-stat__value {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--dd-accent);
}

.dd-stats--soft-band .dd-stat__label {
  font-size: 13.5px;
  line-height: 1.45;
  color: #6b7280;
  margin-top: 8px;
}

/* Cartes audience (« Pour qui ? ») */
.dd-pp-audience {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.dd-pp-audiencecard {
  background: #fff;
  border: 1.5px solid #ded9f7;
  border-radius: 12px;
  padding: clamp(26px, 3vw, 36px);
  box-shadow: 0 8px 26px rgba(16, 24, 40, 0.05);
}

.dd-pp-audiencecard h3 {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--dd-accent);
  margin: 0;
}

.dd-pp-audiencecard ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-align: left;
}

.dd-pp-audiencecard li {
  display: flex;
  gap: 11px;
  font-size: 15px;
  line-height: 1.6;
  color: #3f4651;
}

.dd-pp-audiencecard li::before {
  content: "✓";
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ede9fe;
  color: var(--dd-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

/* Cartes bénéfices (« Ce que vous allez obtenir ») */
.dd-pp-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.dd-pp-benefits--narrow {
  max-width: 720px;
  margin: 20px auto 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.dd-pp-benefit {
  background: #fff;
  border: 1px solid #e7eaee;
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.04);
}

.dd-pp-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ede9fe;
  color: var(--dd-accent);
}

.dd-pp-benefit h3 {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #111;
  margin: 18px 0 8px;
}

.dd-pp-benefit p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}

/* Tableau des packs (design) */
.dd-ppm__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.dd-ppm {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 14px;
}

.dd-ppm th,
.dd-ppm td {
  text-align: center;
  padding: 13px 10px;
}

.dd-ppm .dd-ppm__lead {
  position: sticky;
  left: 0;
  z-index: 2;
  background: #fff;
  text-align: left;
  padding-left: 14px;
  padding-right: 14px;
  min-width: 220px;
}

.dd-ppm thead th {
  vertical-align: bottom;
  padding: 0 10px 14px;
  min-width: 138px;
  border-bottom: 1px solid #e7eaee;
}

.dd-ppm__packname {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.25;
  color: #111;
}

.dd-ppm__bestbadge {
  display: inline-block;
  background: var(--dd-accent);
  color: #fff;
  font-family: var(--dd-font-heading);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: var(--dd-pill);
  margin-bottom: 8px;
  white-space: nowrap;
}

.dd-ppm th.dd-ppm__cell--hl {
  border-bottom: 2px solid var(--dd-accent);
}

.dd-ppm th.dd-ppm__cell--hl .dd-ppm__packname {
  color: var(--dd-accent);
}

.dd-ppm__cell--hl {
  background: #ede9fe;
}

.dd-ppm__rowmuted {
  font-size: 13px;
  color: #6b7280;
}

.dd-ppm__rowstrong {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 14.5px;
  color: #111;
}

.dd-ppm__struck {
  color: #9ca3af;
  font-size: 14px;
  text-decoration: line-through;
}

.dd-ppm__price {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #111;
}

.dd-ppm__cell--hl .dd-ppm__price {
  color: var(--dd-accent);
}

.dd-ppm__save {
  display: inline-block;
  background: #e8f6ef;
  color: #059669;
  font-weight: 700;
  font-size: 12.5px;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.dd-ppm__check {
  color: var(--dd-accent);
  font-weight: 700;
  font-size: 15px;
}

.dd-ppm__offered {
  display: inline-block;
  background: #ede9fe;
  color: var(--dd-accent);
  font-weight: 800;
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap;
}

.dd-ppm__none {
  color: #d1d5db;
}

.dd-ppm tbody td,
.dd-ppm tbody .dd-ppm__lead {
  border-bottom: 1px solid #eef0f3;
}

.dd-ppm tr.dd-ppm__toprow td,
.dd-ppm tr.dd-ppm__toprow .dd-ppm__lead {
  border-bottom: none;
}

.dd-ppm tr.dd-ppm__saverow td,
.dd-ppm tr.dd-ppm__saverow .dd-ppm__lead {
  border-bottom: 1px solid #e7eaee;
}

.dd-ppm tr.dd-ppm__ctarow td {
  border-bottom: none;
  padding: 18px 10px 20px;
  vertical-align: top;
}

.dd-ppm__buy {
  display: block;
  width: 100%;
  text-align: center;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: var(--dd-font-body);
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dd-ppm__buy:hover {
  transform: translateY(-2px);
}

.dd-ppm__buy--accent {
  background: var(--dd-accent);
}

.dd-ppm__buy--accent:hover {
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.32);
}

.dd-ppm__note {
  font-size: 10.5px;
  font-style: italic;
  line-height: 1.45;
  color: #9ca3af;
  margin-top: 8px;
  text-align: center;
}

/* Cartes produits individuels */
.dd-pp-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 18px;
}

.dd-pp-product {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e7eaee;
  border-radius: 12px;
  padding: 22px 22px 20px;
  box-shadow: 0 6px 20px rgba(16, 24, 40, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.dd-pp-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.09);
}

.dd-pp-product__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 5px;
}

.dd-pp-product__badge--digital {
  background: #e0f2fe;
  color: #0369a1;
}

.dd-pp-product__badge--physical {
  background: #e8f1ee;
  color: #0f766e;
}

.dd-pp-product h3 {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 16.5px;
  color: #111;
  margin: 14px 0 6px;
  line-height: 1.3;
}

.dd-pp-product__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #6b7280;
  margin: 0 0 18px;
  flex: 1;
}

.dd-pp-product__price {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 21px;
  color: #111;
  margin-bottom: 14px;
}

/* Bande support violette */
.dd-pp-support {
  background: var(--dd-accent);
  color: #fff;
}

.dd-pp-support .dd-pp-eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.dd-pp-support .dd-pp-eyebrow .dd-eyebrow__dot {
  background: #fff;
}

.dd-pp-support .dd-pp-h2 {
  color: #fff;
}

.dd-pp-support__text {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 18px auto 0;
  max-width: 640px;
}

.dd-pp-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.dd-pp-channel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 22px 18px;
}

.dd-pp-channel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.dd-pp-channel__title {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: #fff;
  margin: 14px 0 4px;
}

.dd-pp-channel__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

/* CTA de fin de FAQ */
.dd-faq-cta {
  text-align: center;
  margin: clamp(40px, 5vw, 56px) auto 0;
  max-width: 520px;
}

.dd-faq-cta h3 {
  font-family: var(--dd-font-heading);
  font-weight: 700;
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: #111;
}

.dd-faq-cta p {
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  margin: 10px auto 0;
}

.dd-faq-cta .dd-pp-btn {
  padding: 13px 28px;
  font-size: 14.5px;
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   26. Popup région / langue + sélecteur de langue
   -------------------------------------------------------------------------- */
.dd-region-popup {
  display: none;
}

.dd-region-popup[hidden] {
  display: none !important;
}

.dd-region-popup.is-open {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
}

@media (min-width: 640px) {
  .dd-region-popup.is-open {
    align-items: center;
  }
}

.dd-region-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 18, 0.66);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.dd-region-popup.is-open .dd-region-popup__backdrop {
  animation: ddFade 0.25s ease both;
}

.dd-region-popup__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--dd-dark);
  background-image:
    radial-gradient(80% 70% at 15% 0%, rgba(79, 70, 229, 0.2), transparent 60%),
    radial-gradient(60% 60% at 95% 100%, rgba(79, 70, 229, 0.1), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  padding: clamp(26px, 5vw, 36px);
  text-align: center;
  color: #fff;
}

.dd-region-popup.is-open .dd-region-popup__card {
  animation: ddUp 0.3s ease both;
}

@media (prefers-reduced-motion: reduce) {
  .dd-region-popup.is-open .dd-region-popup__backdrop,
  .dd-region-popup.is-open .dd-region-popup__card {
    animation: none;
  }
}

.dd-region-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #c9ccd4;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.dd-region-popup__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.dd-region-popup__drop {
  display: inline-flex;
  margin-bottom: 6px;
}

.dd-region-popup__title {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: clamp(21px, 5vw, 25px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #fff;
  margin-top: 8px;
}

.dd-region-popup__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 10px;
}

.dd-region-popup__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
  text-align: left;
}

.dd-region-popup__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 7px;
}

.dd-region-popup__selectwrap {
  position: relative;
}

.dd-region-popup__selectwrap::after {
  content: "▾";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  pointer-events: none;
}

.dd-region-popup__select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 13px 38px 13px 15px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.dd-region-popup__select:focus {
  outline: none;
  border-color: rgba(165, 160, 245, 0.7);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.25);
}

.dd-region-popup__select option {
  color: var(--dd-ink);
  background: #fff;
}

.dd-region-popup__submit {
  margin-top: 4px;
}

.dd-region-popup__note {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin-top: 2px;
}

html.dd-region-popup-open,
html.dd-region-popup-open body {
  overflow: hidden;
}

/* Sélecteur de langue (header) */
.dd-lang {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dd-lang__select {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: #4a515b;
  background: transparent;
  border: 1px solid var(--dd-line);
  border-radius: var(--dd-pill);
  padding: 8px 26px 8px 13px;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.dd-lang__select:hover,
.dd-lang__select:focus {
  outline: none;
  border-color: var(--dd-accent);
  color: var(--dd-accent);
}

.dd-lang__caret {
  position: absolute;
  right: 11px;
  font-size: 10px;
  color: currentColor;
  opacity: 0.6;
  pointer-events: none;
}

.dd-mobile-nav__lang {
  padding: 10px 14px 6px;
  border-top: 1px solid var(--dd-line-2);
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .dd-header__actions .dd-lang {
    display: none;
  }
}

/* Shopify shopify-section wrapper : pas de style par défaut */
.shopify-section {
  position: relative;
}
</content>
</invoke>
