/* ================================================
   RONIN FARMS — Style Sheet
   Colors: Noir #0A0907 | Champagne #C9A961 | Creme #F5EDE0
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --noir: #0A0907;
  --champagne: #C9A961;
  --creme: #F5EDE0;
  --white: #FFFFFF;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 88px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--noir);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; cursor: pointer; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

.gold { color: var(--champagne); }

/* ---------- FOCUS & A11Y ---------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border: none;
  border-radius: 8px;
}

.btn--champagne {
  background: var(--champagne);
  color: var(--noir);
}
.btn--champagne:hover {
  background: #d4b56e;
  box-shadow: 0 4px 20px rgba(201,169,97,0.25);
}

.btn--outline-champagne {
  background: transparent;
  color: var(--champagne);
  border: 1px solid var(--champagne);
}
.btn--outline-champagne:hover {
  background: var(--champagne);
  color: var(--noir);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--outline-light:hover {
  border-color: var(--champagne);
  color: var(--champagne);
}

.btn--full { width: 100%; justify-content: center; }

.btn-arrow { font-size: 18px; transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- SECTION LABEL ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--champagne);
  margin-bottom: 16px;
}

.label-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--champagne);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
  background: rgba(10, 9, 7, 0.95);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-img {
  height: 130px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--champagne); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-btn {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.25s;
  cursor: pointer;
}

.nav-btn--ghost { color: var(--white); }
.nav-btn--ghost:hover { color: var(--champagne); }

.nav-btn--primary {
  border: 1px solid var(--champagne);
  color: var(--champagne);
  border-radius: 6px;
}
.nav-btn--primary:hover {
  background: var(--champagne);
  color: var(--noir);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s;
  z-index: 1001;
}
.nav-burger:hover { border-color: var(--champagne); }

.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(10,9,7,0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-links a {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.25s;
}
.mobile-links a:hover { color: var(--champagne); }

.mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 820px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.png');
  background-size: cover;
  background-position: 72% center;
  background-repeat: no-repeat;
  will-change: transform;
  animation: heroZoom 2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

/* Overlay 1 — horizontal left-to-right darkness */
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.72) 35%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.15) 100%
  );
}

/* Overlay 2 — subtle vertical top darkening */
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35) 0%,
    transparent 40%,
    transparent 100%
  );
}

/* Overlay 3 — radial vignette */
.hero-overlay-3 {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    transparent 40%,
    rgba(0,0,0,0.4) 100%
  );
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 340px;
}

/* Tag */
.hero-tag-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s ease forwards 0.4s;
}

.hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #C8A46B;
}

.hero-tag-line {
  width: 32px;
  height: 1.5px;
  background: #C8A46B;
}

/* Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 500;
  line-height: 0.95;
  margin-bottom: 24px;
  color: #F7F4EE;
}

.hero-line { display: block; }

.hero-line--1 {
  opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}
.hero-line--2 {
  opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
}
.hero-line--3 {
  opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.7s;
}
.hero-line--4 {
  opacity: 0; transform: translateY(30px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.85s;
  color: #C8A46B;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtitle */
.hero-sub {
  font-size: 15px;
  color: rgba(247,244,238,0.6);
  margin-bottom: 32px;
  line-height: 1.6;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1s;
}

/* Hero CTA */
.hero-cta {
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1.2s;
}

.btn--hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  height: 60px;
  background: #C8A46B;
  color: #090909;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 24px rgba(200,164,107,0.15);
}
.btn--hero:hover {
  background: #d4b47a;
  box-shadow: 0 6px 32px rgba(200,164,107,0.3), 0 0 60px rgba(200,164,107,0.1);
}

.hero-qualifier {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.45);
  opacity: 0;
  animation: heroFadeUp 0.6s ease forwards 1.4s;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #C8A46B;
  opacity: 0;
  animation: heroFadeUp 0.6s ease forwards 1.5s;
}

.scroll-line {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, #C8A46B);
}

.scroll-chevron {
  animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ---------- REASSURANCE ---------- */
.reassurance {
  background: var(--noir);
  border-top: 1px solid rgba(201,169,97,0.15);
  border-bottom: none;
}

.reassurance-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.reassurance-item {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(201,169,97,0.1);
}
.reassurance-item:last-child { border-right: none; }

.reassurance-icon { margin-bottom: 16px; }

.reassurance-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.5;
}

.reassurance-dash {
  width: 24px;
  height: 2px;
  background: var(--champagne);
  margin: 16px auto 0;
}

/* ---------- EXIGENCE ---------- */
.exigence {
  background: var(--creme);
  color: var(--noir);
  padding: 100px 40px;
}

.exigence-inner {
  max-width: 720px;
  margin: 0 auto;
}

.exigence .section-label { color: var(--champagne); }

.exigence-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}

.exigence-intro {
  font-size: 16px;
  color: rgba(10,9,7,0.7);
  margin-bottom: 48px;
}

.pillars { margin-bottom: 48px; }

.pillar {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
}

.pillar-icon { flex-shrink: 0; }

.pillar-content h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pillar-content p {
  font-size: 15px;
  color: rgba(10,9,7,0.7);
  line-height: 1.6;
}

.pillar-divider {
  height: 1px;
  background: rgba(10,9,7,0.1);
}

.coa-section { margin-bottom: 40px; }

.coa-image {
  width: 100%;
  border-radius: 8px;
}

.exigence .btn--outline-champagne {
  color: var(--champagne);
  border-color: var(--champagne);
}

/* ---------- CATALOGUE ---------- */
.catalogue {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.catalogue-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.catalogue-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,7,0.92);
}

.catalogue-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.catalogue-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
  padding: 0 40px;
}

.catalogue-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}

.catalogue-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
}

/* ---------- CAROUSEL ---------- */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0 40px;
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-track .product-card {
  flex: 0 0 calc(50% - 12px);
  max-width: calc(50% - 12px);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(10,9,7,0.7);
  backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  z-index: 5;
}

.carousel-arrow--left { left: 8px; }
.carousel-arrow--right { right: 8px; }

.carousel-arrow:hover {
  border-color: var(--champagne);
  color: var(--champagne);
  background: rgba(10,9,7,0.9);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
  padding: 0 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.dot.active {
  background: var(--champagne);
}

/* ---------- PRODUCT CARDS ---------- */
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,97,0.25);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(201,169,97,0.06);
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(201,169,97,0.45);
  box-shadow: 0 8px 40px rgba(201,169,97,0.15);
}

.product-image-wrap {
  position: relative;
  background: var(--noir);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.product-image-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle,
    rgba(201,169,97,0.22) 0%,
    rgba(201,169,97,0.10) 35%,
    rgba(201,169,97,0.03) 60%,
    transparent 80%
  );
  border-radius: 50%;
  filter: blur(24px);
  z-index: 0;
  transition: width 0.4s, height 0.4s;
}

.product-card:hover .product-image-wrap::before {
  width: 70%;
  height: 70%;
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 4px;
  z-index: 2;
}

.product-image {
  position: relative;
  z-index: 1;
  width: 70%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info { padding: 24px; }

.product-name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product-stats {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.stat-sep { color: rgba(255,255,255,0.2); }

.product-details {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.product-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.product-detail strong {
  color: var(--white);
  font-weight: 600;
}

.product-price-lock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(201,169,97,0.08);
  border: 1px solid rgba(201,169,97,0.15);
  border-radius: 8px;
  font-size: 12px;
  color: var(--champagne);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.product-price-lock:hover {
  background: rgba(201,169,97,0.18);
  border-color: var(--champagne);
  transform: translateY(-1px);
}

.price-lock-arrow {
  margin-left: auto;
  opacity: 0.5;
  transition: opacity 0.25s, transform 0.25s;
}

.product-price-lock:hover .price-lock-arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* ---------- FERME ---------- */
.ferme {
  background: var(--noir);
  padding: 100px 40px;
}

.ferme-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ferme-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 24px;
}

.ferme-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  line-height: 1.7;
}

.ferme-text .btn { margin-top: 16px; }

.ferme-image-wrap { position: relative; }

.ferme-monogram {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

.ferme-image {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---------- MACRO STRIP ---------- */
.macro-strip {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.macro-strip-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.macro-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,7,0.7);
}

.macro-strip-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  padding: 0 40px;
}

.macro-strip-content blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--creme);
  color: var(--noir);
  padding: 100px 40px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq .section-label { color: var(--champagne); }

.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 48px;
}

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

.faq-item {
  border-bottom: 1px solid rgba(10,9,7,0.1);
}

.faq-item:first-child {
  border-top: 1px solid rgba(10,9,7,0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--noir);
  text-align: left;
  letter-spacing: 0.3px;
  transition: color 0.25s;
}

.faq-question:hover {
  color: var(--champagne);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--champagne);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(10,9,7,0.7);
}

/* ---------- CONVERSION ---------- */
.conversion {
  position: relative;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.conversion-deco-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 300px;
  opacity: 0.4;
  pointer-events: none;
}

.deco-leaf-left { width: 100%; }

.conversion-deco-right {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0.25;
  pointer-events: none;
}

.deco-macro-right {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conversion-box {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  text-align: center;
  padding: 64px 48px;
  border: 1px solid var(--champagne);
  border-radius: 4px;
  background: rgba(18,16,14,0.85);
  backdrop-filter: blur(12px);
}

.conversion-monogram { margin-bottom: 32px; }

.conversion-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}

.conversion-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 16px;
}

.conversion-dash {
  width: 40px;
  height: 2px;
  background: var(--champagne);
  margin: 0 auto 24px;
}

.conversion-text {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--noir);
  border-top: 1px solid rgba(200,164,107,0.1);
  padding-top: 72px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 56px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-logo { margin-bottom: 20px; }
.footer-logo .logo-img { height: 110px; }

.footer-legal-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,169,97,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.social-link:hover {
  background: var(--champagne);
  border-color: var(--champagne);
}
.social-link:hover svg * { stroke: var(--noir); fill: none; }
.social-link:hover svg circle[fill] { fill: var(--noir); }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul { display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--champagne); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom-links a {
  color: var(--champagne);
  transition: opacity 0.25s;
}
.footer-bottom-links a:hover { opacity: 0.7; }
.footer-bottom-links span { color: rgba(255,255,255,0.2); }

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
  .carousel-track .product-card {
    flex: 0 0 calc(60% - 12px);
    max-width: calc(60% - 12px);
  }
  .ferme-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-height: 72px; }

  .nav-links,
  .nav-actions { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { padding: 16px 24px; }
  .logo-img { height: 100px; }

  .hero { min-height: 700px; }
  .hero-title { font-size: 42px; }
  .hero-content { max-width: 320px; }
  .hero-scroll { bottom: 20px; }

  .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance-item { border-bottom: 1px solid rgba(201,169,97,0.1); }

  .exigence { padding: 64px 24px; }

  /* Catalogue mobile */
  .catalogue { padding: 64px 0; }
  .catalogue-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
  }

  .carousel-viewport {
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .carousel-viewport::-webkit-scrollbar { display: none; }

  .carousel-track {
    transform: none !important;
    transition: none !important;
    padding: 0 24px;
  }

  .carousel-track .product-card {
    flex: 0 0 82%;
    max-width: 82%;
    scroll-snap-align: start;
  }

  .carousel-dots { display: none; }
  .carousel-arrow { display: none; }

  .product-image-wrap {
    aspect-ratio: 1;
    padding: 20px;
  }
  .product-image { width: 65%; }
  .product-info { padding: 20px; }
  .product-details { flex-direction: column; gap: 12px; }
  .product-detail {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .ferme { padding: 64px 24px; }
  .macro-strip { height: 240px; }
  .macro-strip-content { padding: 0 24px; }

  .faq { padding: 64px 24px; }
  .faq-question { font-size: 15px; }

  .conversion { padding: 64px 24px; }
  .conversion-box { padding: 40px 24px; }
  .conversion-deco-left,
  .conversion-deco-right { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px 48px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero { min-height: 640px; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .hero-scroll { display: none; }
  .btn--hero { height: 54px; font-size: 12px; padding: 0 24px; }

  .btn { padding: 14px 24px; font-size: 12px; letter-spacing: 1.5px; }

  .reassurance-item { padding: 24px 12px; }
  .reassurance-text { font-size: 11px; letter-spacing: 1.5px; }

  .product-image-wrap { aspect-ratio: 5 / 4; }
  .product-image { width: 55%; }
  .product-name { font-size: 16px; }
}

/* ================================================
   AUTH PAGES — Login, Register, Account, Product
   ================================================ */

/* ---------- AUTH SECTION (Login / Register) ---------- */
.auth-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
}

.auth-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.auth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 7, 0.92);
}

.auth-card {
  position: relative;
  z-index: 2;
  max-width: 440px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  padding: 48px 40px;
}

.auth-card--wide {
  max-width: 640px;
}

.auth-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 8px;
}

.auth-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ---------- FORMS ---------- */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"] {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.form-error {
  font-size: 12px;
  color: #e74c3c;
  min-height: 0;
}

.form-error--global {
  text-align: center;
  font-weight: 600;
}

/* Checkbox */
.form-group--checkbox {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: #111;
  margin-top: 1px;
  transition: all 0.2s;
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--champagne);
  border-color: var(--champagne);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid var(--noir);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.auth-footer-link {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.auth-footer-link a {
  color: var(--champagne);
  text-decoration: underline;
  transition: opacity 0.25s;
}

.auth-footer-link a:hover {
  opacity: 0.7;
}

/* ---------- PRODUCT PRICE UNLOCKED (index cards) ---------- */
.product-price-unlocked {
  padding: 12px 16px;
  background: rgba(201, 169, 97, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 8px;
}

.price-tier-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tier-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.tier-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--champagne);
}

/* ---------- PRODUCT DETAIL PAGE ---------- */
.produit-section {
  padding: 120px 40px 80px;
}

.produit-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s;
}

.breadcrumb a:hover {
  color: var(--champagne);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

.breadcrumb-current {
  color: var(--white);
  font-weight: 600;
}

/* Product grid */
.produit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.produit-image-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  overflow: hidden;
}

.produit-main-image {
  width: 75%;
  max-height: 100%;
  object-fit: contain;
}

.produit-name {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.produit-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.produit-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.produit-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--champagne);
}

.produit-stat-value {
  font-size: 24px;
  font-weight: 700;
}

.produit-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 32px;
}

.produit-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.produit-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.produit-meta-item strong {
  color: var(--white);
  font-weight: 600;
}

/* Pricing card */
.pricing-card {
  border-radius: 12px;
  padding: 32px;
}

.pricing-card--locked {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.2);
  text-align: center;
}

.pricing-card--unlocked {
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.25);
}

.pricing-lock-icon {
  margin-bottom: 16px;
}

.pricing-lock-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.pricing-lock-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-lock-btns .btn {
  font-size: 12px;
  padding: 14px 24px;
}

.pricing-heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-tier {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.pricing-tier:hover {
  border-color: rgba(201, 169, 97, 0.4);
}

.pricing-tier--selected {
  border-color: var(--champagne);
  background: rgba(201, 169, 97, 0.1);
}

.pricing-tier input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.pricing-tier input[type="radio"]:checked {
  border-color: var(--champagne);
}

.pricing-tier input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  background: var(--champagne);
  border-radius: 50%;
}

.tier-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tier-qty {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tier-savings {
  background: var(--champagne);
  color: var(--noir);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 4px;
}

.tier-prices {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.tier-per-g {
  font-size: 14px;
  font-weight: 600;
  color: var(--champagne);
}

.tier-total {
  font-size: 18px;
  font-weight: 700;
}

/* Related products */
.related-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 60px;
}

.related-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.related-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  display: block;
}

.related-card:hover {
  border-color: rgba(201, 169, 97, 0.3);
  box-shadow: 0 8px 32px rgba(201, 169, 97, 0.08);
}

.related-image-wrap {
  position: relative;
  background: var(--noir);
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.related-image {
  width: 50%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.related-card:hover .related-image {
  transform: scale(1.05);
}

.related-info {
  padding: 20px;
}

.related-name {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

/* ---------- ACCOUNT PAGE ---------- */
.compte-section {
  padding: 140px 40px 80px;
}

.compte-inner {
  max-width: 720px;
  margin: 0 auto;
}

.compte-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 40px;
}

.compte-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  padding: 40px;
}

.compte-card-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
}

.compte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compte-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.compte-field-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.compte-field-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* ========================================
   AUTH PAGES — RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .auth-card {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .produit-section {
    padding: 100px 24px 60px;
  }

  .produit-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .produit-image-wrap {
    aspect-ratio: 1;
    padding: 24px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .pricing-lock-btns {
    flex-direction: column;
  }

  .pricing-lock-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .tier-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .tier-prices {
    gap: 12px;
  }

  .compte-section {
    padding: 100px 24px 60px;
  }

  .compte-card {
    padding: 24px;
  }

  .compte-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .auth-title {
    font-size: 28px;
  }

  .produit-name {
    font-size: 28px;
  }
}

/* ================================================
   CART ICON & BADGE
   ================================================ */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  transition: all 0.25s;
}
.nav-cart:hover {
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--champagne);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--champagne);
  color: var(--noir);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ================================================
   TOAST NOTIFICATION
   ================================================ */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: rgba(10, 9, 7, 0.95);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 8px;
  padding: 16px 48px 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--white);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.toast-notification.toast-visible {
  transform: translateY(0);
  opacity: 1;
}
.toast-link {
  color: var(--champagne);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: opacity 0.25s;
}
.toast-link:hover { opacity: 0.7; }

.toast-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.toast-close:hover { color: var(--white); }

/* ================================================
   CATALOGUE PAGE
   ================================================ */
.cat-page-section {
  padding: 140px 40px 80px;
}

.cat-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.cat-page-header {
  margin-bottom: 48px;
}

.cat-page-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}

.cat-page-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 480px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.cat-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.cat-card:hover {
  border-color: rgba(201, 169, 97, 0.25);
  box-shadow: 0 8px 32px rgba(201, 169, 97, 0.06);
}

.cat-card-image-link {
  display: block;
}

.cat-card-image-wrap {
  position: relative;
  background: var(--noir);
  padding: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  height: 100%;
}

.cat-card-image {
  width: 70%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cat-card:hover .cat-card-image {
  transform: scale(1.05);
}

.cat-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.cat-card-name-link { display: block; }

.cat-card-name {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 8px;
  transition: color 0.25s;
}
.cat-card-name-link:hover .cat-card-name {
  color: var(--champagne);
}

.cat-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Pricing table in catalogue */
.cat-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 13px;
}

.cat-pricing-table thead th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cat-pricing-row td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-tier-qty {
  font-weight: 600;
  color: var(--white);
}

.cat-tier-ppg {
  color: var(--champagne);
  font-weight: 600;
}

.cat-tier-total {
  color: rgba(255, 255, 255, 0.7);
}

.cat-card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.cat-qty-select {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--white);
  outline: none;
  cursor: pointer;
  flex: 1;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C9A961' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.cat-qty-select:focus {
  border-color: var(--champagne);
}

.cat-qty-select option {
  background: #111;
  color: var(--white);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 1.5px;
}

/* ================================================
   STICKY CART BAR
   ================================================ */
.sticky-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background: rgba(10, 9, 7, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  padding: 16px 0;
}

.sticky-cart-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-cart-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* ================================================
   PRODUCT DETAIL — GALLERY
   ================================================ */
.produit-gallery {
  display: flex;
  gap: 12px;
}

.produit-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.produit-thumb {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color 0.25s;
  background: rgba(255, 255, 255, 0.03);
}
.produit-thumb:hover {
  border-color: rgba(201, 169, 97, 0.5);
}
.produit-thumb--active {
  border-color: var(--champagne);
}

.produit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================================
   DEVIS PAGE
   ================================================ */
.devis-section {
  padding: 140px 40px 80px;
}

.devis-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.devis-header {
  margin-bottom: 48px;
}

.devis-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
}

.devis-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.devis-col-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 24px;
}

/* Cart items */
.devis-cart-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.devis-cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.25s;
}
.devis-cart-item:hover {
  border-color: rgba(201, 169, 97, 0.2);
}

.devis-item-image {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--noir);
  flex-shrink: 0;
}
.devis-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.devis-item-info {
  flex: 1;
}

.devis-item-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.devis-item-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.devis-item-total {
  color: var(--champagne);
  font-weight: 600;
}

.devis-item-remove {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
}
.devis-item-remove:hover {
  border-color: #e74c3c;
  color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}

.devis-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 12px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.devis-subtotal-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--champagne);
}

.devis-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}

/* Billing form column */
.devis-form-col {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  padding: 32px;
}

.devis-textarea {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  width: 100%;
  resize: vertical;
}
.devis-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.devis-textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

/* ================================================
   UPSELL — Devis page
   ================================================ */
.upsell-section {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.upsell-header {
  margin-bottom: 24px;
}

.upsell-line {
  width: 32px;
  height: 2px;
  background: var(--champagne);
  margin-bottom: 12px;
}

.upsell-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--champagne);
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.upsell-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.upsell-card:hover {
  border-color: rgba(201,169,97,0.25);
}

.upsell-img-wrap {
  background: rgba(255,255,255,0.02);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.upsell-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.upsell-card:hover .upsell-img-wrap img {
  transform: scale(1.05);
}

.upsell-body {
  padding: 20px;
}

.upsell-name {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 4px;
  transition: color 0.25s;
}
.upsell-card:hover .upsell-name,
a:hover .upsell-name {
  color: var(--champagne);
}

.upsell-tagline {
  font-family: var(--font-heading);
  font-size: 13px;
  font-style: italic;
  color: var(--champagne);
  opacity: 0.7;
  margin-bottom: 8px;
}

.upsell-stats {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.upsell-price {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.upsell-price strong {
  color: var(--champagne);
  font-weight: 700;
}

.upsell-actions {
  display: flex;
  gap: 8px;
}

.upsell-select {
  background: #111;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 10px 32px 10px 12px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--white);
  outline: none;
  cursor: pointer;
  flex: 1;
  min-width: 0;
  transition: border-color 0.25s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C9A961' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.upsell-select:focus { border-color: var(--champagne); }
.upsell-select option { background: #111; color: var(--white); }

.upsell-actions .btn--sm {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 16px;
  font-size: 11px;
}

@media (max-width: 768px) {
  .upsell-grid { grid-template-columns: 1fr; }
  .upsell-card { grid-template-columns: 100px 1fr; }
  .upsell-img-wrap { padding: 12px; }
  .upsell-body { padding: 14px; }
  .upsell-actions { flex-direction: column; gap: 8px; }
  .upsell-name { font-size: 13px; }
}

/* ================================================
   DEVIS SUCCESS
   ================================================ */
.devis-success {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 80px;
}

.devis-success-inner {
  text-align: center;
  max-width: 480px;
}

.devis-success-icon {
  margin-bottom: 32px;
}

.devis-success-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  margin-bottom: 16px;
}

.devis-success-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ================================================
   CATALOGUE & DEVIS — RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .cat-card {
    grid-template-columns: 1fr 1.2fr;
  }
  .devis-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cat-page-section {
    padding: 100px 24px 60px;
  }
  .cat-card {
    grid-template-columns: 1fr;
  }
  .cat-card-image-wrap {
    aspect-ratio: 4/3;
  }
  .cat-card-body {
    padding: 24px;
  }
  .cat-card-actions {
    flex-direction: column;
  }
  .cat-qty-select {
    width: 100%;
  }
  .cat-add-btn {
    width: 100%;
    justify-content: center;
  }

  .sticky-cart-inner {
    padding: 0 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .produit-gallery {
    flex-direction: column-reverse;
  }
  .produit-thumbs {
    flex-direction: row;
  }
  .produit-thumb {
    width: 60px;
    height: 60px;
  }

  .devis-section {
    padding: 100px 24px 60px;
  }
  .devis-grid {
    grid-template-columns: 1fr;
  }
  .devis-form-col {
    padding: 24px;
  }
  .devis-item-details {
    flex-wrap: wrap;
    gap: 4px;
  }

  .toast-notification {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .cat-card-name {
    font-size: 22px;
  }
  .cat-pricing-table {
    font-size: 12px;
  }
  .devis-cart-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .devis-item-details {
    justify-content: center;
  }
}

/* ================================================
   PRODUCT PAGE V2 — Terpenes, Cannabinoids, Tags
   ================================================ */

/* ---------- BADGE ---------- */
.pv2-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--champagne);
  border: 1px solid rgba(201, 169, 97, 0.4);
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  background: rgba(201, 169, 97, 0.06);
}

/* ---------- TAGLINE ---------- */
.pv2-tagline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--champagne);
  margin-bottom: 24px;
  line-height: 1.4;
}

/* ---------- STAT CARDS ---------- */
.pv2-stat-cards {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.pv2-stat-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px 20px;
  text-align: center;
  transition: border-color 0.25s;
}

.pv2-stat-card:hover {
  border-color: rgba(201, 169, 97, 0.3);
}

.pv2-stat-card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--champagne);
  margin-bottom: 6px;
}

.pv2-stat-card-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

/* ---------- TAGS ---------- */
.pv2-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.pv2-tags-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pv2-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: background 0.2s;
}

.pv2-tag--effect {
  border: 1px solid rgba(201, 169, 97, 0.4);
  color: var(--champagne);
  background: rgba(201, 169, 97, 0.06);
}

.pv2-tag--flavor {
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.04);
}

/* ---------- PV2 SECTIONS ---------- */
.pv2-section {
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pv2-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.pv2-section-header {
  margin-bottom: 40px;
}

.pv2-section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1.2;
}

/* ---------- TERPENE BAR CHART ---------- */
.pv2-terpenes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.pv2-terpenes-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pv2-terp-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pv2-terp-bar-name {
  width: 110px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
}

.pv2-terp-bar-track {
  flex: 1;
  height: 12px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
}

.pv2-terp-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(201, 169, 97, 0.6), var(--champagne));
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.pv2-terp-bar-value {
  width: 56px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--champagne);
  text-align: left;
}

.pv2-terp-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.pv2-terp-total-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--champagne);
}

/* ---------- TERPENE CARDS ---------- */
.pv2-terpenes-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pv2-terp-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #111;
  border: 1px solid rgba(201, 169, 97, 0.15);
  border-radius: 12px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.pv2-terp-card:hover {
  border-color: rgba(201, 169, 97, 0.35);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.06);
}

.pv2-terp-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 169, 97, 0.08);
  border-radius: 8px;
}

.pv2-terp-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pv2-terp-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.pv2-terp-card-aroma {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.3;
}

/* ---------- CANNABINOID GRID ---------- */
.pv2-cannabinoid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pv2-canna-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--champagne);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.pv2-canna-card:hover {
  border-color: rgba(201, 169, 97, 0.25);
  border-top-color: var(--champagne);
  box-shadow: 0 4px 16px rgba(201, 169, 97, 0.06);
}

.pv2-canna-card--highlight {
  border: 1px solid var(--champagne);
  border-top: 3px solid var(--champagne);
  background: rgba(201, 169, 97, 0.06);
}

.pv2-canna-card-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pv2-canna-card-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
}

/* ---------- COA SECTION ---------- */
.pv2-coa-section {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pv2-coa-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.pv2-coa-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.pv2-coa-text svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pv2-coa-text strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
}

.pv2-coa-text p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.pv2-coa-link {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--champagne);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.25s;
  white-space: nowrap;
}

.pv2-coa-link:hover {
  opacity: 0.7;
}

/* ================================================
   PRODUCT PAGE V2 — RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
  .pv2-terpenes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pv2-cannabinoid-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pv2-stat-cards {
    gap: 12px;
  }

  .pv2-stat-card-value {
    font-size: 22px;
  }

  .pv2-terpenes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pv2-terpenes-cards {
    grid-template-columns: 1fr;
  }

  .pv2-terp-bar-name {
    width: 85px;
    font-size: 12px;
  }

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

  .pv2-coa-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .pv2-section {
    padding: 40px 0;
  }

  .pv2-tags-row {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .pv2-cannabinoid-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .pv2-canna-card {
    padding: 16px 12px;
  }

  .pv2-canna-card-value {
    font-size: 20px;
  }

  .pv2-terp-bar-name {
    width: 70px;
    font-size: 11px;
  }

  .pv2-terp-bar-value {
    width: 48px;
    font-size: 12px;
  }

  .pv2-terp-card {
    padding: 12px;
  }

  .pv2-tagline {
    font-size: 17px;
  }
}

/* ================================================
   FERME PAGE
   ================================================ */

/* ---------- FERME HERO ---------- */
.ferme-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(24px, 6vw, 100px);
  overflow: hidden;
}

.ferme-hero-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: 60% center;
  will-change: transform;
  transition: transform 0.1s linear;
}

.ferme-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,9,7,0.9) 0%, rgba(10,9,7,0.6) 40%, rgba(10,9,7,0.15) 100%),
    linear-gradient(to top, rgba(10,9,7,0.65) 0%, transparent 35%);
}

/* ---------- FERME INTRO ---------- */
.ferme-intro {
  background: var(--creme);
  color: var(--noir);
  padding: 120px 40px;
}

.ferme-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ferme-intro .section-label { color: var(--champagne); }

.ferme-intro-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 28px;
}

.ferme-intro-text p {
  font-size: 15px;
  color: rgba(10,9,7,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ferme-intro-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ---------- FERME TECH ---------- */
.ferme-tech {
  background: var(--noir);
  padding: 120px 40px;
}

.ferme-tech-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.ferme-tech-header {
  text-align: center;
  margin-bottom: 64px;
}

.ferme-tech-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
}

.ferme-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.ferme-tech-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,97,0.15);
  border-radius: 12px;
  padding: 48px 40px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.ferme-tech-card:hover {
  border-color: rgba(201,169,97,0.4);
  box-shadow: 0 8px 40px rgba(201,169,97,0.08);
  transform: translateY(-4px);
}

.ferme-tech-icon {
  margin-bottom: 24px;
}

.ferme-tech-card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--white);
}

.ferme-tech-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ---------- FERME STRIP ---------- */
.ferme-strip {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ferme-strip-bg {
  position: absolute;
  inset: -40px;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.ferme-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,9,7,0.7);
}

.ferme-strip-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: 0 40px;
}

.ferme-strip-content blockquote {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  font-weight: 400;
  color: var(--creme);
  line-height: 1.5;
}

/* ---------- FERME GROWER ---------- */
.ferme-grower {
  background: var(--noir);
  padding: 120px 40px;
}

.ferme-grower-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ferme-grower-image img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.ferme-grower-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 28px;
}

.ferme-grower-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.ferme-grower-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(201,169,97,0.2);
}

.ferme-grower-stat {
  text-align: center;
}

.ferme-grower-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 6px;
}

.ferme-grower-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ---------- FERME PROCESS ---------- */
.ferme-process {
  background: var(--creme);
  color: var(--noir);
  padding: 120px 40px;
}

.ferme-process-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ferme-process .section-label { color: var(--champagne); }

.ferme-process-header {
  margin-bottom: 64px;
}

.ferme-process-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
}

.ferme-timeline {
  position: relative;
  padding-left: 48px;
}

.ferme-timeline-line {
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--champagne), rgba(201,169,97,0.2));
}

.ferme-timeline-step {
  position: relative;
  padding-bottom: 48px;
}

.ferme-timeline-step:last-child {
  padding-bottom: 0;
}

.ferme-timeline-dot {
  position: absolute;
  left: -48px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--champagne);
  background: var(--creme);
  z-index: 2;
}

.ferme-timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--champagne);
}

.ferme-timeline-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--champagne);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.ferme-timeline-content h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--noir);
}

.ferme-timeline-content p {
  font-size: 15px;
  color: rgba(10,9,7,0.65);
  line-height: 1.7;
}

/* ---------- FERME COA ---------- */
.ferme-coa {
  background: var(--noir);
  padding: 100px 40px;
}

.ferme-coa-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ferme-coa-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  margin-bottom: 16px;
}

.ferme-coa-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.ferme-coa-image img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(201,169,97,0.2);
}

/* ---------- FERME RESPONSIVE ---------- */

@media (max-width: 1024px) {
  .ferme-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .ferme-tech-grid { grid-template-columns: 1fr 1fr; }
  .ferme-grower-inner { grid-template-columns: 1fr; gap: 48px; }
  .ferme-coa-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .ferme-hero {
    align-items: center;
    padding-top: 80px;
  }
  .ferme-hero-bg { background-position: 65% center; }
  .ferme-hero-overlay {
    background:
      linear-gradient(to right, rgba(10,9,7,0.88) 0%, rgba(10,9,7,0.4) 70%, rgba(10,9,7,0.2) 100%),
      linear-gradient(to top, rgba(10,9,7,0.5) 0%, transparent 30%);
  }

  .ferme-intro { padding: 80px 24px; }
  .ferme-intro-inner { grid-template-columns: 1fr; gap: 40px; }

  .ferme-tech { padding: 80px 24px; }
  .ferme-tech-grid { grid-template-columns: 1fr; }
  .ferme-tech-card { padding: 32px 24px; }

  .ferme-strip { height: 260px; }
  .ferme-strip-content { padding: 0 24px; }

  .ferme-grower { padding: 80px 24px; }
  .ferme-grower-inner { grid-template-columns: 1fr; gap: 40px; }
  .ferme-grower-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .ferme-process { padding: 80px 24px; }
  .ferme-timeline { padding-left: 40px; }
  .ferme-timeline-line { left: 11px; }
  .ferme-timeline-dot { left: -40px; width: 22px; height: 22px; }

  .ferme-coa { padding: 64px 24px; }
  .ferme-coa-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .ferme-grower-stat-number { font-size: 28px; }
  .ferme-grower-stats { grid-template-columns: repeat(2, 1fr); }
  .ferme-tech-card { padding: 28px 20px; }
}

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200,164,107,0.3);
  background: rgba(9,9,9,0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  border-color: #C8A46B;
  background: rgba(200,164,107,0.1);
}

/* ================================================
   LEGAL PAGES & 404
   ================================================ */

/* ---------- LEGAL SECTION ---------- */
.legal-section {
  padding: 140px 40px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 48px;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- 404 PAGE ---------- */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 80px;
}

.page-404-content {
  text-align: center;
}

.page-404-code {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 600;
  color: var(--champagne);
  line-height: 1;
  margin-bottom: 16px;
}

.page-404-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 16px;
}

.page-404-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ---------- LEGAL & 404 RESPONSIVE ---------- */
@media (max-width: 768px) {
  .legal-section {
    padding: 100px 24px 60px;
  }

  .page-404 {
    padding: 100px 24px 60px;
  }

  .page-404-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .page-404-code {
    font-size: 64px;
  }
}
