/** Shopify CDN: Minification failed

Line 768:43 Expected ")" to go with "("

**/
/* ENAEXA — Brand-consistent theme
   Kleuren: #FDC500 geel · #0d0d0d zwart · #ffffff wit · #f3f3f5 lichtgrijs
   Typografie: Montserrat (body/buttons) · Montserrat 900 als Codec Pro vervanging (headings)
*/

:root {
  /* Brand kleuren (brandbook exacte waarden) */
  --accent:     #FDC500;
  --accent-ink: #0d0d0d;
  --ink:        #0d0d0d;
  --ink-soft:   #6b6b6b;
  --ink-muted:  #9a9a9a;
  --bg:         #ffffff;
  --bg-soft:    #f3f3f5;
  --bg-card:    #f3f3f5;
  --line:       #e4e4e6;

  /* Typografie */
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: 'Montserrat', sans-serif;

  /* Fontgroottes (brandbook: headings 70-80pt → web ~4-5rem, subheadings 36-50pt → 2-3rem, body 16-20pt) */
  --text-h1:   clamp(2.4rem, 5.5vw, 4.4rem);
  --text-h2:   clamp(1.8rem, 3.5vw, 2.8rem);
  --text-h3:   clamp(1.15rem, 2vw, 1.5rem);
  --text-body: 1rem;
  --text-sm:   0.875rem;
  --text-xs:   0.75rem;

  /* Layout */
  --radius:    20px;
  --radius-sm: 10px;
  --maxw:      1440px;
  --pad:       clamp(16px, 3vw, 40px);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: var(--text-body);
  font-weight: 400;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* Typografische hiërarchie (brandbook) */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--ink);
}
/* H1 — Codec Pro equivalent: Montserrat 900, 70-80pt range */
h1 { font-size: var(--text-h1); font-weight: 900; }
/* H2 — Codec Pro equivalent: Montserrat 800, 36-50pt range */
h2 { font-size: var(--text-h2); font-weight: 800; }
/* H3 — Montserrat 700 */
h3 { font-size: var(--text-h3); font-weight: 700; }

/* Body tekst — Montserrat 400, 16-20pt */
p { margin: 0 0 1rem; color: var(--ink-soft); font-size: var(--text-body); font-weight: 400; line-height: 1.65; }

/* Label / eyebrow — Montserrat 700, uppercase, 12pt */
.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ---------- Buttons (brandbook: Montserrat 700, 12-20pt) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  padding: 13px 24px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  line-height: 1;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

/* Geel (accent) — voor lichte secties */
.btn--accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn--accent:hover { background: #e6b200; border-color: #e6b200; }

/* Zwart — primaire actie op gele of witte achtergrond */
.btn--dark, .btn--ink { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover, .btn--ink:hover { background: #222; border-color: #222; }

/* Outline zwart — secundaire actie */
.btn--ghost, .btn--outline-ink { background: transparent; border-color: rgba(13,13,13,0.3); color: var(--ink); }
.btn--ghost:hover, .btn--outline-ink:hover { background: rgba(13,13,13,0.06); }

/* Outline wit — voor donkere secties */
.btn--outline-white { background: transparent; border-color: rgba(255,255,255,0.4); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,0.1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo__img {
  height: 40px;
  width: auto;
  display: block;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.nav a:hover { color: var(--ink-soft); }
.header-actions { display: flex; align-items: center; gap: 14px; }

/* ---------- Audience toggle ---------- */
.aud-toggle {
  display: inline-flex;
  background: var(--bg-soft);
  border-radius: 100px;
  padding: 4px;
  border: 1px solid var(--line);
}
.aud-toggle button {
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all .2s ease;
}
.aud-toggle button.is-active {
  background: var(--ink);
  color: #fff;
}

/* show/hide based on body mode */
body[data-audience="b2c"] [data-show="b2b"] { display: none !important; }
body[data-audience="b2b"] [data-show="b2c"] { display: none !important; }

/* ---------- Producten dropdown ---------- */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 0;
  border: 0;
  background: none;
  line-height: 1;
}
.nav__chevron {
  font-size: 0.75rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  transition: transform .2s ease;
  color: var(--ink-soft);
  margin-top: 1px;
}
.nav__dropdown:hover .nav__chevron,
.nav__dropdown.is-open .nav__chevron { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
  min-width: 240px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 28px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
/* Onzichtbare brug tussen trigger en menu zodat muis er overheen kan */
.nav__dropdown-menu::after {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu { display: flex; }

.nav__dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  transition: background .15s ease;
}
.nav__dropdown-menu a:hover { background: var(--bg-soft); color: var(--ink); }

/* Categorie groepen in dropdown */
.nav__group { padding: 4px 0; }
.nav__group-title {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  padding: 6px 12px 2px;
}
.nav__group-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(24px, 4vw, 48px) 0 0;
  overflow: hidden;
  position: relative;
}
.hero__wave {
  width: 100%;
  line-height: 0;
  margin-top: clamp(24px, 4vw, 48px);
}
.hero__wave svg {
  display: block;
  width: 100%;
  height: clamp(40px, 5vw, 72px);
}
.hero--yellow {
  background: #FDC500;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: clamp(460px, 60vh, 680px);
}
.hero__content { padding: clamp(48px, 6vw, 80px) 0; }

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #0d0d0d;
  margin-bottom: 20px;
}
.hero__lead {
  font-size: 1.08rem;
  max-width: 36ch;
  margin-bottom: 32px;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.btn--ink { background: #0d0d0d; color: #fff; border-color: #0d0d0d; }
.btn--ink:hover { background: #222; }
.btn--outline-ink { background: transparent; border-color: rgba(0,0,0,0.3); color: #0d0d0d; }
.btn--outline-ink:hover { background: rgba(0,0,0,0.08); }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.15);
}
.hero__stat b { display: block; font-size: 1.35rem; font-weight: 800; color: #0d0d0d; }
.hero__stat span { font-size: 0.82rem; color: rgba(0,0,0,0.5); }

.hero__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.hero__product-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* legacy trust-row (other sections) */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.trust-row .stat b { display: block; font-size: 1.4rem; font-weight: 800; }
.trust-row .stat span { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Section heads ---------- */
.section { padding: clamp(48px, 7vw, 96px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, #fffdf2 0%, #fffae6 100%); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #b8b8bc; }
.section--ink .eyebrow { background: var(--accent); color: var(--accent-ink); }
.section--ink .eco__item { background: #1c1c1f; border-color: #2a2a2e; }
.section--ink .eco__item p { color: #aaa; }
.section__head { max-width: 60ch; margin-bottom: 44px; }
.section__head h2 { font-size: var(--text-h2); font-weight: 800; margin-bottom: 14px; }
.section__head p { font-size: 1.05rem; color: var(--ink-soft); font-weight: 400; }

/* ---------- Product categorie headers ---------- */
.prod-cat__title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin: 40px 0 16px;
}
.prod-cat__title:first-of-type { margin-top: 0; }

.cards.cards--4,
.cards.cards--1 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1100px) { .cards.cards--4, .cards.cards--1 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cards.cards--4, .cards.cards--1 { grid-template-columns: 1fr; } }

/* ---------- Product cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.pcard {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.pcard__tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pcard__name { margin: 6px 0 4px; font-size: 1.5rem; }
.pcard__desc { font-size: 0.96rem; margin-bottom: 18px; }
.pcard__visual {
  margin-top: auto;
  aspect-ratio: 16 / 11;
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.pcard__visual img { width: 100%; height: 100%; object-fit: cover; }
.pcard__specs { display: flex; gap: 18px; margin-bottom: 18px; flex-wrap: wrap; }
.pcard__specs div b { display: block; font-weight: 800; font-size: 1.05rem; }
.pcard__specs div span { font-size: 0.78rem; color: var(--ink-soft); }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.pcard__price { font-weight: 800; font-size: 1.25rem; }
.pcard__price small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--ink-soft); }

/* ---------- Ecosystem ---------- */
.eco {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.eco__item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.eco__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
  margin-bottom: 14px;
}
.eco__item h3 { font-size: 1.15rem; margin-bottom: 8px; }
.eco__item p { font-size: 0.92rem; margin: 0; }
.eco-image {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}
.eco-image img { width: 100%; height: auto; display: block; }

/* ---------- B2B band ---------- */
.band {
  background: var(--accent);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.band h2 { color: var(--accent-ink); }
.band p { color: #3a3413; font-size: 1.06rem; }
.band__list { list-style: none; padding: 0; margin: 18px 0 0; }
.band__list li { padding: 8px 0 8px 30px; position: relative; color: #2c280f; font-weight: 600; }
.band__list li::before {
  content: "✓"; position: absolute; left: 0; font-weight: 800;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #d8d8d8;
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.site-footer a { color: #d8d8d8; }
.site-footer a:hover { color: var(--accent); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer__brand .logo { color: #fff; font-size: 1.8rem; }
.footer__brand p { color: #9a9a9a; max-width: 30ch; margin-top: 12px; }
.footer__col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; color: #888; margin: 0 0 14px; }
.footer__col a { display: block; padding: 5px 0; font-size: 0.95rem; }
.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.85rem; color: #888;
}

/* ---------- Founders ---------- */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.founder { margin: 0; text-align: center; }
.founder img {
  width: 190px; height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}
.founder figcaption strong { display: block; font-size: 1.15rem; }
.founder figcaption span { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 560px) {
  .founders { grid-template-columns: 1fr; gap: 30px; }
}

/* ---------- Page / RTE ---------- */
.page-content { padding: clamp(40px,6vw,80px) 0; max-width: 760px; }
.page-content h1 { margin-bottom: 24px; }
.rte p { color: var(--ink); }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}
.contact-intro h1 { margin: 14px 0 16px; }
.contact-intro p { font-size: 1.08rem; max-width: 36ch; }
.contact-details { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-details li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 2px;
}
.contact-details li strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-soft); }
.contact-details li span { font-size: 1.05rem; }
.contact-details a { border-bottom: 1px solid var(--accent); }

.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 12px 40px rgba(0,0,0,.05);
}
.contact-form-title { font-size: 1.3rem; margin-bottom: 20px; }
.contact-card label { display: block; margin-bottom: 16px; }
.contact-card label span { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  transition: border-color .15s ease;
}
.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus { outline: none; border-color: var(--accent); }
.contact-card textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  background: #eafbe7; border: 1px solid #b6e6ad; color: #1d5f12;
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px;
}
.form-error {
  background: #fdecec; border: 1px solid #f3b6b6; color: #8a1f1f;
  padding: 14px 16px; border-radius: var(--radius-sm); margin-bottom: 18px;
}
@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Systeem Accordion ---------- */
.sys-acc {
  background: var(--bg-soft);
  padding: clamp(64px, 8vw, 120px) 0;
}
.sys-acc__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.sys-acc__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.sys-acc__intro {
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 42ch;
}
.sys-acc__items { display: flex; flex-direction: column; gap: 12px; }

.sys-acc__item {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--line);
  transition: border-color .2s ease;
}
/* details element: verwijder standaard marker */
.sys-acc__item summary { list-style: none; }
.sys-acc__item summary::-webkit-details-marker { display: none; }
.sys-acc__item[open] { border-color: var(--accent); }

.sys-acc__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.sys-acc__num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
  color: var(--ink-soft);
  flex: 0 0 auto;
  transition: background .2s, border-color .2s, color .2s;
}
.sys-acc__item[open] .sys-acc__num {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
}
.sys-acc__item-title {
  flex: 1;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.sys-acc__chevron {
  flex: 0 0 auto;
  color: var(--ink-muted);
  transition: transform .25s ease;
}
.sys-acc__item[open] .sys-acc__chevron { transform: rotate(180deg); }

.sys-acc__body p {
  padding: 0 20px 20px 62px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sys-acc__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .sys-acc__grid { grid-template-columns: 1fr; }
  .sys-acc__right { order: 0; }
  .sys-acc__left { order: 1; }
}

/* ---------- Mobile ---------- */
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__product-img { max-width: 480px; margin: 0 auto; }
  .eco { grid-template-columns: repeat(2, 1fr); }
  .band { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) {
  .eco { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .header-actions .btn { display: none; }
}

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

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ============ PRODUCT PAGE (PDP) ============ */
.pdp__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.pdp__gallery { position: sticky; top: 90px; }
.pdp__main-img {
  background: var(--bg-soft);
  border-radius: var(--radius);
  aspect-ratio: 4/3.2;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.pdp__main-img img { width: 100%; height: 100%; object-fit: contain; transition: opacity .2s ease; }
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.pdp__thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  background: var(--bg-soft);
  padding: 6px;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
  transition: border-color .15s ease;
}
.pdp__thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp__thumb.is-active { border-color: var(-