@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/static/fonts/manrope-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/static/fonts/manrope-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/static/fonts/manrope-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/static/fonts/manrope-latin-700.woff2") format("woff2");
}

:root {
  --primary: #214e3b;
  --primary-hover: #183d2e;
  --secondary: #6f8f7b;
  --green-soft: #e9f1ec;
  --background: #ffffff;
  --surface: #f7f8f4;
  --surface-warm: #f4f0e7;
  --search-bg: #f4f6f4;
  --text-primary: #18221d;
  --text-secondary: #66716b;
  --border: #e5e9e6;
  --border-card: #ecefed;
  --success: #287a50;
  --promo: #a85a4a;
  --footer: #183a2d;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-search: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 10px rgba(20, 40, 30, 0.04);
  --shadow-md: 0 4px 20px rgba(20, 40, 30, 0.06);
  --shadow-lg: 0 8px 30px rgba(20, 40, 30, 0.09);
  --font: Manrope, "Segoe UI", system-ui, sans-serif;
  --container: 1320px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
  --header-main: 76px;
  --header-nav: 48px;
  --ease: 180ms ease;
  --focus: 0 0 0 3px rgba(33, 78, 59, 0.28);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body.public { overflow-x: clip; }

body.public {
  margin: 0;
  background: var(--background);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hover); }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  margin: 0 0 var(--space-4);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.15;
}
h1 { font-size: 48px; line-height: 56px; font-weight: 700; }
h2 { font-size: 36px; line-height: 44px; }
h3 { font-size: 24px; line-height: 32px; font-weight: 650; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  background: var(--primary);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius-md);
}
.skip-link:focus { top: 8px; color: #fff; }

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section { padding: var(--space-9) 0; }
.section--tight { padding: var(--space-7) 0; }
.section--surface { background: var(--surface); }
.section--warm { background: var(--surface-warm); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.section-head h2 { margin: 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-3);
}
.muted { color: var(--text-secondary); }
.lead { font-size: 16px; line-height: 26px; color: var(--text-secondary); max-width: 42em; }

.link-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.link-more:hover { color: var(--primary-hover); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 650;
  font-size: 15px;
  line-height: 1;
  transition: background var(--ease), border-color var(--ease), transform 150ms ease, box-shadow var(--ease);
  text-align: center;
}
.btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); color: #fff; }
.btn:focus-visible { outline: none; box-shadow: var(--focus); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-header {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 999px;
}
.btn-lg { min-height: 54px; padding: 14px 28px; }
.btn-block { width: 100%; }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--border);
}
.btn-ghost:hover { background: var(--green-soft); color: var(--primary); border-color: var(--secondary); }
.btn-wa {
  background: #1f7a4d;
  border-color: #1f7a4d;
  color: #fff;
}
.btn-wa:hover { background: #18643e; color: #fff; }
.btn-icon {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  border-radius: var(--radius-md);
}
.btn-icon:hover { background: var(--surface); color: var(--primary); }
.btn-icon:focus-visible { outline: none; box-shadow: var(--focus); }
.btn-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; }

/* Forms */
.field { margin-bottom: var(--space-4); }
.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--text-primary);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--focus);
}
.field input::placeholder { color: #8a938e; }
.hp { position: absolute; left: -9999px; }
.consent {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-secondary);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
  flex-shrink: 0;
}
.form-error { color: var(--promo); font-size: 14px; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--green-soft);
  color: var(--primary);
}
.badge-promo { background: #f6e8e5; color: var(--promo); }
.badge-new { background: var(--surface-warm); color: #6a5a3a; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-secondary);
  margin: var(--space-5) 0 var(--space-4);
}
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span[aria-current] { color: var(--text-primary); }

/* Header */
.topbar {
  background: var(--primary);
  color: #fff;
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: min(var(--container), calc(100% - 32px));
}
.topbar span { display: inline-flex; align-items: center; gap: 6px; opacity: 0.95; }
.topbar svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.75; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 200ms ease, border-color 200ms ease;
}
body.is-scrolled .site-header {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.offer-banner + .site-header { top: 0; }

.header-main {
  height: var(--header-main);
  display: flex;
  align-items: center;
  gap: var(--space-5);
  transition: height 200ms ease;
}
body.is-scrolled .header-main { height: 64px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--primary);
}
.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #12281f;
  border-radius: 12px;
  height: 52px;
  padding: 6px 12px;
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 8px 18px rgba(18,40,31,.18);
}
.logo-badge img,
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.site-footer .logo-img { height: 48px; filter: none; }
.logo-word {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--primary);
}
.site-footer .logo-word,
.mobile-drawer .logo-word { color: #fff; }
.site-footer .logo { color: #fff; }

.flag-ch {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #da291c;
  border-radius: 3px;
  position: relative;
  flex-shrink: 0;
  vertical-align: -3px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.12);
}
.flag-ch--lg {
  width: 32px;
  height: 32px;
  border-radius: 5px;
  vertical-align: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.18);
}
.flag-ch::before,
.flag-ch::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.flag-ch::before { width: 10px; height: 3.2px; }
.flag-ch::after { width: 3.2px; height: 10px; }
.flag-ch--lg::before { width: 16px; height: 5px; }
.flag-ch--lg::after { width: 5px; height: 16px; }
.topbar .flag-ch { box-shadow: 0 0 0 1px rgba(255,255,255,.25); }
.badge-ch {
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--primary);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  height: 24px;
}
.badge-ch .flag-ch { width: 12px; height: 12px; }
.badge-ch .flag-ch::before { width: 7px; height: 2.2px; }
.badge-ch .flag-ch::after { width: 2.2px; height: 7px; }

.hero-swiss {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}
.section-kicker .flag-ch { margin-right: 6px; }

.search {
  flex: 1;
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}
.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--search-bg);
  border: 1px solid transparent;
  border-radius: var(--radius-search);
  height: 48px;
  padding: 0 16px;
  transition: background var(--ease), border-color var(--ease), box-shadow var(--ease);
}
.search-field:focus-within {
  background: #fff;
  border-color: var(--secondary);
  box-shadow: var(--focus);
}
.search-field svg { width: 20px; height: 20px; stroke: var(--text-secondary); fill: none; stroke-width: 1.75; flex-shrink: 0; }
.search-field input {
  flex: 1;
  border: 0;
  background: transparent;
  min-height: 44px;
  padding: 0;
  outline: none;
  font-size: 15px;
}
.search-results {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 8px;
  max-height: 360px;
  overflow: auto;
  z-index: 60;
}
.search-results.open { display: block; }
.search-results a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-primary);
}
.search-results a:hover,
.search-results a:focus { background: var(--surface); color: var(--text-primary); }
.search-results small { color: var(--text-secondary); font-size: 13px; }
.search-empty { padding: 16px; color: var(--text-secondary); font-size: 14px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-action {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  min-height: 44px;
  padding: 6px 10px;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}
.header-action svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.75; }
.header-action:hover { background: var(--surface); color: var(--primary); }
.header-action span { display: none; }
@media (min-width: 1100px) {
  .header-action span { display: block; }
}

.nav-bar {
  height: var(--header-nav);
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
}
.nav-list {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.nav-item { position: static; }
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid transparent;
}
.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.nav-link--promo { color: var(--promo); }

.mega {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: min(1080px, calc(100vw - 64px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  z-index: 55;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega { display: grid; }
.mega-grid {
  display: grid;
  gap: 16px;
}
.mega-grid--products {
  grid-template-columns: repeat(5, 1fr);
}
.mega-grid--products .mega-feature { min-height: 0; }

.pdp-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.pdp-thumb {
  width: 64px;
  height: 80px;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-thumb.is-active, .pdp-thumb:hover { border-color: var(--primary); }
.pdp-thumb:focus-visible { outline: none; box-shadow: var(--focus); }

.price-row--packs { grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); }
.price-box .contenu { font-size: 13px; color: var(--text-secondary); margin: 2px 0 6px; }

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.media-grid--5 { grid-template-columns: repeat(5, 1fr); }
.media-grid figure { margin: 0; }
.media-grid img {
  width: 100%;
  border-radius: var(--radius-lg);
  background: #1a1a1a;
}
.media-grid figcaption {
  font-size: 13px;
  line-height: 18px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.brand-video, .pdp-video {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  border-radius: var(--radius-xl);
  background: #111;
}
.story-visual--video { background: #111; padding: 0; overflow: hidden; }
.media-video-wrap { max-width: 420px; margin-inline: auto; text-align: center; }
.media-video-wrap h2 { margin-bottom: 16px; }

.site-footer .logo img { height: 44px; filter: none; }
.mega h3 {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin: 0 0 12px;
  font-weight: 700;
}
.mega a {
  display: block;
  padding: 6px 0;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.mega a:hover { color: var(--primary); }
.mega-feature {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-feature img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  background: #f7f8f6;
  border-radius: 12px;
}
.mega-feature strong { font-size: 15px; }
.mega-feature span { font-size: 13px; color: var(--text-secondary); line-height: 20px; }

.burger { display: none; }

/* Mobile drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 34, 29, 0.4);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 250ms ease, visibility 250ms ease;
}
.drawer-backdrop.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(100%, 420px);
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 250ms ease;
  display: flex;
  flex-direction: column;
  overflow: auto;
  pointer-events: none;
}
.mobile-drawer.open { transform: translateX(0); pointer-events: auto; }
.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav { padding: 8px 8px 32px; }
.mobile-nav details { border-bottom: 1px solid var(--border); }
.mobile-nav summary,
.mobile-nav > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 12px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav details a {
  display: block;
  padding: 8px 12px 8px 20px;
  color: var(--text-secondary);
  font-weight: 500;
  min-height: 44px;
}

/* Offer banner */
.offer-banner {
  background: var(--surface-warm);
  color: var(--text-primary);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.offer-banner .code {
  border: 1px dashed var(--secondary);
  padding: 2px 10px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--primary);
}
.countdown { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--primary); }

/* Hero */
.hero {
  padding: var(--space-6) 0 0;
}
.hero-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 560px;
  background: var(--surface-warm);
  border-radius: 28px;
  overflow: hidden;
}
.hero-copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy h1 { margin-bottom: 16px; max-width: 14ch; }
.hero-copy .lead { margin-bottom: 32px; max-width: 36em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual {
  background: linear-gradient(165deg, #eef4f0 0%, #d7e4dc 100%);
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.hero-carousel { position: absolute; inset: 0; }
.hero-slides { position: relative; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 900ms ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 48px 40px 64px;
  filter: drop-shadow(0 22px 36px rgba(20,40,30,.14));
}
.hero-slide.is-active img {
  animation: pack-float 5s ease-in-out infinite;
}
.hero-slide figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(24, 58, 45, .78);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  backdrop-filter: blur(8px);
}
.hero-nav {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--primary);
  font-size: 22px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.hero-nav.prev { left: 12px; }
.hero-nav.next { right: 12px; }
.hero-nav:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.hero-nav:focus-visible { outline: none; box-shadow: var(--focus); }
.hero-count {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(24, 58, 45, .78);
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(8px);
}

@keyframes pack-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.photo-circuit {
  margin-top: 20px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.photo-circuit:hover .photo-circuit-track { animation-play-state: paused; }
.photo-circuit-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: circuit-scroll 36s linear infinite;
  padding: 4px 0 8px;
}
.photo-circuit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  color: var(--text-primary);
  width: 168px;
}
.photo-circuit-item img {
  height: 140px;
  width: 168px;
  object-fit: contain;
  padding: 12px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border-card);
}
.photo-circuit-item span {
  font-size: 13px;
  font-weight: 650;
  color: var(--text-secondary);
}
.photo-circuit-item:hover { color: var(--primary); }
@keyframes circuit-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in { opacity: 1; transform: none; }

/* Trust */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: var(--space-5) 0 var(--space-6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--border-card);
  border-radius: 16px;
}
.trust-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.75;
  flex-shrink: 0;
}
.trust-item .flag-ch {
  width: 22px;
  height: 22px;
}
.trust-item .flag-ch::before { width: 12px; height: 4px; }
.trust-item .flag-ch::after { width: 4px; height: 12px; }
.trust-item span { display: block; font-size: 13px; color: var(--text-secondary); line-height: 18px; }

/* Need cards */
.need-scroller {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.need-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  color: var(--text-primary);
  min-height: 168px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.need-card:hover {
  color: var(--text-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.need-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
}
.need-icon svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.75; }
.need-card h3 { font-size: 16px; line-height: 22px; margin: 0; font-weight: 650; }
.need-card p { font-size: 13px; line-height: 18px; color: var(--text-secondary); margin: 0; flex: 1; }
.need-card .go { color: var(--primary); display: flex; }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(20, 40, 30, 0.1);
    border-color: transparent;
  }
}
.product-card .badges {
  display: flex;
  gap: 6px;
  min-height: 22px;
  margin-bottom: 8px;
}
.product-card .thumb {
  display: block;
  background: #f7f8f6;
  border-radius: 12px;
  aspect-ratio: 1 / 1.05;
  padding: 24px;
  margin-bottom: 16px;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card .brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 4px;
}
.product-card h3 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card h3 a { color: inherit; }
.product-card .benefit {
  font-size: 13px;
  line-height: 18px;
  color: var(--text-secondary);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 36px;
}
.product-card .price {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--text-primary);
  margin: 0 0 12px;
}
.product-card .price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}
.product-card .price .was {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: line-through;
  margin-left: 8px;
}
.product-card .btn { height: 46px; min-height: 46px; margin-top: auto; }

.h-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.h-scroll > * { scroll-snap-align: start; }

/* Category editorial */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  color: #fff;
  display: flex;
  align-items: end;
  padding: 20px;
}
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--surface);
  padding: 28px 16px 48px;
}
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(24, 34, 29, 0.55) 100%);
}
.cat-card span {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 18px;
}

/* Brand story */
.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.story-visual {
  background: var(--green-soft);
  border-radius: var(--radius-xl);
  padding: 48px;
  min-height: 420px;
  display: grid;
  place-items: center;
}
.story-visual img { max-height: 360px; object-fit: contain; }
.story-copy .lead { margin-bottom: 16px; }

/* Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.tab {
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.tab:hover { border-color: var(--secondary); }
.tab.is-active,
.tab[aria-selected="true"] {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.tab-panel[hidden] { display: none; }

/* Articles */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
@media (hover: hover) {
  .article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
}
.article-card .media {
  background: var(--surface);
  aspect-ratio: 16 / 10;
  padding: 20px;
}
.article-card .media img { width: 100%; height: 100%; object-fit: contain; }
.article-card .body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-card .cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--primary); }
.article-card h3 { font-size: 18px; line-height: 26px; margin: 0; }
.article-card p { font-size: 14px; line-height: 22px; color: var(--text-secondary); margin: 0; flex: 1; }

/* Newsletter / lead */
.newsletter {
  background: var(--green-soft);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.lead-form h2 { margin-bottom: 8px; }
.lead-form .form-intro { color: var(--text-secondary); margin-bottom: 24px; font-size: 15px; }

/* Product page */
.pdp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 32px 0 64px;
  align-items: start;
}
.pdp-gallery {
  background: #f7f8f6;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.pdp-gallery img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  margin-inline: auto;
}
.pdp-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}
.pdp h1 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 650;
  max-width: 18ch;
  margin-bottom: 12px;
}
.pdp-tagline { color: var(--text-secondary); margin-bottom: 20px; }
.benefits {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 22px;
}
.benefits svg {
  width: 18px;
  height: 18px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
  flex-shrink: 0;
}
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 8px 0 16px; }
.price-row.price-row--packs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
  position: relative;
  z-index: 2;
}
.price-box {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 14px 14px 16px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  width: 100%;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  pointer-events: auto;
  user-select: none;
  touch-action: manipulation;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.price-box .pack-radio {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 2px solid #c5cdc8;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: #fff;
}
.price-box .pack-body { display: flex; flex-direction: column; min-width: 0; }
.price-box:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.price-box.active {
  border-color: var(--primary);
  background: var(--green-soft);
  box-shadow: 0 0 0 2px rgba(33,78,59,.18);
}
.price-box.active .pack-radio {
  border-color: var(--primary);
}
.price-box.active .pack-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary);
}
.price-box:focus-visible { outline: none; box-shadow: var(--focus); }
.price-box .lbl { font-size: 13px; color: var(--text-secondary); }
.price-box .price { font-size: 20px; font-weight: 700; line-height: 28px; }
.price-box .save { font-size: 12px; color: var(--success); font-weight: 600; margin-top: 4px; }
.pack-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 650;
  color: var(--primary);
  margin: 8px 0 10px;
}
.pack-chosen {
  font-size: 14px;
  font-weight: 650;
  color: var(--primary);
  margin: 0 0 16px;
}
.pdp-cta { display: flex; gap: 12px; margin-bottom: 24px; }
.pdp-cta .btn { flex: 1; }
.reassure {
  display: grid;
  gap: 10px;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
}
.reassure li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  list-style: none;
}
.reassure ul { margin: 0; padding: 0; display: grid; gap: 10px; }
.reassure svg { width: 18px; height: 18px; stroke: var(--primary); fill: none; stroke-width: 1.75; }

.pdp-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 24px; border-bottom: 1px solid var(--border); }
.pdp-tabs a, .pdp-tabs button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 12px 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  min-height: 44px;
}
.pdp-tabs a:hover, .pdp-tabs button:hover, .pdp-tabs a.is-active, .pdp-tabs button.is-active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.pdp-section { padding: 24px 0 40px; max-width: 820px; }
.pdp-section h2 { font-size: 24px; margin-bottom: 16px; }
.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.comp-table th {
  text-align: left;
  background: var(--surface-warm);
  font-weight: 650;
  padding: 12px 16px;
}
.comp-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); }
.comp-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }

.pdp-sticky {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(20, 40, 30, 0.06);
  align-items: center;
  gap: 12px;
}
.pdp-sticky.is-visible { display: flex; }
.pdp-sticky .price { font-weight: 700; font-size: 18px; }
.pdp-sticky .btn { flex: 1; min-height: 48px; }

/* Accordion */
.faq details, .acc details {
  border-bottom: 1px solid var(--border);
}
.faq summary, .acc summary {
  cursor: pointer;
  font-weight: 600;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
}
.faq summary::-webkit-details-marker,
.acc summary::-webkit-details-marker { display: none; }
.faq p, .acc .acc-body { color: var(--text-secondary); margin: 0 0 16px; }

/* Location / category */
.page-intro { max-width: 52em; margin-bottom: 24px; color: var(--text-secondary); }
.subcats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 600;
}
.pill:hover { border-color: var(--primary); color: var(--primary); }
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}
.seo-after { padding-top: 48px; }
.city-cloud { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 14px; }
.city-cloud a { color: var(--text-secondary); }
.city-cloud a:hover { color: #fff; }

/* Offers */
.offer-card {
  background: #fff;
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 16px;
}
.offer-card h2 { font-size: 24px; }

/* Legal */
.prose { max-width: 760px; }
.prose h1 { margin-bottom: 24px; font-size: 36px; line-height: 44px; }
.prose h2 { margin-top: 32px; font-size: 24px; }
.prose p { color: var(--text-secondary); }

/* Contact split */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.info-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.info-card a.btn { margin-top: 12px; }

/* Footer */
.site-footer {
  background: var(--footer);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 40px;
  margin-top: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: #fff; }
.site-footer h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.site-footer .logo img { height: 44px; filter: none; }
.site-footer p { font-size: 14px; line-height: 22px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}

/* Sticky mobile CTAs (global, non-PDP) */
.cta-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.cta-sticky .btn { flex: 1; min-height: 46px; padding: 10px 8px; font-size: 14px; }

/* Exit */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 34, 29, 0.45);
  z-index: 90;
  display: none;
  place-items: center;
  padding: 16px;
}
.exit-overlay.open { display: grid; }
.exit-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.exit-card .close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-secondary);
}

/* Icon helper */
.icon { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* Responsive */
@media (max-width: 1280px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .need-scroller { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-grid--products { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .container { width: min(var(--container), calc(100% - 48px)); }
  h1 { font-size: 40px; line-height: 48px; }
  h2 { font-size: 30px; line-height: 38px; }
  .hero-panel { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 40px 32px 16px; }
  .hero-copy h1 { max-width: none; }
  .hero-visual { min-height: 400px; }
  .hero-slide img { padding: 24px 24px 56px; }
  .photo-circuit-item { width: 140px; }
  .photo-circuit-item img { height: 120px; width: 140px; }
  .pdp { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; padding: 24px; }
  .story, .newsletter-inner, .contact-grid { grid-template-columns: 1fr; }
  .price-row, .price-row--packs { grid-template-columns: 1fr; }
  .media-grid, .media-grid--5 { grid-template-columns: 1fr 1fr; }
  .mega-grid--products { grid-template-columns: 1fr 1fr; }
  .nav-bar { display: none; }
  .burger { display: inline-flex; }
  .header-action span { display: none; }
  .mega { display: none !important; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .article-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 32px); }
  h1, .hero-copy h1, .pdp h1, .prose h1 { font-size: 34px; line-height: 40px; }
  h2 { font-size: 28px; line-height: 34px; }
  h3 { font-size: 21px; line-height: 28px; }
  body.public { font-size: 15px; line-height: 24px; }
  .section { padding: 64px 0; }
  .header-main {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    grid-template-rows: auto auto;
    height: auto;
    padding: 8px 0 12px;
    gap: 8px;
  }
  .burger { grid-column: 1; grid-row: 1; }
  .logo { grid-column: 2; grid-row: 1; justify-content: center; }
  .logo-badge { height: 44px; padding: 4px 8px; }
  .logo-badge img, .logo-img { height: 32px; }
  .header-actions { grid-column: 3; grid-row: 1; margin-left: 0; }
  .search { grid-column: 1 / -1; grid-row: 2; max-width: none; }
  .search-results { position: fixed; left: 16px; right: 16px; top: auto; }
  .topbar .container { gap: 12px; overflow: hidden; }
  .topbar span:nth-child(n+3) { display: none; }
  .product-grid, .cat-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .need-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
  }
  .need-card { min-width: 200px; scroll-snap-align: start; }
  .cta-sticky { display: flex; }
  body.has-pdp-sticky .cta-sticky { display: none; }
  .site-footer { padding-bottom: 96px; }
  .newsletter { padding: 32px 20px; }
  .lead-form { padding: 24px 20px; }
  .hero-copy { padding: 32px 20px 8px; }
  .story-visual { min-height: 260px; padding: 24px; }
}

@media (max-width: 480px) {
  .product-grid, .article-grid, .cat-grid, .contact-grid, .footer-grid, .trust {
    grid-template-columns: 1fr;
  }
  .product-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
  }
  .product-card {
    min-width: min(280px, 82vw);
    scroll-snap-align: start;
  }
  .header-actions .header-action:not(.header-cart) { }
  .search-field { height: 44px; padding: 0 12px; }
  .btn { min-height: 46px; }
}

@media (min-width: 1920px) {
  .hero-panel { min-height: 600px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
