/* L'Incanto — UI été fraîche */

:root {
  /* Fraîcheur méditerranéenne + or parfumerie */
  --noir: #243538;
  --charcoal: #2f4549;
  --slate: #4a6570;
  --slate-light: #6b8792;
  --sea: #5a8f99;
  --sea-deep: #3d6d76;
  --sea-light: #8eb8c0;
  --sea-pale: #e5f1f3;
  --sea-mist: #f2f8f9;
  --mint: #d8ebe8;

  --bronze: #b8956b;
  --amber: #d4a84b;
  --amber-light: #e8cc7a;
  --champagne: #e8e0d4;
  --bronze-glow: rgba(90, 143, 153, 0.22);
  --slate-glow: rgba(142, 184, 192, 0.18);
  --fresh-glow: rgba(94, 155, 165, 0.2);

  --ink: var(--noir);
  --ink-soft: #3d5559;
  --muted: #6d858a;
  --line: #d4e4e6;
  --cream: #f0f7f7;
  --white: #fdffff;
  --gold: var(--bronze);
  --gold-hover: #9a7b52;
  --dark: var(--charcoal);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: linear-gradient(180deg, var(--sea-mist) 0%, var(--white) 280px);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 45% at 95% 0%, rgba(142, 184, 192, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 0% 100%, rgba(216, 235, 232, 0.35), transparent 50%);
}

body.splash-active { overflow: hidden; }

/* ——— Splash intro ——— */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  transition: opacity 0.65s var(--ease), visibility 0.65s;
}

.splash--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash--skip { transition-duration: 0.35s; }

.splash-inner {
  text-align: center;
  animation: splash-content-in 1s var(--ease) both;
}

.splash-visual {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
}

.splash-aura {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bronze-glow) 0%, transparent 68%);
  animation: splash-aura 2.4s ease-in-out infinite;
}

.splash-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.splash-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 50%;
  animation: splash-diffuse 2.2s var(--ease) infinite;
}

.splash-ring:nth-child(2) { animation-delay: 0.55s; }
.splash-ring:nth-child(3) { animation-delay: 1.1s; }

.splash-mist {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.splash-mist span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber-light);
  opacity: 0;
  animation: splash-particle 2.8s ease-in-out infinite;
}

.splash-mist span:nth-child(1) { left: 58%; top: 18%; animation-delay: 0.2s; }
.splash-mist span:nth-child(2) { left: 72%; top: 28%; animation-delay: 0.5s; width: 3px; height: 3px; }
.splash-mist span:nth-child(3) { left: 48%; top: 12%; animation-delay: 0.8s; }
.splash-mist span:nth-child(4) { left: 65%; top: 8%; animation-delay: 1.1s; width: 5px; height: 5px; }
.splash-mist span:nth-child(5) { left: 78%; top: 22%; animation-delay: 1.4s; width: 3px; height: 3px; }
.splash-mist span:nth-child(6) { left: 52%; top: 24%; animation-delay: 1.7s; }

.splash-logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  animation: splash-logo-in 1.1s var(--ease-spring) 0.15s both;
}

.splash-logo-ring {
  transform-origin: 22px 22px;
  animation: splash-ring-spin 8s linear infinite;
}

.splash-logo-ring--2 {
  animation-direction: reverse;
  animation-duration: 11s;
}

.splash-bottle {
  transform-origin: 22px 28px;
  animation: splash-bottle-rise 1s var(--ease) 0.2s both;
}

.splash-logo-mist {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: splash-mist-draw 1.4s var(--ease) 0.6s forwards;
}

.splash-name {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 42px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: splash-text-in 0.8s var(--ease) 0.7s forwards;
}

.splash-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 10px;
  opacity: 0;
  animation: splash-text-in 0.8s var(--ease) 0.95s forwards;
}

@keyframes splash-content-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes splash-logo-in {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes splash-bottle-rise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@keyframes splash-mist-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes splash-ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes splash-aura {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

@keyframes splash-diffuse {
  0% { transform: scale(0.6); opacity: 0.55; }
  100% { transform: scale(2.6); opacity: 0; }
}

@keyframes splash-particle {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  25% { opacity: 0.75; }
  100% { opacity: 0; transform: translate(14px, -36px) scale(1); }
}

@keyframes splash-text-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .splash { transition: none; }
  .splash-inner,
  .splash-logo,
  .splash-bottle,
  .splash-logo-mist,
  .splash-name,
  .splash-tag,
  .splash-aura,
  .splash-ring,
  .splash-mist span,
  .splash-logo-ring { animation: none !important; }
  .splash-name,
  .splash-tag,
  .splash-logo { opacity: 1; transform: none; }
  .splash-logo-mist { stroke-dashoffset: 0; }
}

main { position: relative; z-index: 2; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 680px; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--sea), var(--bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

/* Scent canvas — retiré pour alléger le site */

/* Announcement */
.announcement {
  background: linear-gradient(90deg, var(--sea-pale), #eef6f6, var(--sea-pale));
  color: var(--ink-soft);
  text-align: center;
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 92;
  border-bottom: 1px solid rgba(142, 184, 192, 0.35);
}

.announcement strong { color: var(--sea-deep); font-weight: 600; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(253, 254, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}

.header.scrolled { box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(61, 109, 118, 0.07); }

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 2;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-ring { opacity: 0.5; }

.logo-mist { opacity: 0.7; }

.logo-name {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--noir);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-sub {
  display: block;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 2px;
}

.logo--footer .logo-name { color: var(--white); }
.logo--footer .logo-sub { color: rgba(255,255,255,0.45); }

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav a:hover { color: var(--ink); }

.header-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.header-cta:hover { color: var(--sea); border-color: var(--sea); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-left: auto;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--bronze), var(--amber));
  box-shadow: 0 8px 32px var(--fresh-glow);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--sea-light);
  color: var(--sea-deep);
}

.btn-outline {
  color: var(--sea-deep);
  border: 1px solid var(--sea-light);
  background: transparent;
}

.btn-outline:hover {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  border-color: var(--sea);
  color: var(--white);
}

.btn-full { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 13px; }

/* Hero */
.hero {
  position: relative;
  background: transparent;
  padding: 72px 0 88px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(ellipse 65% 55% at 88% 12%, rgba(142, 184, 192, 0.14), transparent 58%),
    radial-gradient(ellipse 50% 45% at 8% 88%, rgba(216, 235, 232, 0.2), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--bronze);
}

.hero-content h1 sup {
  font-size: 0.55em;
  vertical-align: super;
}

.hero-pricing {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-season {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--sea);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hero-lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-perks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.hero-perks li::before {
  content: '✓ ';
  color: var(--sea);
}

.hero-media {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-width: 0;
}

.hero-compose {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 16px 48px var(--fresh-glow);
  display: flex;
  flex-direction: column;
  max-height: min(88vh, 760px);
  overflow: hidden;
  min-height: 0;
}

.hero-compose__head {
  padding: 16px 20px 10px;
  flex-shrink: 0;
  line-height: 1.4;
}

.hero-compose__head .hero-compose__title,
.hero-compose__head .hero-compose__desc {
  display: inline;
  padding: 0;
  margin: 0;
}

.hero-compose__title {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  flex-shrink: 0;
}

.hero-compose__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  flex-shrink: 0;
}

.hero-compose__desc::before {
  content: ' — ';
  color: var(--muted);
}

.hero-compose__select {
  flex: 1 1 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  margin: 0 20px 12px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  min-width: 0;
}

.hero-compose__progress {
  padding: 12px 14px 10px;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.hero-compose__progress strong { color: var(--ink); }

.hero-compose__progress .sel-tags {
  max-height: 108px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  margin-top: 8px;
}

.hero-compose__progress .sel-tag {
  max-width: 100%;
  min-width: 0;
}

.hero-compose__progress .sel-tag--photo {
  flex: 1 1 calc(50% - 6px);
  max-width: calc(50% - 6px);
  min-width: 0;
}

.sel-tag__name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.sel-tag--photo .sel-tag__name {
  flex: 1 1 auto;
}

.hero-compose__search {
  margin: 0;
  padding: 11px 14px;
  border: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  width: 100%;
  flex-shrink: 0;
  background: var(--cream);
}

.hero-compose__search:focus { border-color: var(--line); box-shadow: inset 0 0 0 1px var(--ink); }

.hero-compose__total span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-compose__list {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  padding: 4px 14px 10px;
  -webkit-overflow-scrolling: touch;
}

.hero-compose__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--line);
  margin-top: auto;
  flex-shrink: 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.hero-compose__foot .btn {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 10px;
  letter-spacing: 0.08em;
  line-height: 1.25;
  max-width: 58%;
  white-space: normal;
  text-align: center;
}

.hero-compose__total {
  flex-shrink: 0;
  min-width: 0;
}

.hero-compose__total strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

@media (min-width: 641px) {
  .hero-media {
    align-self: stretch;
    min-height: min(82vh, 700px);
  }

  .hero-compose {
    height: 100%;
    max-height: 100%;
  }

  .hero-compose__select {
    min-height: 0;
  }
}

.compose-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 0.2s;
}

.compose-item:hover { opacity: 0.75; }

.compose-item.on .modal-check {
  background: var(--ink);
  border-color: var(--ink);
}

.compose-item.on .modal-check::after {
  content: '';
  display: block;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}

.compose-thumb--plus {
  width: 40px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border: 1.5px dashed rgba(166, 139, 91, 0.45);
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  flex-shrink: 0;
}

.compose-item.on .compose-thumb--plus {
  background: var(--ink);
  border-color: var(--ink);
  border-style: solid;
  color: var(--white);
}

.compose-thumb--photo {
  width: 40px;
  height: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: var(--cream);
  flex-shrink: 0;
  overflow: hidden;
  padding: 3px 2px;
  border: 1px solid var(--line);
}

.compose-thumb--photo.on {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.compose-thumb--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.sel-tag--photo {
  gap: 8px;
  padding: 4px 10px 4px 4px;
}

.sel-tag__img {
  width: 22px;
  height: 30px;
  object-fit: contain;
  object-position: center bottom;
  flex-shrink: 0;
}

.product-duo--silent .product-duo__zone-label,
.product-duo--silent .product-duo__zone-hint,
.product-duo--silent .product-duo__bridge,
.product-duo--silent .product-duo__caption {
  display: none;
}

/* Packs */
.packs {
  padding: 72px 0;
  background: transparent;
}

.section-head { margin-bottom: 48px; }

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
}

.section-head--light h2 { color: var(--white); }
.section-head--light .eyebrow { color: rgba(255,255,255,0.5); }
.section-head--light .section-desc { color: rgba(255,255,255,0.55); }

.section-desc {
  margin-top: 12px;
  color: var(--muted);
  max-width: 480px;
}

.packs-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pack {
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: transform 0.25s var(--ease);
}

.pack:hover { transform: translateY(-4px); }

.pack--featured { position: relative; }

.pack-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.pack-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pack-visual {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 16px;
  text-align: center;
  transition: transform 0.5s var(--ease);
}

.pack:hover .pack-visual { transform: scale(1.02); }

.pack-visual__hero {
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 76px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.pack-visual__formula {
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 60px);
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.pack-visual__sep {
  margin: 0 0.08em;
  font-weight: 400;
  color: var(--bronze);
}

.pack-visual__accent {
  color: var(--bronze);
}

.pack-visual__badge {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 600;
}

.pack-visual__sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.pack-visual__hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 140px;
  opacity: 0.9;
}

.pack-visual--enfants {
  background: linear-gradient(165deg, #f6f2ee 0%, #ece6f0 100%);
}

.pack-visual--couple {
  background: linear-gradient(140deg, #eeeae5 0%, #e6e2ea 55%, #ebe7e3 100%);
}

.pack-visual--3plus1 {
  background: linear-gradient(155deg, #f2ebe3 0%, #e8dcc8 45%, #f0e9df 100%);
}

.pack--featured .pack-visual--3plus1 {
  background: linear-gradient(155deg, #f4ece0 0%, #dfc9a8 42%, #efe5d6 100%);
}

.pack-visual--famille {
  background: linear-gradient(160deg, #eae7e3 0%, #d9d4cd 100%);
}

.pack-visual--famille .pack-visual__hero {
  font-size: clamp(64px, 8vw, 82px);
}

.pack-frame {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: none;
  background: var(--white);
  padding: 24px 24px 28px;
  transition: box-shadow 0.25s var(--ease);
}

.pack:hover .pack-frame {
  box-shadow: 0 12px 36px var(--fresh-glow);
  border-color: var(--sea-light);
}

.pack--featured .pack-frame {
  border: 2px solid var(--sea-light);
  border-top: none;
}

.pack-frame h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.pack-frame > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
}

.pack-list {
  margin-bottom: 0;
  padding-bottom: 20px;
}

.pack-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.pack-foot .pack-pricing {
  margin-bottom: 16px;
}

.pack-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.price {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}

.price-was {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-note { font-size: 13px; color: var(--muted); }

.price-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--sea-deep);
  background: var(--sea-pale);
  padding: 3px 8px;
  letter-spacing: 0.04em;
}

.pack-list li {
  font-size: 13px;
  color: var(--muted);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
}

.pack-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* Notre promesse */
.promise {
  padding: 88px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.promise-bottle-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 32px 24px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(61, 109, 118, 0.1);
}

.promise-bottle-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bronze-glow), transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  pointer-events: none;
}

.promise-bottle-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  pointer-events: none;
}

.promise-bottle-img {
  position: relative;
  z-index: 1;
  width: auto;
  height: min(340px, 52vw);
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(36, 53, 56, 0.18));
}

.promise-bottle-label {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.promise-bottle-brand {
  position: relative;
  z-index: 1;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.promise-content h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}

.promise-lead {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 540px;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.promise-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 18px 18px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.promise-item:hover {
  border-color: rgba(142, 184, 192, 0.65);
  box-shadow: 0 10px 28px rgba(61, 109, 118, 0.08);
}

.promise-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(142, 184, 192, 0.16), rgba(216, 235, 232, 0.5));
  color: var(--sea-deep);
}

.promise-icon svg {
  width: 22px;
  height: 22px;
}

.promise-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.promise-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.google-trust {
  margin-top: 36px;
}

.google-trust__card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding: 22px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(61, 109, 118, 0.06);
}

.google-trust__badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-trust__score {
  text-align: left;
}

.google-trust__score strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  margin-right: 8px;
}

.google-trust__stars {
  color: var(--amber);
  font-size: 13px;
  letter-spacing: 2px;
}

.google-trust__count {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}

.google-trust__cta {
  margin-left: auto;
  white-space: nowrap;
}

.reviews-google-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: -20px 0 28px;
}

.reviews-google-note a {
  color: var(--sea-deep);
  font-weight: 500;
  border-bottom: 1px solid rgba(90, 143, 153, 0.35);
}

html[dir="rtl"] .google-trust__score { text-align: right; }
html[dir="rtl"] .google-trust__cta { margin-left: 0; margin-right: auto; }
html[dir="rtl"] .promise-grid { direction: rtl; }
html[dir="rtl"] .promise-lead,
html[dir="rtl"] .promise-item p { text-align: right; }

/* Trust band — stats & avis défilants */
.trust-band {
  position: relative;
  padding: 80px 0 0;
  background: linear-gradient(180deg, var(--sea-pale) 0%, var(--cream) 100%);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.trust-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(142, 184, 192, 0.1), transparent 65%);
  pointer-events: none;
}

.trust-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 52px;
}

.trust-band__eyebrow {
  margin-bottom: 12px;
}

.trust-band__title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 40px;
  line-height: 1.2;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-stat {
  padding: 28px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.trust-stat:hover {
  border-color: var(--sea-light);
  box-shadow: 0 8px 28px var(--fresh-glow);
}

.trust-stat__value {
  display: block;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}

.trust-stat__suffix {
  font-size: 0.5em;
  color: var(--muted);
  font-weight: 400;
}

.trust-stat__label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews-marquee {
  position: relative;
  z-index: 1;
  padding: 32px 0 40px;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid var(--line);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.reviews-marquee__track {
  display: flex;
  width: max-content;
  animation: reviews-marquee 45s linear infinite;
}

.reviews-marquee:hover .reviews-marquee__track {
  animation-play-state: paused;
}

.reviews-marquee__group {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.marquee-review {
  flex: 0 0 300px;
  padding: 24px 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.marquee-review:hover {
  border-color: rgba(166, 139, 91, 0.4);
  box-shadow: 0 6px 20px rgba(20, 18, 16, 0.05);
}

.marquee-review__stars {
  color: var(--sea);
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.marquee-review p {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}

.marquee-review footer {
  font-size: 12px;
  color: var(--muted);
}

.marquee-review cite {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
}

@keyframes reviews-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Bestsellers */
.bestsellers {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--noir) 0%, var(--charcoal) 45%, #1e2428 100%);
  position: relative;
  overflow: hidden;
}

.bestsellers::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--bronze-glow), transparent 70%);
  top: -200px;
  right: -100px;
  animation: aura-drift 15s ease-in-out infinite;
  pointer-events: none;
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Products */
.collection {
  padding: 72px 0;
  background: var(--cream);
}

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.catalogue-search {
  width: 100%;
  max-width: 420px;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  margin-bottom: 20px;
  color: var(--ink);
}

.catalogue-search:focus {
  outline: none;
  border-color: var(--bronze);
}

.catalogue-count {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.catalogue-foot {
  text-align: center;
  margin-top: 40px;
}

.filter {
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s;
}

.filter:hover,
.filter.active {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: var(--white);
  border-color: transparent;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.product::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.product:hover::after { left: 150%; }

.product:hover { box-shadow: 0 16px 48px rgba(28, 15, 36, 0.1); }

.product-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(165deg, #f6f3ed 0%, #ece7df 55%, #e6e0d6 100%);
}

.product-photo--duo {
  padding: 0;
}

.product-photo:not(.product-photo--duo) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.product-photo:not(.product-photo--duo) img {
  display: block;
  width: auto;
  height: auto;
  max-width: 68%;
  max-height: 88%;
  object-fit: contain;
  object-position: center center;
  margin: auto;
  padding: 0;
  transition: transform 0.35s var(--ease);
}

.product:hover .product-photo:not(.product-photo--duo) img { transform: scale(1.03); }

/* Duo : référence (info) + flacon L'Incanto (achat) — centrés, têtes écartées */
.product-duo {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 6px 28px;
}

.product-duo__stage {
  flex: 1;
  width: 92%;
  max-width: 240px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-height: 0;
  padding: 4px 0 2px;
}

.product-duo__zone {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 3px 2px;
  border-radius: 5px;
  transition: transform 0.35s var(--ease);
  min-height: 0;
}

.product-duo__zone-img {
  flex: 1;
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: flex-end;
}

.product-duo__zone-label {
  flex-shrink: 0;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.25;
  width: 100%;
}

.product-duo__zone-label--brand {
  color: var(--gold);
}

.product-duo__zone-hint {
  flex-shrink: 0;
  font-size: 5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.85;
  margin-bottom: 2px;
  text-align: center;
  line-height: 1.2;
  width: 100%;
}

.product-duo__zone-hint--product {
  color: var(--ink-soft);
  opacity: 1;
}

/* Référence — tête à gauche */
.product-duo__zone--info {
  flex: 0 1 44%;
  z-index: 1;
  margin-right: -6px;
  border: 1px dashed rgba(122, 117, 112, 0.5);
  background: rgba(255, 255, 255, 0.35);
}

.product-duo__zone--info .product-duo__zone-img {
  justify-content: flex-start;
}

.product-duo__zone--info .product-duo__zone-img img,
.product-duo__zone--info .product-duo__img {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: left bottom;
  transform-origin: left bottom;
  transform: rotate(-7deg);
  filter: drop-shadow(0 4px 12px rgba(28, 15, 36, 0.1));
}

/* L'Incanto — tête à droite */
.product-duo__zone--product {
  flex: 0 1 52%;
  z-index: 2;
  margin-left: -6px;
  border: 1.5px solid rgba(166, 139, 91, 0.7);
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.98) 0%, rgba(247, 244, 239, 0.92) 100%);
  box-shadow: 0 4px 14px rgba(28, 15, 36, 0.09);
}

.product-duo__zone--product .product-duo__zone-img {
  justify-content: flex-end;
}

.product-duo__zone--product .product-duo__zone-img img {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: right bottom;
  transform-origin: right bottom;
  transform: rotate(7deg);
  filter: drop-shadow(0 8px 18px rgba(28, 15, 36, 0.14));
}

.product-duo__bridge {
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 28%;
  z-index: 3;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(28, 15, 36, 0.06);
}

.product-duo__bridge-icon {
  font-size: 11px;
  line-height: 1;
  color: var(--muted);
  font-weight: 600;
}

.product-duo__ref img,
.product-duo__ours img,
.product-duo__ref .product-duo__img {
  display: block;
}

/* Placeholder flacon (pas une photo) */
.bottle-slot {
  flex: 1;
  width: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  border: 1.5px dashed rgba(166, 139, 91, 0.5);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
}

.bottle-slot__icon {
  width: 40%;
  max-width: 56px;
  height: auto;
  opacity: 0.4;
}

.bottle-slot__label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--muted);
  line-height: 1.35;
}

.bottle-slot--compact {
  padding: 4px 3px;
  gap: 3px;
  border-width: 1px;
}

.bottle-slot--compact .bottle-slot__icon {
  max-width: 22px;
}

.bottle-slot--compact .bottle-slot__label {
  font-size: 5px;
  letter-spacing: 0.06em;
}

.bottle-slot--silent .bottle-slot__label {
  display: none;
}

.product-duo__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 7px 8px 8px;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(166, 139, 91, 0.25);
  line-height: 1.4;
  z-index: 4;
}

.product-duo--solo {
  padding-bottom: 12px;
}

.product-duo--solo .product-duo__stage {
  justify-content: center;
}

.product-duo--solo .product-duo__zone--product {
  flex: 0 1 58%;
  margin-left: 0;
}

.product-duo--solo .product-duo__zone--product .product-duo__zone-img {
  justify-content: center;
}

.product-duo--solo .product-duo__zone--product .product-duo__zone-img img {
  object-position: center bottom;
  transform: none;
}

.product:hover .product-duo__zone--product { transform: translateY(-2px); }
.product:hover .product-duo--solo .product-duo__zone--product { transform: translateY(-2px); }

/* Modal — mini duo */
.product-duo--compact {
  padding: 2px 2px 14px;
}

.product-duo--compact .product-duo__stage {
  width: 100%;
  max-width: none;
}

.product-duo--compact .product-duo__zone--info {
  flex: 0 1 42%;
  margin-right: -4px;
}

.product-duo--compact .product-duo__zone--product {
  flex: 0 1 54%;
  margin-left: -4px;
}

.product-duo--compact .product-duo__zone--info .product-duo__zone-img img,
.product-duo--compact .product-duo__zone--info .product-duo__img {
  transform: rotate(-5deg);
}

.product-duo--compact .product-duo__zone--product .product-duo__zone-img img {
  transform: rotate(5deg);
}

.product-duo--compact .product-duo__zone-label { font-size: 4px; }
.product-duo--compact .product-duo__zone-hint { font-size: 3.5px; margin-bottom: 1px; }
.product-duo--compact .product-duo__bridge { width: 12px; height: 12px; margin-bottom: 22%; }
.product-duo--compact .product-duo__bridge-icon { font-size: 8px; }

.product-duo--compact .product-duo__caption {
  font-size: 4.5px;
  letter-spacing: 0.04em;
  padding: 2px 3px 3px;
}

.modal-thumb--duo {
  width: 52px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, #f6f3ed, #ece7df);
  border-radius: 2px;
}

.product-photo-placeholder {
  width: 68%;
  height: 68%;
  margin: auto;
  border-radius: 2px;
  background: linear-gradient(160deg, #ede9e2 0%, #e0dbd2 100%);
}

.product-body { padding: 14px 16px 18px; }

.product-cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.25;
}

.product-ref {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.product-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.product-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin-bottom: 8px;
  font-size: 11px;
  line-height: 1.35;
}

.rating-source {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
  padding: 2px 7px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

a.rating-source:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: #fff;
}

.rating-source-ext {
  font-size: 10px;
  line-height: 1;
  opacity: 0.75;
}

.product-stars {
  color: var(--amber);
  font-weight: 600;
  font-size: 12px;
}

.product-votes {
  color: var(--muted);
  font-size: 11px;
}

.rating-not-ours {
  flex: 1 1 100%;
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.85;
}

.rating-disclaimer {
  font-size: 11px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.55;
  max-width: 560px;
}

.collections-hub .rating-disclaimer { color: var(--muted); }

.rating-disclaimer--prominent {
  max-width: 42em;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.coll-desc {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  max-width: 520px;
}

.collections-hub .coll-desc,
.collections-hub .coll-showcase .coll-desc { color: var(--muted); }

.collection-note {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--muted);
}

/* Editorial */
.editorial {
  padding: 100px 0;
  background: var(--white);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.editorial-img {
  overflow: hidden;
}

.editorial-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.editorial-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}

.editorial-text > p {
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.75;
}

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.specs dt {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.specs dd {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}

/* Reviews */
.reviews {
  padding: 100px 0;
  background: var(--cream);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.review:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--fresh-glow);
  border-color: var(--sea-light);
}

.review-stars {
  color: var(--sea);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 24px;
}

.review footer cite {
  display: block;
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.review footer span {
  font-size: 12px;
  color: var(--muted);
}

/* Delivery */
.delivery {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--mint) 0%, var(--sea-pale) 100%);
  position: relative;
}

.delivery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 20% 0%, rgba(255, 255, 255, 0.5), transparent 55%);
  pointer-events: none;
}

.regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.region {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.region:hover {
  border-color: var(--sea-light);
  box-shadow: 0 8px 24px var(--fresh-glow);
}

.region h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

.region p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.delivery .section-head--light h2 { color: var(--ink); }
.delivery .section-head--light .eyebrow {
  background: linear-gradient(90deg, var(--sea), var(--bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.delivery .section-head--light .section-desc { color: var(--muted); }

/* FAQ */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-list { display: flex; flex-direction: column; }

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-list summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list p {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

/* CTA band */
.cta-band {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--sea-pale) 0%, var(--mint) 100%);
  border-top: 1px solid var(--line);
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.cta-band p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 14px;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, #1e2e31 100%);
  color: rgba(255, 255, 255, 0.55);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .brand {
  color: var(--white);
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 20px;
  max-width: 260px;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

.social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
}

.legal-note { opacity: 0.45; max-width: 420px; }

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(26,23,20,0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-backdrop[hidden] { display: none; }

.modal {
  background: var(--white);
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 32px 80px rgba(26,23,20,0.2);
  touch-action: auto;
  overflow: hidden;
  min-height: 0;
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.modal-x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  font-size: 22px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color 0.2s;
}

.modal-x:hover { color: var(--ink); }

.modal h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  padding: 28px 28px 6px;
}

.modal-desc {
  padding: 0 28px 16px;
  font-size: 14px;
  color: var(--muted);
}

.modal-progress {
  padding: 0 28px 12px;
}

.modal-progress > span {
  font-size: 13px;
  color: var(--muted);
}

.modal-progress strong { color: var(--ink); }

.sel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  min-height: 24px;
}

.sel-tag {
  font-size: 11px;
  background: var(--cream);
  color: var(--ink-soft);
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  min-width: 0;
}

.sel-tag button {
  font-size: 14px;
  line-height: 1;
  color: var(--muted);
}

.sel-tag button:hover { color: var(--ink); }

.sel-tag--free {
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.1);
}

.sel-tag__free {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bronze);
}

.modal-search {
  margin: 0 28px 12px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  width: calc(100% - 56px);
}

.modal-search:focus { border-color: var(--ink); }

/* Volume picker — pack personnalisé 10 / 30 / 50 ml */
.volume-picker {
  margin-bottom: 14px;
}

.volume-picker--modal {
  padding: 0 28px 4px;
}

.volume-picker--compose {
  margin: 0;
  padding: 0 20px 10px;
  flex-shrink: 0;
  border-bottom: none;
}

.volume-picker--compose .volume-picker__label {
  margin-bottom: 8px;
}

.volume-picker--compose .volume-picker__hint {
  display: none;
}

.volume-picker--compose .volume-opt {
  min-height: 50px;
  padding: 8px 6px;
}

.volume-picker--compose .volume-opt__ml {
  font-size: 16px;
}

.hero-compose .volume-picker--compose {
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  padding-bottom: 12px;
}

.volume-picker__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.volume-picker__opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.volume-opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.volume-opt:hover:not(:disabled):not(.active) {
  border-color: var(--sea-light);
}

.volume-opt.active {
  border-color: var(--sea-deep);
  background: linear-gradient(180deg, rgba(142, 184, 192, 0.12), rgba(255, 255, 255, 0.9));
  box-shadow: 0 4px 16px var(--fresh-glow);
}

.volume-opt:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.volume-opt__ml {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}

.volume-opt__price {
  font-size: 11px;
  font-weight: 500;
  color: var(--sea-deep);
  letter-spacing: 0.02em;
}

.volume-picker__hint {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}

html[dir="rtl"] .volume-picker__hint { text-align: right; }

.modal-list {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 0 28px;
  max-height: 280px;
  min-height: 0;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.modal-item,
.compose-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal-item:hover,
.compose-item:hover { opacity: 0.75; }

.modal-item.on .modal-check,
.compose-item.on .modal-check {
  background: var(--ink);
  border-color: var(--ink);
}

.modal-item.on .modal-check::after,
.compose-item.on .modal-check::after {
  content: '';
  display: block;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid white;
  border-bottom: 1.5px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
}

.modal-thumb {
  width: 40px;
  height: 48px;
  object-fit: contain;
  background: var(--cream);
  flex-shrink: 0;
  padding: 2px;
}

.modal-thumb--empty {
  background: linear-gradient(160deg, #ede9e2, #e0dbd2);
}

.modal-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.modal-item-text span {
  font-size: 12px;
  color: var(--muted);
}

.modal-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line);
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-foot {
  padding: 20px 28px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal-total span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.modal-total strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
}

/* WhatsApp */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  width: 54px;
  height: 54px;
  background: #1a9e52;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,158,82,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(26,158,82,0.45);
}

.hero-body h1 sup {
  font-size: 0.55em;
  vertical-align: super;
}

.hero-ar {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 17px;
  color: var(--bronze);
  direction: rtl;
  text-align: right;
  margin: -8px 0 16px;
}

html[dir="rtl"] .hero-ar { text-align: right; }

/* Collections hub */
.collections-hub {
  padding: 72px 0;
  background: var(--cream);
}

.collections-hub .section-head h2 { color: var(--ink); }
.collections-hub .section-head .section-desc { color: var(--muted); }

.coll-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}

.coll-pill {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 0.2s var(--ease);
}

.coll-pill:hover,
.coll-pill.active {
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: var(--white);
  border-color: transparent;
}

.coll-showcase {
  background: var(--white);
  padding: 32px;
}

.coll-showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}

.coll-showcase-head h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
}

.coll-ar {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 14px;
  color: var(--bronze);
  direction: rtl;
}

.coll-see-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.coll-see-all:hover { color: var(--sea-deep); }

.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.product-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 252, 250, 0.9);
  border: 1px solid rgba(229, 223, 214, 0.9);
  line-height: 0;
  cursor: default;
}

.product-badge__icon {
  width: 12px;
  height: 12px;
  display: block;
}

.product-badge--new {
  color: var(--amber);
  border-color: rgba(201, 162, 39, 0.28);
}

.product-badge--top {
  color: var(--bronze);
  border-color: rgba(166, 139, 91, 0.28);
}

/* Reveal on scroll */
.reveal,
.anim-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible,
.anim-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Lang switch */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 50px;
  overflow: hidden;
}

.lang-btn {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--sea-deep);
  color: var(--white);
}

/* RTL Arabic */
html[dir="rtl"] body {
  font-family: "Noto Sans Arabic", var(--sans);
}

html[dir="rtl"] .announcement,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .hero-content h1,
html[dir="rtl"] .hero-lead,
html[dir="rtl"] .hero-season,
html[dir="rtl"] .section-head,
html[dir="rtl"] .section-desc,
html[dir="rtl"] .editorial-text,
html[dir="rtl"] .pack-frame,
html[dir="rtl"] .trust-band__title,
html[dir="rtl"] .trust-stat,
html[dir="rtl"] .review,
html[dir="rtl"] .marquee-review,
html[dir="rtl"] .product-rating,
html[dir="rtl"] .coll-showcase-head,
html[dir="rtl"] .coll-desc,
html[dir="rtl"] .rating-disclaimer,
html[dir="rtl"] .catalogue-count,
html[dir="rtl"] .boutique-text,
html[dir="rtl"] .cta-band-inner,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .footer-brand p,
html[dir="rtl"] .seo-card,
html[dir="rtl"] .univers-overlay,
html[dir="rtl"] .modal h2,
html[dir="rtl"] .modal-desc,
html[dir="rtl"] .modal-progress,
html[dir="rtl"] .modal-foot,
html[dir="rtl"] .modal-item-text,
html[dir="rtl"] .legal-page {
  text-align: right;
}

html[dir="rtl"] .menu-btn {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .header-actions {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .hero-inner,
html[dir="rtl"] .boutique-grid,
html[dir="rtl"] .editorial-grid {
  direction: rtl;
}

html[dir="rtl"] .hero-compose {
  margin-left: 0;
  margin-right: auto;
}

html[dir="rtl"] .nav a {
  text-align: right;
}

html[dir="rtl"] .region,
html[dir="rtl"] .faq-list summary,
html[dir="rtl"] .faq-list p {
  text-align: right;
}

html[dir="rtl"] .pack-label {
  left: auto;
  right: 16px;
}

html[dir="rtl"] .pack-list li {
  padding-left: 0;
  padding-right: 14px;
}

html[dir="rtl"] .pack-list li::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .product-badge {
  right: auto;
  left: 8px;
}

html[dir="rtl"] .seo-delay {
  right: auto;
  left: 20px;
}

html[dir="rtl"] .rating-disclaimer--prominent {
  border-left: 1px solid var(--line);
  border-right: 3px solid var(--amber);
}

html[dir="rtl"] .compare-table th:first-child,
html[dir="rtl"] .compare-table td:first-child {
  text-align: right;
}

html[dir="rtl"] .modal-x {
  right: auto;
  left: 16px;
}

html[dir="rtl"] .modal-item.on .modal-check::after,
html[dir="rtl"] .compose-item.on .modal-check::after {
  border-left: none;
  border-right: 1.5px solid white;
}

html[dir="rtl"] .wa-btn {
  right: auto;
  left: 28px;
}

html[dir="rtl"] .reviews-marquee__track {
  animation-direction: reverse;
}

html[dir="rtl"] .reviews-marquee__group {
  padding-right: 0;
  padding-left: 16px;
}

html[dir="rtl"] .splash-name,
html[dir="rtl"] .splash-tag {
  direction: rtl;
}

html[dir="rtl"] .coll-ar,
html[dir="rtl"] .pack-ar,
html[dir="rtl"] .review-ar {
  text-align: right;
}

.pack-ar {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 14px;
  color: var(--bronze);
  margin-bottom: 6px;
  direction: rtl;
}

.review-ar {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 14px;
  color: var(--muted);
  direction: rtl;
  margin-top: 8px;
  margin-bottom: 16px;
}

/* Comparatif */
.compare {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}

.compare h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  margin-bottom: 24px;
}

.compare-table-wrap { overflow-x: auto; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--ink);
}

.compare-table thead th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--cream);
}

.compare-table .col-best {
  background: rgba(201, 162, 39, 0.08);
  font-weight: 600;
  color: var(--ink);
  position: relative;
}

.compare-table .col-best::after {
  content: '★';
  display: block;
  font-size: 10px;
  color: var(--amber);
}

/* Univers */
.univers {
  padding: 100px 0;
  background: var(--white);
}

.univers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.univers-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: block;
}

.univers-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.univers-card:hover img { transform: scale(1.06); }

.univers-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20, 18, 16, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}

.univers-tag {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.univers-ar {
  font-family: 'Noto Sans Arabic', sans-serif;
  font-size: 16px;
  opacity: 0.75;
  margin: 4px 0 8px;
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .univers-ar { text-align: right; }

.univers-overlay p {
  font-size: 13px;
  opacity: 0.65;
}

/* SEO villes */
.seo-cities {
  padding: 100px 0;
  background: var(--cream);
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.seo-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.seo-card:hover {
  border-color: var(--bronze);
  box-shadow: 0 12px 40px rgba(20, 18, 16, 0.06);
}

.seo-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  padding-right: 48px;
}

.seo-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.seo-delay {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--bronze);
  background: rgba(166, 139, 91, 0.12);
  padding: 4px 8px;
}

/* Boutique */
.boutique {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.boutique-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.boutique-text h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 16px;
}

.boutique-text > p {
  color: var(--muted);
  margin-bottom: 20px;
}

.boutique-text address {
  font-style: normal;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}

.boutique-map {
  aspect-ratio: 16/10;
  background: var(--cream);
  overflow: hidden;
}

.boutique-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Legal pages */
.legal-page {
  padding: 80px 0 100px;
  min-height: 100vh;
}

.legal-back {
  display: inline-block;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
}

.legal-back:hover { color: var(--ink); }

.legal-page h1 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 24px;
}

.legal-page h2 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  margin: 28px 0 12px;
}

.legal-page p {
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 48px 0 64px; }
  .hero-media { max-width: 100%; margin: 0 auto; width: 100%; }
  .hero-compose { margin-left: 0; max-width: none; }
  .packs-row { grid-template-columns: repeat(2, 1fr); max-width: none; margin: 0; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .bestsellers-grid,
  .products,
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .regions { grid-template-columns: repeat(2, 1fr); }
  .seo-grid { grid-template-columns: repeat(2, 1fr); }
  .boutique-grid { grid-template-columns: 1fr; }
  .promise-grid { grid-template-columns: 1fr; gap: 32px; }
  .promise-bottle-stage { min-height: 340px; }

  .hero-compose {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-height: min(88vh, 720px);
  }

  .hero-compose__select {
    min-height: 360px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero-compose__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-compose__foot .btn {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wrap,
  .header-inner { padding-left: 18px; padding-right: 18px; }

  .hero { padding: 36px 0 52px; }
  .hero-content h1 { font-size: clamp(30px, 8vw, 40px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }

  .packs,
  .collection,
  .promise,
  .trust-band,
  .editorial,
  .delivery,
  .boutique,
  .bestsellers { padding-top: 56px; padding-bottom: 56px; }

  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(26px, 7vw, 34px); }

  .bestsellers-grid,
  .products,
  .coll-grid { gap: 12px; }

  .modal-backdrop { padding: 0; align-items: flex-end; }
  .modal {
    max-width: none;
    width: 100%;
    height: min(98dvh, 98vh);
    max-height: min(98dvh, 98vh);
    border-radius: 14px 14px 0 0;
  }

  .modal-list {
    flex: 1 1 0;
    max-height: none;
    min-height: 0;
  }

  .google-trust__card {
    flex-direction: column;
    text-align: center;
    padding: 20px 18px;
  }

  .google-trust__score { text-align: center; }

  .google-trust__cta {
    margin-left: 0;
    width: 100%;
  }

  html[dir="rtl"] .google-trust__cta { margin-right: 0; }
}

@media (max-width: 640px) {
  html,
  body { overflow-x: hidden; }

  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
  }

  body.menu-open .announcement,
  body.menu-open main {
    visibility: hidden;
    pointer-events: none;
  }

  body.menu-open .header {
    z-index: 220;
    background: transparent;
    box-shadow: none;
  }

  body.menu-open .header-inner {
    position: relative;
    z-index: 222;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  body.menu-open .logo {
    position: relative;
    z-index: 223;
  }

  body.menu-open .header-actions {
    opacity: 0;
    pointer-events: none;
  }

  body.menu-open .menu-btn {
    z-index: 221;
    position: fixed;
    top: calc(8px + env(safe-area-inset-top, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
  }

  body.menu-open .menu-btn span:nth-child(1) {
    transform: translateY(3.75px) rotate(45deg);
  }

  body.menu-open .menu-btn span:nth-child(2) {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .announcement {
    padding: 10px 14px;
    font-size: 11px;
    line-height: 1.45;
  }

  .header-inner {
    height: 60px;
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo { flex: 1; min-width: 0; }
  .logo-icon { width: 36px; height: 36px; }
  .logo-name { font-size: 18px; }
  .logo-sub { display: none; }

  .menu-btn {
    display: flex;
    order: 3;
    margin-left: 0;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
    gap: 8px;
  }

  .lang-switch { order: 0; }
  .lang-btn { padding: 6px 10px; font-size: 10px; }
  .header-cta { display: none; }

  .nav {
    display: flex;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    min-height: 100dvh;
    z-index: 210;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding:
      calc(60px + env(safe-area-inset-top, 0px))
      20px
      calc(28px + env(safe-area-inset-bottom, 0px));
    gap: 0;
    margin: 0;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease), visibility 0.35s;
    border-top: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    transform: none;
    visibility: visible;
  }

  .nav:not(.open) {
    pointer-events: none;
  }

  .nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    line-height: 1.3;
    white-space: normal;
  }

  .nav a:last-child { border-bottom: none; }

  .wrap { padding-left: 16px; padding-right: 16px; }

  .hero-inner { gap: 28px; }
  .hero-pricing { gap: 8px; }
  .hero-lead { font-size: 15px; max-width: none; }
  .hero-season { font-size: 14px; margin-bottom: 20px; }
  .hero-perks {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
  }

  .hero-compose {
    max-height: min(88vh, 720px);
    overflow: hidden;
    box-shadow: 0 10px 32px var(--fresh-glow);
  }

  .hero-compose__head,
  .hero-compose__foot {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-compose__select {
    margin-left: 16px;
    margin-right: 16px;
    min-height: 280px;
  }

  .hero-compose__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-compose__foot .btn {
    max-width: none;
    width: 100%;
  }

  .hero-compose__head { padding-top: 16px; }
  .hero-compose__title { font-size: 20px; }

  .compose-item,
  .modal-item { gap: 10px; }
  .modal-item-text { min-width: 0; flex: 1; }
  .modal-item-text strong {
    font-size: 13px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .packs-row { grid-template-columns: 1fr; gap: 20px; }
  .pack:hover { transform: none; }
  .pack-label { top: 12px; left: 12px; }

  .trust-band { padding-top: 48px; }
  .trust-band__title { margin-bottom: 24px; }
  .trust-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-stat { padding: 18px 10px; }
  .trust-stat__value { font-size: clamp(24px, 7vw, 32px); }
  .trust-stat__label { font-size: 10px; letter-spacing: 0.06em; }

  .marquee-review { flex: 0 0 min(280px, 82vw); }
  .reviews-marquee { padding: 24px 0 28px; }

  .bestsellers-grid,
  .products,
  .coll-grid { grid-template-columns: 1fr 1fr; gap: 10px; }

  .product-body { padding: 12px 10px 14px; }
  .product-name {
    font-size: 14px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-ref { font-size: 11px; margin-bottom: 8px; }
  .product-cat { font-size: 9px; }
  .product-rating { font-size: 10px; gap: 3px 6px; }

  .product-duo { padding: 4px 4px 22px; }
  .product-duo__zone-label { font-size: 5px; }
  .product-duo__zone-hint { font-size: 4px; }

  .product-photo--mobile {
    aspect-ratio: auto;
    height: 100px;
    padding: 6px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-mobile-pair {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    width: 100%;
    height: 100%;
  }

  .product-mobile-pair__ref,
  .product-mobile-pair__ours {
    flex: 0 1 50%;
    display: flex;
    align-items: flex-end;
    height: 88px;
  }

  .product-mobile-pair__ref {
    justify-content: flex-end;
    margin-right: -14px;
    z-index: 1;
  }

  .product-mobile-pair__ours {
    justify-content: flex-start;
    margin-left: -14px;
    z-index: 2;
  }

  .product-mobile-pair__img {
    display: block;
    width: auto;
    height: 100%;
    max-height: 88px;
    max-width: 92%;
    object-fit: contain;
  }

  .product-mobile-pair__ref .product-mobile-pair__img {
    object-position: left bottom;
    transform-origin: left bottom;
    transform: rotate(-10deg);
    filter: drop-shadow(0 3px 8px rgba(28, 15, 36, 0.1));
  }

  .product-mobile-pair__img--ours {
    object-position: right bottom;
    transform-origin: right bottom;
    transform: rotate(10deg);
    filter: drop-shadow(0 3px 8px rgba(28, 15, 36, 0.14));
  }

  .product-mobile-pair__sep {
    position: absolute;
    left: 50%;
    bottom: 58px;
    transform: translateX(-50%);
    flex-shrink: 0;
    font-size: 9px;
    line-height: 1;
    color: var(--muted);
    opacity: 0.55;
    z-index: 3;
    pointer-events: none;
  }

  .product-mobile-pair--solo {
    justify-content: center;
    align-items: center;
  }

  .product-mobile-pair--solo .product-mobile-pair__img {
    transform: none;
    max-height: 80px;
  }

  .coll-showcase { padding: 16px; }
  .coll-pills {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .coll-pills::-webkit-scrollbar { display: none; }
  .coll-pill { flex-shrink: 0; }

  .filters { gap: 6px; }
  .filter { padding: 8px 14px; font-size: 11px; }

  .catalogue-search {
    max-width: none;
    padding: 12px 14px;
  }

  .regions,
  .seo-grid { grid-template-columns: 1fr; }

  .cta-band { padding: 48px 0; }
  .cta-band-inner { text-align: center; }
  .cta-band h2 { font-size: clamp(24px, 7vw, 30px); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer { padding: 48px 0 28px; }

  .modal h2 {
    font-size: 18px;
    padding: 14px 44px 2px 14px;
    line-height: 1.15;
  }

  .modal-desc { display: none; }

  .volume-picker--modal {
    padding: 0 14px 6px;
    flex-shrink: 0;
  }

  .volume-opt { min-height: 52px; padding: 8px 6px; }
  .volume-opt__ml { font-size: 15px; }
  .volume-picker__hint { font-size: 10px; }

  .modal-progress {
    padding: 0 14px 6px;
    flex-shrink: 0;
  }

  .modal-progress > span { font-size: 12px; }

  .sel-tags {
    margin-top: 4px;
    max-height: 52px;
    overflow-y: auto;
  }

  .modal-search {
    width: auto;
    margin: 0 14px 8px;
    padding: 10px 12px;
    font-size: 16px;
    flex-shrink: 0;
  }

  .modal-list {
    padding: 0 14px;
    flex: 1 1 0;
    max-height: none;
    min-height: 0;
  }

  .modal-list .compose-item {
    padding: 8px 0;
    gap: 10px;
  }

  .modal-foot {
    flex-shrink: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .modal-total strong { font-size: 22px; }

  .hero-compose__foot {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .modal-foot .btn,
  .hero-compose__foot .btn { width: 100%; }

  .compare-table { font-size: 12px; }
  .compare-table th,
  .compare-table td { padding: 10px 8px; }
}

@media (max-width: 380px) {
  .products,
  .coll-grid,
  .bestsellers-grid { grid-template-columns: 1fr; }

  .trust-stats { grid-template-columns: 1fr 1fr; }
  .hero-compose__total strong { font-size: 24px; }
}

/* Mobile lite — parcours simplifié (desktop inchangé) */
@media (max-width: 640px) {
  .hero-media { display: none; }

  .hero-content h1 { font-size: clamp(28px, 8.5vw, 36px); }
  .hero-season { display: none; }
  .hero-lead {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-perks {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 20px;
    padding-top: 16px;
    font-size: 11px;
  }

  .pack-img { display: none; }
  .pack-frame > p,
  .pack-list { display: none; }
  .pack-frame {
    border: 1px solid var(--line);
    background: var(--white);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: auto;
  }
  .pack--featured .pack-frame {
    border-color: var(--sea-light);
    box-shadow: 0 8px 24px var(--fresh-glow);
  }
  .pack-label { top: 10px; left: 10px; }

  .trust-band__title { font-size: clamp(22px, 6vw, 28px); }
  .reviews-marquee { display: none; }
  .trust-band__inner { padding-bottom: 32px; }

  .collections-hub .season-tag,
  .collections-hub .section-desc,
  .collections-hub .rating-disclaimer--prominent { display: none; }
  .coll-showcase-head .coll-desc { display: none; }
  .coll-grid { grid-template-columns: 1fr 1fr; }

  #catalogue .filters .filter:nth-child(n+7) { display: none; }
  #catalogue .section-desc,
  #catalogue .collection-note { display: none; }

  .product-ref { margin-bottom: 0; }

  .seo-cities { display: none; }

  .reviews .review:nth-child(n+3) { display: none; }
  .reviews .section-desc { display: none; }

  .delivery .section-desc { display: none; }
  .regions { grid-template-columns: 1fr; gap: 10px; }
  .region { padding: 14px 16px; }
  .region:nth-child(n+4) { display: none; }

  .boutique-map { display: none; }
  .boutique-text > p:not(.eyebrow) { font-size: 14px; }

  .faq-list details:nth-child(n+4) { display: none; }

  html[dir="rtl"] .header-actions {
    margin-left: 0;
    margin-right: auto;
  }

  html[dir="rtl"] .nav {
    transform: translateX(-100%);
  }

  html[dir="rtl"] body.menu-open .menu-btn {
    right: auto;
    left: calc(16px + env(safe-area-inset-left, 0px));
  }

  html[dir="rtl"] .pack-label {
    left: auto;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__track {
    animation: none !important;
  }
  .reveal,
  .anim-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ——— Saisons : légère lueur dorée, même identité luxe ——— */
.season-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea);
  margin-bottom: 8px;
}

html[data-season="spring"] .hero::before {
  background: radial-gradient(ellipse 70% 60% at 90% 10%, rgba(201, 162, 39, 0.07), transparent 60%);
}

html[data-season="summer"] .hero::before {
  background:
    radial-gradient(ellipse 70% 55% at 88% 10%, rgba(142, 184, 192, 0.16), transparent 58%),
    radial-gradient(ellipse 50% 45% at 8% 90%, rgba(216, 235, 232, 0.22), transparent 55%);
}

html[data-season="autumn"] .hero::before {
  background: radial-gradient(ellipse 70% 60% at 88% 12%, rgba(166, 139, 91, 0.1), transparent 60%);
}

html[data-season="winter"] .hero::before {
  background: radial-gradient(ellipse 65% 55% at 80% 20%, rgba(61, 74, 82, 0.06), transparent 55%);
}
