/*
Theme Name: No Skunk Club
Theme URI: https://noskunk.club
Description: Custom theme for No Skunk Club — Premium THCa
Version: 1.0
Author: NSC
Text Domain: nsc
*/

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

:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --beige:  #c8bb9e;
  --beige2: #e8e0d0;
  --gray:   #f5f4f1;
  --gray2:  #d0cdc7;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --bg:     #ffffff;
  --text:   #0a0a0a;
}

[data-theme="dark"] {
  --bg:     #0e0d0b;
  --text:   #f0ece4;
  --white:  #0e0d0b;
  --black:  #f0ece4;
  --beige:  #c8bb9e;
  --beige2: #2a2824;
  --gray:   #181714;
  --gray2:  #252320;
}

/* Nav scrolled/solid en dark mode */
[data-theme="dark"] nav#main-nav.scrolled {
  background: rgba(14, 13, 11, 0.97);
}
[data-theme="dark"] nav#main-nav.solid {
  background: #0e0d0b;
}

/* Newsletter — reste toujours sombre */
[data-theme="dark"] .newsletter-strip {
  background: #181714;
  color: #f0ece4;
}

/* Footer en dark mode */
[data-theme="dark"] footer {
  background: #0e0d0b;
}

/* Nav CTA en dark mode */
[data-theme="dark"] .nav-cta {
  background: #f0ece4;
  color: #0e0d0b;
}
[data-theme="dark"] .nav-cta:hover {
  background: #d0ccc3;
}

/* Grid gaps en dark mode */
[data-theme="dark"] .products-grid {
  background: #1e1c1a;
  border-color: #1e1c1a;
}
[data-theme="dark"] .product-info {
  border-top-color: #1e1c1a;
}
[data-theme="dark"] .sp-image-col {
  border-right-color: #2a2824;
}

body {
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s ease, color 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--beige2); }

/* ── DARK MODE TOGGLE ── */
.theme-toggle {
  width: 36px;
  height: 36px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.3s ease;
  color: inherit;
}
.theme-toggle:hover { opacity: 1; transform: rotate(20deg); }

.theme-toggle-icon {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: none;
}

/* Dark mode: half-moon shape */
[data-theme="dark"] .theme-toggle-icon {
  box-shadow: 3px -2px 0 0 var(--bg);
  transform: rotate(-30deg);
}

/* ── NAV ── */
nav#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  background: transparent;
  transition: background 0.4s ease, border-bottom 0.4s ease, padding 0.3s ease;
}
nav#main-nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--beige2);
  backdrop-filter: blur(10px);
  padding: 18px 60px;
}
nav#main-nav.solid {
  background: var(--white);
  border-bottom: 1px solid var(--beige2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--black);
}
.monogram {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.brand-name {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  font-weight: 400;
  position: relative;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { opacity: 1; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-cta {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  padding: 10px 24px;
  font-weight: 400;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.nav-cta:hover { background: #333; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  text-decoration: none;
  color: var(--black);
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.mobile-menu a:hover { opacity: 0.4; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  padding: 14px 36px;
  font-family: var(--sans);
  font-weight: 400;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #333; }

.btn-outline {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 13px 36px;
  font-family: var(--sans);
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-ghost {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  font-weight: 400;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 0.45; }

/* ── SECTION BASE ── */
section { padding: 120px 60px; }
.page-content { padding-top: 90px; }

.section-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-line {
  width: 36px;
  height: 1px;
  background: var(--black);
  margin: 20px 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 160px 60px 80px;
  border-bottom: 1px solid var(--beige2);
}
.page-hero .section-title {
  font-size: clamp(40px, 6vw, 80px);
  max-width: 600px;
}
.page-hero p {
  max-width: 480px;
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  margin-top: 20px;
}

/* ── HERO ── */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#dot-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  padding: 0 40px;
}
.hero-eyebrow {
  font-size: 9.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 8.5vw, 100px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: 13.5px;
  font-weight: 300;
  color: #666;
  letter-spacing: 0.03em;
  line-height: 1.8;
  max-width: 460px;
  margin: 0 auto 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.hero-scroll span {
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #bbb;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, #ccc, transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  padding: 18px 0;
  background: var(--white);
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  color: #aaa;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.marquee-track .dot {
  font-style: normal;
  color: var(--beige);
  font-size: 10px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FEATURED PRODUCTS ── */
#featured { background: var(--white); }
.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e0ddd6;
  border: 1px solid #e0ddd6;
}
.product-card {
  background: var(--white);
  cursor: pointer;
  transition: background 0.25s ease;
}
.product-card:hover { background: var(--gray); }
.product-img {
  aspect-ratio: 3/4;
  background: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  perspective: 700px;
}
.product-star-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.product-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px 24px;
  display: block;
  animation: float 4.5s ease-in-out infinite;
  filter: drop-shadow(0px 18px 28px rgba(0,0,0,0.13));
  transform-origin: center center;
  will-change: transform, filter;
  transition: filter 0.35s ease;
}
@keyframes float {
  0%   { transform: translateY(0px)    rotateZ(0deg); }
  40%  { transform: translateY(-11px)  rotateZ(0.4deg); }
  100% { transform: translateY(0px)    rotateZ(0deg); }
}
.product-img img.is-tilting { animation: none; }
.product-card:hover .product-img img {
  filter: drop-shadow(0px 28px 40px rgba(0,0,0,0.18));
}
.product-img-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.p-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: #d0ccc3;
}
.p-type {
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c0bbb0;
}
.product-tag {
  position: absolute;
  z-index: 2;
  top: 14px; left: 14px;
  font-size: 7.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 4px 10px;
}
.product-info {
  padding: 18px 22px 22px;
  border-top: 1px solid #e0ddd6;
}
.product-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.product-variant {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
}
.product-add {
  position: relative;
  z-index: 2;
  width: 30px; height: 30px;
  border: 1px solid var(--black);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: var(--black);
  transition: background 0.2s, color 0.2s;
}
.product-add:hover { background: var(--black); color: var(--white); }

/* ── BRAND STATEMENT ── */
#statement {
  background: var(--gray);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.statement-left .section-label { margin-bottom: 32px; }
.statement-numbers {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
}
.statement-right { padding-top: 4px; }
.statement-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.statement-quote em { font-style: italic; }
.statement-body {
  font-size: 13.5px;
  font-weight: 300;
  color: #666;
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 36px;
}

/* ── NEWSLETTER STRIP ── */
.newsletter-strip {
  background: #0a0a0a;
  color: #ffffff;
  padding: 64px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.newsletter-strip h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.2;
  max-width: 360px;
}
.newsletter-form {
  display: flex;
  flex: 1;
  max-width: 480px;
  border: 1px solid rgba(255,255,255,0.25);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  background: transparent;
  color: var(--white);
  letter-spacing: 0.03em;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form button {
  border: none;
  border-left: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: rgba(255,255,255,0.08); }

/* ── FOOTER ── */
footer {
  background: var(--white);
  border-top: 1px solid var(--beige2);
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-copy {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.04em;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #999;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--black); }

/* ── FILTER BAR ── */
.filter-bar {
  padding: 24px 60px;
  border-bottom: 1px solid var(--beige2);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-right: 8px;
}
.filter-btn {
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--beige2);
  background: transparent;
  color: #888;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--sans);
  text-decoration: none;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { border-color: var(--black); background: var(--black); color: var(--white); }

/* ── PRODUCTS SECTION ── */
.products-section { padding: 60px 60px 120px; }
.grid-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.grid-count {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #999;
}
.sort-select {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--beige2);
  background: transparent;
  color: var(--black);
  padding: 8px 14px;
  cursor: pointer;
  font-family: var(--sans);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.products-grid { grid-template-columns: repeat(5, 1fr); }
.product-img-link { display: block; text-decoration: none; }
.product-desc {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.65;
  margin-bottom: 14px;
}
.product-tag.tag-sold { background: #ccc; }

/* ── DISCLAIMER ── */
.disclaimer {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--beige2);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.disclaimer-icon {
  width: 18px; height: 18px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #aaa;
  flex-shrink: 0;
  margin-top: 2px;
}
.disclaimer p {
  font-size: 11px;
  color: #aaa;
  line-height: 1.75;
  font-weight: 300;
}

/* ── ABOUT PAGE ── */
.about-intro {
  padding: 160px 60px 100px;
  border-bottom: 1px solid var(--beige2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: end;
}
.intro-title {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.intro-title em { font-style: italic; }
.intro-right p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: #555;
  margin-bottom: 20px;
}
.full-quote {
  padding: 100px 60px;
  background: #181714;
  text-align: center;
}
.full-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.25;
  max-width: 860px;
  margin: 0 auto 32px;
}
.full-quote cite {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-style: normal;
}
.values-section { padding: 100px 60px; background: var(--white); }
.values-header { margin-bottom: 64px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--beige2);
  border: 1px solid var(--beige2);
}
.value-card { background: var(--white); padding: 44px 36px; }
.value-num {
  font-family: var(--serif);
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.value-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
}
.value-body { font-size: 13px; font-weight: 300; color: #777; line-height: 1.8; }
.process-section { padding: 100px 60px; background: var(--gray); }
.process-header { margin-bottom: 64px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--black);
}
.process-step { padding: 0 40px 0 32px; border-right: 1px solid var(--beige2); }
.step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--beige2);
  line-height: 1;
  margin-bottom: 20px;
}
.step-title { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 12px; }
.step-body { font-size: 12.5px; font-weight: 300; color: #777; line-height: 1.8; }
.compliance-section {
  padding: 100px 60px;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  border-top: 1px solid var(--beige2);
}
.compliance-right { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.compliance-item { padding: 28px 0; border-top: 1px solid var(--beige2); }
.compliance-item h4 { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 8px; }
.compliance-item p { font-size: 12.5px; font-weight: 300; color: #777; line-height: 1.75; }

/* ── FAQ PAGE ── */
.faq-page { padding: 80px 60px 120px; }
.faq-layout { display: grid; grid-template-columns: 260px 1fr; gap: 80px; align-items: start; }
.faq-sidebar { position: sticky; top: 110px; }
.faq-sidebar nav { position: static; background: none; border: none; padding: 0; display: block; }
.faq-sidebar-title { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: #bbb; margin-bottom: 20px; }
.faq-sidebar ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.faq-sidebar ul a {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: #999;
  padding: 8px 12px;
  display: block;
  transition: color 0.2s, background 0.2s;
  border-left: 2px solid transparent;
}
.faq-sidebar ul a:hover { color: var(--black); border-left-color: var(--beige); background: var(--gray); }
.faq-sidebar ul a.active { color: var(--black); border-left-color: var(--black); }
.faq-categories { display: flex; flex-direction: column; gap: 64px; }
.faq-category-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--black);
}
.faq-item { border-top: 1px solid var(--beige2); }
.faq-item:last-child { border-bottom: 1px solid var(--beige2); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 20px;
  color: var(--black);
}
.faq-question span { font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.3; }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; position: relative; display: flex; align-items: center; justify-content: center; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--black); transition: transform 0.3s ease, opacity 0.3s ease; }
.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after  { width: 1px; height: 10px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 22px; font-size: 13.5px; font-weight: 300; line-height: 1.85; color: #666; }
.faq-answer a { color: var(--black); text-underline-offset: 3px; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-cta {
  margin-top: 80px;
  padding: 48px;
  border: 1px solid var(--beige2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.faq-cta h3 { font-family: var(--serif); font-size: 26px; font-weight: 300; }
.faq-cta p { font-size: 13px; color: #888; font-weight: 300; margin-top: 6px; }

/* ── CONTACT PAGE ── */
.contact-page {
  padding: 80px 60px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-intro { font-size: 14px; font-weight: 300; color: #666; line-height: 1.85; margin-bottom: 56px; max-width: 400px; }
.contact-details { display: flex; flex-direction: column; }
.contact-detail { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-top: 1px solid var(--beige2); }
.contact-detail:last-child { border-bottom: 1px solid var(--beige2); }
.detail-label { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: #bbb; width: 80px; flex-shrink: 0; padding-top: 2px; }
.detail-value { font-size: 14px; font-weight: 300; line-height: 1.6; }
.detail-value a { color: var(--black); text-decoration: none; border-bottom: 1px solid var(--beige2); padding-bottom: 1px; transition: border-color 0.2s; }
.detail-value a:hover { border-color: var(--black); }
.contact-form-wrap { border: 1px solid var(--beige2); padding: 44px; }
.form-title { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #999; }
.field input, .field select, .field textarea {
  border: none;
  border-bottom: 1px solid var(--beige2);
  outline: none;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--black); }
.field input::placeholder, .field textarea::placeholder { color: #ccc; }
.field textarea { resize: none; height: 100px; line-height: 1.7; }
.field select { cursor: pointer; color: #555; }
.form-submit { display: flex; align-items: center; justify-content: space-between; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--beige2); gap: 20px; }
.form-note { font-size: 11px; color: #bbb; font-weight: 300; line-height: 1.6; max-width: 200px; }
.submit-btn { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; border: none; background: var(--black); color: var(--white); padding: 14px 32px; cursor: pointer; font-family: var(--sans); white-space: nowrap; transition: background 0.2s; flex-shrink: 0; }
.submit-btn:hover { background: #333; }
.form-success { padding: 40px 0; }
.form-error-msg { font-size: 12px; color: #c00; margin-bottom: 20px; padding: 12px; border: 1px solid #fcc; background: #fff5f5; }
.newsletter-section {
  background: var(--gray);
  padding: 80px 60px;
  border-top: 1px solid var(--beige2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-left .section-title { font-size: clamp(26px, 3vw, 40px); }
.newsletter-left p { font-size: 13.5px; font-weight: 300; color: #777; line-height: 1.8; margin-top: 16px; max-width: 380px; }
.nl-form { display: flex; flex-direction: column; gap: 16px; }
.nl-form input { border: none; border-bottom: 1px solid var(--black); outline: none; padding: 12px 0; font-family: var(--sans); font-size: 14px; font-weight: 300; background: transparent; color: var(--black); }
.nl-form input::placeholder { color: #bbb; }
.nl-form button { align-self: flex-start; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; border: none; background: var(--black); color: var(--white); padding: 13px 32px; cursor: pointer; font-family: var(--sans); transition: background 0.2s; }
.nl-form button:hover { background: #333; }
.nl-note { font-size: 10.5px; color: #bbb; font-weight: 300; margin-top: 8px; }

/* ── SINGLE PRODUCT ── */
.single-product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
  border-bottom: 1px solid var(--beige2);
}
.sp-image-col {
  border-right: 1px solid var(--beige2);
  padding: 60px;
  position: sticky;
  top: 80px;
  align-self: start;
}
.sp-image-box {
  background: var(--gray);
  aspect-ratio: 4/3;
  max-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sp-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.sp-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sp-gallery {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.sp-thumb {
  width: 64px;
  height: 64px;
  background: var(--gray);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.sp-thumb:hover { border-color: var(--black); }
.sp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.sp-details-col {
  padding: 60px;
}
.sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 32px;
}
.sp-breadcrumb a { color: #aaa; text-decoration: none; transition: color 0.2s; }
.sp-breadcrumb a:hover { color: var(--black); }
.sp-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  margin-top: 10px;
}
.sp-variant {
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 28px;
}
.sp-short-desc {
  font-size: 15px;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 32px;
}
.sp-price {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.sp-price .woocommerce-Price-amount { font-family: var(--serif); }
.sp-sold-out {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 28px;
}

/* WooCommerce add to cart button override */
.sp-atc .quantity { display: none; }
.sp-atc .single_add_to_cart_button {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 16px 48px;
  font-family: var(--sans);
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
.sp-atc .single_add_to_cart_button:hover { background: #333; }

.sp-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--beige2);
  border-bottom: 1px solid var(--beige2);
}
.sp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 60px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
}
.sp-badge span {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
}
.sp-compliance {
  font-size: 12.5px;
  color: #666;
  line-height: 1.8;
  font-weight: 300;
  margin-top: 20px;
}

/* Long description */
.sp-description {
  padding: 80px 60px;
  border-bottom: 1px solid var(--beige2);
  background: var(--gray);
}
.sp-desc-inner { max-width: 720px; }
.sp-desc-body {
  font-size: 14px;
  font-weight: 300;
  color: #555;
  line-height: 1.9;
  margin-top: 20px;
}

/* Related products */
.sp-related { padding: 80px 60px 120px; }
.sp-related-header { margin-bottom: 48px; }
.sp-related-grid { grid-template-columns: repeat(4, 1fr); }

/* ── NAV ACCOUNT BUTTON ── */
.nav-account {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.nav-account:hover { opacity: 1; }
.nav-account svg { flex-shrink: 0; }

/* ── NAV CART ICON ── */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: inherit;
  opacity: 0.7;
  transition: opacity 0.2s;
  text-decoration: none;
}
.nav-cart:hover { opacity: 1; }
.nav-cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s, background 0.2s;
}
.nav-cart-count.bump {
  transform: scale(1.4);
}
/* hide badge when 0 */
.nav-cart-count[data-count="0"] { opacity: 0; }
[data-theme="dark"] .nav-cart-count {
  background: #f0ece4;
  color: #0e0d0b;
}

/* ── ACCOUNT PAGE ── */
.nsc-account-page { padding-top: 90px; }

/* Login layout */
.nsc-login-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 90px);
}
.nsc-login-left {
  padding: 80px 60px;
  border-right: 1px solid var(--beige2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nsc-login-intro {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.85;
  max-width: 360px;
  margin-top: 24px;
}
.nsc-login-right {
  padding: 80px 60px;
  display: flex;
  align-items: center;
}
.nsc-login-right > * { width: 100%; }

/* Account form tabs */
.nsc-account-wrap { width: 100%; max-width: 460px; }
.nsc-account-tabs {
  display: flex;
  border-bottom: 1px solid var(--beige2);
  margin-bottom: 40px;
}
.nsc-tab-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 16px 0;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.nsc-tab-btn.active { color: var(--black); border-bottom-color: var(--black); }
.nsc-tab-panel { display: none; }
.nsc-tab-panel.active { display: block; }

/* Account form */
.nsc-form .field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.nsc-form .field label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: #999; }
.nsc-form .field input {
  border: none;
  border-bottom: 1px solid var(--beige2);
  outline: none;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  transition: border-color 0.2s;
  width: 100%;
}
.nsc-form .field input:focus { border-bottom-color: var(--black); }
.nsc-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.nsc-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #999;
  cursor: pointer;
}
.nsc-forgot { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #aaa; text-decoration: none; transition: color 0.2s; }
.nsc-forgot:hover { color: var(--black); }
.nsc-submit {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.nsc-submit:hover { background: #333; }
.nsc-auto-pass { font-size: 12px; color: #aaa; font-weight: 300; margin-bottom: 24px; }

/* Dashboard layout */
.nsc-account-hero {
  padding: 60px 60px 40px;
  border-bottom: 1px solid var(--beige2);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.nsc-account-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  margin-top: 8px;
}
.nsc-account-title em { font-style: italic; }
.nsc-account-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 60vh;
}
.nsc-account-nav {
  padding: 40px 0;
  border-right: 1px solid var(--beige2);
  display: flex;
  flex-direction: column;
}
.nsc-account-nav-link {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: #999;
  padding: 14px 40px;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nsc-account-nav-link:hover { color: var(--black); background: var(--gray); }
.nsc-account-nav-link.active { color: var(--black); border-left-color: var(--black); }
.nsc-account-content {
  padding: 40px 60px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}
/* WooCommerce account content overrides */
.nsc-account-content h2 { font-family: var(--serif); font-size: 28px; font-weight: 300; margin-bottom: 24px; }
.nsc-account-content table { width: 100%; border-collapse: collapse; font-size: 13px; }
.nsc-account-content table th { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: #999; padding: 12px 0; border-bottom: 1px solid var(--beige2); text-align: left; font-weight: 400; }
.nsc-account-content table td { padding: 16px 0; border-bottom: 1px solid var(--beige2); }
.nsc-account-content .button, .nsc-account-content .woocommerce-button {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--black);
  padding: 10px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--sans);
}
.nsc-account-content .button:hover { background: #333; }

/* ── WOOCOMMERCE ACCOUNT FORMS ── */
.nsc-account-content .woocommerce-form-row {
  float: none !important;
  width: 100% !important;
  margin-bottom: 20px !important;
  padding: 0 !important;
}
.nsc-account-content .clear { display: none; }
.nsc-account-content label,
.nsc-account-content .woocommerce-form-row label {
  display: block !important;
  font-size: 9px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #999 !important;
  margin-bottom: 8px !important;
  font-weight: 400 !important;
  font-family: var(--sans) !important;
}
.nsc-account-content input[type="text"],
.nsc-account-content input[type="email"],
.nsc-account-content input[type="password"],
.nsc-account-content input[type="tel"],
.nsc-account-content select,
.nsc-account-content textarea {
  width: 100% !important;
  border: none !important;
  border-bottom: 1px solid var(--beige2) !important;
  outline: none !important;
  padding: 10px 0 !important;
  font-family: var(--sans) !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  color: var(--black) !important;
  background: transparent !important;
  transition: border-color 0.2s !important;
  border-radius: 0 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  box-shadow: none !important;
}
.nsc-account-content input:focus,
.nsc-account-content select:focus,
.nsc-account-content textarea:focus {
  border-bottom-color: var(--black) !important;
  outline: none !important;
  box-shadow: none !important;
}
.nsc-account-content fieldset {
  border: none !important;
  border-top: 1px solid var(--beige2) !important;
  padding: 24px 0 0 !important;
  margin: 24px 0 0 !important;
}
.nsc-account-content fieldset legend {
  font-size: 9px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #999 !important;
  padding: 0 12px 0 0 !important;
  font-family: var(--sans) !important;
}
.nsc-account-content .woocommerce-form__label-for-checkbox {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #666 !important;
}
.nsc-account-content em { font-size: 11px; color: #aaa; font-style: normal; }
.nsc-account-content span.required { color: #aaa !important; font-size: 10px; }

/* ── ACCOUNT FORM GRID ── */
.nsc-edit-account { max-width: 640px; }
.nsc-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.nsc-form-field {
  margin-bottom: 28px;
}
.nsc-form-field--full {
  grid-column: 1 / -1;
}
.nsc-form-field label {
  display: block;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 8px;
  font-weight: 400;
  font-family: var(--sans);
}
.nsc-form-field input[type="text"],
.nsc-form-field input[type="email"],
.nsc-form-field input[type="password"],
.nsc-form-field input[type="tel"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--beige2);
  outline: none;
  padding: 10px 0;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  background: transparent;
  transition: border-color 0.2s;
  border-radius: 0;
  box-shadow: none;
}
.nsc-form-field input:focus {
  border-bottom-color: var(--black);
  outline: none;
  box-shadow: none;
}
.nsc-form-field em {
  display: block;
  font-size: 11px;
  color: #aaa;
  font-style: normal;
  margin-top: 6px;
}
.nsc-account-form fieldset {
  border: none;
  border-top: 1px solid var(--beige2);
  padding: 28px 0 0;
  margin: 8px 0 28px;
}
.nsc-account-form fieldset legend {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  padding: 0 12px 0 0;
  font-family: var(--sans);
}
.nsc-form-submit { margin-top: 8px; }
.nsc-btn-save {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--sans);
}
.nsc-btn-save:hover { background: #444; }

/* ── WOOCOMMERCE OVERRIDES ── */
/* Force pleine largeur sur checkout/cart — annule tout max-width WooCommerce */
body.woocommerce-checkout .woocommerce,
body.woocommerce-cart .woocommerce {
  max-width: none !important;
  width: 100% !important;
}
.nsc-checkout-page,
.nsc-checkout-body,
.nsc-checkout-wrap,
.nsc-cart-page,
.nsc-cart-body,
.nsc-cart-wrap {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
}
.woocommerce-notices-wrapper { padding: 0 60px; }

/* ── CART PAGE ── */
.nsc-cart-page { padding-top: 90px; }

.nsc-cart-hero {
  text-align: center;
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--beige2);
}
.nsc-cart-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 16px;
  font-family: var(--sans);
}
.nsc-cart-heading {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 12px;
}
.nsc-cart-meta {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #999;
  font-family: var(--sans);
}

.nsc-cart-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
}
.nsc-cart-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.nsc-cart-left { min-width: 0; }

/* -- Table header -- */
.nsc-cart-table { width: 100%; }
.nsc-cart-header {
  display: grid;
  grid-template-columns: 1fr 120px 120px 120px 40px;
  gap: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--beige2);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  font-family: var(--sans);
  font-weight: 400;
}
.nsc-cart-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px 120px 40px;
  gap: 0;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--beige2);
}
.nsc-cart-product {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nsc-cart-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
  background: var(--gray);
}
.nsc-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nsc-cart-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  color: var(--black);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.nsc-cart-name:hover { opacity: 0.7; }
.nsc-cart-info { font-size: 12px; color: #999; }
.nsc-cart-price,
.nsc-cart-subtotal {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
}
.nsc-cart-remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #999;
  transition: color 0.2s;
  text-decoration: none;
}
.nsc-cart-remove-btn:hover { color: var(--black); }

/* Qty input */
.nsc-cart-qty .quantity input {
  width: 56px;
  border: none;
  border-bottom: 1px solid var(--beige2);
  outline: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-family: var(--sans);
  padding: 6px 0;
  color: var(--black);
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.nsc-cart-qty .quantity { display: flex; }
.nsc-cart-qty .qty { /* alias */ }

/* Cart actions */
.nsc-cart-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 0;
  gap: 16px;
}
.nsc-coupon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nsc-coupon .nsc-input {
  border: none;
  border-bottom: 1px solid var(--beige2);
  background: transparent;
  outline: none;
  padding: 8px 0;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--black);
  width: 180px;
}
.nsc-btn-outline {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nsc-btn-outline:hover { background: var(--black); color: var(--white); }
.nsc-btn-solid {
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.nsc-btn-solid:hover { background: #444; }

/* -- Order Summary sidebar -- */
.nsc-cart-sidebar { position: sticky; top: 110px; }
.nsc-cart-totals-box {
  border: 1px solid var(--beige2);
  padding: 40px;
}
.nsc-cart-totals-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige2);
}
/* WooCommerce totals overrides */
.nsc-cart-totals-box .cart_totals table {
  width: 100%;
  border-collapse: collapse;
}
.nsc-cart-totals-box .cart_totals th,
.nsc-cart-totals-box .cart_totals td {
  padding: 12px 0;
  border-bottom: 1px solid var(--beige2);
  font-size: 13px;
  font-weight: 300;
}
.nsc-cart-totals-box .cart_totals th {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #999;
  font-family: var(--sans);
  font-weight: 400;
  text-align: left;
}
.nsc-cart-totals-box .cart_totals .order-total th,
.nsc-cart-totals-box .cart_totals .order-total td {
  border-bottom: none;
  padding-top: 20px;
}
.nsc-cart-totals-box .cart_totals .order-total td {
  font-family: var(--serif);
  font-size: 22px;
}
.nsc-cart-totals-box .wc-proceed-to-checkout { margin-top: 24px; }
.nsc-cart-totals-box .checkout-button,
.nsc-cart-totals-box .wc-proceed-to-checkout .button {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 9.5px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-family: var(--sans) !important;
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 16px 24px !important;
  text-decoration: none !important;
  transition: background 0.2s !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
}
.nsc-cart-totals-box .checkout-button:hover,
.nsc-cart-totals-box .wc-proceed-to-checkout .button:hover {
  background: #444 !important;
}

/* -- Empty cart -- */
.nsc-cart-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  color: #999;
  font-size: 14px;
  font-family: var(--sans);
}

/* -- Cart dark mode -- */
[data-theme="dark"] .nsc-cart-hero { border-bottom-color: #2a2824; }
[data-theme="dark"] .nsc-cart-header { border-bottom-color: #2a2824; }
[data-theme="dark"] .nsc-cart-row { border-bottom-color: #2a2824; }
[data-theme="dark"] .nsc-cart-totals-box { border-color: #2a2824; background: #181714; }
[data-theme="dark"] .nsc-cart-totals-title { border-bottom-color: #2a2824; }
[data-theme="dark"] .nsc-cart-totals-box .cart_totals th,
[data-theme="dark"] .nsc-cart-totals-box .cart_totals td { border-bottom-color: #2a2824; }
[data-theme="dark"] .nsc-cart-qty .quantity input {
  color: #f0ece4 !important;
  border-bottom-color: #2a2824 !important;
}
[data-theme="dark"] .nsc-coupon-input {
  color: #f0ece4 !important;
  border-bottom-color: #2a2824 !important;
}
[data-theme="dark"] .nsc-btn-outline {
  border-color: #f0ece4;
  color: #f0ece4;
}
[data-theme="dark"] .nsc-btn-outline:hover {
  background: #f0ece4;
  color: #0e0d0b;
}

/* -- Cart page responsive -- */
@media (max-width: 900px) {
  .nsc-cart-body { padding: 40px 24px; }
  .nsc-cart-wrap { grid-template-columns: 1fr; }
  .nsc-cart-header { display: none; }
  .nsc-cart-row { grid-template-columns: 1fr auto; grid-template-rows: auto auto; gap: 12px 0; }
  .nsc-cart-product { grid-column: 1 / -1; }
  .nsc-cart-price::before { content: attr(data-label) ': '; font-size: 9px; color: #999; text-transform: uppercase; letter-spacing: 0.1em; margin-right: 6px; }
  .nsc-cart-subtotal::before { content: attr(data-label) ': '; font-size: 9px; color: #999; text-transform: uppercase; letter-spacing: 0.1em; margin-right: 6px; }
  .nsc-cart-remove { grid-column: 2; grid-row: 2; text-align: right; }
  .nsc-cart-sidebar { position: static; }
}

/* ── CHECKOUT PAGE ── */
.nsc-checkout-page {
  padding-top: 90px;
  min-height: 100vh;
}

.nsc-checkout-hero {
  text-align: center;
  padding: 70px 40px 50px;
  border-bottom: 1px solid var(--beige2);
}
.nsc-checkout-eyebrow {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 14px;
  font-family: var(--sans);
}
.nsc-checkout-heading {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  letter-spacing: -0.01em;
}

.nsc-checkout-body {
  padding: 60px 60px 80px;
  width: 100%;
}

/* coupon toggle outside the grid */
.nsc-checkout-coupon-toggle {
  margin-bottom: 32px;
  font-size: 13px;
  color: #999;
}
.nsc-checkout-coupon-toggle a { color: var(--beige); }
.nsc-checkout-coupon-toggle .checkout_coupon {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  align-items: flex-end;
}
.nsc-checkout-coupon-toggle .checkout_coupon input[type="text"] {
  flex: 1;
}
.nsc-checkout-coupon-toggle .checkout_coupon .button {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nsc-checkout-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
  width: 100%;
}

.nsc-checkout-left { min-width: 0; }
.nsc-checkout-block { margin-bottom: 48px; }

.nsc-checkout-section-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--beige2);
}

/* WooCommerce injects h3 "Détails de facturation" — hide */
.nsc-checkout-page .woocommerce-billing-fields > h3,
.nsc-checkout-page .woocommerce-shipping-fields > h3 { display: none; }

/* ── Form fields — same as contact page ── */
.nsc-checkout-page .woocommerce-billing-fields,
.nsc-checkout-page .woocommerce-shipping-fields,
.nsc-checkout-page .woocommerce-additional-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.nsc-checkout-page .woocommerce-billing-fields__field-wrapper,
.nsc-checkout-page .woocommerce-shipping-fields__field-wrapper {
  display: contents;
}
.nsc-checkout-page .form-row {
  float: none !important;
  width: auto !important;
  padding: 0 !important;
  margin-bottom: 20px !important;
}
.nsc-checkout-page .form-row-wide,
.nsc-checkout-page .notes { grid-column: 1 / -1; }

.nsc-checkout-page label {
  display: block !important;
  font-size: 9px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: #999 !important;
  margin-bottom: 8px !important;
  font-weight: 400 !important;
  font-family: var(--sans) !important;
}
.nsc-checkout-page abbr.required { color: #ccc !important; border: none !important; }

.nsc-checkout-page input[type="text"],
.nsc-checkout-page input[type="email"],
.nsc-checkout-page input[type="tel"],
.nsc-checkout-page input[type="password"],
.nsc-checkout-page select,
.nsc-checkout-page textarea {
  width: 100% !important;
  border: none !important;
  border-bottom: 1px solid var(--beige2) !important;
  outline: none !important;
  padding: 10px 0 !important;
  font-family: var(--sans) !important;
  font-size: 13.5px !important;
  font-weight: 300 !important;
  color: var(--black) !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color 0.2s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.nsc-checkout-page input:focus,
.nsc-checkout-page select:focus,
.nsc-checkout-page textarea:focus {
  border-bottom-color: var(--black) !important;
  box-shadow: none !important;
  outline: none !important;
}
.nsc-checkout-page input::placeholder,
.nsc-checkout-page textarea::placeholder { color: #ccc !important; }
.nsc-checkout-page textarea { min-height: 80px; resize: vertical; }

/* select arrow */
.nsc-checkout-page select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 4px center !important;
  padding-right: 20px !important;
}

/* validation */
.nsc-checkout-page .woocommerce-invalid input,
.nsc-checkout-page .woocommerce-invalid select { border-bottom-color: #c0392b !important; }

/* ── Payment ── */
.nsc-checkout-page #payment {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.nsc-checkout-page #payment ul.payment_methods {
  list-style: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  background: transparent !important;
}
.nsc-checkout-page #payment ul.payment_methods li {
  padding: 16px 0 !important;
  border-bottom: 1px solid var(--beige2) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  background: transparent !important;
}
.nsc-checkout-page #payment ul.payment_methods label {
  font-size: 13px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--black) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  cursor: pointer !important;
}
.nsc-checkout-page #payment .payment_box {
  background: var(--gray) !important;
  padding: 16px 20px !important;
  font-size: 13px !important;
  color: #777 !important;
  border-radius: 0 !important;
}
.nsc-checkout-page #payment .place-order { padding: 0 !important; background: transparent !important; }
.nsc-checkout-page #payment #place_order,
.nsc-checkout-page .woocommerce-button.button.alt {
  display: block !important;
  width: 100% !important;
  font-size: 9.5px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-family: var(--sans) !important;
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 18px 24px !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  margin-top: 8px !important;
}
.nsc-checkout-page #payment #place_order:hover { opacity: 0.8; }

/* ── Order summary sidebar ── */
.nsc-checkout-right { position: sticky; top: 110px; }
.nsc-checkout-summary {
  background: var(--gray);
  border: 1px solid var(--beige2);
  padding: 36px;
}
.nsc-checkout-page .shop_table.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 0;
}
.nsc-checkout-page .shop_table th {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #999;
  font-family: var(--sans);
  font-weight: 400;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--beige2);
  text-align: left;
}
.nsc-checkout-page .shop_table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--beige2);
  vertical-align: top;
}
.nsc-checkout-page .shop_table .product-name {
  font-weight: 300;
  font-family: var(--serif);
  font-size: 15px;
}
.nsc-checkout-page .shop_table .product-name .product-quantity {
  color: #999;
  font-size: 12px;
  font-family: var(--sans);
}
.nsc-checkout-page .shop_table .product-total {
  text-align: right;
  font-family: var(--serif);
  font-size: 15px;
}
.nsc-checkout-page .shop_table tfoot tr th,
.nsc-checkout-page .shop_table tfoot tr td { padding: 12px 0; }
.nsc-checkout-page .shop_table tfoot .order-total th,
.nsc-checkout-page .shop_table tfoot .order-total td {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--sans);
  border-top: 1px solid var(--beige2);
  border-bottom: none;
  padding-top: 18px;
}
.nsc-checkout-page .shop_table tfoot .order-total .amount {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0;
  text-transform: none;
}

/* ── Checkout dark mode explicit overrides ── */
[data-theme="dark"] .nsc-checkout-page {
  background: #0e0d0b;
  color: #f0ece4;
}
[data-theme="dark"] .nsc-checkout-hero {
  border-bottom-color: #2a2824;
}
[data-theme="dark"] .nsc-checkout-section-title {
  border-bottom-color: #2a2824;
  color: #f0ece4;
}
[data-theme="dark"] .nsc-checkout-page input[type="text"],
[data-theme="dark"] .nsc-checkout-page input[type="email"],
[data-theme="dark"] .nsc-checkout-page input[type="tel"],
[data-theme="dark"] .nsc-checkout-page input[type="password"],
[data-theme="dark"] .nsc-checkout-page select,
[data-theme="dark"] .nsc-checkout-page textarea {
  color: #f0ece4 !important;
  border-bottom-color: #2a2824 !important;
  background: transparent !important;
}
[data-theme="dark"] .nsc-checkout-page input:-webkit-autofill,
[data-theme="dark"] .nsc-checkout-page input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #0e0d0b inset !important;
  -webkit-text-fill-color: #f0ece4 !important;
}
[data-theme="dark"] .nsc-checkout-page input:focus,
[data-theme="dark"] .nsc-checkout-page select:focus,
[data-theme="dark"] .nsc-checkout-page textarea:focus {
  border-bottom-color: #c8bb9e !important;
}
[data-theme="dark"] .nsc-checkout-page label {
  color: #6a6560 !important;
}
[data-theme="dark"] .nsc-checkout-summary {
  background: #181714;
  border-color: #2a2824;
}
[data-theme="dark"] .nsc-checkout-page .shop_table th {
  color: #6a6560;
  border-bottom-color: #2a2824;
}
[data-theme="dark"] .nsc-checkout-page .shop_table td {
  border-bottom-color: #2a2824;
  color: #f0ece4;
}
[data-theme="dark"] .nsc-checkout-page .shop_table tfoot .order-total th,
[data-theme="dark"] .nsc-checkout-page .shop_table tfoot .order-total td {
  border-top-color: #2a2824;
}
[data-theme="dark"] .nsc-checkout-page #payment ul.payment_methods li {
  border-bottom-color: #2a2824 !important;
  background: transparent !important;
}
[data-theme="dark"] .nsc-checkout-page #payment ul.payment_methods label {
  color: #f0ece4 !important;
}
[data-theme="dark"] .nsc-checkout-page #payment .payment_box {
  background: #181714 !important;
  color: #a09890 !important;
}
[data-theme="dark"] .nsc-checkout-page #payment #place_order {
  background: #f0ece4 !important;
  color: #0e0d0b !important;
}
[data-theme="dark"] .nsc-checkout-page #payment #place_order:hover {
  background: #c8bb9e !important;
}
[data-theme="dark"] .nsc-checkout-page .woocommerce-billing-fields > h3,
[data-theme="dark"] .nsc-checkout-page .woocommerce-shipping-fields > h3 {
  color: #f0ece4;
}
[data-theme="dark"] .nsc-checkout-coupon-toggle { color: #6a6560; }
[data-theme="dark"] .nsc-checkout-coupon-toggle a { color: #c8bb9e; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .nsc-checkout-wrap { grid-template-columns: 1fr; }
  .nsc-checkout-right { position: static; }
  .nsc-checkout-body { padding: 40px 24px; }
  .nsc-checkout-page .woocommerce-billing-fields,
  .nsc-checkout-page .woocommerce-shipping-fields { grid-template-columns: 1fr; }
}

/* Prix élégant */
.product-price .woocommerce-Price-amount,
.sp-price .woocommerce-Price-amount {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.product-price .woocommerce-Price-currencySymbol,
.sp-price .woocommerce-Price-currencySymbol {
  font-size: 0.65em;
  vertical-align: super;
  margin-right: 1px;
  font-weight: 300;
}
.product-price ins,
.sp-price ins { text-decoration: none; }
.product-price del,
.sp-price del {
  font-size: 0.65em;
  color: #aaa;
  margin-right: 6px;
  font-weight: 300;
}

@media (max-width: 960px) {
  .single-product-wrap { grid-template-columns: 1fr; }
  .sp-image-col { position: static; border-right: none; border-bottom: 1px solid var(--beige2); padding: 40px 30px; }
  .sp-details-col { padding: 40px 30px; }
  .sp-related { padding: 60px 30px; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
  .sp-description { padding: 60px 30px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav#main-nav { padding: 22px 30px; }
  nav#main-nav.scrolled { padding: 16px 30px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 80px 30px; }
  .page-hero { padding: 130px 30px 60px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  #statement { grid-template-columns: 1fr; gap: 48px; padding: 70px 30px; }
  .newsletter-strip { flex-direction: column; align-items: flex-start; padding: 50px 30px; }
  .newsletter-form { max-width: 100%; width: 100%; }
  footer { padding: 32px 30px; }
  .filter-bar { padding: 20px 30px; }
  .products-section { padding: 40px 30px 80px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  /* About */
  .about-intro { grid-template-columns: 1fr; gap: 40px; padding: 130px 30px 70px; }
  .full-quote { padding: 70px 30px; }
  .values-section, .process-section, .compliance-section { padding: 70px 30px; }
  .values-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; border: none; gap: 40px; }
  .process-step { border: none; padding: 0; border-top: 1px solid var(--beige2); padding-top: 32px; }
  .compliance-section { grid-template-columns: 1fr; gap: 40px; }
  .compliance-right { grid-template-columns: 1fr; }
  /* FAQ */
  .faq-page { padding: 60px 30px 80px; }
  .faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .faq-sidebar { display: none; }
  .faq-cta { flex-direction: column; align-items: flex-start; padding: 32px; }
  /* Contact */
  .contact-page { grid-template-columns: 1fr; gap: 56px; padding: 60px 30px 80px; }
  .contact-form-wrap { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .newsletter-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 30px; }
}
@media (max-width: 540px) {
  .hero-actions { flex-direction: column; }
  .products-grid { grid-template-columns: 1fr; }
  .newsletter-strip h3 { font-size: 24px; }
}
