/* ── Dissuasion copier-coller : texte des fiches non sélectionnable (titres & prix restent libres) ── */
.product-detail-block p,
.product-detail-block li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* ── Variables ────────────────────────────────────── */
:root {
  --pink-bg: #FFF0F7;
  --pink-soft: #FFD6EA;
  --pink: #FF4D8B;
  --pink-dark: #D4246A;
  --lavender: #E8D5FF;
  --purple: #A855F7;
  --purple-dark: #7C3AED;
  --mint: #D1FAE5;
  --yellow: #FEF3C7;
  --white: #FFFFFF;
  --dark: #2D1B3D;
  --mid: #7B5EA7;
  --light: #F3E8FF;

  --ff-display: 'Cherry Bomb One', cursive;
  --ff-body: 'Nunito', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 50px;

  --shadow-pink: 0 8px 32px rgba(255, 77, 139, 0.2);
  --shadow-soft: 0 4px 20px rgba(168, 85, 247, 0.12);
  --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  background: var(--pink-bg);
  color: var(--dark);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(255, 77, 139, 0.15);
}

/* Images et médias toujours responsives par défaut */
img, picture, video, canvas, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Éléments de formulaire héritent de la police */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Focus visible accessible pour navigation clavier (tous navigateurs) */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--purple-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Accessibilité : masqué visuellement mais lu par les lecteurs d'écran ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Animations ──────────────────────────────────── */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: twinkle 2.5s ease-in-out infinite;
}

.float {
  animation: float 4s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

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

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.5); }
  70% { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Header ──────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 240, 247, 0.9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--pink-soft);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--pink-dark);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo:hover {
  color: var(--purple-dark);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--purple-dark) 100%);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pink);
  transition: transform var(--transition), box-shadow var(--transition);
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255, 77, 139, 0.35);
}

/* ── Flash info ──────────────────────────────────── */
.flash-info {
  background: linear-gradient(90deg, #ff6fa5 0%, #c084fc 100%);
  color: #fff;
  text-align: center;
  padding: 11px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
}

.flash-info strong {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.flash-info-sep {
  opacity: 0.55;
  font-weight: 400;
}

.flash-info-sub {
  font-weight: 500;
  opacity: 0.95;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding: 60px 5% 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  min-height: 520px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 65%);
  pointer-events: none;
  display: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 18px;
  animation: fadeUp 0.5s ease both 0.1s;
}

.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease both 0.2s;
}

.hero h1 .pink {
  color: var(--pink-dark);
}

.hero h1 .purple {
  color: var(--purple-dark);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both 0.3s;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: none;
  opacity: 1;
  transform: none;
}

.btn-ghost,
.hero-reassurance {
  opacity: 1;
  transform: none;
  filter: none;
  backdrop-filter: none;
}

.hero-reassurance {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 600;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pink);
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-main:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(255, 77, 139, 0.4);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #7C3AED;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid #D8B4FE;
  transition: none;
  opacity: 1;
  transform: none;
  filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #A855F7;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeUp 0.8s ease both 0.3s;
}

.hero-blob {
  width: 340px;
  height: 340px;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender) 100%);
  border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.he-thumb {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 6px 20px rgba(255, 77, 139, 0.3);
}

.deco-star {
  position: absolute;
  font-size: 1.4rem;
}

.ds1 { top: 10px; left: 10px; animation: twinkle 2s ease-in-out infinite 0.2s; }
.ds2 { top: 30px; right: -10px; animation: twinkle 2.3s ease-in-out infinite 0.5s; }
.ds3 { bottom: 20px; left: 0px; animation: twinkle 1.8s ease-in-out infinite 0.8s; }
.ds4 { bottom: 40px; right: 10px; animation: twinkle 2.5s ease-in-out infinite 0.1s; }

.floating-pill {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.pill-1 {
  top: 20px;
  right: -40px;
  color: var(--pink-dark);
  animation: float 4.5s ease-in-out infinite;
}

.pill-2 {
  bottom: 30px;
  left: -50px;
  color: var(--purple-dark);
  animation: float 5s ease-in-out infinite 0.8s;
}

/* Hero miniatures animées */
@keyframes floatCherry {
  0%, 100% { transform: translateX(-50%) rotate(-8deg) translateY(0); }
  50% { transform: translateX(-50%) rotate(-6deg) translateY(-6px); }
}

@keyframes floatBag {
  0%, 100% { transform: rotate(7deg) translateY(0); }
  50% { transform: rotate(9deg) translateY(-8px); }
}

@keyframes floatPurse {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-14px); }
}

.he-cherry {
  top: 18px;
  left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  animation: floatCherry 4.6s ease-in-out infinite;
}

.he-bag {
  bottom: 48px;
  left: 22px;
  transform: rotate(7deg);
  animation: floatBag 4.6s ease-in-out infinite 0.6s;
}

.he-purse {
  bottom: 48px;
  right: 22px;
  transform: rotate(-5deg);
  animation: floatPurse 4.6s ease-in-out infinite 1.1s;
}

/* ── Asia strip ──────────────────────────────────── */
.asia-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #4A1060 100%);
  color: var(--pink-soft);
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
  padding: 14px 0;
  border-top: 2px solid var(--pink-soft);
  border-bottom: 2px solid var(--pink-soft);
  margin: 12px 0;
}

.asia-strip-inner {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  will-change: transform;
  animation: asia-marquee 18s linear infinite;
}

@keyframes asia-marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

/* ── Section divider ─────────────────────────────── */
.section-divider {
  text-align: center;
  padding: 10px 0;
  font-size: 1.4rem;
  letter-spacing: 8px;
  opacity: 0.5;
}

/* ── Trust strip compact ─────────────────────────── */
.trust-strip {
  margin: 20px 5% 10px;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--pink-soft) 0%, #FFE8F2 100%);
  border: 2px solid var(--pink);
  border-radius: var(--radius-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
  box-shadow: var(--shadow-soft);
}

.ts-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.ts-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(255, 77, 139, 0.2);
}

/* ── Collection header ───────────────────────────── */
.collection-head {
  padding: 40px 5% 20px;
  text-align: center;
}

.collection-head-2 {
  padding-top: 20px;
}

.collection-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lavender);
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}

.collection-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 10px;
}

.collection-head h2 .pink {
  color: var(--pink-dark);
}

.collection-head p {
  color: var(--mid);
  font-size: 1rem;
}

/* ── Catalogue ───────────────────────────────────── */
.catalogue {
  padding: 40px 5% 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.catalogue-chouchous {
  grid-template-columns: repeat(2, 1fr);
  padding-bottom: 30px;
}

.catalogue:not(.catalogue-chouchous) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: fadeUp 0.5s ease both;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(255, 77, 139, 0.18);
  border-color: var(--pink-soft);
}

.product-visual {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pv-1 { background: linear-gradient(135deg, #FFD6EA 0%, #FFAED2 100%); }
.pv-2 { background: linear-gradient(135deg, #FFE0F0 0%, #FFD0E8 100%); }
.pv-3 { background: linear-gradient(135deg, #FFD6D6 0%, #FFB3B3 100%); }
.pv-4 { background: linear-gradient(135deg, #FFE8F2 0%, #FFD6EA 100%); }
.pv-5 { background: linear-gradient(135deg, #FFF3D6 0%, #FFE4A0 100%); }
.pv-6 { background: linear-gradient(135deg, #EED6FF 0%, #DDB3FF 100%); }

.product-badge {
  position: absolute;
  text-align: center;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-xl);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
}

.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.product-body h3 {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.product-body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
}

.product-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 12px;
  border-top: 1px dashed var(--pink-soft);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--purple-dark) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover .product-cta {
  transform: scale(1.06);
  box-shadow: var(--shadow-pink);
}

/* ── Produit épuisé ──────────────────────────────── */
.product-card-soldout {
  opacity: 0.65;
  pointer-events: none;
}

.product-card-soldout .product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 27, 61, 0.18);
  z-index: 1;
}

.badge-soldout {
  background: var(--mid) !important;
  color: var(--white) !important;
  font-size: 0.72rem !important;
}

.product-cta-disabled {
  background: var(--mid) !important;
  cursor: default;
  opacity: 0.6;
}

/* ── Badges rotatifs ─────────────────────────────── */
.has-rotate-badge {
  overflow: visible;
}

.badge-rotate {
  position: absolute;
  top: -10px;
  right: -8px;
  z-index: 10;
  background: var(--yellow);
  border: 2px solid var(--dark);
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 8px;
  color: var(--dark);
  box-shadow: 2px 2px 0 var(--dark);
  white-space: nowrap;
}

.badge-rotate.badge-top {
  transform: rotate(6deg);
  background: #FFE45E;
}

.badge-rotate.badge-fav {
  top: -10px;
  right: auto;
  left: -8px;
  transform: rotate(-6deg);
  background: #FFBBD3;
}

.badge-rotate.badge-new {
  background: #C5FAD5;
  transform: rotate(5deg);
}

.badge-rotate.badge-soldout-rotate {
  background: var(--mid);
  color: var(--white);
  border-color: var(--dark);
  transform: rotate(-4deg);
}

/* ── Liens produit ───────────────────────────────── */
.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.product-title-link:hover,
.product-title-link:focus {
  color: var(--pink-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card-soldout .product-link {
  pointer-events: auto;
}

.product-card-soldout .product-link:hover .product-img {
  transform: none;
}

/* ── Images produit ──────────────────────────────── */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.product-img-top {
  object-position: top;
}

.product-card:hover .product-img {
  transform: scale(1.06);
}

/* ── Prix ────────────────────────────────────────── */
.price-tag {
  display: none !important;
}

.product-price-big {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--pink-dark);
  letter-spacing: -0.01em;
  margin: 2px 0 8px;
}

.product-price-big .cents {
  font-size: 1.15rem;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 1px;
}

/* ── Trust section ───────────────────────────────── */
.trust {
  margin: 20px 5% 80px;
  background: linear-gradient(135deg, var(--dark) 0%, #4A1060 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.trust::before {
  content: '✨';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.4rem;
  animation: twinkle 2s ease-in-out infinite;
}

.trust::after {
  content: '💫';
  position: absolute;
  bottom: 16px;
  left: 24px;
  font-size: 1.2rem;
  animation: twinkle 2.5s ease-in-out infinite 0.5s;
}

.trust-item {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}

.trust-emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.trust-item h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.7;
}

/* ── Bloc éditorial ──────────────────────────────── */
.editorial {
  margin: 20px 5% 80px;
  padding: 36px 36px;
  background: #FFF9EC;
  border: 2px dashed var(--pink-dark);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.editorial::before,
.editorial::after {
  content: '🌸';
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.65;
}

.editorial::before {
  top: 12px;
  left: 16px;
}

.editorial::after {
  bottom: 12px;
  right: 16px;
}

.editorial-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.editorial-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 14px;
  padding: 4px 12px;
  background: var(--white);
  border-radius: var(--radius-xl);
}

.editorial-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--dark);
  margin-bottom: 16px;
}

.editorial-sign {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── FAQ ─────────────────────────────────────────── */
.faq {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 5% 60px;
}

.faq-head {
  text-align: center;
  margin-bottom: 36px;
}

.faq-head .eyebrow {
  display: inline-block;
  background: var(--lavender);
  color: var(--purple-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}

.faq-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: var(--dark);
  font-weight: 400;
}

.faq-head h2 .pink {
  color: var(--pink-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 4px 0;
  transition: box-shadow var(--transition);
}

.faq-item[open] {
  box-shadow: var(--shadow-pink);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  position: relative;
  padding-right: 48px;
}

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

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--pink);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
  transform: translateY(-50%) rotate(0deg);
}

.faq-item summary:hover {
  color: var(--pink-dark);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--dark);
  opacity: 0.88;
}

/* ── CTA band ────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: 80px 5% 70px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, var(--lavender) 0%, transparent 70%);
  pointer-events: none;
}

.cta-blob {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender) 100%);
  border-radius: 60% 40% 55% 45% / 45% 55% 50% 40%;
  padding: 50px 60px;
  position: relative;
}

.cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 22px;
  position: relative;
}

.cta-band h2 .pink {
  color: var(--pink-dark);
}

.cta-notice {
  margin-top: 18px;
  font-size: 0.875rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── QR code ─────────────────────────────────────── */
.qr-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}

.qr-wrap:hover {
  opacity: 1;
  transform: scale(1.05);
}

.qr-frame {
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px dashed var(--pink-soft);
  box-shadow: 0 4px 16px rgba(255, 77, 139, 0.12);
}

.qr-frame img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 6px;
}

.qr-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 50px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 10px;
}

footer p {
  font-size: 0.875rem;
  line-height: 1.8;
  opacity: 0.65;
}

footer h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 14px;
}

footer a {
  display: block;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 8px;
  transition: opacity 0.2s, color 0.2s;
}

footer a:hover {
  opacity: 1;
  color: var(--pink-soft);
}

.footer-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}

.footer-qr img {
  width: 56px;
  height: 56px;
  border-radius: 6px;
  flex-shrink: 0;
}

.footer-qr-text {
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.7;
}

.footer-qr-text strong {
  display: block;
  color: var(--white);
  opacity: 1;
  font-size: 0.82rem;
  margin-bottom: 2px;
}

/* ── Réseaux sociaux ─────────────────────────────── */
.social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.social-label {
  display: block;
  width: 100%;
  font-size: 0.78rem;
  color: var(--pink-soft);
  font-weight: 700;
  margin-bottom: 4px;
  opacity: 0.85;
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.9 !important;
  margin-bottom: 0 !important;
  transition: transform var(--transition), background 0.2s, color 0.2s;
}

.social-link svg {
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--pink);
  color: var(--white) !important;
  opacity: 1 !important;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ── Fiches produit dédiées ──────────────────────── */
.product-page {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 40px 40px;
}

.product-breadcrumb {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: var(--pink-dark);
  font-weight: 700;
  text-decoration: none;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-breadcrumb-sep {
  opacity: 0.5;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--pink-soft);
}

.product-gallery-main {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender) 100%);
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  display: block;
}

@supports not (aspect-ratio: 1 / 1) {
  .product-gallery-main {
    box-sizing: content-box;
    height: 0;
    padding-bottom: 100%;
  }
}

.product-gallery-main img {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  object-fit: contain;
  border-radius: var(--radius-sm);
  display: block;
}

@media (max-width: 540px) {
  .product-gallery-main img {
    inset: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}

.product-info {
  padding: 8px 4px;
}

.product-category-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  background: var(--pink-soft);
  padding: 5px 14px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}

.product-title {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.product-price-xl {
  font-family: var(--ff-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--pink-dark);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.product-price-xl .cents {
  font-size: 1.6rem;
  vertical-align: super;
  margin-left: 2px;
}

.product-price-context {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 24px;
}

.product-main-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 100%);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 26px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pink);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.product-main-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(255, 77, 139, 0.45);
}

.product-main-cta.product-main-cta-disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--mid);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1.1rem;
  font-weight: 800;
  padding: 18px 26px;
  border-radius: var(--radius-xl);
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.product-reassurance {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--mid);
  text-align: center;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.product-detail-block {
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--white);
  border: 2px solid var(--pink-soft);
  border-radius: var(--radius-md);
}

.product-detail-block h2 {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.product-detail-block h2 .pink {
  color: var(--pink-dark);
}

.product-detail-block p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark);
}

.product-detail-block ul {
  padding-left: 22px;
  margin: 8px 0;
}

.product-detail-block li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 4px;
}

.product-how {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--lavender);
  border: 2px solid var(--purple-dark);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--dark);
}

.product-how strong {
  color: var(--purple-dark);
  display: block;
  margin-bottom: 4px;
}

.product-related {
  padding: 50px 5% 30px;
}

.product-related h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
}

.product-related h2 .pink {
  color: var(--pink-dark);
}

.product-recap-band {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--purple-dark) 100%);
  color: var(--white);
  padding: 30px 5%;
  text-align: center;
}

.product-recap-band p {
  font-size: 1rem;
  margin-bottom: 14px;
  opacity: 0.95;
}

.product-recap-band strong {
  font-weight: 800;
}

.product-recap-band .btn-main {
  background: var(--white);
  color: var(--pink-dark);
}

.product-recap-band .btn-main:hover {
  background: var(--pink-soft);
  color: var(--pink-dark);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 5% 30px;
    min-height: auto;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    justify-content: center;
    margin-top: 10px;
  }

  .hero-blob {
    width: 260px;
    height: 260px;
  }

  .he-thumb {
    width: 70px;
    height: 70px;
  }

  .floating-pill {
    display: none;
  }

  .catalogue {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue-chouchous {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalogue:not(.catalogue-chouchous) {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .trust {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-price-xl {
    font-size: 2.4rem;
  }

  .product-price-xl .cents {
    font-size: 1.3rem;
  }
}

@media (min-width: 820px) {
  .faq {
    max-width: 1100px;
  }

  .faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 30px 5% 24px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-tag {
    font-size: 0.85rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-reassurance {
    font-size: 0.75rem;
  }

  .hero-blob {
    width: 220px;
    height: 220px;
  }

  .he-thumb {
    width: 60px;
    height: 60px;
  }

  .he-bag {
    bottom: 40px;
    left: 22px;
  }

  .he-purse {
    bottom: 40px;
    right: 22px;
  }

  .catalogue {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 50px;
  }

  .catalogue-chouchous {
    grid-template-columns: 1fr;
  }

  .catalogue:not(.catalogue-chouchous) {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .header-cta span {
    display: none;
  }

  .cta-blob {
    padding: 36px 28px;
  }

  .product-visual {
    height: 260px;
  }

  .flash-info {
    font-size: 0.82rem;
    padding: 10px 12px;
  }

  .flash-info-sep {
    display: none;
  }

  .flash-info-sub {
    width: 100%;
    text-align: center;
  }

  .asia-strip {
    padding: 10px 0;
  }

  .asia-strip-inner {
    font-size: 0.72rem;
    animation-duration: 14s;
  }

  .trust-strip {
    margin: 16px 5% 8px;
    padding: 14px 16px;
    gap: 10px 14px;
  }

  .ts-item {
    font-size: 0.82rem;
    gap: 8px;
  }

  .ts-icon {
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }

  .collection-head {
    padding-top: 30px;
  }

  .trust {
    margin-bottom: 50px;
  }

  .editorial {
    padding: 28px 22px;
    margin: 0 5% 40px;
  }

  .editorial-quote {
    font-size: 1.08rem;
  }

  .editorial::before,
  .editorial::after {
    font-size: 1.2rem;
  }

  .faq {
    padding-top: 30px;
  }

  .cta-band {
    padding-top: 50px;
  }

  .qr-wrap {
    opacity: 1;
    margin-top: 20px;
  }

  .qr-frame img {
    width: 90px;
    height: 90px;
  }

  .qr-label {
    font-size: 0.85rem;
  }

  .product-price-big {
    font-size: 1.7rem;
  }

  .product-price-big .cents {
    font-size: 1.05rem;
  }

  .product-page {
    padding: 16px 5% 30px;
  }

  .product-gallery {
    padding: 18px;
  }

  .product-gallery-main {
    padding: 14px;
  }
}
.product-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
  align-items: start;
}

.product-text-grid .product-detail-block {
  margin-top: 0;
  height: 100%;
}

.product-description-card p + p {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .product-text-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ══════════════════════════════════════════════════
   COMPATIBILITÉ MULTI-SUPPORTS ET MULTI-NAVIGATEURS
   Safari iOS / macOS, Chrome, Firefox, Edge, Samsung
   Mobile, tablette, laptop, grand écran, iPhone encoche
   ══════════════════════════════════════════════════ */

/* ── Prise en charge des encoches (iPhone X+, Android) ── */
header,
.flash-info,
.cta-band,
.product-recap-band,
footer {
  padding-left: max(5%, env(safe-area-inset-left));
  padding-right: max(5%, env(safe-area-inset-right));
}

/* .product-page : safe-area uniquement sur desktop (mobile garde 5%) */
@media (min-width: 901px) {
  .product-page {
    padding-left: max(40px, env(safe-area-inset-left));
    padding-right: max(40px, env(safe-area-inset-right));
  }
}

footer {
  padding-bottom: max(30px, env(safe-area-inset-bottom));
}

/* ── Fiches produit : padding adapté mobile (empêche écrasement) ── */
@media (max-width: 900px) {
  .product-page {
    padding: 20px 5% 30px;
  }

  .product-gallery {
    padding: 16px;
  }
}

@media (max-width: 540px) {
  .product-page {
    padding: 14px 4% 26px;
  }

  .product-gallery {
    padding: 10px;
    border-radius: var(--radius-md);
  }
}

/* Évite que le grid item ne déborde horizontalement */
.product-gallery {
  min-width: 0;
}

/* ── Safari : position sticky ancien préfixe ──────── */
header {
  position: -webkit-sticky;
  position: sticky;
}

/* La galerie utilise désormais la technique padding-bottom (sans aspect-ratio),
   donc aucun fallback n'est nécessaire : compatible IE10+, Safari ancien, etc. */

/* ── Gestion des mots très longs / URL ────────────── */
h1, h2, h3, h4, h5, h6, p, a, li, summary {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ── Tailles minimales tactiles (44x44px WCAG) ───── */
@media (hover: none) and (pointer: coarse) {
  .btn-main,
  .btn-ghost,
  .header-cta,
  .product-cta,
  .product-main-cta,
  .social-link,
  .faq-item summary {
    min-height: 44px;
  }
}

/* ══ Breakpoint grand écran (> 1400px) ════════════ */
@media (min-width: 1400px) {
  .hero,
  .trust-strip,
  .catalogue,
  .trust,
  .editorial,
  .collection-head,
  .cta-band {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }

  .catalogue:not(.catalogue-chouchous) {
    max-width: 1400px;
    grid-template-columns: repeat(3, 1fr);
  }

  .product-page {
    max-width: 1400px;
  }
}

/* ══ Breakpoint laptop / desktop moyen (1200px) ═══ */
@media (max-width: 1200px) {
  .hero {
    gap: 36px;
  }

  .pill-1 { right: -20px; }
  .pill-2 { left: -30px; }
}

/* ══ Breakpoint tablette (1024px) ══════════════════ */
@media (max-width: 1024px) {
  header {
    padding: 0 4%;
  }

  .header-cta {
    font-size: 0.92rem;
    padding: 9px 18px;
  }

  .catalogue {
    gap: 20px;
  }

  .trust {
    padding: 40px 30px;
  }
}

/* ══ Ajustements tablette portrait (768px) ════════ */
@media (max-width: 768px) {
  .hero {
    padding: 36px 5% 28px;
  }

  .hero-blob {
    width: 240px;
    height: 240px;
  }

  .pill-1,
  .pill-2 {
    display: none;
  }

  .trust {
    padding: 36px 24px;
    gap: 24px;
  }

  .cta-blob {
    padding: 44px 34px;
  }

  .product-page {
    padding: 20px 5% 30px;
  }

  .product-gallery {
    padding: 22px;
  }

  .editorial {
    padding: 32px 26px;
  }

  .editorial-quote {
    font-size: 1.15rem;
  }
}

/* ══ Petit téléphone (480px) ═══════════════════════ */
@media (max-width: 480px) {
  header {
    height: 60px;
    padding: 0 4%;
  }

  .logo {
    font-size: 1.3rem;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .header-cta {
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-visual {
    height: 220px;
  }

  .product-body {
    padding: 16px 16px 18px;
  }

  .product-body h3 {
    font-size: 1rem;
  }

  .faq-item summary {
    padding: 16px 44px 16px 18px;
    font-size: 0.95rem;
  }

  .faq-item summary::after {
    right: 16px;
  }

  .faq-item p {
    padding: 0 18px 16px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .footer-bottom span:nth-child(2),
  .footer-bottom span:nth-child(4) {
    display: none;
  }

  .cta-blob {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }

  .product-main-cta {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .product-reassurance {
    gap: 10px;
    font-size: 0.78rem;
  }

  .product-detail-block {
    padding: 18px 18px;
  }
}

/* ══ Très petit écran (360px - anciens Android) ═══ */
@media (max-width: 360px) {
  header {
    padding: 0 3%;
  }

  .logo {
    font-size: 1.15rem;
  }

  .header-cta {
    padding: 7px 12px;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero-blob {
    width: 190px;
    height: 190px;
  }

  .he-thumb {
    width: 54px;
    height: 54px;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .product-price-xl {
    font-size: 2rem;
  }

  .product-price-xl .cents {
    font-size: 1.1rem;
  }

  .collection-head h2 {
    font-size: 1.7rem;
  }

  .cta-band h2 {
    font-size: 1.6rem;
  }
}

/* ══ Mode paysage sur mobile (hauteur réduite) ════ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 24px 5%;
  }

  .hero-blob {
    width: 180px;
    height: 180px;
  }

  .he-thumb {
    width: 54px;
    height: 54px;
  }

  header {
    height: 56px;
  }
}

/* ══ Réduction des animations (accessibilité) ═════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .asia-strip-inner,
  .hero-blob,
  .he-cherry,
  .he-bag,
  .he-purse,
  .floating-pill,
  .deco-star,
  .trust::before,
  .trust::after {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ══ Écrans haute densité (Retina) ════════════════ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .product-img,
  .he-thumb,
  .product-gallery-main img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* ══ Mode sombre du système (support conservé doux) ══ */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
}

/* ══ Styles d'impression ══════════════════════════ */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 11pt;
    line-height: 1.5;
  }

  header,
  footer,
  .flash-info,
  .asia-strip,
  .cta-band,
  .product-recap-band,
  .product-related,
  .hero-visual,
  .badge-rotate,
  .qr-wrap,
  .social-row,
  .footer-qr {
    display: none !important;
  }

  a {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.85em;
    color: #555 !important;
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  .product-card,
  .product-gallery,
  .product-detail-block,
  .faq-item {
    page-break-inside: avoid;
    border: 1px solid #ccc !important;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  .catalogue,
  .trust,
  .footer-grid {
    display: block !important;
  }

  .catalogue > *,
  .trust > * {
    margin-bottom: 16px;
  }
}
/* ════════════════════════════════════════════════════
   ✦ AMÉLIORATIONS 2026 — profondeur, typo, scroll, ornements
   Ajouts non destructifs (priorité par cascade en fin de fichier).
   Couleurs, polices, mascotte et contenus d'origine conservés.
   ════════════════════════════════════════════════════ */

/* ── 1. Profondeur & atmosphère ─────────────────────── */
body {
  background-color: var(--pink-bg);
  background-image:
    radial-gradient(60% 50% at 12% 8%, rgba(232,213,255,.55), transparent 60%),
    radial-gradient(55% 45% at 92% 12%, rgba(255,214,234,.50), transparent 58%),
    radial-gradient(52% 42% at 80% 94%, rgba(209,250,229,.30), transparent 60%),
    radial-gradient(46% 40% at 6% 82%, rgba(255,243,199,.30), transparent 60%);
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* grain très subtil pour casser les aplats */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='150'%20height='150'%3E%3Cfilter%20id='qn'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.85'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3CfeColorMatrix%20type='saturate'%20values='0'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23qn)'/%3E%3C/svg%3E");
  opacity: .05;
}

/* sections sombres : un halo doux au lieu d'un aplat */
.trust {
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(255,111,165,.22), transparent 55%),
    radial-gradient(120% 90% at 100% 100%, rgba(168,85,247,.22), transparent 55%),
    linear-gradient(135deg, var(--dark) 0%, #4A1060 100%);
}
footer {
  background:
    radial-gradient(100% 130% at 50% 0%, rgba(255,77,139,.12), transparent 62%),
    var(--dark);
}

/* ombres de cartes plus riches et réalistes */
.product-card {
  box-shadow:
    0 1px 2px rgba(45,27,61,.05),
    0 10px 24px rgba(168,85,247,.10),
    0 22px 48px rgba(255,77,139,.07);
}
.product-card:hover {
  box-shadow:
    0 8px 18px rgba(255,77,139,.16),
    0 28px 60px rgba(255,77,139,.20);
}

/* ── 2. Typographie & hiérarchie ────────────────────── */
h1, h2, h3,
.hero h1, .collection-head h2, .faq-head h2, .cta-band h2,
.product-title, .product-related h2, .product-detail-block h2 {
  text-wrap: balance;
}
p, .hero-sub, .product-body p, .editorial-quote,
.faq-item p, .product-detail-block p {
  text-wrap: pretty;
}
.hero h1, .collection-head h2, .faq-head h2,
.cta-band h2, .product-title {
  letter-spacing: -0.015em;
}
/* ancres : ne plus passer sous le header collant */
:target { scroll-margin-top: 88px; }
#catalogue, #faq { scroll-margin-top: 88px; }
/* prix un peu plus présent (desktop / tablette) */
@media (min-width: 541px) {
  .product-price-big { font-size: 2.05rem; }
  .product-price-big .cents { font-size: 1.2rem; }
}

/* ── 3. Apparition au défilement ────────────────────── */
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
.reveal-ready .product-card { animation: none; }

/* ── 4. Ornements sur-mesure (sparkles dessinés) ────── */
.deco-star {
  width: 20px;
  height: 20px;
  font-size: 0;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fff 16%, var(--pink) 70%, var(--pink-dark) 100%);
  -webkit-clip-path: polygon(50% 0%, 56% 44%, 100% 50%, 56% 56%, 50% 100%, 44% 56%, 0% 50%, 44% 44%);
          clip-path: polygon(50% 0%, 56% 44%, 100% 50%, 56% 56%, 50% 100%, 44% 56%, 0% 50%, 44% 44%);
  filter: drop-shadow(0 2px 5px rgba(255,77,139,.45));
}
.ds2 {
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fff 16%, #FFD86B 58%, #F4A900 100%);
  filter: drop-shadow(0 2px 5px rgba(244,169,0,.40));
}
.ds4 {
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fff 16%, var(--lavender) 50%, var(--purple) 100%);
  filter: drop-shadow(0 2px 5px rgba(168,85,247,.40));
}

/* séparateur : fines lignes + sparkle central */
.section-divider {
  font-size: 0 !important;
  letter-spacing: 0 !important;
  opacity: 1;
  position: relative;
  height: 20px;
  padding: 16px 0;
  background:
    linear-gradient(90deg, transparent, var(--pink-soft), var(--pink)) left center / calc(50% - 28px) 2px no-repeat,
    linear-gradient(90deg, var(--pink), var(--pink-soft), transparent) right center / calc(50% - 28px) 2px no-repeat;
}
.section-divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fff 16%, var(--pink) 70%, var(--pink-dark) 100%);
  -webkit-clip-path: polygon(50% 0%, 56% 44%, 100% 50%, 56% 56%, 50% 100%, 44% 56%, 0% 50%, 44% 44%);
          clip-path: polygon(50% 0%, 56% 44%, 100% 50%, 56% 56%, 50% 100%, 44% 56%, 0% 50%, 44% 44%);
  filter: drop-shadow(0 2px 4px rgba(255,77,139,.40));
}

/* accents d'angle (trust + editorial) : sparkles au lieu d'emoji */
.trust::before, .trust::after,
.editorial::before, .editorial::after {
  content: "";
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #fff 16%, var(--pink-soft) 55%, var(--pink) 100%);
  -webkit-clip-path: polygon(50% 0%, 56% 44%, 100% 50%, 56% 56%, 50% 100%, 44% 56%, 0% 50%, 44% 44%);
          clip-path: polygon(50% 0%, 56% 44%, 100% 50%, 56% 56%, 50% 100%, 44% 56%, 0% 50%, 44% 44%);
}

/* ── Garde-fou accessibilité ────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* ✦ fin AMÉLIORATIONS 2026 */

/* ── 4b. Hero sparkles renforcés (plus visibles sur le blob) ── */
.deco-star {
  width: 26px;
  height: 26px;
  background: radial-gradient(circle at 50% 42%, #fff 0%, #fff 14%, var(--pink) 52%, var(--pink-dark) 100%);
  filter: drop-shadow(0 0 2px rgba(255,255,255,.9)) drop-shadow(0 3px 8px rgba(212,36,106,.55));
}
.ds2 {
  background: radial-gradient(circle at 50% 42%, #fff 0%, #fff 14%, #FFCE3A 48%, #F08A00 100%);
  filter: drop-shadow(0 0 2px rgba(255,255,255,.9)) drop-shadow(0 3px 8px rgba(240,138,0,.50));
}
.ds4 {
  background: radial-gradient(circle at 50% 42%, #fff 0%, #fff 14%, var(--purple) 50%, var(--purple-dark) 100%);
  filter: drop-shadow(0 0 2px rgba(255,255,255,.9)) drop-shadow(0 3px 8px rgba(124,58,237,.50));
}
