/*
Theme Name: Rozayna
Theme URI: https://rozayna.com
Author: Rozayna
Description: Thème Rozayna — design Zaro à l'identique. Palette : Nude · Beige Sable · Noir · Mauve/Lilas
Version: 5.44.0
Text Domain: rozayna
*/

/* ═══════════════════════════════════════════════════
   VARIABLES ROZAYNA — palette exacte
═══════════════════════════════════════════════════ */
:root {
  /* Palette */
  --nude:          #F5EDE3;
  --nude-light:    #FAF7F3;
  --beige:         #D4C4A8;
  --beige-mid:     #C8B898;
  --noir:          #1A1A1A;
  --noir-soft:     #2C2C2C;
  --mauve:         #C4A8D4;
  --mauve-dark:    #9B7CAE;
  --mauve-light:   #EDE0F5;
  --white:         #FFFFFF;
  --gray:          #888880;
  --gray-light:    #C0B8B0;
  --border:        #E8E0D8;

  /* Fonts */
  --font-h: 'Bricolage Grotesque', 'Playfair Display', Georgia, serif;
  --font-b: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:    1440px;
  --gutter:   40px;
  --radius:   0px;
  --header-h: 72px;
  --banner-h: 44px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--nude-light);
  color: var(--noir);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-h);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--noir);
}

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

/* ═══════════════════════════════════════════════════
   ANIMATIONS — data-reveal (comme Zaro)
═══════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal]:nth-child(2) { transition-delay: .1s; }
[data-reveal]:nth-child(3) { transition-delay: .2s; }
[data-reveal]:nth-child(4) { transition-delay: .3s; }

/* ═══════════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--white);
  color: var(--noir);
  border-color: var(--white);
}
.btn-primary:hover {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--noir);
}
.btn-dark {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}
.btn-dark:hover {
  background: var(--mauve-dark);
  border-color: var(--mauve-dark);
}
.btn-violet {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}
.btn-violet:hover {
  background: var(--mauve-dark);
  border-color: var(--mauve-dark);
}
.btn-text {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s var(--ease), color .25s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.btn-text:hover { gap: 14px; }
.rzn-btn-line {
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════
   BANNER PROMO
═══════════════════════════════════════════════════ */
.rzn-banner {
  background: var(--noir);
  color: var(--white);
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /* position: relative → la banner reste en haut au chargement (pousse le header vers le bas)
     puis se fait emporter par le scroll. Le header glisse à top:0 via .is-scrolled. */
  position: relative;
  z-index: 200;
  font-family: var(--font-b);
}
.rzn-banner-inner { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; }
.rzn-banner-inner .terms {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.7;
  transition: opacity .2s;
}
.rzn-banner-inner .terms:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.rzn-header {
  position: fixed;
  top: var(--banner-h);
  left: 0; right: 0;
  height: var(--header-h);
  z-index: 199;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), top .3s var(--ease);
}
/* Au scroll : la banner promo sort, le header glisse en haut (top: 0) et devient noir */
.rzn-header.is-scrolled {
  top: 0;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}
/* WordPress admin bar (32px / 46px mobile) — décale le header pour ne pas écraser le banner */
body.admin-bar .rzn-header           { top: calc(var(--banner-h) + 32px); }
body.admin-bar .rzn-header.is-scrolled { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .rzn-header           { top: calc(var(--banner-h) + 46px); }
  body.admin-bar .rzn-header.is-scrolled { top: 46px; }
}
.rzn-header-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.rzn-logo { display: flex; align-items: center; flex-shrink: 0; }
.rzn-logo img { height: 36px; width: auto; }
.rzn-logo-text {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}

/* Nav */
.rzn-nav { display: flex; gap: 36px; align-items: center; }
.rzn-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  text-transform: uppercase;
}
.rzn-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--white);
  transition: width .3s var(--ease);
}
.rzn-nav a:hover::after,
.rzn-nav a.is-active::after { width: 100%; }

/* Dropdown */
.rzn-nav-item-dropdown { position: relative; }
.rzn-nav-item-dropdown > span {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.rzn-nav-item-dropdown > span::after {
  content: '';
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform .25s;
}
.rzn-nav-item-dropdown:hover > span::after { transform: rotate(225deg); margin-top: 2px; }
.rzn-nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--nude-light);
  border: 1px solid var(--border);
  padding: 10px 0;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
  box-shadow: 0 12px 40px rgba(26,26,26,0.12);
}
.rzn-nav-item-dropdown:hover .rzn-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.rzn-nav-dropdown a {
  display: block;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 500;
  color: var(--noir) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.rzn-nav-dropdown a::after { display: none; }
.rzn-nav-dropdown a:hover { background: var(--nude); color: var(--mauve-dark); }

/* Icones */
.rzn-icons { display: flex; align-items: center; gap: 14px; }
.rzn-icons button,
.rzn-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  color: var(--white);
  position: relative;
  transition: background .25s;
  border-radius: 50%;
}
.rzn-icons button:hover,
.rzn-icons a:hover { background: rgba(255,255,255,0.12); }
.rzn-icons svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; }
.rzn-cart-count {
  font-size: 12px;
  font-weight: 600;
  margin-left: -4px;
}
.rzn-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.rzn-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: all .3s var(--ease);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════════════════ */
/* ═══ MOBILE NAV — Plein écran style Zaro ═══ */
.rzn-mobile-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--noir);
  z-index: 9000;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.rzn-mobile-nav.is-open { transform: translateX(0); }

/* Header du drawer */
.rzn-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.rzn-mobile-nav-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
}
.rzn-mobile-nav-logo span {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.rzn-mobile-nav-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rzn-mobile-nav-icons button {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.rzn-mobile-cart-count { font-size: 13px; font-weight: 600; color: var(--white); }
.rzn-mobile-nav-close { color: var(--white) !important; }

/* Liens */
.rzn-mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 8px 0 40px;
  flex: 1;
}
.rzn-mobile-nav-links > a,
.rzn-mobile-nav-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  padding: 18px 24px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  letter-spacing: -0.02em;
  width: 100%;
  text-decoration: none;
  transition: color .2s;
}
.rzn-mobile-nav-links > a:hover,
.rzn-mobile-nav-accordion-trigger:hover { color: var(--mauve); }

/* Flèche accordion */
.rzn-mobile-nav-accordion-trigger svg {
  transition: transform .25s;
  flex-shrink: 0;
}
.rzn-mobile-nav-accordion-trigger.is-open svg { transform: rotate(90deg); }

/* Sous-liens Collections */
.rzn-mobile-nav-accordion-body {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  padding: 4px 0 12px;
}
.rzn-mobile-nav-accordion-body a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 12px 24px 12px 40px;
  text-decoration: none;
  transition: color .2s;
}
.rzn-mobile-nav-accordion-body a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   HERO — Zaro style
═══════════════════════════════════════════════════ */
.rzn-main { padding-top: 0; margin-top: 0; }
/* Sur les pages internes : pas de padding-top — les hero pleine page (rzx-page-hero)
   gèrent leur propre espacement et passent sous le header transparent. */
body:not(.home) .rzn-main { padding-top: 0; }
.home .rzn-hero { margin-top: calc(-1 * var(--banner-h)); }

.rzn-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--noir);
}
.rzn-hero-swiper { width: 100%; height: 100%; }
.rzn-hero-slide {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
}
/* Texte côté gauche */
.rzn-hero-text {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + var(--banner-h) + 60px) var(--gutter) 80px;
  padding-left: clamp(24px, 5vw, 96px);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rzn-hero-eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.rzn-hero-text h1 {
  font-family: var(--font-h);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
}
.rzn-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 400px;
  line-height: 1.6;
}
.rzn-hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.rzn-hero-ctas .btn-primary {
  background: var(--white);
  color: var(--noir);
  padding: 18px 40px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.rzn-hero-ctas .btn-primary:hover {
  background: var(--mauve);
  border-color: var(--mauve);
  color: var(--noir);
}

/* Image fond complet */
.rzn-hero-img-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.rzn-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.rzn-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 8s ease;
}
.swiper-slide-active .rzn-hero-img { transform: scale(1.04); }
.rzn-hero-text { z-index: 2; position: relative; }

/* Carte featured overlay */
.rzn-hero-feat {
  position: absolute;
  bottom: 40px;
  left: clamp(24px, 5vw, 80px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(26,26,26,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 20px;
  transition: background .3s;
  max-width: 300px;
}
.rzn-hero-feat:hover { background: rgba(26,26,26,0.9); }
.rzn-hero-feat-img { width: 52px; height: 52px; object-fit: cover; flex-shrink: 0; }
.rzn-hero-feat-body { display: flex; flex-direction: column; gap: 3px; }
.rzn-hero-feat-eyebrow { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.rzn-hero-feat-title { font-size: 14px; font-weight: 600; color: var(--white); }
.rzn-hero-feat-cta { font-size: 11px; color: var(--mauve); letter-spacing: 0.06em; }

/* Navigation arrows */
.rzn-hero-arrows {
  position: absolute;
  bottom: 40px;
  right: clamp(24px, 4vw, 60px);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.rzn-hero-arrow {
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
  cursor: pointer;
}
.rzn-hero-arrow:hover { background: var(--white); color: var(--noir); border-color: var(--white); }
.rzn-hero-arrow svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.5; fill: none; }

/* Dots */
.rzn-hero-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 6px;
}
.swiper-pagination-bullet {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.35);
  border-radius: 999px;
  cursor: pointer;
  transition: width .3s, background .3s;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  width: 28px;
  background: var(--white);
}

/* ═══════════════════════════════════════════════════
   BRAND STRIP — "As Seen In" défilant
═══════════════════════════════════════════════════ */
.rzn-brand-strip {
  background: var(--beige);
  padding: 28px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.rzn-brand-strip-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  padding-left: var(--gutter);
  z-index: 2;
}
.rzn-brand-strip-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 40px, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40px, black 90%, transparent 100%);
}
.rzn-brand-strip-track {
  display: flex;
  gap: 64px;
  align-items: center;
  white-space: nowrap;
  animation: brandScroll 32s linear infinite;
  width: max-content;
}
.rzn-brand-strip-track span {
  font-family: var(--font-h);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--noir);
  opacity: 0.55;
  transition: opacity .3s;
  flex-shrink: 0;
  text-transform: uppercase;
}
.rzn-brand-strip-track span:hover { opacity: 1; }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.rzn-brand-strip:hover .rzn-brand-strip-track { animation-play-state: paused; }

/* ═══════════════════════════════════════════════════
   SECTION HEAD (commun à plusieurs sections)
═══════════════════════════════════════════════════ */
.rzn-section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 12px;
}
.rzn-section-title {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--noir);
}
.rzn-section-sub {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 420px;
  margin-top: 14px;
}
.rzn-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}
.rzn-section-head-text { flex: 1; }

/* ═══════════════════════════════════════════════════
   FEATURED COLLECTIONS
═══════════════════════════════════════════════════ */
.rzn-collections {
  padding: 100px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.rzn-collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rzn-coll-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--nude);
}
.rzn-coll-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.rzn-coll-card:hover .rzn-coll-card-img { transform: scale(1.06); }
.rzn-coll-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--mauve);
  color: var(--noir);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}
.rzn-coll-foot {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(26,26,26,0.6), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.rzn-coll-card:hover .rzn-coll-foot { opacity: 1; }
.rzn-coll-foot-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-h);
}
.rzn-coll-foot-cta {
  background: var(--white);
  color: var(--noir);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  white-space: nowrap;
  transition: background .25s;
}
.rzn-coll-foot-cta:hover { background: var(--mauve); }

/* ═══════════════════════════════════════════════════
   PRODUITS — CARD (commun bestsellers + marquee)
═══════════════════════════════════════════════════ */
.rzn-prod-card {
  display: block;
  position: relative;
}
.rzn-prod-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--nude);
  aspect-ratio: 4/5;
  margin-bottom: 16px;
}
.rzn-prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), opacity .4s var(--ease);
}
.rzn-prod-img-main { position: absolute; inset: 0; opacity: 1; }
.rzn-prod-img-hover { position: absolute; inset: 0; opacity: 0; transform: scale(1.03); }
.rzn-prod-card:hover .rzn-prod-img-main { opacity: 0; }
.rzn-prod-card:hover .rzn-prod-img-hover { opacity: 1; transform: scale(1); }
.rzn-prod-card:hover .rzn-prod-img-main { transform: scale(1.04); }

/* Badge */
.rzn-prod-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--mauve);
  color: var(--noir);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
  white-space: nowrap;
}
.rzn-prod-badge.is-new { background: var(--beige); color: var(--noir); }
.rzn-prod-cat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 5px;
}
.rzn-prod-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--noir);
  margin-bottom: 8px;
  line-height: 1.3;
  font-family: var(--font-b);
}
.rzn-prod-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.rzn-prod-price-row del { color: var(--gray-light); font-weight: 400; }
.rzn-prod-price-row ins { text-decoration: none; color: var(--noir); font-weight: 600; }
.woocommerce-Price-amount { font-weight: inherit; }

/* Swatches couleurs (style Zaro) */
.rzn-prod-swatches {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.rzn-prod-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(26, 26, 26, 0.12);
  display: inline-block;
  transition: transform .25s var(--ease);
}
.rzn-prod-swatch.is-light { border-color: rgba(26, 26, 26, 0.25); }
.rzn-prod-swatch:hover { transform: scale(1.15); }

/* Lien invisible qui couvre toute la zone image — rend la card cliquable */
.rzn-prod-img-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
}

/* Add to cart (shop) — au-dessus du lien pour rester actionnable */
.rzn-prod-add {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 4;
  background: var(--noir);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s, transform .3s, background .25s;
  cursor: pointer;
  border: none;
  font-family: var(--font-b);
}
.rzn-prod-card:hover .rzn-prod-add {
  opacity: 1;
  transform: translateY(0);
}
.rzn-prod-add:hover { background: var(--mauve-dark); }

/* ═══════════════════════════════════════════════════
   MARQUEE PRODUITS (Trending Now)
═══════════════════════════════════════════════════ */
.rzn-marquee {
  padding: 80px 0 100px;
  background: var(--nude-light);
  overflow: hidden;
}
.rzn-marquee-head {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  margin-bottom: 52px;
}
.rzn-marquee-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.rzn-marquee-head p { font-size: 15px; color: var(--gray); margin-top: 14px; max-width: 440px; }
.rzn-marquee-swiper { overflow: visible; }
.rzn-marquee-slide { width: 280px; }
.rzn-marquee-card {
  display: block;
  position: relative;
}
.rzn-marquee-img {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--nude);
  margin-bottom: 14px;
}
.rzn-marquee-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.rzn-marquee-card:hover .rzn-marquee-img img { transform: scale(1.05); }
.rzn-marquee-body { display: flex; flex-direction: column; gap: 4px; }
.rzn-marquee-title { font-size: 14px; font-weight: 600; color: var(--noir); }
.rzn-marquee-price { font-size: 13px; color: var(--gray); }
.rzn-marquee-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-top: 6px;
  transition: letter-spacing .25s;
}
.rzn-marquee-card:hover .rzn-marquee-cta { letter-spacing: 0.15em; }

/* ═══════════════════════════════════════════════════
   BESTSELLERS
═══════════════════════════════════════════════════ */
.rzn-bestsellers {
  padding: 100px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.rzn-best-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.rzn-best-head h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

/* Tabs — style Zaro pills */
.rzn-best-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.rzn-best-tab {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--noir);
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
  font-family: var(--font-b);
  border-radius: 999px;
  white-space: nowrap;
}
.rzn-best-tab:hover {
  border-color: var(--noir);
  background: rgba(0,0,0,0.05);
}
.rzn-best-tab.is-active {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}

/* Grille produits */
.rzn-best-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 20px;
}
.rzn-best-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray);
  font-size: 15px;
}

/* ═══════════════════════════════════════════════════
   SALE COUNTDOWN
═══════════════════════════════════════════════════ */
.rzn-sale {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.rzn-sale-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}
.rzn-sale-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.62);
  z-index: 1;
}

/* Layout centré vertical */
.rzn-sale-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rzn-sale-eyebrow {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.rzn-sale-title {
  font-family: var(--font-h);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--white);
  margin: 0 0 40px;
}
.rzn-sale-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 40px;
}

/* Countdown — grands chiffres */
.rzn-countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin-bottom: 40px;
}
.rzn-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 220px;
}
.rzn-cd-num {
  font-family: var(--font-h);
  font-size: clamp(80px, 13vw, 160px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}
.rzn-cd-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}
.rzn-cd-sep {
  font-family: var(--font-h);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 900;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  align-self: flex-start;
  padding-top: 4px;
}
.rzn-sale-cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--noir);
  padding: 18px 52px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.rzn-sale-cta-btn:hover {
  background: var(--mauve);
  color: var(--noir);
}

/* ═══════════════════════════════════════════════════
   NEW ARRIVALS BAND
═══════════════════════════════════════════════════ */
.rzn-new-band {
  background: var(--beige);
  padding: 60px var(--gutter);
}
.rzn-new-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.rzn-new-text {
  display: flex;
  align-items: center;
  gap: 24px;
}
.rzn-new-icon {
  width: 52px; height: 52px;
  border: 1.5px solid var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rzn-new-icon svg { width: 24px; height: 24px; stroke: var(--noir); stroke-width: 1.5; fill: none; }
.rzn-new-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.rzn-new-title {
  display: block;
  font-family: var(--font-h);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--noir);
  letter-spacing: -0.01em;
}
.rzn-new-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.rzn-new-actions .btn-violet {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}
.rzn-new-actions .btn-violet:hover { background: var(--mauve-dark); border-color: var(--mauve-dark); }

/* ═══════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════ */
.rzn-newsletter {
  background: var(--noir);
  padding: 100px var(--gutter);
  text-align: center;
}
.rzn-newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
}
.rzn-newsletter h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.rzn-newsletter p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 40px; line-height: 1.6; }
.rzn-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.rzn-newsletter-form input {
  flex: 1;
  padding: 18px 24px;
  font-size: 14px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  outline: none;
  transition: border-color .25s;
  font-family: var(--font-b);
}
.rzn-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.rzn-newsletter-form input:focus { border-color: var(--mauve); }
.rzn-newsletter-form button {
  padding: 18px 32px;
  background: var(--mauve);
  color: var(--noir);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--mauve);
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s, border-color .25s;
  font-family: var(--font-b);
}
.rzn-newsletter-form button:hover { background: var(--mauve-dark); border-color: var(--mauve-dark); color: var(--white); }

/* ═══════════════════════════════════════════════════
   POPUP -30%
═══════════════════════════════════════════════════ */
.rzn-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.rzn-popup-overlay.is-visible { opacity: 1; visibility: visible; }
.rzn-popup-overlay[hidden] { display: none; }
.rzn-popup {
  background: var(--nude-light);
  max-width: 880px;
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  transform: scale(0.95) translateY(12px);
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
  box-shadow: 0 32px 80px rgba(26,26,26,0.3);
}
.rzn-popup-overlay.is-visible .rzn-popup { transform: scale(1) translateY(0); }
.rzn-popup-img {
  background: var(--beige);
  background-size: cover;
  background-position: center top;
  min-height: 480px;
}
.rzn-popup-body {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.rzn-popup-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 14px;
}
.rzn-popup-title {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--noir);
  margin-bottom: 16px;
}
.rzn-popup-desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 28px; }
.rzn-popup-form { display: flex; flex-direction: column; gap: 12px; }
.rzn-popup-form input {
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 14px;
  outline: none;
  transition: border-color .25s;
  font-family: var(--font-b);
  color: var(--noir);
}
.rzn-popup-form input::placeholder { color: var(--gray-light); }
.rzn-popup-form input:focus { border-color: var(--mauve); }
.rzn-popup-form button {
  padding: 16px 24px;
  background: var(--noir);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
  font-family: var(--font-b);
}
.rzn-popup-form button:hover { background: var(--mauve-dark); }
.rzn-popup-no {
  background: none;
  border: none;
  font-size: 12px;
  font-family: var(--font-b);
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  margin-top: 14px;
  padding: 0;
  letter-spacing: 0.06em;
  transition: color .2s;
}
.rzn-popup-no:hover { color: var(--noir); }
.rzn-popup-success {
  background: var(--nude);
  border-left: 3px solid var(--mauve);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--noir);
  font-weight: 500;
}
.rzn-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: var(--nude);
  border: 1px solid var(--border);
  color: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all .25s;
}
.rzn-popup-close:hover { background: var(--mauve); border-color: var(--mauve); }
.rzn-popup-close svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 1.5; fill: none; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.rzn-footer {
  background: var(--noir);
  color: var(--white);
  padding: 0 0 0;
}
.rzn-footer-marquee {
  background: var(--mauve);
  color: var(--noir);
  padding: 22px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-h);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: brandScroll 20s linear infinite;
}
.rzn-footer-marquee span { flex-shrink: 0; }
.rzn-footer-marquee-track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: rzn-footer-marquee-scroll 32s linear infinite;
}
.rzn-footer-marquee:hover .rzn-footer-marquee-track { animation-play-state: paused; }
@keyframes rzn-footer-marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.rzn-footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.rzn-footer-brand { display: flex; flex-direction: column; gap: 18px; }
.rzn-footer-brand img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.rzn-footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 280px; }
.rzx-footer-subscribe {
  display: flex;
  gap: 0;
  margin-top: 8px;
}
.rzx-footer-subscribe input {
  flex: 1;
  padding: 14px 18px;
  font-size: 13px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  color: var(--white);
  outline: none;
  font-family: var(--font-b);
  transition: border-color .25s;
}
.rzx-footer-subscribe input::placeholder { color: rgba(255,255,255,0.3); }
.rzx-footer-subscribe input:focus { border-color: var(--mauve); }
.rzx-footer-subscribe button {
  padding: 14px 20px;
  background: var(--mauve);
  color: var(--noir);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-b);
  transition: background .25s;
}
.rzx-footer-subscribe button:hover { background: var(--mauve-dark); color: var(--white); }
.rzn-footer-col h4 {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.rzn-footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.rzn-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color .25s;
}
.rzn-footer-col a:hover { color: var(--mauve); }
.rzn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════════
   PAGE BOUTIQUE (shop)
═══════════════════════════════════════════════════ */
.rzn-shop-main-page { background: var(--nude-light); }

.rzn-shop-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
  background: var(--nude);
}
.rzn-shop-hero-copy {
  padding: clamp(40px, 6vw, 100px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.rzn-shop-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  font-family: var(--font-b);
}
.rzn-shop-hero-copy h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.rzn-shop-hero-copy p { font-size: 15px; color: var(--gray); max-width: 380px; line-height: 1.55; }
.rzn-shop-hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: clamp(24px, 4vw, 48px);
  align-items: center;
}
.rzn-shop-hero-media-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--nude-light);
}
.rzn-shop-hero-media-item--offset { transform: translateY(28px); }
.rzn-shop-hero-media-item img { width: 100%; height: 100%; object-fit: cover; }

.rzn-shop-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--gutter) 100px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

/* Sidebar */
.rzn-shop-sidebar { position: sticky; top: calc(var(--header-h) + var(--banner-h) + 20px); }
.rzn-filter-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.rzn-shop-filter-group { margin-bottom: 28px; }
.rzn-shop-filter-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir);
  margin-bottom: 14px;
  font-family: var(--font-b);
}
.rzn-filter-list { display: flex; flex-direction: column; gap: 8px; }
.rzn-filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray);
  transition: color .25s;
  padding: 4px 0;
}
.rzn-filter-list a:hover { color: var(--noir); }
.rzn-filter-list a.is-active { color: var(--noir); font-weight: 600; }
.rzn-filter-list a small { font-size: 12px; color: var(--gray-light); }
.rzn-shop-clear {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s;
}
.rzn-shop-clear:hover { color: var(--noir); }

/* Contenu boutique */
.rzn-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  gap: 20px;
}
.rzn-shop-count { font-size: 13px; color: var(--gray); letter-spacing: 0.04em; }
.rzn-shop-sort { display: flex; align-items: center; gap: 12px; }
.rzn-shop-sort-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--font-b);
}
.rzn-shop-toolbar select {
  padding: 10px 36px 10px 16px;
  font-size: 13px;
  border: 1.5px solid var(--border);
  background: var(--nude-light) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%231A1A1A' stroke-width='1.5' d='M1 1l4 4 4-4'/></svg>") no-repeat right 14px center;
  color: var(--noir);
  cursor: pointer;
  outline: none;
  font-family: var(--font-b);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.rzn-shop-toolbar select:focus { border-color: var(--noir); }
.rzn-shop-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 20px;
}
.rzn-shop-load {
  margin-top: 52px;
  text-align: center;
}
.rzn-shop-sale-panel {
  position: relative;
  overflow: hidden;
  margin: 0 var(--gutter) 60px;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.rzn-shop-sale-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rzn-shop-sale-panel > div {
  position: relative;
  z-index: 1;
  padding: 48px;
  background: rgba(26,26,26,0.6);
}
.rzn-shop-sale-panel h2 { color: var(--white); font-size: clamp(24px, 3vw, 40px); margin: 8px 0 24px; }
.rzn-shop-sale-panel span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mauve); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   SINGLE PRODUCT
═══════════════════════════════════════════════════ */
.rzn-wc-single { padding: 60px var(--gutter); }
.rzn-wc-single-inner { max-width: 1100px; margin: 0 auto; }

/* WooCommerce overrides */
.woocommerce .products { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce .single_add_to_cart_button {
  background: var(--noir) !important;
  color: var(--white) !important;
  font-family: var(--font-b) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  padding: 16px 32px !important;
  transition: background .25s !important;
}
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce .single_add_to_cart_button:hover {
  background: var(--mauve-dark) !important;
}

/* ═══════════════════════════════════════════════════
   PAGES GÉNÉRIQUES
═══════════════════════════════════════════════════ */
.rzn-placeholder {
  padding: 120px var(--gutter);
  text-align: center;
  background: var(--nude-light);
}
.rzn-placeholder h2 {
  font-size: clamp(28px, 4vw, 52px);
  margin-bottom: 16px;
}
.rzn-placeholder p { font-size: 16px; color: var(--gray); max-width: 560px; margin: 0 auto; }

/* Header — toutes les pages sauf home : fond blanc, texte NOIR au top, fond sombre + texte BLANC au scroll */
body:not(.home) .rzn-header {
  top: 0;
  background: #fff;
  border-bottom-color: rgba(0,0,0,0.08);
}
body:not(.home) .rzn-header .rzn-nav > a,
body:not(.home) .rzn-header .rzn-nav-item-dropdown > span,
body:not(.home) .rzn-header .rzn-icons button,
body:not(.home) .rzn-header .rzn-logo-text,
body:not(.home) .rzn-header .rzn-cart-count { color: var(--noir, #1a1a1a) !important; }
body:not(.home) .rzn-header .rzn-icons button svg { color: var(--noir, #1a1a1a) !important; }
body:not(.home) .rzn-header .rzn-hamburger span { background: var(--noir, #1a1a1a) !important; }
body:not(.home) .rzn-header .rzn-logo img { filter: none !important; }

body:not(.home) .rzn-header.is-scrolled {
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}
body:not(.home) .rzn-header.is-scrolled .rzn-nav > a,
body:not(.home) .rzn-header.is-scrolled .rzn-nav-item-dropdown > span,
body:not(.home) .rzn-header.is-scrolled .rzn-icons button,
body:not(.home) .rzn-header.is-scrolled .rzn-logo-text,
body:not(.home) .rzn-header.is-scrolled .rzn-cart-count { color: #fff !important; }
/* Dropdown items toujours sur fond clair → texte noir */
.rzn-header .rzn-nav-dropdown a,
body:not(.home) .rzn-header .rzn-nav-dropdown a,
body:not(.home) .rzn-header.is-scrolled .rzn-nav-dropdown a { color: var(--noir, #1a1a1a) !important; }
.rzn-header .rzn-nav-dropdown a:hover,
body:not(.home) .rzn-header .rzn-nav-dropdown a:hover,
body:not(.home) .rzn-header.is-scrolled .rzn-nav-dropdown a:hover { color: var(--mauve-dark, #8a6a4a) !important; background: var(--nude, #f5ede3) !important; }
body:not(.home) .rzn-header.is-scrolled .rzn-icons button svg { color: #fff !important; }
body:not(.home) .rzn-header.is-scrolled .rzn-hamburger span { background: #fff !important; }
body:not(.home) .rzn-header.is-scrolled .rzn-logo img { filter: brightness(0) invert(1) !important; }
.rzn-nav a,
.rzn-nav-item-dropdown > span,
.rzn-icons button,
.rzn-icons a,
.rzn-logo-text { color: var(--white); }
.rzn-nav a::after { background: var(--white); }
.rzn-hamburger span { background: var(--white); }
.rzn-cart-count { color: var(--white); }
/* SVG dans les boutons icônes : héritent du color blanc */
.rzn-icons button svg, .rzn-icons a svg { color: var(--white); }
/* Logo image : reste tel quel (logo blanc fourni) */
.rzn-logo img { filter: brightness(0) invert(1); }
.rzn-header.is-scrolled .rzn-logo img { filter: brightness(0) invert(1); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .rzn-collections-grid { grid-template-columns: repeat(2, 1fr); }
  .rzn-best-grid { grid-template-columns: repeat(3, 1fr); }
  .rzn-footer-cols { grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
  .rzn-sale-inner { grid-template-columns: 1fr; }
  .rzn-countdown { justify-content: flex-start; flex-wrap: wrap; }
}
@media (max-width: 980px) {
  :root { --gutter: 24px; }
  .rzn-header { top: var(--banner-h); }
  .rzn-header.is-scrolled { top: 0 !important; }
  .rzn-nav { display: none; }
  .rzn-hamburger { display: flex; }
  /* Hero mobile style Zaro : image portrait en haut, texte en bas */
  .rzn-hero-slide {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .rzn-hero-img-wrap {
    order: 0;
    position: relative;
    width: 100%;
    height: 72vw;
    max-height: 460px;
  }
  .rzn-hero-img-wrap::after { display: none; } /* retire le gradient overlay */
  .rzn-hero-text {
    order: 1;
    position: relative;
    z-index: 1;
    background: var(--noir);
    color: var(--white);
    padding: 28px 24px 40px;
    padding-top: 28px; /* pas de padding pour le header */
  }
  .rzn-hero-text h1 { font-size: clamp(36px, 10vw, 52px); color: var(--white); }
  .rzn-hero-ctas .btn-primary { background: var(--white); color: var(--noir); }
  .home .rzn-hero { margin-top: 0; } /* retire le margin-top négatif sur mobile */
  .rzn-shop-layout { grid-template-columns: 1fr; }
  .rzn-shop-sidebar { position: relative; top: auto; }
  .rzn-shop-products { grid-template-columns: repeat(2, 1fr); }
  .rzn-shop-hero { grid-template-columns: 1fr; }
  .rzn-shop-hero-media-item--offset { transform: none; }
  .rzn-best-head { flex-direction: column; align-items: flex-start; }
  .rzn-best-grid { grid-template-columns: repeat(2, 1fr); }
  /* Footer mobile : brand pleine largeur + 2 colonnes liens */
  .rzn-footer-cols {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 40px var(--gutter) 32px;
  }
  .rzn-footer-brand {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }
  .rzn-footer-brand img { height: 40px; }
  .rzn-footer-brand p { max-width: 100%; font-size: 14px; line-height: 1.7; }
  /* Formulaire newsletter : plein largeur, style Zaro arrondi */
  .rzx-footer-subscribe {
    flex-direction: row;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    overflow: hidden;
  }
  .rzx-footer-subscribe input {
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 14px 20px;
  }
  .rzx-footer-subscribe button {
    border-radius: 0;
    white-space: nowrap;
    padding: 14px 22px;
    font-size: 11px;
  }
  /* Colonnes liens : 2 par ligne */
  .rzn-footer-col:not(.rzn-footer-brand):not(:last-child):not([style*="display:none"]) {
    display: block;
  }
  .rzn-footer-cols > .rzn-footer-col {
    padding: 0;
  }
  /* Grille 2 colonnes pour les 4 dernières cols */
  .rzn-footer-cols {
    display: grid;
    grid-template-areas:
      "brand brand"
      "col1 col2"
      "col3 col4"
      "col5 col5";
  }
  .rzn-footer-brand { grid-area: brand; }
  .rzn-footer-col:nth-child(2) { grid-area: col1; }
  .rzn-footer-col:nth-child(3) { grid-area: col2; }
  .rzn-footer-col:nth-child(4) { grid-area: col3; }
  .rzn-footer-col:nth-child(5) { grid-area: col4; }
  .rzn-footer-col:nth-child(6) { grid-area: col5; }
  .rzn-footer-col h4 { margin-bottom: 14px; }
  .rzn-footer-col ul { gap: 14px; margin-bottom: 28px; }
  .rzn-footer-col a { font-size: 15px; color: rgba(255,255,255,0.75); }
  .rzn-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .rzn-sale-inner { padding: 60px var(--gutter); }
}
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .rzn-banner { font-size: 11px; }
  .rzn-collections-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .rzn-best-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .rzn-shop-products { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .rzn-newsletter-form { flex-direction: column; }
  .rzn-popup { grid-template-columns: 1fr; max-width: 420px; }
  .rzn-popup-img { min-height: 200px; }
  .rzn-popup-body { padding: 32px 24px; }
  .rzn-hero-text h1 { font-size: 42px; }
  .rzn-cd-block { min-width: 64px; padding: 14px 10px; }
  .rzn-cd-num { font-size: clamp(52px, 16vw, 100px); }
  .rzn-cd-sep { font-size: clamp(40px, 12vw, 80px); }
}

/* ═══════════════════════════════════════════════════
   RZX — CLASSES HOMEPAGE (zaro-clone.php)
   Toutes les sections générées par rozayna_zaro_render_home()
═══════════════════════════════════════════════════ */

/* ── Section générique ── */
.rzx-section {
  padding: 100px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Section head ── */
.rzx-section-head {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.rzx-section-head span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}
.rzx-section-head h2 {
  font-family: var(--font-h);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--noir);
  max-width: 680px;
}
.rzx-section-head a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir);
  border-bottom: 1.5px solid var(--noir);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.rzx-section-head a:hover { color: var(--mauve-dark); border-color: var(--mauve-dark); }

/* .compact — ligne horizontale avec lien à droite */
.rzx-section-head.compact {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.rzx-section-head.compact span {
  display: block;
  margin-bottom: 6px;
}
.rzx-section-head.compact h2 {
  font-size: clamp(28px, 3.5vw, 48px);
}

/* ── "As Seen In" ── */
.rzx-seen {
  background: var(--beige);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
/* Label positionné en absolu à gauche, fond solide + dégradé — logos disparaissent dessous */
.rzx-seen > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  z-index: 3;
  background: linear-gradient(to right,
    var(--beige) 0%,
    var(--beige) 75%,
    transparent 100%);
  padding-right: 72px;
}
/* Track pleine largeur, masqué aux deux extrémités */
.rzx-seen > div {
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
  white-space: nowrap;
  flex-wrap: nowrap;
  animation: rzn-seen-marquee 22s linear infinite;
  mask-image: linear-gradient(to right,
    transparent 0%,
    transparent 260px,
    black 340px,
    black 80%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    transparent 260px,
    black 340px,
    black 80%,
    transparent 100%);
}
@keyframes rzn-seen-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rzx-seen b {
  font-family: var(--font-h);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: 0.55;
  transition: opacity .3s;
  white-space: nowrap;
}
.rzx-seen b:hover { opacity: 1; }

/* ── Featured Collections ── */
.rzx-featured {
  background: var(--nude-light);
}
.rzx-collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rzx-collection-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--nude);
}
.rzx-collection-tile.is-large {
  aspect-ratio: 4/5;
}
.rzx-collection-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s var(--ease);
  display: block;
}
.rzx-collection-tile:hover img { transform: scale(1.06); }
.rzx-collection-tile > div {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(26,26,26,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--white);
}
.rzx-collection-tile > div span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  max-width: 280px;
}
.rzx-collection-tile > div strong {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--noir);
  padding: 10px 20px;
  transition: background .25s, color .25s;
  align-self: flex-start;
}
.rzx-collection-tile:hover > div strong {
  background: var(--mauve);
  color: var(--noir);
}

/* ── Product Grid ── */
.rzx-products {
  background: var(--nude-light);
}
.rzx-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
  max-width: 1240px;
  margin: 0 auto;
}
.rzx-product-card {
  display: block;
  position: relative;
}
.rzx-product-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1.15;
  background: var(--nude);
  margin-bottom: 12px;
}
.rzx-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s var(--ease);
  display: block;
}
.rzx-product-card:hover .rzx-product-media img { transform: scale(1.05); }

/* Badge */
.rzx-product-media > span {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--mauve);
  color: var(--noir);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
  white-space: nowrap;
  line-height: 1;
}

/* Add to cart hover */
.rzx-product-media em {
  position: absolute;
  bottom: 12px; left: 12px; right: 12px;
  font-style: normal;
  display: block;
  background: rgba(26,26,26,0.92);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 2;
  font-family: var(--font-b);
  cursor: pointer;
}
.rzx-product-card:hover .rzx-product-media em {
  opacity: 1;
  transform: translateY(0);
}
.rzx-product-media em:hover { background: var(--mauve-dark); }

/* Meta */
.rzx-product-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rzx-product-meta a {
  font-size: 14px;
  font-weight: 600;
  color: var(--noir);
  line-height: 1.3;
  transition: color .25s;
}
.rzx-product-meta a:hover { color: var(--mauve-dark); }
.rzx-product-meta p {
  font-size: 14px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.rzx-product-meta del {
  color: var(--gray-light);
  font-weight: 400;
}

/* ── Sale Block ── */
.rzx-sale-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background: var(--noir);
}
.rzx-sale-block img {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.rzx-sale-block > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 80px clamp(32px, 5vw, 80px);
  background: var(--noir);
  color: var(--white);
}
.rzx-sale-block > div span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
}
.rzx-sale-block > div h2 {
  font-family: var(--font-h);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
}
.rzx-sale-block > div .btn-primary {
  align-self: flex-start;
  background: var(--white);
  color: var(--noir);
  border-color: var(--white);
}
.rzx-sale-block > div .btn-primary:hover {
  background: var(--mauve);
  border-color: var(--mauve);
  color: var(--noir);
}

/* ═══════════════════════════════════════════════════
   RZX — PAGES INTÉRIEURES (About, Blog, Contact, FAQ…)
═══════════════════════════════════════════════════ */

/* ── Page Hero (inner pages) — pleine page avec image en background ── */
.rzx-page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--noir);
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  text-align: center;
  padding: 120px var(--gutter) 80px;
  margin: 0;
}
/* Voile sombre pour lisibilité du texte */
.rzx-page-hero.has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.rzx-page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.rzx-page-hero-eyebrow {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.9;
}
.rzx-page-hero-title {
  font-family: var(--font-h);
  font-size: clamp(48px, 9vw, 160px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
}
.rzx-page-hero-text {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 1.6;
  margin-top: 8px;
}
/* Si pas d'image, fond beige avec texte sombre */
.rzx-page-hero:not(.has-bg) {
  background: var(--nude);
}
.rzx-page-hero:not(.has-bg) .rzx-page-hero-eyebrow { color: var(--mauve-dark); opacity: 1; }
.rzx-page-hero:not(.has-bg) .rzx-page-hero-title   { color: var(--noir); }
.rzx-page-hero:not(.has-bg) .rzx-page-hero-text    { color: var(--gray); }

/* ── Split (About > Our Story) ── */
.rzx-split {
  background: var(--nude-light);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rzx-split > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}
.rzx-split > h2 {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--noir);
}
.rzx-split > p {
  font-size: 15px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

/* ── Dark section (About stats) ── */
.rzx-dark {
  background: var(--noir);
  color: var(--white);
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 48px;
  padding: 100px var(--gutter);
}
.rzx-dark > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rzx-dark > div span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.rzx-dark > div h2 {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
}
.rzx-dark > p {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 360px;
}
.rzx-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: center;
}
.rzx-stats strong {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-h);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}
.rzx-stats small {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── Feature cards (What Makes Different) ── */
.rzx-cards {
  background: var(--nude-light);
  display: grid;
  grid-template-columns: 1fr repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.rzx-cards > .rzx-section-head { grid-column: 1; margin-bottom: 0; }
.rzx-cards > article {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rzx-cards > article h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--noir);
}
.rzx-cards > article p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Team ── */
.rzx-team {
  background: var(--nude-light);
  display: grid;
  grid-template-columns: 1fr repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}
.rzx-team > .rzx-section-head { grid-column: 1; margin-bottom: 0; }
.rzx-team > article {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rzx-team > article img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
  background: var(--nude);
}
.rzx-team > article h3 {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--noir);
  text-transform: uppercase;
}

/* ── Blog ── */
.rzx-blog {
  background: var(--nude-light);
}
.rzx-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.rzx-tabs a {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 14px 24px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .25s, border-color .25s;
  white-space: nowrap;
}
.rzx-tabs a:first-child,
.rzx-tabs a:hover { color: var(--noir); border-bottom-color: var(--noir); }
.rzx-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 24px;
  margin-bottom: 52px;
}
.rzx-blog-grid article {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rzx-blog-grid article img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--nude);
  transition: transform .5s var(--ease);
}
.rzx-blog-grid article:hover img { transform: scale(1.03); }
.rzx-blog-grid article { overflow: hidden; }
.rzx-blog-grid article > * { flex-shrink: 0; }
.rzx-blog-grid article img { flex-shrink: 0; }
.rzx-blog-grid article span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}
.rzx-blog-grid article h2 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--noir);
}
.rzx-blog-grid article p {
  font-size: 13px;
  color: var(--gray-light);
}
.rzx-center {
  text-align: center;
}

/* ── Bannière SALE Shop (style Zaro) ── */
.rzn-shop-sale-banner {
  padding: 60px var(--gutter);
  background: var(--nude-light);
}
.rzn-shop-sale-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(120deg, #4a2545 0%, #6b3252 35%, #a4654d 75%, #c8896a 100%);
  border-radius: 12px;
  overflow: hidden;
  min-height: 520px;
}
.rzn-shop-sale-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
  color: #fff;
  z-index: 2;
}
.rzn-shop-sale-banner-title {
  font-family: var(--font-h);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.rzn-shop-sale-banner-title span {
  display: block;
  font-size: clamp(40px, 6vw, 92px);
}
.rzn-shop-sale-banner-outline {
  color: transparent !important;
  -webkit-text-stroke: 2px #fff;
}
.rzn-shop-sale-banner-percent {
  color: #FFC93C !important;
  font-size: clamp(60px, 9vw, 140px) !important;
  line-height: 0.9;
}
.rzn-shop-sale-banner-percent i {
  font-style: normal;
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 6px;
}
.rzn-shop-sale-banner-tagline {
  font-size: clamp(28px, 4vw, 56px) !important;
  letter-spacing: 0.04em;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  text-transform: uppercase;
  color: #FFC93C !important;
}
.rzn-shop-sale-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  padding: 16px 28px;
  background: #fff;
  color: #1a1a1a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s, color .25s, transform .25s;
}
.rzn-shop-sale-banner-cta:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateX(4px);
}
.rzn-shop-sale-banner-img {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 100%;
}
@media (max-width: 900px) {
  .rzn-shop-sale-banner { padding: 32px var(--gutter); }
  .rzn-shop-sale-banner-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .rzn-shop-sale-banner-text { padding: 48px 32px 32px; }
  .rzn-shop-sale-banner-img { min-height: 320px; order: 2; }
}

/* ── Article single — style Zaro ── */
.rzx-article--zaro { background: #fff; color: var(--noir); }

/* HERO full-width avec image en background + overlay bas */
.rzx-article-hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
}
.rzx-article-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}
.rzx-article-hero-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0 var(--gutter) 56px;
  z-index: 2;
  color: #fff;
}
.rzx-article-date {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.85);
}
.rzx-article-title {
  font-family: var(--font-h);
  font-size: clamp(40px, 6.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
  color: #fff;
  max-width: 900px;
}

/* CORPS centré (max 760px) */
.rzx-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px var(--gutter) 0;
}
.rzx-article-body + .rzx-article-body { padding-top: 60px; }
.rzx-article-h2 {
  font-family: var(--font-h);
  font-size: clamp(20px, 1.6vw, 22px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 56px 0 18px;
  color: var(--noir);
}
.rzx-article-h2:first-child { margin-top: 0; }
.rzx-article-body p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(26,26,26,0.82);
  margin-bottom: 16px;
}
.rzx-article-body ul {
  margin: 8px 0 24px 22px;
  padding: 0;
}
.rzx-article-body ul li {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26,26,26,0.82);
  margin-bottom: 4px;
  list-style: disc;
}

/* QUOTE — barre verticale à gauche, fond blanc */
.rzx-article-quote {
  border-left: 2px solid var(--noir);
  padding: 6px 0 6px 28px;
  margin: 56px 0;
  background: transparent;
}
.rzx-article-quote p {
  font-family: var(--font-h);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
  color: var(--noir);
  margin: 0;
}

/* GALERIE 3 IMAGES pleine largeur */
.rzx-article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 80px var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}
.rzx-article-gallery img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

/* ARTICLES SIMILAIRES */
.rzx-article-related {
  background: var(--nude-light);
  padding: 80px var(--gutter) 100px;
  margin-top: 80px;
}
.rzx-article-related-head {
  max-width: 1280px;
  margin: 0 auto 32px;
  text-align: center;
}
.rzx-article-related-head h2 {
  font-family: var(--font-h);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  color: var(--noir);
  letter-spacing: -0.01em;
}
.rzx-article-related-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.rzx-article-related-grid article {
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.rzx-article-related-img {
  display: block;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 4px;
}
.rzx-article-related-img img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.rzx-article-related-img:hover img { transform: scale(1.04); }
.rzx-article-related-grid h3 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  color: var(--noir);
}
.rzx-article-related-grid p {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rzx-article-related-desc {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(26,26,26,0.72);
}

@media (max-width: 768px) {
  .rzx-article-hero { height: 60vh; min-height: 420px; }
  .rzx-article-body { padding: 60px var(--gutter) 0; }
  .rzx-article-gallery { grid-template-columns: 1fr; padding: 48px var(--gutter); }
  .rzx-article-related { padding: 60px var(--gutter); }
  .rzx-article-related-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Carte blog cliquable */
a.rzx-blog-card { display: block; text-decoration: none; color: inherit; transition: transform .35s var(--ease); }
a.rzx-blog-card:hover { transform: translateY(-4px); }
a.rzx-blog-card h2 { transition: color .25s var(--ease); }
a.rzx-blog-card:hover h2 { color: var(--mauve-dark); }

/* ── Crédit footer ── */
.rzn-credit-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  transition: color .25s var(--ease), opacity .25s var(--ease);
}
.rzn-credit-link:hover { color: var(--mauve, #b89a7a); opacity: .85; }

/* ── Contact Page Hero (style Zaro) ── */
.rzx-contact-page { padding-top: var(--header-h); background: #fff; }
.rzx-contact-hero {
  background: #fff;
  text-align: center;
  padding: 100px var(--gutter) 80px;
}
.rzx-contact-hero-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 24px;
}
.rzx-contact-hero-title {
  font-family: var(--font-h);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--noir);
  text-transform: uppercase;
}
.rzx-contact-intro {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--noir);
  margin-bottom: 40px;
}
.rzx-contact-form-wrap { background: var(--nude); padding: 36px 32px; border-radius: 6px; }
.rzx-contact-form-title { font-family: var(--font-h); font-size: 22px; font-weight: 600; margin-bottom: 24px; color: var(--noir); }
.rzx-cf-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.rzx-cf-field label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--noir); text-transform: uppercase; }
.rzx-cf-field input,
.rzx-cf-field select,
.rzx-cf-field textarea {
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--noir);
  border-radius: 2px;
  outline: none;
  transition: border-color .2s;
}
.rzx-cf-field input:focus,
.rzx-cf-field select:focus,
.rzx-cf-field textarea:focus { border-color: var(--mauve); }
.rzx-cf-field textarea { resize: vertical; min-height: 140px; }
.rzx-contact-submit {
  width: 100%;
  padding: 18px;
  background: rgba(26,26,26,0.4);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .2s;
  margin-top: 8px;
}
.rzx-contact-submit:hover { background: var(--noir); }

/* ── Contact ── */
.rzx-contact {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px var(--gutter) 80px;
}
.rzx-contact-info { display: flex; flex-direction: column; gap: 0; }
.rzx-contact-intro {
  font-family: var(--font-h);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--noir);
  margin-bottom: 40px;
}
.rzx-contact-info article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(26,26,26,0.12);
}
.rzx-contact-info article:last-child { padding-bottom: 8px; }
.rzx-contact-info article span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--noir);
}
.rzx-contact-info article p {
  font-size: 14px;
  color: rgba(26,26,26,0.6);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE — PANIER (style Rozayna)
   ═══════════════════════════════════════════════════ */
body.woocommerce-cart .rzn-page-hero h1,
body.woocommerce-cart .entry-title {
  text-align: center !important;
  font-family: var(--font-h);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--noir);
  margin-bottom: 32px;
}
body.woocommerce-cart .rzn-page-hero { text-align: center; padding: 56px var(--gutter) 24px; }

.wc-block-cart,
.wp-block-woocommerce-cart {
  font-family: var(--font-b);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}
.wc-block-cart__main,
.wp-block-woocommerce-cart-items-block {
  background: #fff;
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 8px;
  padding: 24px 28px !important;
}

/* Tableau articles panier */
table.wc-block-cart-items,
.wc-block-cart-items {
  border-collapse: collapse !important;
  width: 100% !important;
  border: none !important;
}
.wc-block-cart-items thead th {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(26,26,26,0.6) !important;
  border-bottom: 1px solid rgba(26,26,26,0.1) !important;
  padding: 12px 8px !important;
}
.wc-block-cart-items tbody tr {
  border-bottom: 1px solid rgba(26,26,26,0.06) !important;
}
.wc-block-cart-items td {
  padding: 20px 8px !important;
  vertical-align: middle !important;
}
.wc-block-cart-item__image img {
  border-radius: 6px !important;
  max-width: 96px !important;
}
.wc-block-cart-item__product-name,
.wc-block-cart-item__product a {
  font-family: var(--font-b) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--noir) !important;
  text-decoration: none !important;
}
.wc-block-cart-item__product-name:hover {
  color: var(--mauve-dark, #8a6a4a) !important;
}
.wc-block-cart-item__product-metadata,
.wc-block-cart-item__product-variation {
  font-size: 13px !important;
  color: rgba(26,26,26,0.55) !important;
}
.wc-block-components-product-price__value {
  font-weight: 600 !important;
  color: var(--noir) !important;
}
.wc-block-components-product-price del {
  color: rgba(26,26,26,0.4) !important;
  margin-right: 6px;
}
.wc-block-components-product-price ins {
  text-decoration: none;
  color: var(--noir);
}

/* Quantité — input rond style Rozayna */
.wc-block-components-quantity-selector {
  border: 1.5px solid rgba(26,26,26,0.12) !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  overflow: hidden !important;
  background: #fff !important;
}
.wc-block-components-quantity-selector__button {
  width: 36px !important;
  background: transparent !important;
  border: none !important;
  color: var(--noir) !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: background .25s !important;
}
.wc-block-components-quantity-selector__button:hover {
  background: var(--nude-light, #f5ede3) !important;
}
.wc-block-components-quantity-selector__input {
  width: 40px !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--noir) !important;
}

/* Lien "Supprimer" */
.wc-block-cart-item__remove-link,
.wc-block-cart-item__remove-link a {
  font-size: 12px !important;
  color: rgba(26,26,26,0.5) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  margin-top: 8px !important;
}
.wc-block-cart-item__remove-link:hover {
  color: var(--mauve-dark, #8a6a4a) !important;
}

/* Sidebar — Totaux */
.wc-block-cart__sidebar,
.wp-block-woocommerce-cart-totals-block {
  background: #fff !important;
  border: 1px solid rgba(26,26,26,0.08) !important;
  border-radius: 8px !important;
  padding: 28px !important;
}
.wc-block-components-totals-item {
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(26,26,26,0.06) !important;
  font-size: 14px !important;
  color: var(--noir) !important;
}
.wc-block-components-totals-item__label {
  color: rgba(26,26,26,0.7) !important;
}
.wc-block-components-totals-footer-item {
  padding: 18px 0 !important;
  border-top: 2px solid var(--noir) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--noir) !important;
}

/* Code promo (panneau dépliable) */
.wc-block-components-totals-coupon,
.wc-block-cart-totals__coupon-form {
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(26,26,26,0.06) !important;
}
.wc-block-components-totals-coupon__button,
.wc-block-components-panel__button {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  color: var(--mauve-dark, #8a6a4a) !important;
}
.wc-block-components-totals-coupon input {
  border: 1.5px solid rgba(26,26,26,0.12) !important;
  border-radius: 6px !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
}

/* Bouton "Passer à la caisse" */
.wc-block-cart__submit-button,
.wc-block-cart .wc-block-components-button:not(.has-text) {
  width: 100% !important;
  background: var(--noir) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 18px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  transition: background .25s !important;
}
.wc-block-cart__submit-button:hover {
  background: var(--mauve-dark, #8a6a4a) !important;
}

/* Panier vide */
.wp-block-woocommerce-empty-cart-block,
.cart-empty {
  text-align: center;
  padding: 80px 0;
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE — MON COMPTE (style Rozayna)
   ═══════════════════════════════════════════════════ */
body.woocommerce-account .rzn-page-hero h1,
body.woocommerce-account .entry-title {
  text-align: center !important;
  font-family: var(--font-h);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--noir);
  margin-bottom: 8px;
}
body.woocommerce-account .rzn-page-hero {
  text-align: center;
  padding: 56px var(--gutter) 24px;
}

.woocommerce-account .woocommerce {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px var(--gutter) 80px;
}
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after { display: none; }

/* Layout 2 colonnes : nav gauche / contenu droite */
.woocommerce-account .woocommerce-MyAccount-navigation {
  float: none !important;
  width: auto !important;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: auto !important;
}
@media (min-width: 900px) {
  .woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
  }
}

/* Sidebar nav — style "menu vertical Rozayna" */
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.woocommerce-MyAccount-navigation ul li {
  border-top: 1px solid rgba(26,26,26,0.1);
  margin: 0;
}
.woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 16px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--noir);
  text-decoration: none !important;
  transition: color .25s, padding-left .25s;
  position: relative;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: var(--mauve-dark, #8a6a4a);
  padding-left: 6px;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--mauve-dark, #8a6a4a);
  font-weight: 700;
}
.woocommerce-MyAccount-navigation ul li.is-active a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mauve-dark, #8a6a4a);
}

/* Contenu — paragraphes & titres */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
  font-family: var(--font-h);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--noir);
  margin: 0 0 18px;
}
.woocommerce-MyAccount-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(26,26,26,0.78);
  margin-bottom: 14px;
}
.woocommerce-MyAccount-content p mark,
.woocommerce-MyAccount-content strong {
  background: transparent;
  color: var(--noir);
  font-weight: 600;
}
.woocommerce-MyAccount-content a {
  color: var(--mauve-dark, #8a6a4a);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Tableau commandes */
.woocommerce-orders-table,
.woocommerce-table--order-details,
.woocommerce-table--order-downloads,
.shop_table {
  width: 100% !important;
  border-collapse: collapse !important;
  border: 1px solid rgba(26,26,26,0.1) !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  font-size: 14px !important;
  margin: 0 0 24px !important;
}
.woocommerce-orders-table thead th,
.woocommerce-table--order-details thead th,
.shop_table thead th {
  background: var(--nude-light, #f5ede3) !important;
  padding: 14px 16px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--noir) !important;
  text-align: left !important;
  border-bottom: 1px solid rgba(26,26,26,0.1) !important;
}
.woocommerce-orders-table tbody td,
.woocommerce-table--order-details tbody td,
.shop_table tbody td {
  padding: 16px !important;
  border-top: 1px solid rgba(26,26,26,0.06) !important;
  color: var(--noir) !important;
  vertical-align: middle !important;
}
.woocommerce-orders-table tbody tr:hover {
  background: rgba(245,237,227,0.4) !important;
}

/* Statut commande */
.woocommerce-orders-table__cell-order-status mark,
.order-status {
  display: inline-block;
  padding: 4px 12px;
  background: var(--nude, #ede1d2);
  color: var(--noir);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Boutons (Voir, Annuler, Recommander, Retour, etc.) */
.woocommerce-MyAccount-content .button,
.woocommerce-MyAccount-content button[type="submit"],
.woocommerce-Button {
  display: inline-block !important;
  padding: 12px 24px !important;
  background: var(--noir) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: background .25s, transform .25s !important;
  text-decoration: none !important;
}
.woocommerce-MyAccount-content .button:hover,
.woocommerce-Button:hover {
  background: var(--mauve-dark, #8a6a4a) !important;
  transform: translateY(-1px);
}
.woocommerce-MyAccount-content .button.view {
  background: transparent !important;
  color: var(--noir) !important;
  border: 1.5px solid var(--noir) !important;
  padding: 10px 22px !important;
}
.woocommerce-MyAccount-content .button.view:hover {
  background: var(--noir) !important;
  color: #fff !important;
}

/* Formulaires (login, register, edit-account, edit-address) */
.woocommerce-form,
.woocommerce-EditAccountForm,
.woocommerce-address-fields {
  background: var(--nude-light, #f5ede3);
  padding: 32px 28px;
  border-radius: 8px;
  margin-bottom: 24px;
}
.woocommerce-form-row label,
.woocommerce-form .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--noir);
  margin-bottom: 6px;
  text-transform: none;
}
.woocommerce-form input[type="text"],
.woocommerce-form input[type="email"],
.woocommerce-form input[type="password"],
.woocommerce-form input[type="tel"],
.woocommerce-form select,
.woocommerce-form textarea,
.woocommerce-EditAccountForm input,
.woocommerce-EditAccountForm select,
.woocommerce-address-fields input,
.woocommerce-address-fields select {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1.5px solid rgba(26,26,26,0.12) !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-family: var(--font-b) !important;
  color: var(--noir) !important;
  background: #fff !important;
  transition: border-color .25s, box-shadow .25s !important;
}
.woocommerce-form input:focus,
.woocommerce-EditAccountForm input:focus,
.woocommerce-address-fields input:focus,
.woocommerce-form select:focus,
.woocommerce-form textarea:focus {
  border-color: var(--mauve, #b89a7a) !important;
  box-shadow: 0 0 0 3px rgba(184, 154, 122, 0.15) !important;
  outline: none !important;
}
.woocommerce-form-row {
  margin-bottom: 16px !important;
}

/* Fieldset (changement de mot de passe) — style box nude comme contact */
.woocommerce-EditAccountForm fieldset {
  background: #fff !important;
  border: 1px solid rgba(26,26,26,0.1) !important;
  border-radius: 8px !important;
  padding: 28px 28px 20px !important;
  margin: 24px 0 !important;
  position: relative;
}
.woocommerce-EditAccountForm fieldset legend {
  display: block !important;
  width: 100%;
  padding: 0 !important;
  margin: 0 0 18px !important;
  font-family: var(--font-h) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--mauve-dark, #8a6a4a) !important;
  border: none !important;
  background: transparent !important;
}
/* Champ password avec icône œil */
.woocommerce-EditAccountForm .password-input,
.woocommerce-EditAccountForm .show-password-input {
  position: relative;
  display: block;
}
.woocommerce-EditAccountForm .password-input input {
  width: 100% !important;
  padding-right: 48px !important;
}
.woocommerce-EditAccountForm .show-password-input {
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: rgba(26,26,26,0.4) !important;
  cursor: pointer;
  width: 20px; height: 20px;
}
.woocommerce-EditAccountForm .show-password-input.display-password {
  color: var(--mauve-dark, #8a6a4a) !important;
}
.woocommerce-EditAccountForm fieldset + p {
  margin-top: 24px !important;
}

/* ═══════════════════════════════════════════════════
   PAGE MON COMPTE — LOGIN + REGISTER 2 colonnes équilibrées
   ═══════════════════════════════════════════════════ */
body.woocommerce-account.woocommerce-page #customer_login,
body.woocommerce-account .u-columns.col2-set {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
  float: none !important;
  width: 100% !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
  align-items: start !important;
}
.u-columns.col2-set .col-1,
.u-columns.col2-set .col-2,
#customer_login .u-column1,
#customer_login .u-column2 {
  width: 100% !important;
  padding: 0 !important;
  float: none !important;
  margin: 0 !important;
}

/* Carte LOGIN (col-1) */
#customer_login .u-column1 > h2,
#customer_login > .u-column1 > h2 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--noir);
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
}
#customer_login .u-column2 > h2 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--noir);
  margin: 0 0 18px;
  padding: 0;
  text-align: left;
}

/* Box autour de chaque formulaire */
#customer_login .woocommerce-form-login,
#customer_login .woocommerce-form-register {
  background: var(--nude-light, #f5ede3) !important;
  border: 1px solid rgba(26,26,26,0.08) !important;
  border-radius: 10px !important;
  padding: 28px 26px !important;
  margin: 0 !important;
}
#customer_login .woocommerce-form-register {
  background: #fff !important;
}

/* Sous-titre / intro discret au-dessus de chaque form */
#customer_login .u-column1::before {
  content: "Accédez à votre espace personnel, suivez vos commandes et gérez vos adresses.";
  display: block;
  font-size: 13px;
  color: rgba(26,26,26,0.6);
  margin: 0 0 14px;
  line-height: 1.5;
}
#customer_login .u-column2::before {
  content: "Créez un compte Rozayna en 30 secondes. Vous recevrez votre mot de passe par email.";
  display: block;
  font-size: 13px;
  color: rgba(26,26,26,0.6);
  margin: 0 0 14px;
  line-height: 1.5;
}

/* Inputs login/register */
#customer_login input[type="text"],
#customer_login input[type="email"],
#customer_login input[type="password"] {
  width: 100% !important;
  padding: 14px 16px !important;
  border: 1.5px solid rgba(26,26,26,0.12) !important;
  border-radius: 6px !important;
  background: #fff !important;
  font-size: 14px !important;
  font-family: var(--font-b) !important;
  color: var(--noir) !important;
  transition: border-color .25s, box-shadow .25s !important;
}
#customer_login .woocommerce-form-register input { background: var(--nude-light, #f5ede3) !important; }
#customer_login input:focus {
  border-color: var(--mauve, #b89a7a) !important;
  box-shadow: 0 0 0 3px rgba(184,154,122,0.15) !important;
  outline: none !important;
}
#customer_login .form-row,
#customer_login .woocommerce-form-row { margin-bottom: 14px !important; }
#customer_login label {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  color: var(--noir) !important;
  display: block;
  margin-bottom: 6px;
  text-transform: none;
}
#customer_login .show-password-input {
  top: auto !important;
  right: 14px !important;
  bottom: 12px !important;
  color: rgba(26,26,26,0.4) !important;
}

/* Mention RGPD plus discrète */
#customer_login .woocommerce-privacy-policy-text,
#customer_login .woocommerce-privacy-policy-text p {
  font-size: 12px !important;
  color: rgba(26,26,26,0.55) !important;
  line-height: 1.55 !important;
  margin: 6px 0 14px !important;
}

/* Boutons Submit */
#customer_login button[type="submit"],
#customer_login .button {
  width: 100% !important;
  background: var(--noir) !important;
  color: #fff !important;
  padding: 14px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: background .25s, transform .15s !important;
  margin-top: 6px !important;
}
#customer_login button[type="submit"]:hover { background: var(--mauve-dark, #8a6a4a) !important; transform: translateY(-1px); }

/* Lien mot de passe perdu */
#customer_login .lost_password {
  margin-top: 14px !important;
  text-align: center;
}
#customer_login .lost_password a {
  font-size: 13px !important;
  color: var(--mauve-dark, #8a6a4a) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* Checkbox "Se souvenir de moi" */
#customer_login .woocommerce-form-login__rememberme {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 14px 0 !important;
  font-size: 13px !important;
}

/* Mobile : empile en 1 colonne */
@media (max-width: 768px) {
  body.woocommerce-account.woocommerce-page #customer_login,
  body.woocommerce-account .u-columns.col2-set {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* ═══════════════════════════════════════════════════
   BOUTONS SOCIAUX — Login + Register page Mon compte
   ═══════════════════════════════════════════════════ */
.rzx-social-block {
  margin-top: 22px;
}
.rzx-social-divider {
  position: relative;
  text-align: center;
  margin-bottom: 18px;
}
.rzx-social-divider::before,
.rzx-social-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 110px);
  height: 1px;
  background: rgba(26,26,26,0.15);
}
.rzx-social-divider::before { left: 0; }
.rzx-social-divider::after  { right: 0; }
.rzx-social-divider span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(26,26,26,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rzx-social-icons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.rzx-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(26,26,26,0.12);
  text-decoration: none;
  transition: border-color .25s, transform .2s, box-shadow .25s, background .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.rzx-social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.rzx-social-google:hover { border-color: #4285F4; }
.rzx-social-facebook:hover { border-color: #1877F2; background: #f0f5fc; }
.rzx-social-tiktok:hover { border-color: #1a1a1a; background: #1a1a1a; }
.rzx-social-tiktok:hover svg path[fill="#FF0050"] { fill: #25F4EE; }
.rzx-social-tiktok:hover svg path[fill="#00F2EA"] { fill: #FFFFFF; opacity: 1; }

@media (max-width: 480px) {
  .rzx-social-icon { width: 48px; height: 48px; }
}

/* Notices WooCommerce (succès, info, erreur) */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error,
.woocommerce-notice {
  background: var(--nude-light, #f5ede3) !important;
  border: none !important;
  border-left: 3px solid var(--mauve, #b89a7a) !important;
  padding: 16px 20px !important;
  border-radius: 4px !important;
  font-size: 14px !important;
  color: var(--noir) !important;
  margin-bottom: 24px !important;
}
.woocommerce-error { border-left-color: #c0392b !important; background: #fbeae5 !important; }

/* "Mon compte" intro */
.woocommerce-MyAccount-content .woocommerce-Address {
  background: #fff;
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}
.woocommerce-MyAccount-content .woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════
   WOOCOMMERCE CHECKOUT — layout compact style Christofle
   ═══════════════════════════════════════════════════ */

/* Wrapper et titre principal */
.wc-block-checkout,
.wp-block-woocommerce-checkout {
  font-family: var(--font-b);
  max-width: 1180px;
  margin: 0 auto;
}
.wp-block-post-title,
.entry-title,
body.woocommerce-checkout .rzn-page-hero h1,
body.woocommerce-cart .rzn-page-hero h1,
.rzn-page-main .rzn-page-hero h1 {
  font-family: var(--font-h);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--noir);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 32px;
  text-align: center !important;
}
body.woocommerce-checkout .rzn-page-hero,
body.woocommerce-cart .rzn-page-hero,
body.woocommerce-account .rzn-page-hero {
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   DEVISE — Force LTR sur tous les prix (anti-RTL arabe)
   ═══════════════════════════════════════════════════ */
.woocommerce-Price-amount,
.woocommerce-Price-currencySymbol,
.wc-block-components-product-price,
.wc-block-components-formatted-money-amount,
.wc-block-components-totals-item__value,
.wc-block-components-product-price__value,
.wc-block-components-order-summary-item__total-price,
bdi,
.amount,
.price ins,
.price del,
.price {
  direction: ltr !important;
  unicode-bidi: embed !important;
  text-align: right;
  white-space: nowrap;
}

/* Sur les zones de totaux (résumé commande), force aussi LTR sur les valeurs */
.wc-block-components-totals-item__value,
.wc-block-components-totals-footer-item__value {
  direction: ltr !important;
  display: inline-block !important;
}

/* ═══════════════════════════════════════════════════
   CHECKOUT — Layout général style "Adobe"
   ═══════════════════════════════════════════════════ */

/* Layout WooCommerce checkout — gap réduit pour rapprocher les 2 colonnes */
.wp-block-woocommerce-checkout {
  gap: 28px !important;
  align-items: flex-start !important;
}

/* Forms colonne gauche — padding interne + bg blanc transparent */
.wp-block-woocommerce-checkout-fields-block,
.wc-block-checkout__main {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Lien "Se connecter" du header de COORDONNÉES — bien positionné */
.wc-block-checkout-express-payment-block + .wc-block-components-checkout-step .wc-block-components-checkout-step__title-link,
.wc-block-components-checkout-step__title-link,
a[href*="login"][class*="checkout"] {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--mauve-dark, #8a6a4a) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Notice alert en haut (erreur paiement, info, etc.) */
.wc-block-components-notice-banner {
  border-radius: 10px !important;
  padding: 16px 22px !important;
  margin-bottom: 22px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border: none !important;
  border-left: 4px solid currentColor !important;
}
.wc-block-components-notice-banner.is-error {
  background: #fbeae5 !important;
  color: #c0392b !important;
}
.wc-block-components-notice-banner.is-info,
.wc-block-components-notice-banner.is-default {
  background: var(--nude-light, #f5ede3) !important;
  color: var(--mauve-dark, #8a6a4a) !important;
}
.wc-block-components-notice-banner.is-success {
  background: #d8eed8 !important;
  color: #4a7a4a !important;
}

/* Mode de paiement — pas de wrapper card, les options sont des cartes */
.wp-block-woocommerce-checkout-payment-block,
.wc-block-checkout__payment-method {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Chaque option de paiement = carte sélectionnable */
.wc-block-components-radio-control-accordion-option,
.wc-block-components-payment-method-content {
  border: 1.5px solid rgba(26,26,26,0.1) !important;
  border-radius: 10px !important;
  padding: 16px 18px !important;
  margin-bottom: 10px !important;
  background: #fff !important;
  transition: border-color .25s, background .25s !important;
}
.wc-block-components-radio-control-accordion-option:hover {
  border-color: rgba(184,154,122,0.5) !important;
}
.wc-block-components-radio-control-accordion-option:has(input:checked),
.wc-block-components-radio-control-accordion-option--checked {
  border-color: var(--mauve-dark, #8a6a4a) !important;
  background: #fff !important;
  box-shadow: 0 0 0 1px var(--mauve-dark, #8a6a4a) !important;
}

/* Label de paiement — Logo + Nom + Détails */
.wc-block-components-payment-method-label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--noir) !important;
}
.wc-block-components-payment-method-label img {
  height: 24px !important;
  width: auto !important;
  border-radius: 4px !important;
}

/* Liens "Ajouter | Modifier" style Adobe */
.wc-block-components-payment-method__edit-button,
.wc-block-components-button.has-text {
  color: #2569d4 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
.wc-block-components-payment-method__edit-button:hover {
  color: var(--mauve-dark, #8a6a4a) !important;
  text-decoration: underline !important;
}

/* Boutons d'action (style Adobe : un noir actif + un outline secondaire) */
.wc-block-checkout__actions,
.wc-block-checkout-place-order-button-block {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  align-items: center !important;
  margin-top: 22px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(26,26,26,0.08) !important;
}

.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button {
  background: var(--mauve-dark, #8a6a4a) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 16px 36px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  transition: background .25s, transform .15s !important;
  min-width: 200px !important;
}
.wc-block-components-checkout-place-order-button:hover {
  background: var(--noir) !important;
  transform: translateY(-1px);
}
.wc-block-components-checkout-place-order-button:disabled {
  background: rgba(26,26,26,0.2) !important;
  cursor: not-allowed !important;
  color: rgba(255,255,255,0.7) !important;
}

/* Bouton "Retour au panier" — outline gris */
.wc-block-components-checkout-return-to-cart-button {
  background: transparent !important;
  border: 1.5px solid rgba(26,26,26,0.2) !important;
  color: var(--noir) !important;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: border-color .25s, background .25s !important;
}
.wc-block-components-checkout-return-to-cart-button:hover {
  border-color: var(--noir) !important;
  background: var(--noir) !important;
  color: #fff !important;
}

/* Badge "🔒 Transaction sécurisée" en bas */
.rzx-secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(26,26,26,0.55);
  letter-spacing: 0.04em;
}
.rzx-secure-badge svg {
  flex-shrink: 0;
  color: var(--mauve-dark, #8a6a4a);
}

/* ═══════════════════════════════════════════════════
   CHECKOUT — Résumé de commande (minimal, WC par défaut)
   ═══════════════════════════════════════════════════ */
.wp-block-woocommerce-checkout-totals-block,
.wc-block-checkout__sidebar,
.wc-block-components-sidebar {
  background: var(--nude-light, #f5ede3) !important;
  border: 1px solid rgba(26,26,26,0.06) !important;
  border-radius: 10px !important;
  padding: 24px !important;
  box-shadow: none !important;
}

/* ═══════════════════════════════════════════════════
   LAYOUT UNIFIÉ — Cart / Checkout / Mon compte
   Hero beige + Carte blanche centrée
   ═══════════════════════════════════════════════════ */
body.woocommerce-cart .rzn-main,
body.woocommerce-checkout .rzn-main,
body.woocommerce-account .rzn-main {
  background: var(--nude-light, #f5ede3);
  padding-bottom: 60px;
  min-height: 100vh;
}

/* Hero unifié */
body.woocommerce-cart .rzn-page-hero,
body.woocommerce-checkout .rzn-page-hero,
body.woocommerce-account .rzn-page-hero {
  background: var(--nude-light, #f5ede3);
  padding: 72px var(--gutter) 28px !important;
  margin: 0;
  border: none;
}
body.woocommerce-cart .rzn-page-hero-inner,
body.woocommerce-checkout .rzn-page-hero-inner,
body.woocommerce-account .rzn-page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
body.woocommerce-cart .rzn-page-hero .rzn-section-eyebrow,
body.woocommerce-checkout .rzn-page-hero .rzn-section-eyebrow,
body.woocommerce-account .rzn-page-hero .rzn-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 4px;
}
body.woocommerce-cart .rzn-page-hero h1,
body.woocommerce-checkout .rzn-page-hero h1,
body.woocommerce-account .rzn-page-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  color: var(--noir);
  margin: 0 0 16px !important;
  text-align: center !important;
}

/* Carte blanche pour le contenu principal */
body.woocommerce-cart .rzn-page-content,
body.woocommerce-checkout .rzn-page-content,
body.woocommerce-account .rzn-page-content {
  padding: 0 var(--gutter) 60px;
  background: var(--nude-light, #f5ede3);
}
body.woocommerce-cart .rzn-page-article,
body.woocommerce-checkout .rzn-page-article,
body.woocommerce-account .rzn-page-article {
  max-width: 1180px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 30px rgba(26,26,26,0.05);
  padding: 44px 48px;
}
body.woocommerce-checkout .rzn-page-article {
  padding: 36px 40px;
}

/* Override pour la page Mon compte : retire le fond blanc du card si formulaire login/register */
body.woocommerce-account:not(.logged-in) .rzn-page-article {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
body.woocommerce-account.logged-in .rzn-page-article {
  padding: 28px 32px;
}

@media (max-width: 768px) {
  body.woocommerce-cart .rzn-page-hero,
  body.woocommerce-checkout .rzn-page-hero,
  body.woocommerce-account .rzn-page-hero {
    padding: 48px var(--gutter) 24px !important;
  }
  body.woocommerce-cart .rzn-page-article,
  body.woocommerce-checkout .rzn-page-article,
  body.woocommerce-account .rzn-page-article {
    padding: 24px 18px;
    border-radius: 10px;
  }
}

/* Steps / sections (Coordonnées, Adresse, Options...) — sans card, juste dividers */
.wc-block-components-checkout-step {
  position: relative;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(26,26,26,0.08) !important;
  padding: 22px 0 22px 50px !important;
  margin: 0 !important;
  box-shadow: none !important;
  transition: none;
}
.wc-block-components-checkout-step:last-of-type {
  border-bottom: none !important;
}
.wc-block-components-checkout-step:first-of-type {
  padding-top: 4px !important;
}
/* Icône à gauche selon l'étape */
.wc-block-components-checkout-step::before {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  left: 8px !important;
  top: 24px !important;
  width: 22px !important;
  height: 22px !important;
  background: transparent !important;
  border: none !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 20px 20px !important;
  opacity: 0.65;
}
/* Étape 1 — Coordonnées (email) */
.wc-block-components-checkout-step:nth-of-type(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") !important;
}
/* Étape 2 — Adresse de livraison */
.wc-block-components-checkout-step:nth-of-type(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 11 12 4l9 7v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpath d='M9 22V12h6v10'/%3E%3C/svg%3E") !important;
}
/* Étape 3 — Mode de livraison */
.wc-block-components-checkout-step:nth-of-type(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='1' y='6' width='14' height='12' rx='1'/%3E%3Cpath d='M15 9h4l2 3v6h-6'/%3E%3Ccircle cx='6' cy='19' r='2'/%3E%3Ccircle cx='17' cy='19' r='2'/%3E%3C/svg%3E") !important;
}
/* Étape 4 — Mode de paiement */
.wc-block-components-checkout-step:nth-of-type(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='5' width='20' height='14' rx='2'/%3E%3Cline x1='2' y1='10' x2='22' y2='10'/%3E%3C/svg%3E") !important;
}

.wc-block-components-checkout-step--with-step-number {
  padding-left: 50px !important;
}
.wc-block-components-checkout-step__title,
.wc-block-components-title.wc-block-components-checkout-step__title {
  font-family: var(--font-h) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--noir) !important;
  margin: 0 0 14px !important;
}
.wc-block-components-checkout-step__description {
  font-size: 13px !important;
  color: rgba(26,26,26,0.55) !important;
  margin-bottom: 16px !important;
}

/* Inputs : padding doux, bordure nude, focus mauve */
.wc-block-components-text-input,
.wc-block-components-select,
.wc-block-components-textarea {
  margin-bottom: 14px !important;
}
.wc-block-components-text-input input,
.wc-block-components-text-input input.input-text,
.wc-block-components-select select,
.wc-block-components-textarea textarea,
.wc-block-checkout input[type="text"],
.wc-block-checkout input[type="email"],
.wc-block-checkout input[type="tel"],
.wc-block-checkout select,
.wc-block-checkout textarea {
  border: 1.5px solid rgba(26,26,26,0.12) !important;
  border-radius: 6px !important;
  padding: 18px 18px 8px !important;
  font-size: 15px !important;
  font-family: var(--font-b) !important;
  color: var(--noir) !important;
  background: #fff !important;
  min-height: 56px !important;
  transition: border-color .25s, box-shadow .25s !important;
}
.wc-block-components-text-input input:focus,
.wc-block-components-select select:focus,
.wc-block-components-textarea textarea:focus,
.wc-block-checkout input:focus,
.wc-block-checkout select:focus,
.wc-block-checkout textarea:focus {
  border-color: var(--mauve, #b89a7a) !important;
  box-shadow: 0 0 0 3px rgba(184, 154, 122, 0.15) !important;
  outline: none !important;
}

/* Labels flottants */
.wc-block-components-text-input label,
.wc-block-components-select label {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  color: rgba(26,26,26,0.55) !important;
}
.wc-block-components-text-input.is-active label,
.wc-block-components-text-input input:focus + label,
.wc-block-components-select.is-active label {
  color: var(--mauve-dark, #8a6a4a) !important;
}

/* Boutons / liens "Ajouter ..." */
.wc-block-components-button.wc-block-components-button.contained,
.wc-block-components-button:not(.has-text) {
  background: var(--noir) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 16px 36px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: background .25s, transform .25s !important;
}
.wc-block-components-button:not(.has-text):hover {
  background: var(--mauve-dark, #8a6a4a) !important;
  transform: translateY(-1px);
}
.wc-block-components-button.has-text {
  color: var(--mauve-dark, #8a6a4a) !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}

/* Checkbox & radio (livraison, facturation) */
.wc-block-components-checkbox__input:checked,
.wc-block-components-radio-control__input:checked {
  background: var(--noir) !important;
  border-color: var(--noir) !important;
}
.wc-block-components-radio-control__option,
.wc-block-components-shipping-rates-control__package {
  border: 1.5px solid rgba(26,26,26,0.1) !important;
  border-radius: 6px !important;
  padding: 18px 18px 18px 50px !important;
  margin-bottom: 10px !important;
  transition: border-color .25s, background .25s !important;
  display: block !important;
  position: relative !important;
}
.wc-block-components-radio-control__option .wc-block-components-radio-control__input,
.wc-block-components-radio-control__option input[type="radio"] {
  position: absolute !important;
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
}
.wc-block-components-radio-control__option-layout,
.wc-block-components-radio-control__label {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  font-size: 14px !important;
  color: var(--noir) !important;
}
.wc-block-components-radio-control__option:has(input:checked),
.wc-block-components-radio-control__option--checked {
  border-color: var(--mauve-dark, #8a6a4a) !important;
  background: var(--nude-light, #f5ede3) !important;
}

/* Notice "aucun moyen de paiement" */
.wc-block-components-notice-banner {
  border-radius: 6px !important;
  padding: 18px 22px !important;
  font-size: 14px !important;
}

/* Liens bas de page checkout */
.wc-block-components-checkout-return-to-cart-button {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  color: var(--mauve-dark, #8a6a4a) !important;
}

/* Conditions de service (page checkout/panier/mon compte) — même structure que contact */
.rzx-checkout-terms {
  background: var(--nude-light, #f5ede3);
  padding: 40px var(--gutter) 80px;
}
.rzx-checkout-terms-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.rzx-checkout-terms-info { display: flex; flex-direction: column; gap: 0; }
.rzx-checkout-terms-info article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(26,26,26,0.12);
}
.rzx-checkout-terms-info article:last-child { padding-bottom: 8px; }
.rzx-checkout-terms-info article span {
  font-size: 16px;
  font-weight: 600;
  color: var(--noir);
}
.rzx-checkout-terms-info article p {
  font-size: 14px;
  color: rgba(26,26,26,0.6);
  line-height: 1.65;
  margin: 0;
}
.rzx-checkout-terms-box {
  background: var(--nude);
  padding: 36px 32px;
  border-radius: 6px;
}
.rzx-checkout-terms-box p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26,26,26,0.78);
  margin: 0 0 16px;
}
.rzx-checkout-terms-foot {
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: rgba(26,26,26,0.55) !important;
  margin: 24px 0 0 !important;
}
.rzx-checkout-terms-foot a {
  color: var(--noir);
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 900px) {
  .rzx-checkout-terms { padding: 60px var(--gutter); }
  .rzx-checkout-terms-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Tagline centrée (style Zaro "Where style meets presence") */
.rzx-contact-tagline {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(26,26,26,0.5);
  padding: 60px var(--gutter) 80px;
  margin: 0;
}
.rzx-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rzx-contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}
.rzx-contact-form input,
.rzx-contact-form textarea {
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--noir);
  outline: none;
  font-family: var(--font-b);
  transition: border-color .25s;
  resize: vertical;
}
.rzx-contact-form input:focus,
.rzx-contact-form textarea:focus { border-color: var(--mauve); }
.rzx-contact-form .btn-primary {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
  align-self: flex-start;
}
.rzx-contact-form .btn-primary:hover {
  background: var(--mauve-dark);
  border-color: var(--mauve-dark);
}

/* ── FAQ ── */
.rzx-faq {
  background: var(--nude-light);
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.rzx-faq-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rzx-faq-group > h2 {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 20px;
}
.rzx-faq-group details {
  border-top: 1px solid var(--border);
}
.rzx-faq-group details:last-child { border-bottom: 1px solid var(--border); }
.rzx-faq-group summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--noir);
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  transition: color .25s;
}
.rzx-faq-group summary::-webkit-details-marker { display: none; }
.rzx-faq-group summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--mauve-dark);
  flex-shrink: 0;
  transition: transform .3s;
}
.rzx-faq-group details[open] summary::after { transform: rotate(45deg); }
.rzx-faq-group details[open] summary { color: var(--mauve-dark); }
.rzx-faq-group details > p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  padding: 0 0 20px;
  max-width: 680px;
}

/* ── Policy ── */
.rzx-policy {
  background: var(--nude-light);
  max-width: 800px;
}
.rzx-policy h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--noir);
}
.rzx-policy p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── 404 Error ── */
.rzx-error {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--gutter);
}
.rzx-error section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.rzx-error section span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}
.rzx-error section h1 {
  font-family: var(--font-h);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--noir);
}
.rzx-error section .btn-primary {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}
.rzx-error section .btn-primary:hover {
  background: var(--mauve-dark);
  border-color: var(--mauve-dark);
}

/* ═══════════════════════════════════════════════════
   RZX — RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .rzx-product-grid { grid-template-columns: repeat(3, 1fr); }
  .rzx-cards { grid-template-columns: 1fr 1fr; }
  .rzx-cards > .rzx-section-head { grid-column: 1 / -1; }
  .rzx-team { grid-template-columns: repeat(2, 1fr); }
  .rzx-team > .rzx-section-head { grid-column: 1 / -1; }
  .rzx-dark { grid-template-columns: 1fr 1fr; }
  .rzx-dark > .rzx-stats { grid-column: 1 / -1; flex-direction: row; gap: 40px; flex-wrap: wrap; }
}
@media (max-width: 860px) {
  .rzx-collection-grid { grid-template-columns: 1fr 1fr; }
  .rzx-sale-block { grid-template-columns: 1fr; }
  .rzx-sale-block img { min-height: 320px; max-height: 380px; }
  .rzx-contact { grid-template-columns: 1fr; gap: 48px; }
  .rzx-page-hero { min-height: 70vh; padding: 100px var(--gutter) 60px; }
  .rzx-product-grid { grid-template-columns: repeat(2, 1fr); }
  .rzx-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .rzx-dark { grid-template-columns: 1fr; }
  .rzx-seen { flex-direction: column; align-items: flex-start; gap: 20px; }
  .rzx-seen > div { gap: 28px; }
  .rzx-section-head.compact { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 580px) {
  .rzx-section { padding: 60px var(--gutter); }
  .rzx-collection-grid { grid-template-columns: 1fr; }
  .rzx-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .rzx-blog-grid { grid-template-columns: 1fr; }
  .rzx-sale-block > div { padding: 48px var(--gutter); }
  .rzx-sale-block > div h2 { font-size: 48px; }
  .rzx-team { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   FEATURED COLLECTIONS — SCROLL HORIZONTAL
═══════════════════════════════════════════════════ */
.rzx-hscroll-outer {
  position: relative;
  background: var(--nude-light);
  height: 300vh; /* hauteur explicite : 1 viewport pinned + 2 viewports de scroll */
}
.rzx-hscroll-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--nude-light);
}
/* le clip isole l'overflow visuel sans toucher au sticky */
.rzx-hscroll-clip {
  flex: 1;
  overflow: hidden;
  min-height: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

/* Bloc Intro (premier item du track : titre + desc + CTA) */
.rzx-hscroll-intro {
  flex: 0 0 46vw;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  padding: 0 40px 0 var(--gutter);
  overflow: hidden;
}
.rzx-hscroll-intro .rzx-hscroll-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}
.rzx-hscroll-intro h2 {
  font-family: var(--font-h);
  font-size: clamp(40px, 4.6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: rgba(26,26,26,0.22);
  text-transform: uppercase;
  word-break: break-word;
}
.rzx-hscroll-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26,26,26,0.65);
  max-width: 340px;
  margin: 4px 0 8px;
}
.rzx-hscroll-cta { align-self: flex-start; }

/* Colonne contenant carte + label sous la carte */
.rzx-hscroll-col {
  flex: 0 0 38vw;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.rzx-hscroll-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin-bottom: 8px;
}
.rzx-hscroll-header h2 {
  font-family: var(--font-h);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.0;
  color: var(--noir);
}
.rzx-hscroll-shop-btn {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir);
  border-bottom: 1.5px solid var(--noir);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color .25s, border-color .25s;
}
.rzx-hscroll-shop-btn:hover { color: var(--mauve-dark); border-color: var(--mauve-dark); }

/* Horizontal track : tout défile ensemble (intro + cartes + labels)
   width:max-content => le track prend la largeur cumulée de ses enfants
   au lieu d'être compressé à la largeur du clip. */
.rzx-hscroll-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 0 var(--gutter);
  height: 100%;
  width: max-content;
  flex-shrink: 0;
  will-change: transform;
  transition: none;
}
.rzx-hscroll-card {
  flex: 1 1 auto;
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--nude);
  text-decoration: none;
  border-radius: 8px;
  min-height: 0;
}
/* Bulle de description sur la carte (style Zaro) */
.rzx-hscroll-bubble {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: var(--nude-light);
  color: var(--noir);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  padding: 14px 18px;
  border-radius: 22px;
  max-width: 220px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}
/* Label sous la carte : "Women's Collection" + Shop now */
.rzx-hscroll-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px 0;
}
.rzx-hscroll-label h3 {
  font-family: var(--font-h);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--noir);
}
.rzx-hscroll-shopnow {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--noir);
  background: var(--white);
  border: 1.5px solid var(--noir);
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.rzx-hscroll-shopnow:hover { background: var(--noir); color: var(--white); }
.rzx-hscroll-card { flex: 1 1 auto; }
.rzx-hscroll-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform .7s var(--ease);
  display: block;
}
.rzx-hscroll-card:hover img { transform: scale(1.05); }
.rzx-hscroll-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(26,26,26,0.72) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--white);
  transition: padding .3s var(--ease);
}
.rzx-hscroll-card:hover .rzx-hscroll-card-overlay { padding-bottom: 38px; }
.rzx-hscroll-card-overlay span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  max-width: 300px;
}
.rzx-hscroll-card-overlay strong {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--white);
  color: var(--noir);
  padding: 10px 20px;
  transition: background .25s, color .25s;
  align-self: flex-start;
}
.rzx-hscroll-card:hover .rzx-hscroll-card-overlay strong {
  background: var(--mauve);
  color: var(--noir);
}

/* Footer : barre de progression PLEINE LARGEUR en bas du sticky */
.rzx-hscroll-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  width: 100%;
  padding: 24px var(--gutter) 32px;
  border-top: 1px solid rgba(26,26,26,0.08);
}
.rzx-hscroll-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(26,26,26,0.12);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.rzx-hscroll-progress-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: var(--noir);
  width: 0%;
  transition: width .04s linear;
}
.rzx-hscroll-hint {
  display: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26,26,26,.4);
  white-space: nowrap;
}
.rzx-hscroll-arrows {
  display: none;
  gap: 6px;
}
.rzx-hscroll-arrows button {
  width: 36px; height: 36px;
  border: 1px solid rgba(26,26,26,.25);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.rzx-hscroll-arrows button:hover { background: var(--noir); color: var(--white); border-color: var(--noir); }
.rzx-hscroll-spacer { background: var(--nude-light); }

/* Countdown intégré dans rzx-sale-block — fond sombre */
.rzx-sale-countdown {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.rzx-sale-countdown .rzn-cd-block {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  min-width: 110px;
  padding: 24px 16px;
  border-radius: 6px;
}
.rzx-sale-countdown .rzn-cd-num {
  font-size: clamp(48px, 5vw, 84px);
  color: var(--white);
  font-weight: 700;
}
.rzx-sale-countdown .rzn-cd-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
}
.rzx-sale-countdown .rzn-cd-sep {
  font-size: clamp(40px, 4vw, 64px) !important;
}
.rzx-sale-countdown .rzn-cd-sep {
  font-size: 24px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  line-height: 1;
}
/* Libellé "Offre expire dans :" au-dessus du countdown */
.rzx-sale-countdown-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve);
  margin-bottom: 12px;
}

/* Responsive hscroll */
@media (max-width: 1024px) {
  .rzx-hscroll-intro { flex: 0 0 50vw; }
  .rzx-hscroll-col { flex: 0 0 60vw; }
}
@media (max-width: 768px) {
  .rzx-hscroll-intro { flex: 0 0 75vw; padding: 0 24px; }
  .rzx-hscroll-intro h2 { font-size: 56px; }
  .rzx-hscroll-col { flex: 0 0 80vw; }
  .rzx-hscroll-clip { padding-top: 40px; }
  .rzn-cd-num { font-size: 28px; }
}
@media (max-width: 480px) {
  .rzx-hscroll-intro { flex: 0 0 85vw; }
  .rzx-hscroll-col { flex: 0 0 88vw; }
}

/* ═══════════════════════════════════════════════════
   REVEAL / PARALLAX SECTION  (image qui se contracte)
═══════════════════════════════════════════════════ */
.rzx-reveal-section {
  position: relative;
  background: var(--noir);
  /* PAS d'overflow:hidden ici -- ça casse position:sticky de .rzx-reveal-sticky.
     Le clip des textes est géré par .rzx-reveal-sticky (overflow:hidden). */
}
.rzx-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rangées de grand texte — derrière l'image */
.rzx-reveal-row {
  position: absolute;
  left: 0;
  width: max-content;
  font-family: var(--font-h);
  font-size: clamp(60px, 11vw, 150px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.10);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  will-change: transform;
  line-height: 1;
}
.rzx-reveal-row--top    { top: 22%; }
.rzx-reveal-row--bottom { bottom: 18%; }

/* Image — remplit l'écran au début, se contracte au scroll (transform animé via JS) */
.rzx-reveal-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rzx-reveal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  will-change: transform;
  transform-origin: center center;
  transform: scale(1) rotate(0deg);
}

/* Caption — superposée, monte depuis le bas */
.rzx-reveal-caption {
  position: absolute;
  bottom: clamp(32px, 6vh, 72px);
  left: clamp(24px, 5vw, 80px);
  z-index: 3;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}
.rzx-reveal-caption.is-visible { pointer-events: auto; }
.rzx-reveal-caption > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve);
}
.rzx-reveal-caption h2 {
  font-family: var(--font-h);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--white);
}
.rzx-reveal-caption p {
  font-size: 14px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  max-width: 360px;
}
.rzx-reveal-caption .btn-outline {
  align-self: flex-start;
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  padding: 13px 28px;
  font-size: 11px;
}
.rzx-reveal-caption .btn-outline:hover {
  background: var(--white);
  color: var(--noir);
  border-color: var(--white);
}

/* ═══════════════════════════════════════════════════
   FASHION INSIDER (blog cards, homepage)
═══════════════════════════════════════════════════ */
.rzx-insider { background: var(--nude-light); }
.rzx-insider-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}
.rzx-insider-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  cursor: pointer;
}
.rzx-insider-img-wrap {
  display: block;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--nude);
  position: relative;
}
.rzx-insider-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .65s var(--ease);
}
.rzx-insider-card:hover .rzx-insider-img-wrap img { transform: scale(1.06); }
.rzx-insider-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rzx-insider-body > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}
.rzx-insider-body h3 {
  font-family: var(--font-h);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--noir);
  transition: color .25s;
}
.rzx-insider-card:hover .rzx-insider-body h3 { color: var(--mauve-dark); }
.rzx-insider-body p {
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .rzx-insider-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .rzx-reveal-row { font-size: 48px; }
  .rzx-insider-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   TEAM — rôle sous le nom (v5.3.0)
═══════════════════════════════════════════════════ */
.rzx-team > article .rzx-team-role {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════════════
   SEASON SALE — bandeau Save today / 40% off (v5.3.0)
═══════════════════════════════════════════════════ */
.rzx-season-sale {
  background: var(--nude);
  padding: 96px var(--gutter);
}
.rzx-season-sale-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.rzx-season-eyebrow {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.rzx-season-sale-inner h2 {
  font-family: var(--font-h);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--noir);
  letter-spacing: -0.02em;
}
.rzx-season-sale-inner p {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.5;
}
.rzx-season-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--noir);
  border-radius: 999px;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir);
  background: transparent;
}
.rzx-season-sale-inner .btn-primary { margin-top: 8px; }

/* ═══════════════════════════════════════════════════
   TRUST SIGNALS — Easy Returns / Fast Shipping / 24/7 (v5.3.0)
═══════════════════════════════════════════════════ */
.rzx-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--nude-light);
  padding: 0;
}
.rzx-trust-card {
  padding: 56px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-right: 1px solid var(--border);
}
.rzx-trust-card:last-child { border-right: none; }
.rzx-trust-card span {
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--noir);
}
.rzx-trust-card p {
  font-family: var(--font-b);
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray);
  max-width: 360px;
}

@media (max-width: 860px) {
  .rzx-trust { grid-template-columns: 1fr; }
  .rzx-trust-card { border-right: none; border-bottom: 1px solid var(--border); }
  .rzx-trust-card:last-child { border-bottom: none; }
  .rzx-season-sale { padding: 64px var(--gutter); }
}

/* ═══════════════════════════════════════════════════
   TRIO — 3 images alignées (sous chrono)
═══════════════════════════════════════════════════ */
.rzx-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: var(--nude-light);
  margin-top: 100px; /* espace après le chrono */
}
.rzx-trio-cell {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--nude);
}
.rzx-trio-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform .8s var(--ease);
}
.rzx-trio-cell:hover img { transform: scale(1.04); }

@media (max-width: 768px) {
  .rzx-trio { grid-template-columns: 1fr; gap: 8px; margin-top: 60px; }
  .rzx-trio-cell { aspect-ratio: 16/10; }
}

/* ═══════════════════════════════════════════════════
   MODERN DETAILS — texte qui passe du gris au noir au scroll
═══════════════════════════════════════════════════ */
.rzx-modern-details {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 140px var(--gutter);
  background: var(--nude-light);
  align-items: start;
}
.rzx-md-side {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.rzx-md-side h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--noir);
}
.rzx-md-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--noir);
  border-bottom: 1.5px solid var(--noir);
  padding-bottom: 4px;
  align-self: flex-start;
}
.rzx-md-text {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.2vw, 56px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: rgb(180,180,180);
}
.rzx-md-word {
  display: inline-block;
  margin-right: 0.18em;
  transition: color .15s linear;
}

@media (max-width: 860px) {
  .rzx-modern-details {
    grid-template-columns: 1fr;
    padding: 80px var(--gutter);
    gap: 32px;
  }
  .rzx-md-side { position: static; }
  .rzx-md-text { font-size: clamp(22px, 5vw, 32px); }
}


/* ═══════════════════════════════════════════════════
   SINGLE PRODUCT — page produit style Zaro
═══════════════════════════════════════════════════ */
.rzx-product-page {
  background: var(--nude-light);
}
body .rzx-product-page {
  padding-top: calc(var(--header-h) + 60px) !important;
}
.rzx-product-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding: 0 var(--gutter) 80px;
  align-items: flex-start;
}
.rzx-product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.rzx-product-gallery-cell {
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--nude);
  border-radius: 4px;
}
.rzx-product-gallery-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--ease);
}
.rzx-product-gallery-cell:hover img { transform: scale(1.04); }

.rzx-product-info {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px 0;
}
.rzx-product-title {
  font-family: var(--font-h);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--noir);
  margin: 0;
  text-transform: uppercase;
}
.rzx-product-subtitle {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(26,26,26,0.7);
  margin: 0;
  max-width: 560px;
}
.rzx-product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.rzx-product-price-current {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 700;
  color: var(--noir);
}
.rzx-product-price-old {
  font-size: 22px;
  color: rgba(26,26,26,0.4);
  text-decoration: line-through;
}
.rzx-product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.rzx-product-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--noir);
}
.rzx-product-stars span { margin-left: 8px; color: rgba(26,26,26,0.7); }
.rzx-product-stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}
.rzx-product-stock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2BB070;
}
.rzx-product-stock.is-out .rzx-product-stock-dot { background: #C33; }

.rzx-product-form { display: flex; flex-direction: column; gap: 22px; margin-top: 4px; }
.rzx-product-option { display: flex; flex-direction: column; gap: 12px; }
.rzx-product-option-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.7);
}
.rzx-product-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.rzx-product-swatch {
  width: 38px; height: 38px;
  border-radius: 6px;
  border: 1.5px solid rgba(26,26,26,0.12);
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
  padding: 0;
}
.rzx-product-swatch:hover { transform: scale(1.05); }
.rzx-product-swatch.is-active {
  border-color: var(--noir);
  box-shadow: 0 0 0 2px var(--white) inset;
}

.rzx-product-sizes { display: flex; gap: 10px; flex-wrap: wrap; }
.rzx-product-size {
  min-width: 64px;
  padding: 12px 18px;
  background: var(--white);
  border: 1.5px solid rgba(26,26,26,0.18);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--noir);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.rzx-product-size:hover { border-color: var(--noir); }
.rzx-product-size.is-active {
  background: var(--noir);
  color: var(--white);
  border-color: var(--noir);
}

.rzx-product-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(26,26,26,0.18);
  border-radius: 4px;
  width: fit-content;
  background: var(--white);
}
.rzx-product-qty-btn {
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  color: var(--noir);
}
.rzx-product-qty-input {
  width: 56px;
  height: 44px;
  border: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.rzx-product-qty-input::-webkit-outer-spin-button,
.rzx-product-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.rzx-product-cta {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--noir);
  color: var(--white);
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: background .25s, transform .15s;
  margin-top: 8px;
}
.rzx-product-cta:hover { background: var(--noir-soft); transform: translateY(-1px); }

.rzx-product-trust {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid rgba(26,26,26,0.08);
  padding-top: 22px;
}
.rzx-product-trust li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--noir);
}
.rzx-product-trust li svg { flex-shrink: 0; margin-top: 2px; }
.rzx-product-trust li div { display: flex; flex-direction: column; gap: 2px; }
.rzx-product-trust li strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.rzx-product-trust li span {
  font-size: 13px;
  color: rgba(26,26,26,0.65);
}

.rzx-product-accordions {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(26,26,26,0.08);
}
.rzx-product-acc { border-bottom: 1px solid rgba(26,26,26,0.08); }
.rzx-product-acc summary {
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--noir);
}
.rzx-product-acc summary::-webkit-details-marker { display: none; }
.rzx-product-acc summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: rgba(26,26,26,0.6);
  transition: transform .25s;
}
.rzx-product-acc[open] summary::after { content: '−'; }
.rzx-product-acc-body {
  padding: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26,26,26,0.75);
}
.rzx-product-acc-body ul { padding-left: 18px; }
.rzx-product-acc-body li { margin-bottom: 6px; }

@media (max-width: 1024px) {
  .rzx-product-layout { grid-template-columns: 1fr; gap: 24px; }
  .rzx-product-info { position: static; }
}
@media (max-width: 600px) {
  .rzx-product-gallery { grid-template-columns: 1fr; }
  .rzx-product-title { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════
   PANIER LATÉRAL (drawer) — style Zaro
═══════════════════════════════════════════════════ */
.rzn-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.55);
  z-index: 9998;
  opacity: 0;
  animation: rzn-fade-in .3s ease forwards;
}
@keyframes rzn-fade-in { to { opacity: 1; } }
.rzn-cart-overlay[hidden] { display: none; }

.rzn-cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--nude-light);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.rzn-cart-drawer.is-open { transform: translateX(0); }

.rzn-cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.rzn-cart-drawer-head h2 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--noir);
  display: flex;
  align-items: center;
  gap: 10px;
}
.rzn-cart-drawer-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--noir);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-b);
}
.rzn-cart-drawer-close {
  width: 38px; height: 38px;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: var(--noir);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.rzn-cart-drawer-close:hover { background: rgba(26,26,26,0.06); }

.rzn-cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rzn-cart-drawer-empty {
  text-align: center;
  padding: 60px 0;
  color: rgba(26,26,26,0.6);
  font-size: 14px;
}

.rzn-cart-item {
  display: flex;
  gap: 14px;
  background: var(--white);
  border-radius: 8px;
  padding: 14px;
  position: relative;
}
.rzn-cart-item-thumb {
  flex-shrink: 0;
  width: 96px;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--nude);
}
.rzn-cart-item-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.rzn-cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.rzn-cart-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.rzn-cart-item-name {
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--noir);
  text-transform: uppercase;
  line-height: 1.3;
  flex: 1;
}
.rzn-cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--noir);
  white-space: nowrap;
}
.rzn-cart-item-variant {
  font-size: 12px;
  color: rgba(26,26,26,0.6);
  margin: 0;
}
.rzn-cart-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 6px;
}
.rzn-cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26,26,26,0.18);
  border-radius: 4px;
  background: var(--white);
}
.rzn-cart-qty-btn {
  width: 30px; height: 30px;
  background: transparent;
  border: 0;
  font-size: 14px;
  cursor: pointer;
  color: var(--noir);
}
.rzn-cart-qty-input {
  width: 36px;
  height: 30px;
  border: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  -moz-appearance: textfield;
}
.rzn-cart-qty-input::-webkit-outer-spin-button,
.rzn-cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.rzn-cart-item-remove {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(196, 168, 212, 0.25);
  color: var(--mauve-dark);
  transition: background .2s;
  flex-shrink: 0;
}
.rzn-cart-item-remove:hover { background: rgba(196, 168, 212, 0.5); }

.rzn-cart-drawer-foot {
  border-top: 1px solid rgba(26,26,26,0.08);
  padding: 22px 28px 28px;
  background: var(--nude-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rzn-cart-drawer-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: var(--noir);
}
.rzn-cart-drawer-subtotal strong {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
}
.rzn-cart-drawer-checkout {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--noir);
  color: var(--white);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  border-radius: 4px;
  text-transform: uppercase;
  transition: background .25s;
}
.rzn-cart-drawer-checkout:hover { background: var(--noir-soft); color: var(--white); }
.rzn-cart-drawer-viewfull {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.65);
  border-bottom: 1px solid rgba(26,26,26,0.2);
  align-self: center;
  padding-bottom: 2px;
}
.rzn-cart-drawer-viewfull:hover { color: var(--noir); border-color: var(--noir); }

/* Le bouton-icône panier garde l'apparence de l'ancien <a> */
button.rzn-cart-link {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 480px) {
  .rzn-cart-drawer { width: 100vw; }
  .rzn-cart-drawer-head, .rzn-cart-drawer-body, .rzn-cart-drawer-foot { padding-left: 20px; padding-right: 20px; }
}

/* ═══════════════════════════════════════════════════
   ACCOUNT DRAWER — login / register / social
═══════════════════════════════════════════════════ */
button.rzn-account-link {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
}

.rzn-account-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,26,26,0.55);
  z-index: 9998;
  opacity: 0;
  animation: rzn-fade-in .3s ease forwards;
}
.rzn-account-overlay[hidden] { display: none; }

.rzn-account-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(440px, 92vw);
  background: var(--nude-light);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.rzn-account-drawer.is-open { transform: translateX(0); }

.rzn-account-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(26,26,26,0.08);
}
.rzn-account-drawer-head h2 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: var(--noir);
}
.rzn-account-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Onglets login / register */
.rzn-account-tabs {
  display: flex;
  background: var(--white);
  border-radius: 999px;
  padding: 4px;
  border: 1px solid rgba(26,26,26,0.1);
}
.rzn-account-tab {
  flex: 1;
  padding: 11px 16px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.65);
  cursor: pointer;
  transition: background .25s, color .25s;
}
.rzn-account-tab.is-active { background: var(--noir); color: var(--white); }

/* Boutons sociaux — grille horizontale */
.rzn-account-social {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}
.rzn-account-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--white);
  border: 1.5px solid rgba(26,26,26,0.15);
  border-radius: 8px;
  color: var(--noir);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: border-color .25s, background .25s, transform .15s, color .25s;
}
.rzn-account-social-btn:hover { border-color: var(--noir); transform: translateY(-1px); }
.rzn-account-social-btn span { line-height: 1; }
.rzn-social-google:hover    { background: #f8fafc; }
.rzn-social-facebook:hover  { background: #f0f5fc; border-color: #1877F2; color: #1877F2; }
.rzn-social-tiktok:hover    { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.rzn-social-tiktok:hover svg path[fill="#00F2EA"] { fill: #25F4EE; opacity: 1; }

/* Séparateur "ou continuer avec" */
.rzn-account-or {
  position: relative;
  text-align: center;
  margin: 20px 0 4px;
}
.rzn-account-or::before, .rzn-account-or::after {
  content: '';
  position: absolute; top: 50%;
  width: calc(50% - 80px);
  height: 1px;
  background: rgba(26,26,26,0.12);
}
.rzn-account-or::before { left: 0; }
.rzn-account-or::after  { right: 0; }
.rzn-account-or span {
  font-size: 11px;
  color: rgba(26,26,26,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

/* Lien création de compte en bas du drawer */
.rzn-account-register-link {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(26,26,26,0.08);
  text-align: center;
  font-size: 13px;
}
.rzn-account-register-link span {
  color: rgba(26,26,26,0.6);
  display: block;
  margin-bottom: 6px;
}
.rzn-account-register-link a {
  display: inline-block;
  color: var(--noir);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--noir);
  padding-bottom: 2px;
  transition: color .25s, border-color .25s;
}
.rzn-account-register-link a:hover {
  color: var(--mauve-dark, #8a6a4a);
  border-bottom-color: var(--mauve-dark, #8a6a4a);
}

/* Formulaires */
.rzn-account-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rzn-account-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rzn-account-form label > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.7);
}
.rzn-account-form input[type="email"],
.rzn-account-form input[type="text"],
.rzn-account-form input[type="password"] {
  padding: 14px 16px;
  background: var(--white);
  border: 1.5px solid rgba(26,26,26,0.15);
  border-radius: 6px;
  font-size: 14px;
  color: var(--noir);
  transition: border-color .25s;
  font-family: inherit;
}
.rzn-account-form input:focus { outline: 0; border-color: var(--noir); }
.rzn-account-checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 10px !important;
  font-size: 13px;
  color: rgba(26,26,26,0.7);
  cursor: pointer;
}
.rzn-account-checkbox > span {
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: rgba(26,26,26,0.7) !important;
}
.rzn-account-checkbox input { width: 16px; height: 16px; accent-color: var(--noir); }

.rzn-account-cta {
  margin-top: 6px;
  padding: 16px;
  background: var(--noir);
  color: var(--white);
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: background .25s, transform .15s;
}
.rzn-account-cta:hover { background: var(--noir-soft); transform: translateY(-1px); }

.rzn-account-forgot {
  align-self: center;
  font-size: 12px;
  color: rgba(26,26,26,0.65);
  border-bottom: 1px solid rgba(26,26,26,0.2);
  padding-bottom: 2px;
  margin-top: 4px;
}
.rzn-account-forgot:hover { color: var(--noir); border-color: var(--noir); }
.rzn-account-note {
  font-size: 12px;
  color: rgba(26,26,26,0.6);
  margin: 0;
  line-height: 1.5;
}
.rzn-account-note a { color: var(--noir); border-bottom: 1px solid rgba(26,26,26,0.4); }

/* Vue connecté */
.rzn-account-welcome {
  background: var(--white);
  padding: 18px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rzn-account-hello { margin: 0; font-size: 16px; color: var(--noir); }
.rzn-account-mail  { margin: 0; font-size: 13px; color: rgba(26,26,26,0.6); }
.rzn-account-links {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}
.rzn-account-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--noir);
  border-bottom: 1px solid rgba(26,26,26,0.06);
  transition: background .2s;
}
.rzn-account-links a:last-child { border-bottom: 0; }
.rzn-account-links a:hover { background: rgba(26,26,26,0.03); }
.rzn-account-logout {
  align-self: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.65);
  border-bottom: 1px solid rgba(26,26,26,0.2);
  padding-bottom: 2px;
  margin-top: auto;
}
.rzn-account-logout:hover { color: var(--noir); border-color: var(--noir); }

@media (max-width: 480px) {
  .rzn-account-drawer { width: 100vw; }
  .rzn-account-drawer-head, .rzn-account-drawer-body { padding-left: 20px; padding-right: 20px; }
}

/* ═══════════════════════════════════════════════════
   ABOUT — Our Story / Mission / Marquee / Scroll lock
═══════════════════════════════════════════════════ */
.rzx-about-story {
  text-align: center;
  padding: 120px var(--gutter) 80px;
  background: var(--nude-light);
}
.rzx-about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
  margin: 0 0 24px;
}
.rzx-about-bigtext {
  font-family: var(--font-h);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--noir);
  max-width: 1100px;
  margin: 0 auto 80px;
}
.rzx-about-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rzx-about-trio img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* Mission */
.rzx-about-mission {
  background: var(--nude-light);
  padding: 80px var(--gutter) 100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.rzx-about-mission-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}
.rzx-about-mission-side .rzx-about-eyebrow {
  text-align: left;
  margin-bottom: 14px;
}
.rzx-about-mission-side h2 {
  font-family: var(--font-h);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: var(--noir);
}
.rzx-about-mission-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26,26,26,0.7);
  margin: 0;
  padding-top: 14px;
}
.rzx-about-mission-imgs {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 16px;
}
.rzx-about-mission-imgs img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.rzx-about-mission-imgs img:nth-child(2) { aspect-ratio: 16/10; }

/* Marquee — texte coulissant en sens inverse */
.rzx-about-marquee {
  background: var(--nude-light);
  padding: 60px 0 80px;
  overflow: hidden;
  position: relative;
}
.rzx-about-marquee-row {
  white-space: nowrap;
  font-family: var(--font-h);
  font-size: clamp(80px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--noir);
}
.rzx-about-marquee-row--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--noir);
  margin-top: -10px;
}
.rzx-about-marquee-row span {
  display: inline-block;
  padding-right: 40px;
  animation: rzn-marquee 28s linear infinite;
}
.rzx-about-marquee-row[data-dir="right"] span {
  animation-direction: reverse;
}
@keyframes rzn-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll lock avec ligne verticale */
.rzx-about-lock {
  position: relative;
  height: 220vh;
  background: var(--nude-light);
}
.rzx-about-lock--multi { height: 360vh; }
.rzx-about-lock-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}
.rzx-about-lock--multi .rzx-about-lock-sticky {
  display: block;
  position: sticky;
}
.rzx-about-lock-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity .55s var(--ease, ease), transform .55s var(--ease, ease);
}
.rzx-about-lock-stage.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.rzx-about-lock-stage .rzx-about-lock-grid { width: 100%; }
.rzx-about-lock-steps {
  display: none;
}
.rzx-about-lock-steps span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26,26,26,0.2);
  transition: background .35s, transform .35s;
}
.rzx-about-lock-steps span.is-active {
  background: var(--noir);
  transform: scale(1.4);
}
.rzx-about-lock-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-items: center;
}
.rzx-about-lock-eyebrow {
  grid-column: 1 / -1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mauve-dark);
}
.rzx-about-lock-title {
  font-family: var(--font-h);
  font-size: clamp(60px, 9vw, 160px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--noir);
  text-transform: uppercase;
}
.rzx-about-lock-outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--noir);
}
.rzx-about-lock-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.rzx-about-lock-gallery img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
.rzx-about-lock-text {
  grid-column: 2;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26,26,26,0.7);
  max-width: 480px;
}
.rzx-about-lock-progress {
  position: absolute;
  right: 32px;
  top: 80px;
  bottom: 80px;
  width: 3px;
  background: rgba(26,26,26,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.rzx-about-lock-progress-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0%;
  background: var(--noir);
  transition: height .08s linear;
}

@media (max-width: 1024px) {
  .rzx-about-mission-top { grid-template-columns: 1fr; gap: 24px; }
  .rzx-about-mission-imgs { grid-template-columns: 1fr; }
  .rzx-about-lock-grid { grid-template-columns: 1fr; }
  .rzx-about-lock-text { grid-column: 1; }
}
@media (max-width: 768px) {
  .rzx-about-trio { grid-template-columns: 1fr; }
  .rzx-about-trio img { aspect-ratio: 16/10; }
  .rzx-about-lock { height: auto; }
  .rzx-about-lock-sticky { position: static; height: auto; padding: 80px var(--gutter); }
  .rzx-about-lock-progress { display: none; }
}

/* ═══════════════════════════════════════════════════
   CONTACT — Marquee animé + Google Maps
═══════════════════════════════════════════════════ */
.rzx-contact-marquee {
  background: var(--nude-light);
  padding: 80px 0 60px;
  overflow: hidden;
}
.rzx-contact-marquee-row {
  white-space: nowrap;
  font-family: var(--font-h);
  font-size: clamp(64px, 11vw, 180px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--noir);
}
.rzx-contact-marquee-row--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--noir);
  margin-top: -8px;
}
.rzx-contact-marquee-row span {
  display: inline-block;
  padding-right: 40px;
  animation: rzn-marquee 30s linear infinite;
}
.rzx-contact-marquee-row[data-dir="right"] span { animation-direction: reverse; }

.rzx-contact-map-section {
  padding: 0;
  background: var(--nude-light);
}
.rzx-contact-map-section .rzx-contact-map-wrap { max-width: none; border-radius: 0; box-shadow: none; }
.rzx-contact-map-section .rzx-contact-map-wrap iframe { height: 520px; }
.rzx-contact-map-head {
  text-align: center;
  margin-bottom: 32px;
}
.rzx-contact-map-head h2 {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--noir);
}
.rzx-contact-map-wrap {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.rzx-contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}
@media (max-width: 768px) {
  .rzx-contact-map-wrap iframe { height: 380px; }
}

/* ═══════════════════════════════════════════════
   SEARCH OVERLAY
═══════════════════════════════════════════════ */
.rzn-search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(8px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 14vh;
}
.rzn-search-overlay.is-open {
  display: flex;
}
.rzn-search-close {
  position: absolute;
  top: 32px;
  right: 40px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.rzn-search-close:hover { color: #fff; }
.rzn-search-inner {
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
}
.rzn-search-form {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 18px 28px;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.rzn-search-icon {
  color: #888;
  flex-shrink: 0;
}
.rzn-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: var(--font-b);
  color: var(--noir);
  background: transparent;
  letter-spacing: 0.02em;
}
.rzn-search-input::placeholder {
  color: #aaa;
  font-weight: 400;
}
.rzn-search-clear {
  background: transparent;
  border: none;
  color: rgba(26,26,26,0.4);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color .25s;
}
.rzn-search-clear:hover { color: var(--noir); }

/* Résultats live (panel sous l'input) */
.rzn-search-results {
  list-style: none;
  margin: 12px 0 0;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  max-height: 60vh;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.rzn-search-results li { margin: 0; }
.rzn-search-results a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--noir);
  transition: background .15s;
}
.rzn-search-results a:hover,
.rzn-search-results li:hover a {
  background: var(--nude-light, #f5ede3);
}
.rzn-sr-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--noir);
}
.rzn-sr-url {
  font-size: 12px;
  color: rgba(26,26,26,0.5);
  font-family: var(--font-b);
}
.rzn-search-hint {
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

/* ═══════════════════════════════════════════════
   PAGE LÉGALE — Layout Zaro
═══════════════════════════════════════════════ */
.rzn-legal-main {
  min-height: 100vh;
  background: var(--white, #fff);
}

/* Hero */
.rzn-legal-hero {
  padding: calc(var(--header-h, 80px) + var(--banner-h, 44px) + 60px) var(--gutter, 40px) 60px;
  max-width: 860px;
  margin: 0 auto;
}
.rzn-legal-title {
  font-family: var(--font-h);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--noir, #1a1a1a);
  margin: 0 0 24px;
}
.rzn-legal-date {
  font-size: 13px;
  color: var(--gray, #888);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.rzn-legal-intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--noir, #1a1a1a);
  max-width: 720px;
}

/* Body : contenu + TOC */
.rzn-legal-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter, 40px) 100px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}

/* Sections */
.rzn-legal-content { min-width: 0; }
.rzn-legal-section {
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border, #e8e8e8);
  margin-bottom: 64px;
  scroll-margin-top: calc(var(--header-h, 80px) + 32px);
}
.rzn-legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.rzn-legal-section h2 {
  font-family: var(--font-h);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--noir, #1a1a1a);
}
.rzn-legal-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--noir, #1a1a1a);
  margin-bottom: 16px;
}
.rzn-legal-section ul {
  margin: 16px 0 0 0;
  padding: 0;
  list-style: none;
}
.rzn-legal-section ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--noir, #1a1a1a);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.rzn-legal-section ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--gray, #888);
}
.rzn-legal-section a {
  color: var(--mauve, #9b7cae);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* TOC collante */
.rzn-legal-toc {
  position: sticky;
  top: calc(var(--header-h, 80px) + 32px);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rzn-legal-toc-item {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray, #aaa);
  padding: 10px 0;
  text-decoration: none;
  border-bottom: 1px solid var(--border, #eee);
  transition: color .2s;
  cursor: pointer;
}
.rzn-legal-toc-item:last-child { border-bottom: none; }
.rzn-legal-toc-item:hover { color: var(--noir, #1a1a1a); }
.rzn-legal-toc-item.is-active {
  color: var(--noir, #1a1a1a);
  font-weight: 700;
}

@media (max-width: 768px) {
  .rzn-legal-body { grid-template-columns: 1fr; gap: 40px; }
  .rzn-legal-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .rzn-legal-toc-item { border: 1.5px solid var(--border); padding: 6px 14px; font-size: 10px; border-bottom: 1.5px solid var(--border); }
}

/* Header adaptatif sur les pages légales (fond blanc) */
/* Au repos : transparent + texte NOIR */
body.page-template-template-legal .rzn-header {
  background: transparent !important;
  border-bottom-color: rgba(0,0,0,0.08) !important;
}
body.page-template-template-legal .rzn-nav a,
body.page-template-template-legal .rzn-nav-item-dropdown > span,
body.page-template-template-legal .rzn-icons button,
body.page-template-template-legal .rzn-icons a,
body.page-template-template-legal .rzn-logo-text,
body.page-template-template-legal .rzn-cart-count {
  color: var(--noir, #1a1a1a) !important;
}
body.page-template-template-legal .rzn-icons button svg,
body.page-template-template-legal .rzn-icons a svg { color: var(--noir, #1a1a1a) !important; }
body.page-template-template-legal .rzn-nav a::after { background: var(--noir, #1a1a1a) !important; }
body.page-template-template-legal .rzn-hamburger span { background: var(--noir, #1a1a1a) !important; }
body.page-template-template-legal .rzn-logo img { filter: none !important; }

/* Au scroll : fond sombre + texte BLANC */
body.page-template-template-legal .rzn-header.is-scrolled {
  background: rgba(26, 26, 26, 0.97) !important;
  border-bottom-color: rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
body.page-template-template-legal .rzn-header.is-scrolled .rzn-nav a,
body.page-template-template-legal .rzn-header.is-scrolled .rzn-nav-item-dropdown > span,
body.page-template-template-legal .rzn-header.is-scrolled .rzn-icons button,
body.page-template-template-legal .rzn-header.is-scrolled .rzn-icons a,
body.page-template-template-legal .rzn-header.is-scrolled .rzn-logo-text,
body.page-template-template-legal .rzn-header.is-scrolled .rzn-cart-count {
  color: var(--white, #fff) !important;
}
body.page-template-template-legal .rzn-header.is-scrolled .rzn-icons button svg,
body.page-template-template-legal .rzn-header.is-scrolled .rzn-icons a svg { color: var(--white, #fff) !important; }
body.page-template-template-legal .rzn-header.is-scrolled .rzn-hamburger span { background: var(--white, #fff) !important; }
body.page-template-template-legal .rzn-header.is-scrolled .rzn-logo img { filter: brightness(0) invert(1) !important; }
