:root {
  --green: #415c42;
  --green-deep: #2f4430;
  --green-mid: #527554;
  --green-soft: #6b8f6c;
  --sage: #c5d4c4;
  --mist: #e8eee8;
  --sand: #f4f6f3;
  --ink: #1a241a;
  --muted: #5a6b5a;
  --white: #ffffff;
  --line: rgba(65, 92, 66, 0.16);
  --shadow: 0 18px 40px rgba(26, 36, 26, 0.12);
  --radius: 4px;
  --header-h: 84px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Nunito Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}


/* ——— Header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--green-deep);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  justify-self: start;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-text span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.78;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.primary-nav {
  justify-self: center;
}

.primary-nav > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.35rem;
  align-items: center;
}

.primary-nav > ul > li > a {
  display: block;
  padding: 0.7rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.primary-nav > ul > li > a[href*="advies"] {
  position: relative;
  z-index: 600;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  justify-self: end;
}

.tool-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.tool-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.search-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  box-shadow: var(--shadow);
}

.search-panel.open {
  display: block;
}

.search-form {
  display: flex;
  gap: 0.75rem;
}

.search-form input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: var(--mist);
}

.search-form button {
  border: 0;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
}


/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.45rem;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--sage); color: var(--green-deep); }
.btn-primary:hover { background: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.45); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.08); }
.btn-dark { background: var(--green); color: var(--white); }
.btn-dark:hover { background: var(--green-deep); }


/* ——— Sections ——— */

.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
  color: var(--green-deep);
  line-height: 1;
}

.section-head p,
.section-intro {
  margin: 0.55rem 0 0;
  color: var(--muted);
  max-width: 42ch;
}

.link-more {
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

.link-more:hover {
  text-decoration: underline;
}


/* ——— Product grid ——— */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(197, 212, 196, 0.55), transparent 50%),
    linear-gradient(160deg, var(--mist), #d7e0d7);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.product-media {
  display: block;
}

.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: var(--radius);
}

.product-body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.product-cat {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-body h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--green-deep);
}

.product-body h3 a:hover {
  text-decoration: underline;
}

.product-price {
  margin-top: auto;
  padding-top: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-price strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--ink);
}

.product-snip {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.add-btn {
  border: 0;
  background: var(--green);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
}

.add-btn:hover {
  background: var(--green-deep);
}


/* ——— Trust ——— */

.trust {
  background: var(--green-deep);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  text-align: center;
  padding: 0.5rem;
}

.trust-item i {
  font-size: 1.5rem;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.trust-item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}


/* ——— Footer ——— */

.site-footer {
  background: #1f2a1f;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0;
  max-width: 28ch;
}

.footer-col h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  font-size: 1.1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--sage);
}

.footer-col a:hover {
  color: var(--sage);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-bottom .kvk {
  opacity: 0.55;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}


/* ——— Cart drawer ——— */

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 36, 26, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  background: var(--white);
  color: var(--ink);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -18px 0 45px rgba(26, 36, 26, 0.18);
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header {
  min-height: 78px;
  padding: 1.15rem 1.35rem;
  background: var(--green-deep);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.45rem;
  color: var(--white);
}

.cart-close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}

.cart-close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.cart-items {
  padding: 0 1.35rem;
  overflow: auto;
  flex: 1;
  background: var(--white);
}

.cart-empty {
  margin: 2rem 0;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--line);
  border-radius: 7px;
  background: var(--sand);
  color: var(--muted);
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img,
.cart-thumb {
  width: 76px;
  height: 76px;
  padding: 5px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--sand);
}

.cart-line__info { min-width: 0; }

.cart-line h4 {
  margin: 0 0 0.45rem;
  color: var(--green-deep);
  font-size: 0.96rem;
  line-height: 1.35;
}

.cart-line p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-line__controls {
  display: inline-grid;
  grid-template-columns: 32px 38px 32px;
  align-items: center;
  margin-top: 0.25rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
}

.cart-line__quantity-button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: var(--mist);
  color: var(--green-deep);
  font-weight: 700;
  cursor: pointer;
}

.cart-line__quantity-button:hover { background: var(--sage); }

.cart-line__quantity {
  display: grid;
  place-items: center;
  height: 32px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.cart-line__remove {
  display: block;
  margin-top: 0.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9a4037;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.cart-line__remove:hover { color: #6e2923; }

.cart-line__price-wrap {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-top: -0.1rem;
}

.cart-line__price {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.cart-line__full-price {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.cart-line__badge {
  display: inline-block;
  margin: 0 0 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(65, 92, 66, 0.12);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cart-line--unavailable {
  opacity: 0.72;
  border-color: rgba(160, 50, 40, 0.25);
}

.cart-line__soldout {
  margin: 0 0 8px;
  color: #8a2f26;
  font-size: 0.8rem;
  font-weight: 700;
}

.cart-unavailable-note {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(160, 50, 40, 0.08);
  color: #8a2f26;
  font-size: 0.84rem;
  line-height: 1.45;
}

.cart-deposit-note {
  margin: -0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.cart-footer {
  padding: 1.2rem 1.35rem 1.35rem;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 -10px 25px rgba(26, 36, 26, 0.05);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  width: 100%;
  color: var(--ink);
  font-size: 1rem;
}

#cartTotal {
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

#checkoutBtn {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 5px;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

#checkoutBtn:hover { background: var(--green-deep); transform: translateY(-1px); }
#checkoutBtn:disabled { background: #adb8ad; cursor: not-allowed; transform: none; }


/* ——— Toast ——— */

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(120%);
  background: var(--green-deep);
  color: var(--white);
  padding: 0.85rem 1.2rem;
  border-radius: var(--radius);
  z-index: 3000;
  transition: transform 0.3s ease;
  font-weight: 600;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}


/* ——— Animations ——— */

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ——— Inner pages ——— */

.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 85% 10%, rgba(197, 212, 196, 0.22), transparent 50%),
    linear-gradient(145deg, var(--green-mid), var(--green-deep));
  color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.page-hero--compact {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0.75rem 0 0.65rem;
  line-height: 1;
}

.page-hero p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.breadcrumb a:hover {
  text-decoration: underline;
}


/* ——— Product page ——— */

.product-page {
  padding-top: 2rem;
}

.product-page > .container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

#productContent {
  width: 100%;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.product-gallery,
.product-info {
  min-width: 0;
  width: 100%;
  max-width: none;
}

.product-gallery__main {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 15%, rgba(197, 212, 196, 0.45), transparent 55%),
    linear-gradient(165deg, #f7f8f7, #eef2ee);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.product-gallery__thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery__thumb.is-active {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(65, 92, 66, 0.12);
}

.product-info {
  padding-top: 0.5rem;
  position: sticky;
  top: 2rem;
  align-self: start;
}

.product-info .product-cat {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info h1 {
  width: 100%;
  max-width: none;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
}

.product-lead-wrap {
  margin: 0 0 1.2rem;
}

.product-lead {
  max-width: 38rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.product-lead.is-collapsed {
  max-height: 7.2rem;
  overflow: hidden;
  mask-image: linear-gradient(#000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(#000 55%, transparent 100%);
}

.product-lead.is-expanded {
  max-height: none;
  mask-image: none;
  -webkit-mask-image: none;
}

.product-lead-toggle {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.product-lead-toggle:hover {
  color: var(--ink);
}

.product-lead p {
  margin: 0;
}

.product-lead > *:first-child {
  margin-top: 0;
}

.product-lead > *:last-child {
  margin-bottom: 0;
}

.product-lead ul,
.product-lead ol {
  display: none;
}

.product-lead strong,
.product-lead b {
  color: var(--ink);
  font-weight: 600;
}

.product-lead a {
  color: var(--green-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-buy-actions {
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.product-add-button--preorder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 52px;
  padding: 0.7rem 1rem;
  background: var(--green-deep);
  line-height: 1.2;
}

.product-add-button__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.product-add-button__meta {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

.product-deposit-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-deposit-note strong {
  color: var(--ink);
}

.product-preorder-info {
  margin: 1rem 0 0;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(45, 74, 52, 0.22);
  border-left: 3px solid var(--green-deep, #2d4a34);
  border-radius: 10px;
  background: #f4f7f4;
  color: var(--ink, #1a2420);
}

.product-preorder-info__title {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-preorder-info__body,
.product-preorder-info__deposit,
.product-preorder-info__reserved {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted, #5a635c);
}

.product-preorder-info__reserved {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--ink, #1a2420);
}

.product-price-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.product-price-lg {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.product-price-old {
  margin: 0;
  color: var(--muted);
  text-decoration: line-through;
}

.product-tax-note {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
}


.product-buy {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-buy__row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 1rem;
}

.product-accessories[hidden] {
  display: none !important;
}

.product-accessories__title {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.product-accessory-option {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-accessory-option__copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.product-accessory-option__note {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.35;
}

.product-accessory-option:hover {
  border-color: rgba(65, 92, 66, 0.35);
  box-shadow: 0 8px 20px rgba(26, 36, 26, 0.06);
}

.product-accessory-option.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.product-accessory-option__input {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  accent-color: var(--green);
}

.product-accessory-option__thumb {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  color: var(--green-deep);
}

.product-accessory-option__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-accessory-option__label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.product-accessory-option__price {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.product-accessory-option__price--preorder {
  display: grid;
  gap: 0.2rem;
  justify-items: end;
  text-align: right;
  white-space: normal;
}

.product-accessory-option__price-total {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}

.product-accessory-option__price-deposit {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1.35;
}

.qty-field {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.qty-control {
  display: grid;
  grid-template-columns: 40px 64px 40px;
  align-items: stretch;
}

.qty-control button,
.qty-control input {
  min-height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
}

.qty-control button { cursor: pointer; }
.qty-control button:first-child { border-radius: 6px 0 0 6px; }
.qty-control button:last-child { border-radius: 0 6px 6px 0; }

.qty-control input {
  width: 64px;
  border-right: 0;
  border-left: 0;
  text-align: center;
}

.product-add-button { min-height: 46px; }

.product-stock {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.8rem 0 1.25rem;
  font-weight: 600;
}

.product-stock i { color: var(--green); }

.product-usps {
  list-style: none;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
}

.product-usps li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.product-usps i {
  font-size: 0.72rem;
  color: var(--green);
}

.product-summary {
  margin-top: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.product-summary h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.product-summary__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-summary__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.product-summary__item > i {
  flex: 0 0 auto;
  color: var(--green-deep);
  font-size: 1rem;
}

.product-summary__item div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem;
  min-width: 0;
}

.product-summary__item strong {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.2;
}

.product-summary__item span {
  color: var(--muted);
  font-size: 0.82rem;
}

.product-tabs {
  width: 100%;
  max-width: 1100px;
  margin: 2.5rem auto 0;
}

.product-tabs__nav {
  display: flex;
  gap: 0.15rem;
  border-bottom: 1px solid var(--line);
}

.product-tabs__btn {
  position: relative;
  padding: 0.85rem 1.15rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.product-tabs__btn:hover {
  color: var(--ink);
}

.product-tabs__btn.is-active {
  color: var(--ink);
  border-bottom-color: var(--green);
}

.product-tabs__panel {
  display: none;
  padding: 2rem 0 0.75rem;
}

.product-tabs__panel.is-active {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-tabs__panel [hidden] {
  display: none !important;
}

.product-tab-section__title {
  margin: 0 0 1.15rem;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-detail-section > h3 {
  margin: 0 0 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--green);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

/* Legacy fallback for pages not yet converted */
.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 5rem;
  row-gap: 4rem;
  padding-top: 4rem;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}

.product-details__block { min-width: 0; }

.product-details__block h2 {
  margin: 0 0 1.5rem;
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

.product-description,
.rich-text-content {
  width: 100%;
  max-width: none;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.product-description {
  padding: 0 0 2.25rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.product-description p,
.rich-text-content p {
  margin: 0 0 1rem;
  max-width: 46rem;
}

.product-description__lead {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
}

.product-description__notice {
  margin-top: 1.15rem !important;
  margin-bottom: 0 !important;
  padding: 0.9rem 1rem;
  max-width: none !important;
  border-left: 3px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: var(--mist);
  color: var(--ink);
}

.product-description > *:first-child,
.rich-text-content > *:first-child {
  margin-top: 0;
}

.product-description > *:last-child,
.rich-text-content > *:last-child {
  margin-bottom: 0;
}

.product-description h2,
.product-description h3,
.rich-text-content h2,
.rich-text-content h3 {
  margin: 1.5rem 0 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

.product-description h2,
.rich-text-content h2 {
  font-size: 1.45rem;
}

.product-description h3,
.rich-text-content h3 {
  font-size: 1.05rem;
}

.product-description .rich-text-content > h3:first-child,
.rich-text-content > h3:first-child {
  margin-top: 0;
}

.product-description ul:not(.product-feature-list),
.product-description ol,
.rich-text-content ul,
.rich-text-content ol {
  margin: 0.75rem 0 1.1rem;
  padding-left: 1.15rem;
  max-width: 44rem;
}

.product-description ul:not(.product-feature-list) > li,
.product-description ol > li,
.rich-text-content li {
  margin-bottom: 0.5rem;
  padding-left: 0.15rem;
}

.product-description li:last-child,
.rich-text-content li:last-child {
  margin-bottom: 0;
}

.product-description strong,
.rich-text-content strong {
  color: var(--ink);
}

/* Feature bullets: echte lijst, rustige spacing */
.product-description ul.product-feature-list,
.product-description ol.product-feature-list,
.rich-text-content ul.product-feature-list,
.rich-text-content ol.product-feature-list {
  list-style: none;
  margin: 1.15rem 0 1.25rem;
  padding: 0;
  max-width: 44rem;
  display: grid;
  gap: 0.85rem;
}

.product-description .product-feature-list > li,
.rich-text-content .product-feature-list > li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.product-description .product-feature-list > li::before,
.rich-text-content .product-feature-list > li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
}

.product-description .product-feature-list > li strong,
.product-description .product-feature-list > li b,
.rich-text-content .product-feature-list > li strong,
.rich-text-content .product-feature-list > li b {
  color: var(--ink);
  font-weight: 700;
}

.product-description table,
.rich-text-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.product-description td,
.product-description th,
.rich-text-content td,
.rich-text-content th {
  padding: 0.75rem;
  border: 1px solid var(--line);
  text-align: left;
}

.product-description blockquote,
.rich-text-content blockquote {
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--green);
  background: var(--mist);
}

.product-elite-spotlight[hidden] {
  display: none !important;
}

.product-elite-spotlight {
  margin: 2.5rem 0 0;
  padding: 1.75rem;
  border: 1px solid rgba(65, 92, 66, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(65, 92, 66, 0.07), rgba(255, 255, 255, 0.9));
  box-shadow: 0 14px 36px rgba(26, 36, 26, 0.07);
}

.product-elite-spotlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.75rem;
  align-items: center;
}

.product-elite-spotlight__badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-elite-spotlight__title {
  margin: 0 0 0.75rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-elite-spotlight__text {
  margin: 0 0 1rem;
  max-width: 38rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.product-elite-spotlight__link {
  display: inline-block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-deep);
  text-decoration: none;
}

.product-elite-spotlight__link:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-elite-spotlight__video {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 10px 28px rgba(26, 36, 26, 0.12);
}

.product-elite-spotlight__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .product-elite-spotlight__inner {
    grid-template-columns: 1fr;
  }

  .product-elite-spotlight__video {
    order: -1;
  }
}

.product-detail-section {
  margin-top: 2.25rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-detail-section:first-of-type {
  margin-top: 2.25rem;
}

.product-detail-section + .product-detail-section {
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.product-detail-section[hidden] {
  display: none !important;
}

.spec-table {
  width: 100%;
  max-width: none;
  border-collapse: collapse;
  table-layout: fixed;
}

.spec-table tbody {
  display: grid;
  gap: 0;
}

.spec-table tr {
  display: grid;
  grid-template-columns: minmax(10rem, 0.95fr) minmax(0, 1.05fr);
  gap: 0.75rem 1.25rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
}

.spec-table tr:nth-child(odd) {
  background: var(--mist);
}

.spec-table th,
.spec-table td {
  padding: 0;
  border: 0;
  vertical-align: top;
  line-height: 1.45;
}

.spec-table th {
  width: auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
}

.spec-table td {
  width: auto;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  overflow-wrap: break-word;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.feature-item {
  display: grid;
  grid-template-columns: 1.35rem minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  min-height: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(26, 36, 26, 0.04);
}

.feature-item i {
  color: var(--green-deep);
  text-align: center;
}

.feature-item span {
  min-width: 0;
  overflow-wrap: break-word;
}

.feature-item.is-supported {
  border-color: rgba(65, 92, 66, 0.28);
}

.feature-item.is-not-supported {
  opacity: 0.65;
}

.rich-text-content > p:first-child {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-size: 0.95rem;
}

.rich-text-content ul,
.rich-text-content ol {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.15rem;
  max-width: none;
}

.rich-text-content li {
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.download-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 86px;
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.download-card:hover { transform: translateY(-2px); border-color: var(--green-soft); }
.download-card > i:first-child { color: var(--green-deep); font-size: 1.45rem; }
.download-card span { display: grid; min-width: 0; gap: 0.15rem; }
.download-card strong, .download-card small { overflow-wrap: break-word; }
.download-card small { color: var(--muted); font-size: 0.85rem; }

.product-back-link {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}

.product-back-link:hover {
  color: var(--ink);
}

.product-back--legacy {
  margin-top: 3rem;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
}

.product-loading,
.product-error {
  padding: 3rem 0;
}

.product-loading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-error { max-width: 44rem; }

#product-color {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.product-color {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}

.product-color__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}


/* ——— Catalog status ——— */

.catalog-status {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--ink);
  font-size: 0.95rem;
}

.catalog-status.is-ok { background: #e3eee4; color: var(--green-deep); }
.catalog-status.is-error { background: #f3e4e4; color: #6b2a2a; }

.catalog-empty {
  grid-column: 1 / -1;
  color: var(--muted);
}


/* ——— Epoch delivery strip ——— */

.epoch-delivery-strip {
  padding: 24px 0 14px;
  background: #f5f7f5;
}

.epoch-delivery-strip__inner {
  background: #ffffff;
  border: 1px solid rgba(35, 70, 47, 0.12);
  border-radius: 16px;
  padding: 22px 28px;
  box-shadow: 0 10px 28px rgba(30, 45, 35, 0.05);
}

.epoch-delivery-strip__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.epoch-delivery-strip__heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  min-width: 0;
}

.epoch-delivery-strip__eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #58705e;
  white-space: nowrap;
}

.epoch-delivery-strip__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: #17251b;
}

.epoch-delivery-strip__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: #eef5f0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #294e34;
}

.epoch-delivery-strip__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #4f9865;
  box-shadow: 0 0 0 4px rgba(79, 152, 101, 0.12);
}

.epoch-delivery-strip__progress { margin-top: 17px; }

.epoch-delivery-strip__progress-bar {
  width: 100%;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e5ebe7;
}

.epoch-delivery-strip__progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #527e5d;
}

.epoch-delivery-strip__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
}

.epoch-delivery-strip__bottom p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #68746b;
}

.epoch-delivery-strip__bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #315d3d;
}

.epoch-delivery-strip__bottom a:hover { text-decoration: underline; }
.epoch-delivery-strip__bottom a i { font-size: 0.75rem; transition: transform 0.2s ease; }
.epoch-delivery-strip__bottom a:hover i { transform: translateX(3px); }


/* ——— CRN Order delivery status (in bestellen section) ——— */

.crn-order__delivery-status {
  max-width: 780px;
  margin: 28px auto 34px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid rgba(35, 70, 47, 0.12);
  border-radius: 14px;
}

.crn-order__delivery-status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.crn-order__delivery-status-top > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.crn-order__delivery-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #617466;
}

.crn-order__delivery-status strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #17251b;
}

.crn-order__delivery-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #315d3d;
  white-space: nowrap;
}

.crn-order__delivery-live > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #57966a;
}

.crn-order__delivery-bar {
  height: 6px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4eae6;
}

.crn-order__delivery-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #527d5c;
}

.crn-order__delivery-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 9px;
  font-size: 0.86rem;
  color: #6b756e;
}

.crn-order__delivery-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #315d3d;
  white-space: nowrap;
}


/* (epoch catalog styles moved to epoch-page.css) */



/* ——— Section eyebrow (shared) ——— */

.section-eyebrow {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #607265;
}


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

@media (max-width: 1100px) {
  #epochProductGrid.product-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .epoch-catalog .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .product-info h1 {
    max-width: none;
  }

  .product-details {
    column-gap: 3rem;
  }
}

@media (max-width: 900px) {
  .brand-text { display: none; }
  .nav-toggle { display: flex; }

  .header-inner {
    display: flex;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav.open {
    display: grid;
    position: fixed;
    inset: 0;
    justify-self: auto;
    background: #1f2a1f;
    place-items: start center;
    padding: calc(var(--header-h) + 1.25rem) 1.25rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1002;
  }

  .nav-toggle {
    margin-left: auto;
    z-index: 1003;
  }

  .header-tools {
    margin-left: 0;
    justify-self: auto;
  }

  body.nav-open {
    overflow: hidden;
  }

  .primary-nav > ul {
    flex-direction: column;
    align-items: stretch;
    width: min(420px, 100%);
    gap: 0.35rem;
    padding-top: 0.5rem;
  }

  .primary-nav > ul > li > a {
    font-size: 1.2rem;
    padding: 0.85rem 0.25rem;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 800px) {
  .epoch-delivery-strip { padding: 18px 0 10px; }
  .epoch-delivery-strip__inner { padding: 18px 20px; }
  .epoch-delivery-strip__top { align-items: flex-start; flex-direction: column; gap: 12px; }
  .epoch-delivery-strip__heading { display: block; }
  .epoch-delivery-strip__eyebrow { display: block; margin-bottom: 5px; }
  .epoch-delivery-strip__heading h2 { font-size: 1.6rem; }
  .epoch-delivery-strip__progress { margin-top: 14px; }
  .epoch-delivery-strip__bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

@media (max-width: 780px) {
  .product-layout,
  .product-details {
    grid-template-columns: 1fr;
  }

  .product-info {
    position: static;
  }

  .product-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #chargingSection,
  #temperatureSection,
  #protectionsSection,
  #communicationSection,
  #downloadsSection {
    grid-column: auto;
  }

  .download-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .crn-order__delivery-status-top,
  .crn-order__delivery-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .crn-order__delivery-status-top > div { display: block; }
  .crn-order__delivery-eyebrow { display: block; margin-bottom: 3px; }
}


@media (max-width: 560px) {
  .container { width: min(1180px, calc(100% - 1.5rem)); }

  .product-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .header-inner { min-height: 72px; }
  .brand img { width: 52px; height: 52px; }

  .product-page > .container { width: calc(100% - 1.5rem); }
  .product-gallery__thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }

  .product-info h1 {
    max-width: none;
  }

  .product-summary { margin-top: 2rem; padding-bottom: 1.5rem; }
  .product-summary__grid, .download-grid { grid-template-columns: 1fr 1fr; }
  .product-details { gap: 3rem; padding-top: 3rem; }

  .spec-table { table-layout: auto; }
  .spec-table tbody { display: block; }
  .spec-table tr {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    margin-bottom: 0.35rem;
  }
  .feature-grid { grid-template-columns: 1fr; }

  .cart-panel { width: 100%; }
  .cart-header, .cart-footer { padding-right: 1rem; padding-left: 1rem; }
  .cart-items { padding-right: 1rem; padding-left: 1rem; }
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lang-switch a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.2rem 0.35rem;
  border-radius: 4px;
}
.lang-switch a[aria-current="true"],
.lang-switch a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.lang-switch span {
  color: rgba(255, 255, 255, 0.35);
}

