/* =========================================================
   Darmotic — darmotic.com
   Palette sampled directly from the company logo.
   All layout uses CSS logical properties so the Arabic (RTL)
   version mirrors correctly without a separate stylesheet.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand — measured from the logo file */
  --green-500: #60903C;   /* leaf / "DAR" wordmark */
  --green-600: #4E7A31;
  --green-700: #306024;   /* deep tree + ground curve */
  --green-800: #24491B;
  --green-050: #F2F6EE;
  --amber:     #A8843C;   /* the lit window — sole warm accent */
  --amber-soft:#C9A45E;

  --ink:       #0C0C0C;   /* house outline, "MOTIC" */
  --ink-800:   #1A1D19;
  --ink-700:   #2A2E27;

  /* Surfaces — true off-white, NOT a warm cream */
  --bg:        #FBFCFA;
  --surface:   #FFFFFF;
  --surface-2: #F4F6F2;
  --line:      #E2E7DD;

  /* Text */
  --text:      #14170F;
  --text-soft: #4A5243;   /* 7.4:1 on --bg */
  --text-mute: #626B5A;   /* 5.4:1 on --bg */
  --on-dark:        #F4F7F1;
  --on-dark-soft:   #C2CDB6;

  /* Type */
  --font-latin: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-arabic:'IBM Plex Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  --font: var(--font-latin);

  /* Motion — strong curves; built-in easings are too weak */
  --ease-out:  cubic-bezier(.23, 1, .32, 1);
  --ease-io:   cubic-bezier(.77, 0, .175, 1);
  --dur-fast:  140ms;
  --dur:       220ms;
  --dur-slow:  320ms;

  /* Radius — concentric: outer = inner + padding */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;

  /* Elevation — layered transparent shadows, never a flat border */
  --sh-1: 0 1px 2px rgba(12,12,12,.05), 0 2px 6px rgba(12,12,12,.04);
  --sh-2: 0 2px 4px rgba(12,12,12,.05), 0 8px 20px rgba(12,12,12,.07);
  --sh-3: 0 4px 8px rgba(12,12,12,.06), 0 18px 42px rgba(12,12,12,.11);

  /* Semantic z-scale — never arbitrary 9999 */
  --z-base: 1;
  --z-sticky: 20;
  --z-nav: 30;
  --z-fab: 40;

  --shell: 1180px;
  --shell-narrow: 780px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-block-start: 92px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge legacy */
}
html::-webkit-scrollbar {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: tabular-nums;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}

/* Arabic swaps the family and slightly loosens leading */
html[lang="ar"] body { --font: var(--font-arabic); line-height: 1.85; }

img, svg { display: block; max-inline-size: 100%; }
img { block-size: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3 { text-wrap: balance; line-height: 1.12; font-weight: 600; }
p { text-wrap: pretty; }

:focus-visible {
  outline: 3px solid var(--green-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  inset-block-start: -100px;
  inset-inline-start: 12px;
  z-index: calc(var(--z-nav) + 1);
  background: var(--ink);
  color: var(--on-dark);
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  transition: inset-block-start var(--dur) var(--ease-out);
}
.skip-link:focus { inset-block-start: 12px; }

/* ---------- Layout ---------- */
.shell {
  inline-size: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
}
.shell-narrow { inline-size: min(100% - 2.5rem, var(--shell-narrow)); }

.section { padding-block: clamp(4rem, 9vw, 7.5rem); }

.sec-head {
  max-inline-size: 62ch;
  margin-inline: auto;
  margin-block-end: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.sec-head--left { margin-inline: 0; text-align: start; }

.sec-title {
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  letter-spacing: -.025em;
}
.sec-lede {
  margin-block-start: 1rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-inline-size: 60ch;
}
.sec-head:not(.sec-head--left) .sec-lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-pad: .95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-block-size: 48px;
  padding: var(--btn-pad) 1.6rem;
  border: 0;
  border-radius: var(--r-md);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition-property: background-color, color, box-shadow, scale;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.btn:active { scale: .96; }
@media (prefers-reduced-motion: reduce) { .btn:active { scale: 1; } }

.btn-primary { background: var(--green-700); color: #fff; box-shadow: var(--sh-1); }
.btn-primary:hover { background: var(--green-800); box-shadow: var(--sh-2); }

.btn-ghost { background: transparent; color: var(--text); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { background: var(--surface-2); box-shadow: inset 0 0 0 1.5px var(--green-600); }

.btn-sm { min-block-size: 42px; padding: .55rem 1.1rem; font-size: .92rem; }
.btn-block { inline-size: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: var(--z-nav);
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color var(--dur) var(--ease-out),
              backdrop-filter var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.site-header.is-stuck { box-shadow: 0 1px 0 var(--line), var(--sh-1); }

/* ---------- Home Page Header (Transparent Overlay on Hero) ---------- */
.page-home .site-header {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.page-home .site-header:not(.is-stuck) .brand-mark {
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.85)) brightness(1.15);
}

.page-home .site-header:not(.is-stuck) .brand-text {
  color: #ffffff;
}

.page-home .site-header:not(.is-stuck) .nav-desktop a {
  color: rgba(255, 255, 255, 0.88);
}

.page-home .site-header:not(.is-stuck) .nav-desktop a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.page-home .site-header:not(.is-stuck) .nav-desktop a[aria-current="page"] {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.22);
}

.page-home .site-header:not(.is-stuck) .lang-switch {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-home .site-header:not(.is-stuck) .lang-btn {
  color: rgba(255, 255, 255, 0.8);
}

.page-home .site-header:not(.is-stuck) .lang-btn:hover {
  color: #ffffff;
}

.page-home .site-header:not(.is-stuck) .lang-btn.is-active {
  background: #ffffff;
  color: var(--green-700);
}

.page-home .site-header:not(.is-stuck) .cart-btn {
  color: #ffffff;
}

.page-home .site-header:not(.is-stuck) .cart-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.page-home .site-header:not(.is-stuck) .burger span {
  background: #ffffff;
}

.page-home .site-header.is-stuck {
  position: fixed;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), var(--sh-1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-block-size: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-weight: 700;
  letter-spacing: -.025em;
}
.brand-mark {
  inline-size: 62px;
  block-size: 62px;
  object-fit: contain;
  transition: transform var(--dur) var(--ease-out);
}
.brand:hover .brand-mark {
  transform: scale(1.04);
}
.brand-text {
  font-size: 1.38rem;
  letter-spacing: -.02em;
}

@media (max-width: 480px) {
  .header-inner { min-block-size: 70px; }
  .brand-mark { inline-size: 50px; block-size: 50px; }
  .brand-text { font-size: 1.25rem; }
}

.nav-desktop { display: none; gap: .35rem; }
.nav-desktop a {
  position: relative;
  padding: .55rem .85rem;
  border-radius: var(--r-sm);
  color: var(--text-soft);
  font-size: .95rem;
  font-weight: 500;
  transition: color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.nav-desktop a:hover { color: var(--text); background: var(--surface-2); }
.nav-desktop a[aria-current="page"] {
  color: var(--green-700);
  font-weight: 600;
  background: var(--green-050);
}

.header-actions { display: flex; align-items: center; gap: .6rem; margin-inline-start: auto; position: relative; }

.lang-switch {
  display: inline-flex;
  padding: 3px;
  background: var(--surface-2);
  border-radius: var(--r-md);
}
.lang-btn {
  min-inline-size: 52px;
  min-block-size: 36px;
  padding-inline: .7rem;
  border: 0;
  border-radius: var(--r-sm);   /* concentric: 12 - 3 ≈ 8 */
  background: transparent;
  color: var(--text-mute);
  font-size: .76rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.is-active { background: var(--surface); color: var(--green-700); box-shadow: var(--sh-1); }

.header-cta { display: none; }

.burger {
  inline-size: 44px; block-size: 44px;
  display: grid; place-content: center; gap: 5px;
  border: 0; background: transparent; cursor: pointer;
  border-radius: var(--r-sm);
}
.burger span {
  display: block; inline-size: 20px; block-size: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-nav) + 10);
  background: rgba(12, 12, 12, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease-out), visibility var(--dur) var(--ease-out);
}
.nav-mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile {
  position: fixed;
  inset-block: 0;
  inset-inline-end: 0;
  inline-size: min(85vw, 320px);
  block-size: 100dvh;
  z-index: calc(var(--z-nav) + 11);
  background: var(--surface);
  box-shadow: var(--sh-3);
  display: flex;
  flex-direction: column;
  padding-block-start: calc(1.25rem + env(safe-area-inset-top, 0px));
  padding-block-end: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  padding-inline: 1.5rem;
  gap: 1.25rem;
  transform: translate3d(100%, 0, 0);
  transition: transform var(--dur-slow) var(--ease-out), visibility var(--dur-slow) var(--ease-out);
  visibility: hidden;
  overflow-y: auto;
  will-change: transform;
  -webkit-transform-style: preserve-3d;
}
html[dir="rtl"] .nav-mobile {
  transform: translate3d(-100%, 0, 0);
}
.nav-mobile.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block-end: 1rem;
  border-block-end: 1px solid var(--line);
}
.nav-mobile-header .brand-text {
  font-size: 1.1rem;
}
.nav-mobile-close {
  inline-size: 40px;
  block-size: 40px;
  display: grid;
  place-content: center;
  border: 0;
  background: var(--surface-2);
  color: var(--text);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease-out);
}
.nav-mobile-close:hover {
  background: var(--line);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.nav-mobile-links a, .nav-mobile > a {
  display: flex;
  align-items: center;
  padding: .85rem 1rem;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  border-radius: var(--r-md);
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.nav-mobile-links a:hover, .nav-mobile > a:hover {
  background: var(--surface-2);
}
.nav-mobile-links a[aria-current="page"], .nav-mobile > a[aria-current="page"] {
  color: var(--green-700);
  font-weight: 600;
  background: var(--green-050);
}

.nav-mobile-footer {
  margin-block-start: auto;
  padding-block-start: 1rem;
  border-block-start: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-nav a[aria-current="page"] { color: #fff; font-weight: 600; }

@media (min-width: 900px) {
  .brand { flex: 1; }
  .nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
  }
  .header-actions {
    flex: 1;
    justify-content: flex-end;
    margin-inline-start: 0;
  }
  .burger { display: none; }
  .header-cta { display: inline-flex; }
  .nav-mobile, .nav-mobile-overlay { display: none !important; }
}

/* ---------- Hero (Full-Screen Video like reshma.ma) ---------- */
.hero {
  position: relative;
  min-block-size: 100vh;   /* fallback for browsers without dvh */
  min-block-size: 100dvh;  /* fills the viewport exactly, header floats over it */
  display: grid;
  align-items: center;
  padding-block: clamp(4.5rem, 9vw, 7.5rem);
  overflow: hidden;
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--ink-800);
}

.hero-bg-video {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: brightness(0.78) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 18, 12, 0.62) 0%,
    rgba(14, 18, 12, 0.42) 45%,
    rgba(14, 18, 12, 0.88) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  max-inline-size: min(100%, 780px);
}

.hero-copy {
  max-inline-size: 64ch;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem 1rem .45rem .8rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.pulse-dot {
  inline-size: 8px;
  block-size: 8px;
  border-radius: 50%;
  background: #52E052;
  box-shadow: 0 0 0 0 rgba(82, 224, 82, 0.65);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(82, 224, 82, 0); }
  100% { box-shadow: 0 0 0 0 rgba(82, 224, 82, 0); }
}

.hero-title {
  margin-block-start: 1.5rem;
  font-size: clamp(2.6rem, 6.8vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.12;
  color: #ffffff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.hero-title em {
  font-style: normal;
  color: #6EDB48;
  text-shadow: 0 0 35px rgba(110, 219, 72, 0.45);
}

.hero-lede {
  margin-block-start: 1.4rem;
  max-inline-size: 56ch;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .pulse-dot { animation: none; }
}

/* ---------- Marquee strip ---------- */
.strip {
  background: var(--ink);
  color: var(--on-dark);
  padding-block: 1.1rem;
  overflow: hidden;
}
.marquee { position: relative; display: flex; overflow: hidden; }
.marquee-track {
  display: flex;
  flex-shrink: 0;
  gap: 2.6rem;
  padding-inline-end: 2.6rem;
  margin: 0;
  list-style: none;
  white-space: nowrap;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-track li {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .95rem; font-weight: 500; color: var(--on-dark-soft);
}
.marquee-track li::before {
  content: ""; inline-size: 6px; block-size: 6px; border-radius: 50%;
  background: var(--green-500); flex: none;
}
@keyframes slide { to { transform: translateX(-100%); } }
html[dir="rtl"] .marquee-track { animation-name: slideRtl; }
@keyframes slideRtl { to { transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; white-space: normal; }
}

/* ---------- Utility ---------- */
.visually-hidden {
  position: absolute;
  inline-size: 1px; block-size: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- Inner page header ---------- */
.page-head {
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, var(--green-050), transparent);
}
.page-head h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  letter-spacing: -.03em;
  max-inline-size: 20ch;
}
.page-lede {
  margin-block-start: 1.1rem;
  max-inline-size: 62ch;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }

/* ---------- Legal pages (mentions légales / confidentialité / CGU) ---------- */
.legal-updated { color: var(--text-mute); font-size: .85rem; margin-block-end: 2rem; }

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-block-end: 2.5rem;
}
.legal-toc a {
  padding: .5rem 1rem;
  border-radius: var(--r-pill);
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: .88rem;
  font-weight: 500;
  transition: border-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.legal-toc a:hover { border-color: var(--green-600); color: var(--green-700); }

.legal-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin-block-end: 1.5rem;
  scroll-margin-block-start: 6rem;
}
.legal-section h2 {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  letter-spacing: -.02em;
  margin-block-end: 1.1rem;
}
.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-block: 1.4rem .5rem;
}
.legal-section p { color: var(--text-soft); line-height: 1.7; margin-block-end: .8rem; }
.legal-section p:last-child { margin-block-end: 0; }
.legal-section ul {
  margin-inline-start: 1.3rem;
  color: var(--text-soft);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-block-end: .8rem;
}
.legal-section li::marker { color: var(--green-600); }
.legal-section strong { color: var(--text); }
.legal-section a { color: var(--green-700); text-decoration: underline; text-underline-offset: 2px; }

/* Flags a field that still needs the client's real business data before launch */
.legal-todo {
  display: inline;
  background: color-mix(in oklab, var(--amber) 16%, var(--surface));
  color: var(--amber);
  border: 1px solid color-mix(in oklab, var(--amber) 35%, var(--surface));
  border-radius: 4px;
  padding: .05rem .4rem;
  font-size: .84em;
  font-weight: 600;
}

/* ---------- Product filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-block-end: 1.2rem;
}
.chip {
  min-block-size: 42px;
  padding: .5rem 1.05rem;
  border: 0;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--text-soft);
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  transition-property: background-color, color, box-shadow, scale;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.chip:hover { background: var(--green-050); color: var(--green-800); }
.chip:active { scale: .96; }
.chip.is-active {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--sh-1);
}
@media (prefers-reduced-motion: reduce) { .chip:active { scale: 1; } }

/* ---------- Search + count ---------- */
.prod-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-block-end: 1.6rem;
}
.search-field {
  position: relative;
  flex: 1 1 260px;
  max-inline-size: 380px;
}
.search-field svg {
  position: absolute;
  inset-inline-start: .85rem;
  inset-block-start: 50%;
  translate: 0 -50%;
  inline-size: 18px; block-size: 18px;
  color: var(--text-mute);
  pointer-events: none;
}
.search-field input {
  inline-size: 100%;
  min-block-size: 48px;
  padding-block: .7rem;
  padding-inline: 2.6rem .9rem;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.search-field input:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(96,144,60,.18);
}
.filter-count {
  font-size: .9rem;
  color: var(--text-mute);
  font-variant-numeric: tabular-nums;
}

/* ---------- Product cards ---------- */
.prod-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
}
.prod {
  --pad: 1.35rem;
  display: flex;
  flex-direction: column;
  padding: var(--pad);
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--line);
  transition-property: box-shadow, translate;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.prod:hover { box-shadow: var(--sh-2), inset 0 0 0 1px transparent; translate: 0 -2px; }
@media (prefers-reduced-motion: reduce) { .prod:hover { translate: none; } }

/* Product photo — fixed aspect so the grid never jumps as images load */
.prod-media {
  margin: calc(var(--pad) * -1) calc(var(--pad) * -1) var(--pad);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-2);
  /* concentric: card radius minus the padding it sits inside */
  border-start-start-radius: var(--r-lg);
  border-start-end-radius: var(--r-lg);
}
.prod-media img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
  /* Supplier shots are on white; a hair of padding keeps them off the edge */
  padding: .5rem;
  transition: scale var(--dur-slow) var(--ease-out);
}
.prod:hover .prod-media img { scale: 1.03; }
@media (prefers-reduced-motion: reduce) { .prod:hover .prod-media img { scale: 1; } }

.prod-brand {
  align-self: start;
  padding: .2rem .6rem;
  margin-block-end: .7rem;
  border-radius: var(--r-sm);     /* concentric-ish inside --pad */
  background: var(--green-050);
  color: var(--green-800);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.prod-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.01em;
}
.prod-ref {
  margin-block-start: .3rem;
  font-size: .78rem;
  color: var(--text-mute);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}
.prod-desc {
  margin-block-start: .6rem;
  font-size: .89rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.prod-foot {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-block-start: auto;
  padding-block-start: 1rem;
}
.prod-price {
  font-size: .92rem;
  font-weight: 600;
  color: var(--green-800);
  font-variant-numeric: tabular-nums;
}
.prod-price--ask {
  font-weight: 500;
  font-size: .85rem;
  color: var(--text-mute);
}
.prod-actions { display: flex; gap: .5rem; }

/* Icon-only add-to-cart: small, square, secondary — "Acheter" carries the weight */
.prod-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  inline-size: 40px;
  block-size: 40px;
  border-radius: var(--r-sm);
  border: 0;
  background: var(--surface-2);
  color: var(--text);
  box-shadow: inset 0 0 0 1.5px var(--line);
  cursor: pointer;
  transition-property: background-color, box-shadow, scale;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.prod-cart-btn svg { inline-size: 18px; block-size: 18px; }
.prod-cart-btn:hover { box-shadow: inset 0 0 0 1.5px var(--green-600); }
.prod-cart-btn:active { scale: .92; }
.prod-cart-btn.is-added {
  background: var(--green-050);
  color: var(--green-700);
  box-shadow: inset 0 0 0 1.5px var(--green-600);
}
@media (prefers-reduced-motion: reduce) { .prod-cart-btn:active { scale: 1; } }

.prod-cta {
  flex: 1 1 auto;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  min-block-size: 40px;
  padding-inline: .9rem;
  border-radius: var(--r-sm);
  background: var(--green-700);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  white-space: nowrap;
  transition-property: background-color, scale;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.prod-cta:hover { background: var(--green-800); }
.prod-cta:active { scale: .96; }
@media (prefers-reduced-motion: reduce) { .prod-cta:active { scale: 1; } }

.cat-empty {
  padding-block: 3rem;
  text-align: center;
  color: var(--text-mute);
}

/* ---------- 404 page ---------- */
.error-page { padding-block: clamp(4rem, 12vw, 8rem); }
.error-page-inner {
  max-width: 34rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.error-code {
  font-family: var(--font-display, inherit);
  font-size: clamp(3.5rem, 12vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--green-700);
  margin-block-end: .5rem;
}
.error-title { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; }
.error-lede { color: var(--text-mute); margin-block-end: 1rem; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }

/* ---------- Brand marquee rows ---------- */
.brand-stage {
  padding-block: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  /* Rows fade out at both edges instead of being cut off hard */
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.brand-rows { display: grid; gap: 1rem; }

.brand-row {
  display: flex;
  gap: 1rem;
  inline-size: max-content;
  animation: brandSlide var(--speed, 50s) linear infinite;
}
.brand-row--reverse { animation-direction: reverse; }

/* Pausing on hover lets someone actually read a logo they spotted */
.brand-stage:hover .brand-row,
.brand-stage:focus-within .brand-row { animation-play-state: paused; }

@keyframes brandSlide {
  from { translate: 0 0; }
  to   { translate: -50% 0; }
}
/* In RTL the visual direction flips, so mirror the travel */
html[dir="rtl"] .brand-row { animation-name: brandSlideRtl; }
@keyframes brandSlideRtl {
  from { translate: 0 0; }
  to   { translate: 50% 0; }
}

.brand-track { display: flex; gap: 1rem; }

/* No card, no frame — the logo itself is the element that moves */
.brand-tile {
  display: grid;
  place-items: center;
  inline-size: clamp(130px, 17vw, 178px);
  min-block-size: 76px;
  padding-inline: .5rem;
  transition: scale var(--dur) var(--ease-out);
}
.brand-tile:hover { scale: 1.07; }
@media (prefers-reduced-motion: reduce) { .brand-tile:hover { scale: 1; } }

/* Logos show in their real brand colours at all times */
.brand-tile img {
  max-inline-size: 100%;
  max-block-size: 48px;
  object-fit: contain;
}

/* Wordmark fallback for brands with no logo file — brand colour throughout */
.brand-word {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
  color: var(--brand-color, var(--text));
}

@media (prefers-reduced-motion: reduce) {
  .brand-stage { mask-image: none; }
  .brand-row {
    animation: none;
    inline-size: auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand-track { flex-wrap: wrap; justify-content: center; }
}

/* ---------- "Why these brands" ---------- */
.why-grid {
  display: grid;
  gap: 1.6rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.why { padding-block-start: 2.6rem; position: relative; }
.why-num {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-600);
  font-variant-numeric: tabular-nums;
}
.why::after {
  content: "";
  position: absolute;
  inset-block-start: 1.75rem;
  inset-inline: 0;
  block-size: 1px;
  background: linear-gradient(to right, var(--line), transparent);
}
html[dir="rtl"] .why::after { background: linear-gradient(to left, var(--line), transparent); }
.why h3 { font-size: 1.1rem; letter-spacing: -.015em; }
.why p { margin-block-start: .5rem; font-size: .94rem; color: var(--text-soft); }

/* ---------- Callout note ---------- */
.note {
  --pad: clamp(1.5rem, 3.5vw, 2.4rem);
  padding: var(--pad);
  background: var(--green-050);
  border-radius: var(--r-xl);
}
.note h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); letter-spacing: -.02em; }
.note p {
  margin-block: .7rem 1.4rem;
  max-inline-size: 62ch;
  color: var(--text-soft);
}

/* ---------- Home: section head with a trailing link ---------- */
.home-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  max-inline-size: none;
}
.home-head .sec-lede { margin-block-start: .7rem; }

/* ---------- Home: preview cards that link onward ---------- */
.tease-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.tease {
  --pad: 1.6rem;
  display: block;
  padding: var(--pad);
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--line);
  cursor: pointer;
  transition-property: box-shadow, translate;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.tease:hover { box-shadow: var(--sh-3), inset 0 0 0 1px transparent; translate: 0 -3px; }
.tease:active { scale: .99; }
@media (prefers-reduced-motion: reduce) {
  .tease:hover { translate: none; }
  .tease:active { scale: 1; }
}

.tease--lead {
  background: linear-gradient(158deg, var(--ink) 0%, var(--ink-800) 62%, var(--green-800) 100%);
  color: var(--on-dark);
  box-shadow: var(--sh-2);
}
.tease-icon {
  inline-size: 44px; block-size: 44px;
  display: grid; place-content: center;
  margin-block-end: 1rem;
  border-radius: var(--r-md);      /* concentric with --pad */
  background: var(--green-050);
  color: var(--green-700);
}
.tease-icon svg { inline-size: 22px; block-size: 22px; }
.tease--lead .tease-icon { background: rgba(96,144,60,.2); color: #9CC46E; }

.tease h3 { font-size: 1.1rem; letter-spacing: -.015em; }
.tease--lead h3 { color: #fff; }
.tease p { margin-block-start: .55rem; font-size: .93rem; color: var(--text-soft); }
.tease--lead p { color: var(--on-dark-soft); }

@media (min-width: 900px) {
  .tease-grid { grid-template-columns: repeat(4, 1fr); }
  .tease--lead { grid-column: span 2; }
}

/* ---------- Home: closing call to action ---------- */
.cta-final {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}
.cta-final-inner {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.cta-final h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.025em;
  color: #fff;
}
.cta-final p {
  margin-block-start: .9rem;
  max-inline-size: 52ch;
  color: var(--on-dark-soft);
}
.cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-block-start: 1.8rem;
}
.btn-ghost--light {
  color: var(--on-dark);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.22);
  font-variant-numeric: tabular-nums;
}
.btn-ghost--light:hover {
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.42);
}

/* Oversized watermark of the mark — decorative, never blocks the text */
.cta-final-mark {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: -3%;
  inline-size: clamp(190px, 26vw, 300px);
  block-size: auto;
  translate: 0 -50%;
  opacity: .07;
  pointer-events: none;
  display: none;
}
@media (min-width: 780px) {
  .cta-final-mark { display: block; }
  .cta-final-inner { grid-template-columns: minmax(0, 1fr) auto; }
}

/* ---------- Services ---------- */
.svc-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
}
.svc {
  --pad: 1.7rem;
  padding: var(--pad);
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--line);
  transition-property: box-shadow, translate;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.svc:hover { box-shadow: var(--sh-3), inset 0 0 0 1px transparent; translate: 0 -3px; }
@media (prefers-reduced-motion: reduce) { .svc:hover { translate: none; } }

/* The lead card breaks the uniform grid on purpose */
.svc-lead {
  background: linear-gradient(158deg, var(--ink) 0%, var(--ink-800) 62%, var(--green-800) 100%);
  color: var(--on-dark);
  box-shadow: var(--sh-2);
}
.svc-lead h3 { color: #fff; }
.svc-lead p { color: var(--on-dark-soft); }

.svc-icon {
  inline-size: 46px; block-size: 46px;
  display: grid; place-content: center;
  margin-block-end: 1.1rem;
  border-radius: var(--r-md);        /* concentric with --pad */
  background: var(--green-050);
  color: var(--green-700);
}
.svc-icon svg { inline-size: 23px; block-size: 23px; }
.svc-lead .svc-icon { background: rgba(96,144,60,.2); color: #9CC46E; }

.svc h3 { font-size: 1.19rem; letter-spacing: -.015em; }
.svc p  { margin-block-start: .6rem; color: var(--text-soft); font-size: .96rem; }

.svc-list { margin-block-start: 1.2rem; padding: 0; list-style: none; display: grid; gap: .5rem; }
.svc-list li {
  position: relative;
  padding-inline-start: 1.5rem;
  font-size: .92rem;
  color: var(--on-dark-soft);
}
.svc-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: .62em;
  inline-size: 7px; block-size: 7px;
  border-radius: 50%;
  background: var(--green-500);
}

@media (min-width: 880px) {
  .svc-grid { grid-template-columns: repeat(6, 1fr); }
  .svc-lead { grid-column: span 3; grid-row: span 2; }
  .svc      { grid-column: span 3; }
  .svc-wide { grid-column: span 6; }
}
@media (min-width: 1080px) {
  .svc-lead { grid-column: span 2; grid-row: span 2; }
  .svc      { grid-column: span 2; }
  .svc-wide { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Method band (committed colour) ---------- */
.band {
  position: relative;
  background: var(--green-800);
  color: var(--on-dark);
}
.band::before,
.band::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  block-size: clamp(28px, 4vw, 56px);
  background: inherit;
}
.band::before { inset-block-start: 0;  translate: 0 -99%; clip-path: polygon(0 100%, 100% 0, 100% 100%); }
.band::after  { inset-block-end: 0; translate: 0 99%;  clip-path: polygon(0 0, 100% 0, 0 100%); }

.band .sec-lede { color: var(--on-dark-soft); }

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.step {
  counter-increment: step;
  position: relative;
  padding-block-start: 2.9rem;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  font-size: .93rem;
  font-weight: 600;
  color: var(--green-500);
  font-variant-numeric: tabular-nums;
}
.step::after {
  content: "";
  position: absolute;
  inset-block-start: 1.9rem;
  inset-inline: 0 0;
  block-size: 1px;
  background: linear-gradient(to right, rgba(96,144,60,.55), transparent);
}
html[dir="rtl"] .step::after { background: linear-gradient(to left, rgba(96,144,60,.55), transparent); }
.step h3 { font-size: 1.12rem; color: #fff; }
.step p  { margin-block-start: .5rem; font-size: .95rem; color: var(--on-dark-soft); }

/* ---------- Sectors split ---------- */
.split { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split-card {
  --pad: 2rem;
  padding: var(--pad);
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--line);
}
.split-card--dark {
  background: var(--ink);
  color: var(--on-dark);
  box-shadow: var(--sh-2);
}
.split-card h3 { font-size: 1.45rem; letter-spacing: -.02em; }
.split-card--dark h3 { color: #fff; }
.split-card > p { margin-block-start: .7rem; color: var(--text-soft); }
.split-card--dark > p { color: var(--on-dark-soft); }

.split-card ul { margin-block: 1.4rem; padding: 0; list-style: none; display: grid; gap: .6rem; }
.split-card li {
  position: relative;
  padding-inline-start: 1.7rem;
  font-size: .95rem;
  color: var(--text-soft);
}
.split-card--dark li { color: var(--on-dark-soft); }
.split-card li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: .45em;
  inline-size: 9px; block-size: 5px;
  border-inline-start: 2px solid var(--green-600);
  border-block-end: 2px solid var(--green-600);
  rotate: -45deg;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  min-block-size: 40px;
  font-weight: 500;
  color: var(--green-700);
  transition: gap var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.split-card--dark .link-arrow,
.link-arrow--light { color: #9CC46E; }
.link-arrow::after { content: "→"; transition: translate var(--dur) var(--ease-out); }
html[dir="rtl"] .link-arrow::after { content: "←"; }
.link-arrow:hover { gap: .75rem; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .7rem; }
.faq-item {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--line);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-block-size: 56px;
  padding: 1rem 1.4rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  transition: background-color var(--dur) var(--ease-out);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--surface-2); }

.faq-mark { position: relative; inline-size: 14px; block-size: 14px; flex: none; }
.faq-mark::before, .faq-mark::after {
  content: "";
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  inline-size: 14px; block-size: 2px;
  background: var(--green-700);
  border-radius: 2px;
  transition: rotate var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.faq-mark::after { rotate: 90deg; }
.faq-item[open] .faq-mark::after { rotate: 0deg; opacity: 0; }

.faq-body { padding: 0 1.4rem 1.3rem; color: var(--text-soft); font-size: .96rem; }
.faq-item[open] .faq-body { animation: faqIn var(--dur-slow) var(--ease-out); }
@keyframes faqIn { from { opacity: 0; translate: 0 -6px; } to { opacity: 1; translate: 0 0; } }
@media (prefers-reduced-motion: reduce) { .faq-item[open] .faq-body { animation: none; } }

/* ---------- Contact ---------- */
.contact { background: var(--surface-2); }
.contact-inner { display: grid; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (min-width: 900px) { .contact-inner { grid-template-columns: .9fr 1.1fr; } }

.contact .sec-title { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.contact-list { margin-block-start: 2rem; padding: 0; list-style: none; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; gap: .15rem; }
.cl-label { font-size: .8rem; font-weight: 600; color: var(--text-mute); text-transform: uppercase; letter-spacing: .06em; }
.contact-list a { font-size: 1.05rem; font-weight: 500; color: var(--green-700); }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }

.form {
  --pad: clamp(1.4rem, 3vw, 2rem);
  padding: var(--pad);
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2);
  display: grid;
  gap: 1rem;
}
.field { display: grid; gap: .4rem; }
.field-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.field label { font-size: .88rem; font-weight: 500; color: var(--text-soft); }
.field input, .field select, .field textarea {
  min-block-size: 48px;
  padding: .75rem .9rem;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.field textarea { min-block-size: 108px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(96,144,60,.18);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #B4442F; }
.err { font-size: .83rem; color: #B4442F; }

.form-note { font-size: .82rem; color: var(--text-mute); }
.form-ok {
  padding: .8rem 1rem;
  background: var(--green-050);
  border-radius: var(--r-md);
  color: var(--green-800);
  font-size: .92rem;
  font-weight: 500;
}
.form-cooldown {
  padding: .8rem 1rem;
  background: var(--surface-2);
  border-radius: var(--r-md);
}

/* Honeypot: kept in the layout (not display:none) so field-scanning bots
   still find and fill it, but moved off-screen so no visitor ever sees it. */
.hp-field {
  position: absolute;
  inset-inline-start: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Footer & Social Media ---------- */
.site-footer {
  position: relative;
  background: var(--ink);
  color: var(--on-dark-soft);
  padding-block-start: clamp(1.8rem, 3.5vw, 2.5rem);
  padding-block-end: 1rem;
  margin-block-start: 3rem;
}

.footer-wave {
  position: absolute;
  inset-block-start: calc(-1 * clamp(43px, 5.2vw, 67px));
  inset-inline-start: 0;
  inline-size: 100%;
  block-size: clamp(44px, 5.2vw, 68px);
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.footer-wave svg {
  inline-size: 100%;
  block-size: 100%;
  color: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.footer-brand img { inline-size: 44px; block-size: 44px; object-fit: contain; }
.footer-tag { margin-block-start: .5rem; font-size: .88rem; line-height: 1.45; }
.site-footer h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .07em; color: #fff; margin-block-end: .4rem; }
.footer-nav, .footer-contact, .footer-social { display: grid; gap: .25rem; align-content: start; }
.footer-nav a, .footer-contact a {
  min-block-size: 32px;
  display: flex;
  align-items: center;
  font-size: .88rem;
  transition: color var(--dur) var(--ease-out);
}
.footer-nav a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact p { font-size: .88rem; margin: 0; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
}
.social-links--contact {
  margin-block-start: .35rem;
}
.social-btn {
  inline-size: 36px;
  block-size: 36px;
  display: grid;
  place-content: center;
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text-soft);
  border: 1px solid var(--line);
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out), transform var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.site-footer .social-btn {
  background: rgba(255, 255, 255, 0.08);
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.12);
}
.social-btn:hover {
  background: var(--green-700);
  color: #ffffff;
  border-color: var(--green-700);
  transform: translateY(-2px);
}
.social-btn svg {
  inline-size: 17px;
  block-size: 17px;
}

.footer-bottom {
  margin-block-start: 1.5rem;
  padding-block-start: 1rem;
  border-block-start: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
}

/* ---------- Floating WhatsApp button ---------- */
.fab {
  position: fixed;
  inset-block-end: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  inset-inline-end: 1.25rem;
  z-index: var(--z-fab);
  inline-size: 58px;
  block-size: 58px;
  display: grid;
  place-content: center;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.42), var(--sh-2);
  transition-property: background-color, transform, box-shadow;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.fab svg {
  inline-size: 32px;
  block-size: 32px;
}
.fab:hover {
  background: #20BA5A;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), var(--sh-3);
}
.fab:active {
  transform: scale(0.95);
}
@media (prefers-reduced-motion: reduce) {
  .fab:hover, .fab:active { transform: none; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; translate: 0 14px; }
.reveal.is-in {
  opacity: 1;
  translate: 0 0;
  transition: opacity 520ms var(--ease-out), translate 520ms var(--ease-out);
}
/* Content must never depend on JS to become visible */
.no-js .reveal, html:not(.js) .reveal { opacity: 1; translate: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: none; }
  .reveal.is-in { transition: none; }
}

/* Show-more control under the product grid */
.prod-more-wrap {
  display: flex;
  justify-content: center;
  margin-block-start: 2rem;
}

/* ---------- Cart button in the header ---------- */
.cart-btn {
  position: relative;
  display: grid;
  place-content: center;
  inline-size: 44px;
  block-size: 44px;
  border-radius: var(--r-md);
  color: var(--text-soft);
  transition-property: background-color, color, scale;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.cart-btn:hover { background: var(--surface-2); color: var(--green-700); }
.cart-btn:active { scale: .96; }
@media (prefers-reduced-motion: reduce) { .cart-btn:active { scale: 1; } }
.cart-btn svg { inline-size: 22px; block-size: 22px; }

.cart-count {
  position: absolute;
  inset-block-start: 2px;
  inset-inline-end: 2px;
  min-inline-size: 18px;
  block-size: 18px;
  padding-inline: 4px;
  display: grid;
  place-content: center;
  border-radius: 999px;
  background: var(--green-700);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ---------- Cart dropdown side-page panel ---------- */
.cart-dropdown {
  position: absolute;
  inset-block-start: calc(100% + 8px);
  inset-inline-end: 0;
  inline-size: min(92vw, 360px);
  max-block-size: 80dvh;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-3);
  z-index: calc(var(--z-nav) + 20);
  opacity: 0;
  visibility: hidden;
  translate: 0 10px;
  scale: 0.96;
  transform-origin: top right;
  transition: opacity var(--dur) var(--ease-out), visibility var(--dur) var(--ease-out), translate var(--dur) var(--ease-out), scale var(--dur) var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
html[dir="rtl"] .cart-dropdown {
  transform-origin: top left;
}
.cart-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  scale: 1;
}

.cart-dd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1.1rem;
  border-block-end: 1px solid var(--line);
  background: var(--surface-2);
}
.cart-dd-title {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text);
}
.cart-dd-clear {
  border: 0;
  background: transparent;
  color: var(--text-mute);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  padding: .2rem .4rem;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
}
.cart-dd-clear:hover {
  color: #B4442F;
  background: rgba(180, 68, 47, 0.08);
}

.cart-dd-body {
  padding: .5rem;
  max-block-size: 280px;
  overflow-y: auto;
  flex: 1;
}

.cart-dd-empty {
  padding: 2.2rem 1rem;
  text-align: center;
  display: grid;
  place-items: center;
  gap: .6rem;
  color: var(--text-mute);
  font-size: .9rem;
}
.cart-dd-empty-icon {
  inline-size: 38px;
  block-size: 38px;
  color: var(--text-mute);
  opacity: .5;
}

.cart-dd-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .4rem;
}

.cart-dd-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem .75rem;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: background-color var(--dur) var(--ease-out);
}
.cart-dd-item:hover {
  background: var(--surface);
}

.cart-dd-thumb {
  inline-size: 40px;
  block-size: 40px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: var(--surface);
  flex-shrink: 0;
}
.cart-dd-thumb--placeholder {
  display: grid;
  place-content: center;
  color: var(--text-mute);
  border: 1px solid var(--line);
}
.cart-dd-thumb--placeholder svg {
  inline-size: 20px;
  block-size: 20px;
}

.cart-dd-info {
  flex: 1;
  min-inline-size: 0;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.cart-dd-name {
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--dur) var(--ease-out);
}
.cart-dd-name:hover {
  color: var(--green-700);
}
.cart-dd-brand {
  font-size: .75rem;
  color: var(--text-mute);
  font-weight: 500;
}

.cart-dd-qty {
  display: inline-flex;
  align-items: center;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  padding: 2px;
  gap: 2px;
}
.cart-dd-qty-btn {
  inline-size: 22px;
  block-size: 22px;
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  border-radius: 4px;
  display: grid;
  place-content: center;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.cart-dd-qty-btn:hover {
  background: var(--surface);
  color: var(--text);
}
.cart-dd-qty-num {
  font-size: .82rem;
  font-weight: 600;
  min-inline-size: 16px;
  text-align: center;
}

.cart-dd-remove {
  inline-size: 24px;
  block-size: 24px;
  border: 0;
  background: transparent;
  color: var(--text-mute);
  cursor: pointer;
  display: grid;
  place-content: center;
  border-radius: var(--r-sm);
  transition: color var(--dur) var(--ease-out), background-color var(--dur) var(--ease-out);
  flex-shrink: 0;
}
.cart-dd-remove:hover {
  color: #B4442F;
  background: rgba(180, 68, 47, 0.08);
}
.cart-dd-remove svg {
  inline-size: 14px;
  block-size: 14px;
}

.cart-dd-foot {
  padding: .75rem .9rem;
  border-block-start: 1px solid var(--line);
  background: var(--surface-2);
}

/* ---------- Product card: link wrapper + add button ---------- */
.prod-link { display: block; color: inherit; }
.prod-link:hover .prod-name { color: var(--green-700); }
.prod-name { transition: color var(--dur) var(--ease-out); }

.prod-add { border: 0; cursor: pointer; font: inherit; }
.prod-add.is-added { background: var(--green-050); color: var(--green-800); }
.prod-add.is-added:hover { background: var(--green-050); }
.prod-add--big { inline-size: auto; }

/* ---------- Breadcrumb ---------- */
.crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  margin-block-end: 1.6rem;
  font-size: .88rem;
  color: var(--text-mute);
}
.crumb a { color: var(--green-700); }
.crumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.crumb a::after { content: "/"; margin-inline-start: .5rem; color: var(--line); }

/* ---------- Product sheet ---------- */
.sheet {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
@media (min-width: 860px) { .sheet { grid-template-columns: 1fr 1fr; } }

.sheet-media {
  position: relative;             /* slides are positioned against this */
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--line);
  padding: 1.5rem;
  aspect-ratio: 4 / 3;            /* holds the height while slides float */
  overflow: hidden;
}

.sheet-info .prod-brand { margin-block-end: .9rem; }
.sheet-title {
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  letter-spacing: -.025em;
  line-height: 1.18;
}
.sheet-ref {
  margin-block-start: .5rem;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .85rem;
  color: var(--text-mute);
}
.sheet-price {
  margin-block-start: 1.1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-800);
}
.sheet-price.prod-price--ask { font-size: 1rem; font-weight: 500; color: var(--text-mute); }

.sheet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-block-start: 1.5rem;
}

.sheet-h {
  margin-block-start: 2rem;
  font-size: 1.05rem;
  letter-spacing: -.01em;
}
.sheet-h--wide { margin-block-start: clamp(2.5rem, 5vw, 4rem); }

.spec-list {
  margin-block-start: .9rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .5rem;
}
.spec-list li {
  position: relative;
  padding-inline-start: 1.4rem;
  font-size: .93rem;
  color: var(--text-soft);
}
.spec-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: .58em;
  inline-size: 6px;
  block-size: 6px;
  border-radius: 50%;
  background: var(--green-500);
}

.sheet-desc {
  margin-block-start: 1rem;
  max-inline-size: 72ch;
  display: grid;
  gap: 1rem;
}
.sheet-desc p { color: var(--text-soft); font-size: .98rem; }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; gap: clamp(1.6rem, 4vw, 2.6rem); align-items: start; }
@media (min-width: 900px) { .cart-layout { grid-template-columns: 1.35fr .65fr; } }

.cart-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--line);
  margin-block-end: .8rem;
}
.cart-thumb {
  flex: none;
  inline-size: 74px;
  block-size: 74px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border-radius: var(--r-md);
  overflow: hidden;
}
.cart-thumb img { max-inline-size: 100%; max-block-size: 100%; object-fit: contain; padding: 4px; }

.cart-mid { flex: 1 1 auto; min-inline-size: 0; }
.cart-name {
  font-weight: 500;
  font-size: .96rem;
  line-height: 1.35;
  transition: color var(--dur) var(--ease-out);
}
.cart-name:hover { color: var(--green-700); }

.qty {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  margin-block-start: .6rem;
  padding: 3px;
  background: var(--surface-2);
  border-radius: var(--r-md);
}
.qty button {
  inline-size: 34px;
  block-size: 34px;
  border: 0;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text-soft);
  font-size: 1.05rem;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.qty button:hover { background: var(--surface); color: var(--green-700); }
.qty-num {
  min-inline-size: 30px;
  text-align: center;
  font-size: .92rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.cart-del {
  flex: none;
  inline-size: 40px;
  block-size: 40px;
  border: 0;
  border-radius: var(--r-sm);
  background: transparent;
  color: var(--text-mute);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.cart-del:hover { background: #FDECEA; color: #B4442F; }

.cart-empty { padding-block: 3rem; text-align: center; }
.cart-empty p { color: var(--text-mute); margin-block-end: 1.2rem; }

.cart-actions { margin-block-start: 1rem; }
.link-danger {
  min-block-size: 40px;
  padding-inline: 0;
  border: 0;
  background: none;
  color: var(--text-mute);
  font-size: .9rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease-out);
}
.link-danger:hover { color: #B4442F; }

.cart-side {
  padding: clamp(1.3rem, 3vw, 1.8rem);
  background: var(--surface-2);
  border-radius: var(--r-xl);
  position: sticky;
  inset-block-start: 92px;
}
.cart-side h2 { font-size: 1.2rem; letter-spacing: -.015em; }
.cart-side-note {
  margin-block: .6rem 1.2rem;
  font-size: .9rem;
  color: var(--text-soft);
}
.cart-form { box-shadow: none; padding: 0; background: transparent; }
.cart-form .btn-ghost { background: var(--surface); }

/* ---------- Product sheet gallery (auto-cycling) ---------- */
.sheet-gallery { display: grid; gap: .9rem; }

/* Slides stack on top of each other and crossfade */
.sheet-slide {
  position: absolute;
  inset: 1.5rem;                 /* matches .sheet-media padding */
  inline-size: calc(100% - 3rem);
  block-size: calc(100% - 3rem);
  object-fit: contain;
  opacity: 0;
  /* Must finish well inside the 1s hold or slides overlap mid-fade */
  transition: opacity 280ms var(--ease-out);
}
.sheet-slide.is-active { opacity: 1; }

/* Thumbnail strip under the main image */
.sheet-thumbs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding-block-end: .25rem;
  scrollbar-width: thin;
}
.sheet-thumb {
  flex: none;
  inline-size: 66px;
  block-size: 66px;
  padding: 5px;
  border: 0;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: inset 0 0 0 1.5px var(--line);
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: .62;
  transition-property: box-shadow, opacity;
  transition-duration: var(--dur);
  transition-timing-function: var(--ease-out);
}
.sheet-thumb:hover { opacity: 1; box-shadow: inset 0 0 0 1.5px var(--green-600); }
.sheet-thumb.is-active {
  opacity: 1;
  box-shadow: inset 0 0 0 2px var(--green-700);
}
.sheet-thumb img { max-inline-size: 100%; max-block-size: 100%; object-fit: contain; }

@media (prefers-reduced-motion: reduce) {
  .sheet-slide { transition: none; }
}

/* Detail shots below the description */
.desc-shots {
  margin-block-start: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.desc-shot {
  background: var(--surface);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-1), inset 0 0 0 1px var(--line);
  padding: 1rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.desc-shot img { inline-size: 100%; block-size: auto; object-fit: contain; }

/* Price is a starting point, not a commitment — say so quietly */
.sheet-price-note {
  margin-block-start: .35rem;
  font-size: .82rem;
  color: var(--text-mute);
  max-inline-size: 46ch;
}

/* =========================================================
   Split page — brand panel beside a form card
   Used by contact.html and cart.html
   ========================================================= */
.split-page { padding-block: clamp(1.5rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem); }

.split-page-inner {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: start;
}
@media (min-width: 940px) {
  .split-page-inner { grid-template-columns: 1.05fr .95fr; }
  .split-page-inner--cart { grid-template-columns: .8fr 1.2fr; }
}

/* ---------- Left panel ---------- */
.panel {
  position: relative;
  overflow: hidden;
  min-block-size: clamp(360px, 52vw, 520px);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--r-xl);
  background: linear-gradient(168deg, var(--green-600) 0%, var(--green-700) 48%, var(--green-800) 100%);
  color: #fff;
  box-shadow: var(--sh-2);
}
@media (min-width: 940px) {
  .panel--sticky { position: sticky; inset-block-start: 92px; }
}

/* Floating tab, notched into the panel's top-left corner */
.panel-tab {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem .7rem;
  background: var(--bg);
  color: var(--text-soft);
  font-size: .82rem;
  font-weight: 500;
  border-end-end-radius: var(--r-lg);
}
.panel-tab::before {
  content: "";
  inline-size: 7px;
  block-size: 7px;
  border-radius: 50%;
  background: var(--green-600);
  flex: none;
}

.panel-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.panel-art svg { inline-size: 100%; block-size: 100%; }

.panel-copy { position: relative; z-index: 1; }
.panel-title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.14;
  color: #fff;
}
.panel-lede {
  margin-block-start: .9rem;
  max-inline-size: 44ch;
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, .88);
}

.panel-facts {
  margin-block-start: 1.6rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .75rem;
}
.panel-facts li { display: grid; gap: .1rem; }
.pf-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}
.panel-facts a, .panel-facts span:not(.pf-label) {
  font-size: .98rem;
  font-weight: 500;
  color: #fff;
}
.panel-facts a:hover { text-decoration: underline; text-underline-offset: 3px; }

.panel .social-links { margin-block-start: 1.4rem; }
.panel .social-btn {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  box-shadow: none;
}
.panel .social-btn:hover { background: rgba(255, 255, 255, .26); }

/* ---------- Right form card ---------- */
.form-card {
  --pad: clamp(1.4rem, 3vw, 2.2rem);
  padding: var(--pad);
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-2), inset 0 0 0 1px var(--line);
}
.form-card-title {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  letter-spacing: -.02em;
}
.form-card-note {
  margin-block: .6rem 1.3rem;
  font-size: .92rem;
  color: var(--text-soft);
}
/* The form sits inside the card, so it drops its own shell */
.contact-form {
  margin-block-start: 1.4rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.form-card-note + .contact-form { margin-block-start: 0; }

/* Cart column: list first, send card underneath */
.cart-col { display: grid; gap: 1.2rem; align-content: start; }
.cart-col .cart-actions { margin-block-start: 0; }



/* ---------- Panel photo ---------- */
.panel-art img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  /* Muted and darkened so white headline text stays readable on any photo */
  opacity: .38;
  filter: saturate(.75) contrast(1.05);
}
/* Bottom-weighted scrim: keeps the copy legible over a busy image */
.panel-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(12, 12, 12, .05) 0%,
    rgba(12, 12, 12, .35) 55%,
    rgba(12, 12, 12, .72) 100%);
  pointer-events: none;
}

/* Hero Video Showcase */
.hero-video-card {
  position: relative;
  inline-size: 100%;
  max-inline-size: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-3), 0 0 0 1px rgba(0, 0, 0, 0.06);
  background: var(--surface);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.hero-video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3), 0 20px 40px rgba(48, 96, 36, 0.14);
}

.hero-video-wrapper {
  position: relative;
  inline-size: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-800);
}

.hero-video {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.05) 0%, rgba(12, 12, 12, 0.4) 100%);
  pointer-events: none;
}

.hero-video-badge {
  position: absolute;
  inset-block-end: 1rem;
  inset-inline-start: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-video-badge .pulse-dot {
  inline-size: 8px;
  block-size: 8px;
}
