/* ============================================
   THE VISIONARY ART — Main Stylesheet
   Dark psychedelic / Shipibo aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --bg-deep:       #080810;
  --bg-dark:       #0d0d1a;
  --bg-card:       #12122a;
  --bg-hover:      #1a1a35;
  --gold:          #c9a84c;
  --gold-light:    #e8c96a;
  --teal:          #00c9b1;
  --teal-dim:      #007a6b;
  --purple:        #7c4fd4;
  --purple-dim:    #3d2570;
  --text-primary:  #f0ead8;
  --text-muted:    #a8997e;
  --text-dim:      #4a4438;
  --border:        rgba(201,168,76,0.15);
  --border-glow:   rgba(201,168,76,0.35);
  --radius:        8px;
  --radius-lg:     16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* === CHIPIBO SVG BACKGROUND PATTERN === */
.chipibo-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Crect width='120' height='120' fill='none'/%3E%3Cpath d='M60 0 L120 60 L60 120 L0 60 Z' fill='none' stroke='%23c9a84c' stroke-width='1'/%3E%3Crect x='30' y='30' width='60' height='60' fill='none' stroke='%23c9a84c' stroke-width='0.8'/%3E%3Cpath d='M60 20 L100 60 L60 100 L20 60 Z' fill='none' stroke='%2300c9b1' stroke-width='0.6'/%3E%3Ccircle cx='60' cy='60' r='15' fill='none' stroke='%23c9a84c' stroke-width='0.8'/%3E%3Cpath d='M60 0 L60 20 M120 60 L100 60 M60 120 L60 100 M0 60 L20 60' stroke='%23c9a84c' stroke-width='0.5'/%3E%3Cpath d='M30 30 L30 0 M90 30 L120 0 M90 90 L120 120 M30 90 L0 120' stroke='%2300c9b1' stroke-width='0.4'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; letter-spacing: 0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.8rem); }
p { line-height: 1.7; color: var(--text-muted); font-size: 0.95rem; }

.mono { font-family: 'Space Mono', monospace; }
.gold { color: var(--gold); }
.teal { color: var(--teal); }

/* === LAYOUT === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
section { padding: 80px 0; }

/* Padding latéral généreux + container plus large sur desktop (recommandation audit) */
@media (min-width: 1024px) {
  .container { max-width: 1440px; padding: 0 48px; }
  section { padding: 100px 0; }
}
@media (min-width: 1600px) {
  .container { max-width: 1520px; padding: 0 64px; }
}

/* === NAVIGATION === */
/* IMPORTANT : pas de backdrop-filter directement sur <nav>, sinon ça crée
   un containing block et les .nav-overlay / .nav-links (position:fixed)
   enfants ne peuvent plus couvrir le viewport entier. L'effet glass est
   déporté sur ::before. */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.35s ease, padding 0.25s ease;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
  pointer-events: none;
  z-index: -1;
}
nav.scrolled {
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
}
nav.scrolled::before {
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300; letter-spacing: 0.12em;
  color: var(--text-primary); text-decoration: none;
}
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.cart-icon {
  position: relative; cursor: pointer;
  background: none; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 16px; color: var(--text-primary); font-size: 0.85rem;
  letter-spacing: 0.06em; transition: border-color 0.2s, color 0.2s;
}
.cart-icon:hover { border-color: var(--gold-light); color: var(--gold-light); }
.cart-badge {
  position: absolute; top: -8px; right: -8px;
  background: var(--gold); color: var(--bg-deep);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 10px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 8px;
  position: relative; z-index: 210; /* au-dessus du drawer (199) pour rester cliquable une fois ouvert */
}
.hamburger span {
  display: block; width: 24px; height: 1.5px; background: var(--text-muted);
  transition: transform 0.25s ease, opacity 0.2s ease, background 0.2s;
  transform-origin: center;
}
.hamburger.is-open span { background: var(--gold); }
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO === */
.hero {
  min-height: 88vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 100px;
  position: relative; overflow: hidden;
}
@media (min-width: 1024px) {
  .hero { min-height: 78vh; padding-top: 160px; padding-bottom: 120px; }
}
.hero-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(124,79,212,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(0,201,177,0.08) 0%, transparent 50%);
  pointer-events: none;
  filter: blur(20px);
}
@media (min-width: 1024px) {
  .hero-glow { width: 1100px; height: 1100px; }
}
.hero-eyebrow {
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  color: var(--teal); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 28px; display: block;
}
@media (min-width: 1024px) {
  .hero h1 { font-size: clamp(3.6rem, 6.5vw, 6rem); }
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; max-width: 580px; margin: 0 auto 48px; color: var(--text-muted); line-height: 1.8; }
@media (min-width: 1024px) {
  .hero-sub { font-size: 1.18rem; max-width: 640px; }
}
.hero-divider {
  width: 80px; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border-radius: var(--radius);
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gold); color: var(--bg-deep); font-weight: 600;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.25); }
.btn-outline {
  background: transparent; color: var(--text-primary); border: 1px solid var(--border-glow);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 64px; }
@media (min-width: 1024px) {
  .section-header { margin-bottom: 80px; }
  .section-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
}
.section-tag {
  font-family: 'Space Mono', monospace; font-size: 0.68rem;
  color: var(--teal); letter-spacing: 0.2em; text-transform: uppercase;
  display: block; margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 480px; margin: 0 auto; }

/* === PRODUCT GRID === */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}
@media (min-width: 1400px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 36px; }
}

/* === PRODUCT CARD — refonte premium (Allbirds/Everlane pattern) === */
.product-card {
  background: var(--bg-card);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover,
.product-card:focus-visible {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(201,168,76,0.22);
  outline: none;
}
.product-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* Image container — aspect ratio fixe pour grille parfaitement alignée */
.product-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-hover);
  display: block;
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-hover);
}
.product-img-main,
.product-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.7s ease;
}
.product-img-hover {
  opacity: 0;
  z-index: 2;
}
/* Hover swap : sur desktop on bascule sur l'image lifestyle ; sur mobile on garde la principale */
@media (hover: hover) {
  .product-card:hover .product-img-main,
  .product-card:focus-visible .product-img-main { opacity: 0; transform: scale(1.02); }
  .product-card:hover .product-img-hover,
  .product-card:focus-visible .product-img-hover { opacity: 1; transform: scale(1.02); }
}

/* Badge — coin haut gauche, contraste gold sur dark */
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Quick add button — slide up sur hover desktop, fixe en bas sur mobile */
.quick-add-btn {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 4;
  background: var(--text-primary);
  color: var(--bg-deep);
  border: none;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s, background 0.2s, color 0.2s;
  transform: translateY(calc(100% + 14px));
  opacity: 0;
}
.quick-add-btn:hover { background: var(--gold); }
@media (hover: hover) {
  .product-card:hover .quick-add-btn,
  .product-card:focus-within .quick-add-btn {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Mobile : quick-add toujours visible mais discret */
@media (hover: none) {
  .quick-add-btn {
    position: static;
    transform: none;
    opacity: 1;
    margin: 14px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-glow);
    font-size: 0.7rem;
  }
  .quick-add-btn:hover, .quick-add-btn:active { background: var(--gold); color: var(--bg-deep); }
}

/* Info zone — typographique, compacte, lisible */
.product-info {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
}
.product-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.66rem;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 2px 0 10px;
}
.product-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.product-footer {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: auto; padding-top: 10px;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.product-price-old { font-size: 0.85rem; color: var(--text-dim); text-decoration: line-through; margin-left: 8px; }
.product-cta-arrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s, transform 0.2s;
}
.product-card:hover .product-cta-arrow,
.product-card:focus-visible .product-cta-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* Fallback ancienne classe si jamais réutilisée */
.add-to-cart-btn {
  background: none; border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-muted); font-size: 0.75rem; padding: 6px 14px;
  cursor: pointer; transition: all 0.2s; letter-spacing: 0.06em;
}
.add-to-cart-btn:hover { border-color: var(--gold); color: var(--gold); }

/* === CATEGORY PAGES === */
.category-hero {
  padding-top: 140px; padding-bottom: 60px;
  border-bottom: 0.5px solid var(--border);
  position: relative; overflow: hidden;
}
.category-hero h1 { margin: 16px 0 24px; }
.category-hero .hero-sub { max-width: 680px; font-size: 1.05rem; color: var(--text-muted); }
.category-hero .category-note { margin-top: 28px; color: var(--teal); font-size: 0.78rem; letter-spacing: 0.1em; }
.category-hero-shipibo {
  background: radial-gradient(ellipse at top left, rgba(201,168,76,0.08), transparent 60%), var(--bg-deep);
}
.category-hero-psychedelique {
  background: radial-gradient(ellipse at top right, rgba(124,79,212,0.10), transparent 60%), var(--bg-deep);
}
.category-hero-therapies {
  background: radial-gradient(ellipse at center, rgba(0,201,177,0.08), transparent 70%), var(--bg-deep);
}
.category-hero-geometrie_sacree {
  background: radial-gradient(ellipse at top, rgba(232,201,106,0.10), transparent 65%), var(--bg-deep);
}
.category-hero-totems_animaux {
  background: radial-gradient(ellipse at bottom right, rgba(58,170,90,0.10), transparent 60%), var(--bg-deep);
}

/* === 404 ERROR PAGE === */
.error-hero {
  min-height: 78vh;
  padding: 160px 24px 100px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.10), transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(124,79,212,0.08), transparent 60%),
    var(--bg-deep);
  position: relative; overflow: hidden;
}
.error-hero .section-tag { color: var(--gold); }
.error-hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: 1.05;
  margin: 28px auto 0;
  max-width: 720px;
}
.error-hero h1 em { font-style: italic; color: var(--gold); }
.error-divider {
  width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 36px auto;
}
.error-hero .hero-sub {
  max-width: 540px; margin: 0 auto 36px;
  color: var(--text-muted); line-height: 1.8;
}
.error-suggestions {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 0.5px solid var(--border);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.error-suggestions-label {
  font-size: 0.72rem;
  color: var(--teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.error-suggestions-list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 18px;
  list-style: none;
}
.error-suggestions-list a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.error-suggestions-list a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* === NOSCRIPT FALLBACK === */
.noscript-fallback {
  margin: 40px auto;
  max-width: 720px;
  padding: 24px 28px;
  border: 1px solid var(--border-glow);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(201,168,76,0.04);
}
.noscript-fallback p {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin: 0;
}
.noscript-fallback strong { color: var(--gold); }
.noscript-fallback a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.category-group { margin-bottom: 64px; }
.category-group-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 400; font-style: italic;
  font-size: 1.5rem; color: var(--text-primary);
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.category-group-title .section-tag { font-style: normal; }

/* === PRODUCT DETAIL PAGE === */
.back-link {
  display: inline-block; margin-bottom: 32px;
  color: var(--text-muted); text-decoration: none;
  font-family: 'Space Mono', monospace; font-size: 0.78rem; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }

/* Mobile-first : tout empilé */
.product-detail-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 40px; align-items: flex-start;
}
.product-gallery { position: relative; }
.product-main-img {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; display: flex; align-items: center; justify-content: center;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.25s; }

/* Thumbs : grille horizontale sur mobile */
.product-thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(72px, 96px)); gap: 10px; margin-top: 14px; }
.thumb-btn {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; padding: 0; cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.thumb-btn:hover { border-color: var(--border-glow); transform: translateY(-2px); }
.thumb-btn.active { border-color: var(--gold); border-width: 2px; }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* === DESKTOP layout pro (thumbs verticales à gauche, image grande, info sticky droite) === */
@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
  }
  .product-gallery {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 18px;
    align-items: flex-start;
  }
  .product-thumbs {
    grid-template-columns: 1fr;
    grid-auto-rows: 96px;
    gap: 12px;
    margin-top: 0;
    order: -1;
  }
  .product-main-img { aspect-ratio: 4/5; }
  .product-info-side {
    position: sticky; top: 110px;
  }
}
@media (min-width: 1400px) {
  .product-detail-grid { grid-template-columns: 1.5fr 1fr; gap: 100px; }
  .product-gallery { grid-template-columns: 110px 1fr; gap: 22px; }
  .product-thumbs { grid-auto-rows: 110px; }
}

.product-info-side { padding-top: 8px; }
.product-info-side h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 12px; line-height: 1.15; }
.product-subtitle-big {
  font-family: 'Space Mono', monospace; font-size: 0.78rem;
  color: var(--teal); letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 28px;
}
.product-price-big {
  display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
  padding: 24px 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border);
  margin-bottom: 36px;
}
.product-price-big > span:first-child {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  color: var(--gold); font-weight: 400; line-height: 1;
}
.product-shipping { font-size: 0.74rem; color: var(--text-muted); letter-spacing: 0.06em; font-family: 'Space Mono', monospace; }

.variant-picker { margin-bottom: 28px; }
.variant-label {
  display: block; font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 14px;
  font-family: 'Space Mono', monospace;
}
.variant-options { display: flex; flex-wrap: wrap; gap: 10px; }

/* Chips taille / couleur — VISIBLES, gros, lisibles sur dark */
.opt-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  color: var(--text-primary);
  padding: 12px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.04em;
  min-width: 56px;
  transition: all 0.2s ease;
  text-align: center;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.opt-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201,168,76,0.08);
  transform: translateY(-1px);
}
.opt-btn.selected {
  border-color: var(--gold);
  color: var(--bg-deep);
  background: var(--gold);
  font-weight: 600;
}
.opt-btn:active { transform: translateY(0); }

.product-cta {
  width: 100%; padding: 20px; font-size: 1rem;
  margin: 16px 0 40px; letter-spacing: 0.1em;
  font-weight: 600;
}
.product-cta:disabled { opacity: 0.4; cursor: not-allowed; }

.product-meta {
  border-top: 0.5px solid var(--border); padding-top: 28px;
  display: grid; gap: 22px;
}
.product-meta-item {
  display: grid; grid-template-columns: 32px 1fr; gap: 16px; align-items: flex-start;
}
.meta-icon {
  font-size: 1.2rem; color: var(--gold); line-height: 1;
  margin-top: 2px;
}
.product-meta-item strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 1rem; margin-bottom: 4px;
  color: var(--text-primary);
}
.product-meta-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.spinner {
  width: 32px; height: 32px; border: 2px solid var(--border);
  border-top-color: var(--gold); border-radius: 50%;
  margin: 0 auto; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery { position: static; }
  .product-thumbs { grid-template-columns: repeat(auto-fit, minmax(72px, 96px)); }
}

/* === ABOUT PAGE === */
.about-container { max-width: 760px; }
.about-block {
  margin-bottom: 64px; padding-bottom: 56px;
  border-bottom: 0.5px solid var(--border);
}
.about-block:last-of-type { border-bottom: none; }
.about-tag {
  display: inline-block; font-size: 0.7rem;
  color: var(--gold); letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.about-block h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 22px; color: var(--text-primary);
}
.about-block p { font-size: 1rem; margin-bottom: 16px; color: var(--text-muted); }
.about-block p strong { color: var(--text-primary); }
.about-block em { color: var(--gold-light); font-style: italic; }
.about-quote {
  border-left: 2px solid var(--teal); padding: 8px 0 8px 24px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic;
  color: var(--text-primary); line-height: 1.5;
}
.about-signature {
  margin-top: 28px; font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--text-primary); font-style: italic;
}
.about-signature em { color: var(--text-muted); font-size: 0.9rem; }
.about-cta {
  text-align: center; padding: 48px 0;
  border-top: 0.5px solid var(--border);
  margin-top: 48px;
}
.about-cta h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 400; color: var(--text-primary);
}

/* === TESTIMONIALS === */
.testimonials { background: var(--bg-dark); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; margin-top: 48px;
}
.testimonial-card {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial-card:hover { border-color: var(--border-glow); transform: translateY(-2px); }
.testimonial-card.placeholder { opacity: 0.7; }
.testimonial-card.placeholder:hover { transform: none; }
.testimonial-stars {
  color: var(--gold); letter-spacing: 0.3em;
  font-size: 0.85rem; margin-bottom: 14px;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  font-style: italic; color: var(--text-primary); line-height: 1.55;
  margin-bottom: 18px;
}
.testimonial-author {
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  color: var(--text-muted); letter-spacing: 0.08em; margin: 0;
}
.testimonial-invite {
  text-align: center; margin-top: 40px; padding-top: 32px;
  border-top: 0.5px solid var(--border);
}
.testimonial-invite p { font-size: 0.92rem; color: var(--text-muted); }
.testimonial-invite a { color: var(--teal); text-decoration: none; border-bottom: 0.5px dashed currentColor; }
.testimonial-invite a:hover { color: var(--gold); }

/* === FAQ PAGE === */
.faq-container { max-width: 860px; }
.faq-toc {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 18px 22px; margin-bottom: 60px;
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
}
.faq-toc a {
  color: var(--text-muted); text-decoration: none;
  font-family: 'Space Mono', monospace; font-size: 0.72rem;
  letter-spacing: 0.08em; padding: 6px 12px;
  border: 0.5px solid transparent; border-radius: var(--radius);
  transition: all 0.2s;
}
.faq-toc a:hover { color: var(--gold); border-color: var(--border); }

.faq-section { margin-bottom: 64px; scroll-margin-top: 100px; }
.faq-section h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin-bottom: 24px;
  padding-bottom: 14px; border-bottom: 0.5px solid var(--border);
  color: var(--text-primary);
}
.faq-section h3 {
  font-size: 1.1rem; margin: 28px 0 14px; color: var(--text-primary);
  font-weight: 400; font-style: italic;
}
.faq-section p { margin-bottom: 14px; }

.size-table-wrap { overflow-x: auto; margin: 20px 0 24px; }
.size-table {
  width: 100%; border-collapse: collapse;
  font-family: 'Space Mono', monospace; font-size: 0.82rem;
}
.size-table th, .size-table td {
  padding: 12px 16px; text-align: left;
  border-bottom: 0.5px solid var(--border);
}
.size-table th {
  color: var(--gold); font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.7rem;
  border-bottom: 1px solid var(--border-glow);
}
.size-table td { color: var(--text-muted); }
.size-table td strong { color: var(--text-primary); }
.size-table tbody tr:hover { background: rgba(201,168,76,0.04); }

.faq-tip {
  background: rgba(0,201,177,0.05); border-left: 2px solid var(--teal);
  padding: 16px 20px; margin: 20px 0; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem; color: var(--text-muted);
}
.faq-tip strong { color: var(--teal); display: block; margin-bottom: 6px; }
.faq-tip em { color: var(--text-primary); font-style: normal; font-family: 'Space Mono', monospace; font-size: 0.85em; }

.faq-callout {
  background: rgba(201,168,76,0.06); border: 0.5px solid var(--border-glow);
  padding: 22px 26px; margin: 22px 0; border-radius: var(--radius-lg);
}
.faq-callout strong { display: block; color: var(--gold); margin-bottom: 10px; font-size: 0.95rem; letter-spacing: 0.04em; }
.faq-callout p { margin-bottom: 12px; color: var(--text-primary); }
.faq-callout p:last-child { margin-bottom: 0; }

.faq-list { display: grid; gap: 18px; margin: 16px 0; }
.faq-list dt {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: var(--text-primary); margin-bottom: 4px;
}
.faq-list dd { margin: 0; color: var(--text-muted); padding-left: 0; }
.faq-list dd a { color: var(--teal); }

.faq-bullets { padding-left: 22px; margin: 16px 0; }
.faq-bullets li { margin-bottom: 10px; color: var(--text-muted); }
.faq-bullets li strong { color: var(--text-primary); }
.faq-bullets a { color: var(--teal); }

.faq-note { font-style: italic; color: var(--text-muted); font-size: 0.88rem; }

/* === LOADING STATE === */
.loading-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.skeleton { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; animation: pulse 1.8s infinite; }
.skeleton-img { aspect-ratio: 1; background: var(--bg-hover); }
.skeleton-text { padding: 20px; }
.skeleton-line { height: 14px; background: var(--bg-hover); border-radius: 4px; margin-bottom: 10px; }
.skeleton-line.short { width: 60%; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }

/* === MANIFESTO / ABOUT === */
.manifesto { background: var(--bg-dark); border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.manifesto-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (min-width: 1024px) {
  .manifesto-inner { grid-template-columns: 1.1fr 0.9fr; gap: 120px; }
  .manifesto-text h2 { font-size: clamp(2rem, 3vw, 2.6rem); }
}
.manifesto-text h2 { margin-bottom: 24px; }
.manifesto-text p { margin-bottom: 20px; font-size: 1rem; }
.manifesto-quote {
  border-left: 2px solid var(--gold); padding-left: 28px; margin: 36px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-style: italic;
  color: var(--text-primary); line-height: 1.6;
}
.manifesto-visual {
  display: flex; align-items: center; justify-content: center;
}
.chipibo-mandala {
  width: 320px; height: 320px; opacity: 0.7;
  transition: transform 8s linear, opacity 0.6s;
}
.chipibo-mandala:hover { transform: rotate(15deg); opacity: 0.95; }
@media (min-width: 1024px) {
  .chipibo-mandala { width: 440px; height: 440px; }
}

/* === VALUES === */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (min-width: 1024px) { .values-grid { gap: 36px; } }
.value-card {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px; text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(0,201,177,0.15); }
.value-icon { font-size: 2.4rem; color: var(--gold); margin-bottom: 20px; line-height: 1; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 14px; color: var(--text-primary); }
.value-card p { font-size: 0.92rem; line-height: 1.65; }

/* === NEWSLETTER === */
.newsletter { text-align: center; background: linear-gradient(180deg, var(--bg-deep), rgba(124,79,212,0.05)); }
.newsletter-form { display: flex; gap: 12px; max-width: 520px; margin: 36px auto 0; }
.newsletter-form input {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 22px; color: var(--text-primary);
  font-size: 0.95rem; outline: none; transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-dim); }
@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}

/* === FOOTER === */
footer {
  border-top: 0.5px solid var(--border); padding: 48px 0 32px;
  background: var(--bg-dark);
}
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (min-width: 1024px) {
  .footer-inner { grid-template-columns: 2.5fr 1fr 1fr; gap: 80px; }
}
.footer-brand p { margin-top: 12px; font-size: 0.85rem; max-width: 260px; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 0.5px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.78rem; }
.payment-icons { display: flex; gap: 8px; }
.pay-icon { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: 4px; padding: 4px 10px; font-size: 0.72rem; color: var(--text-muted); font-family: 'Space Mono', monospace; }

/* === CART DRAWER === */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(8,8,16,0.7);
  z-index: 200; opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw);
  background: var(--bg-card); border-left: 0.5px solid var(--border);
  z-index: 201; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 24px; border-bottom: 0.5px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-size: 1.2rem; }
.cart-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.4rem; padding: 4px; }
.cart-close:hover { color: var(--text-primary); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px; }
.cart-item { display: flex; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 0.5px solid var(--border); }
.cart-item-img { width: 72px; height: 72px; border-radius: var(--radius); object-fit: cover; background: var(--bg-hover); flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; margin-bottom: 4px; }
.cart-item-variant { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-price { color: var(--gold); font-size: 0.9rem; font-weight: 500; }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-btn { background: var(--bg-hover); border: 0.5px solid var(--border); border-radius: 4px; width: 26px; height: 26px; color: var(--text-primary); cursor: pointer; font-size: 0.9rem; }
.qty-val { font-size: 0.85rem; min-width: 20px; text-align: center; }
.cart-empty { text-align: center; padding: 48px 24px; color: var(--text-muted); }
.cart-footer { padding: 24px; border-top: 0.5px solid var(--border); }
.cart-summary { margin-bottom: 16px; }
.cart-summary-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.9rem; color: var(--text-muted);
  padding: 4px 0;
}
.cart-summary-row span:last-child { color: var(--text-primary); font-variant-numeric: tabular-nums; }
.cart-shipping-free {
  color: var(--teal) !important;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-shipping-nudge {
  margin: 8px 0 4px;
  padding: 8px 12px;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  background: rgba(201,168,76,0.07);
  border: 0.5px solid var(--border-glow);
  border-radius: var(--radius);
  text-align: center;
}
.cart-summary-total {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 0.5px solid var(--border);
  font-size: 1.05rem;
  color: var(--text-primary);
}
.cart-summary-total span:last-child { color: var(--gold); font-weight: 500; }
.cart-note { font-size: 0.75rem; color: var(--text-dim); text-align: center; margin-top: 12px; }

/* === TOAST === */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--bg-card); border: 0.5px solid var(--border-glow);
  border-radius: var(--radius); padding: 14px 24px; z-index: 300;
  font-size: 0.85rem; color: var(--text-primary); transition: transform 0.3s;
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* === PRODUCT DETAIL === */
.product-detail { padding-top: 120px; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.detail-images .main-img { width: 100%; border-radius: var(--radius-lg); border: 0.5px solid var(--border); }
.detail-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.detail-thumbs img { width: 72px; height: 72px; border-radius: var(--radius); border: 0.5px solid var(--border); cursor: pointer; object-fit: cover; }
.detail-thumbs img.active { border-color: var(--gold); }
.detail-info .price { font-size: 1.8rem; color: var(--gold); font-family: 'Cormorant Garamond', serif; margin: 16px 0; }
.detail-info .desc { margin-bottom: 32px; }
.variant-label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn {
  background: var(--bg-card); border: 0.5px solid var(--border);
  border-radius: var(--radius); padding: 8px 18px; color: var(--text-muted);
  cursor: pointer; font-size: 0.85rem; transition: all 0.2s;
}
.size-btn:hover, .size-btn.active { border-color: var(--gold); color: var(--gold); }
.color-grid { display: flex; gap: 8px; margin-bottom: 32px; }
.color-swatch { width: 28px; height: 28px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.color-swatch.active { border-color: var(--gold); }

/* === CHECKOUT === */
.checkout-section { padding-top: 120px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px; color: var(--text-primary);
  font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.order-summary { background: var(--bg-card); border: 0.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: sticky; top: 100px; }
.order-summary h3 { margin-bottom: 24px; }
.summary-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 0.5px solid var(--border); font-size: 0.9rem; }
.summary-total { display: flex; justify-content: space-between; padding-top: 16px; font-size: 1.05rem; }
.summary-total span:last-child { color: var(--gold); font-weight: 500; }
#stripe-element { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; margin-bottom: 20px; }

/* === RESPONSIVE — mobile drawer & layout === */
@media (max-width: 900px) {
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }

  /* Drawer mobile : nav-links cachées par défaut, slide-in depuis la droite */
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px);
    background: var(--bg-card);
    border-left: 0.5px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 96px 32px 32px;
    z-index: 199;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -10px 0 40px -10px rgba(0,0,0,0.5);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 12px;
    margin: 0 -12px;
    font-size: 0.95rem;
    border-bottom: 0.5px solid var(--border);
    width: calc(100% + 24px);
    border-radius: var(--radius);
    transition: background 0.15s, color 0.15s;
  }
  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(201,168,76,0.08);
    color: var(--gold);
  }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(8,8,16,0.92);
    backdrop-filter: blur(12px);
    z-index: 198;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .nav-overlay.open { opacity: 1; pointer-events: all; }
  .hamburger { display: flex; }
  /* Quand le drawer est ouvert : masque le logo et le bouton Panier
     pour qu'ils n'apparaissent pas derrière l'overlay ni sous le drawer */
  nav:has(.nav-links.open) .logo,
  nav:has(.nav-links.open) .cart-icon {
    visibility: hidden;
  }
}
@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .products-grid { gap: 18px; }
}

/* === Accessibilité (WCAG 2.1 AA) === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg-deep);
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--text-primary);
  outline-offset: 2px;
}

/* Focus visible global pour la navigation clavier (WCAG 2.4.7) */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
button:focus-visible,
.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Respecte la préférence utilisateur "réduire les animations" (WCAG 2.3.3) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
}
