/* ==========================================================================
   AW Vergelijk - product vergelijken.
   Afgestemd op de shop (cyaan #00B1CF) en op ouderen (grote tekst, grote
   klikvlakken, hoog contrast). Coolblue/bol-niveau: rustige hovers, hairline
   borders, sticky productkop, eigen SVG-sterren, nette badges.
   ========================================================================== */

:root {
  --awvgl-accent: #0097b4;
  --awvgl-accent-ink: #007e97;
  --awvgl-accent-wash: #e3f4f8;
  --awvgl-buy: #00b1cf;
  --awvgl-buy-ink: #0097b4;
  --awvgl-ink: #14252b;
  --awvgl-soft: #48595f;
  --awvgl-muted: #7c8b90;
  --awvgl-faint: #9aa8ac;
  --awvgl-line: #e7eaea;
  --awvgl-line-strong: #d6dcdc;
  --awvgl-surface: #ffffff;
  --awvgl-surface-2: #f6f8f8;
  --awvgl-hover: #eef6f8;
  --awvgl-good: #1f9d57;
  --awvgl-good-bg: #e6f6ec;
  --awvgl-star: #f5a623;
  --awvgl-star-off: #dfe4e4;
  --awvgl-r: 12px;
  --awvgl-r-sm: 9px;
  --awvgl-ease: 0.16s cubic-bezier(0.4, 0, 0.2, 1);
  --awvgl-shadow-sm: 0 1px 2px rgba(20, 40, 45, 0.06);
  --awvgl-shadow: 0 2px 4px rgba(20, 40, 45, 0.05), 0 8px 24px -14px rgba(20, 40, 45, 0.22);
  --awvgl-shadow-bar: 0 -2px 6px rgba(20, 40, 45, 0.05), 0 -16px 40px -24px rgba(20, 40, 45, 0.32);
}

/* ==========================================================================
   1. Aanvink-knop op de kaart (subtiel) + productpagina
   ========================================================================== */
.awcf-vgl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: none;
  padding: 2px 6px;
  min-height: 30px;
  color: var(--awvgl-soft);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color var(--awvgl-ease);
  -webkit-tap-highlight-color: transparent;
}
.awcf-vgl-btn .awcf-vgl-box {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--awvgl-line-strong);
  border-radius: 5px;
  background: var(--awvgl-surface);
  flex: none;
  transition: background var(--awvgl-ease), border-color var(--awvgl-ease);
}
.awcf-vgl-btn .awcf-vgl-check {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--awvgl-ease), transform var(--awvgl-ease);
}
.awcf-vgl-btn:hover {
  color: var(--awvgl-accent-ink);
}
.awcf-vgl-btn:hover .awcf-vgl-box {
  border-color: var(--awvgl-accent);
}
.awcf-vgl-btn.is-on {
  color: var(--awvgl-accent-ink);
}
.awcf-vgl-btn.is-on .awcf-vgl-box {
  background: var(--awvgl-accent);
  border-color: var(--awvgl-accent);
}
.awcf-vgl-btn.is-on .awcf-vgl-check {
  opacity: 1;
  transform: scale(1);
}

/* Subtiel op de kaart: gecentreerd, dunne scheiding erboven. */
.awcf-vgl-loop.awcf-vgl-injected,
.awcf-vgl-loop {
  margin-top: 8px;
  display: flex;
  justify-content: center;
}
.awcf-vgl-loop .awcf-vgl-btn {
  font-size: 14px;
}
/* Op de productpagina iets prominenter (omlijnd). */
.awcf-vgl-single {
  margin-top: 14px;
}
.awcf-vgl-single .awcf-vgl-btn {
  border: 1.5px solid var(--awvgl-line-strong);
  border-radius: 10px;
  padding: 10px 16px;
  min-height: 46px;
}
.awcf-vgl-single .awcf-vgl-btn:hover {
  border-color: var(--awvgl-accent);
}
.awcf-vgl-single .awcf-vgl-btn.is-on {
  border-color: var(--awvgl-accent);
  background: var(--awvgl-accent-wash);
}

/* ==========================================================================
   2. Zwevende balk
   ========================================================================== */
.aw-vgl-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  transform: translateY(110%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: var(--awvgl-surface);
  border-top: 1px solid var(--awvgl-line-strong);
  box-shadow: var(--awvgl-shadow-bar);
}
.aw-vgl-bar.is-visible {
  transform: translateY(0);
}
.aw-vgl-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 13px 20px 16px;
}
.aw-vgl-bar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
}
.aw-vgl-bar-title {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--awvgl-ink);
  letter-spacing: -0.01em;
}
.aw-vgl-count {
  display: grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--awvgl-accent);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.aw-vgl-clear {
  border: 0;
  background: none;
  color: var(--awvgl-accent-ink);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 11px;
  border-radius: 8px;
  transition: background var(--awvgl-ease);
}
.aw-vgl-clear:hover {
  background: var(--awvgl-accent-wash);
}
.aw-vgl-bar-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 13px;
}
.aw-vgl-bslot {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid var(--awvgl-line);
  border-radius: var(--awvgl-r-sm);
  padding: 9px 11px;
  min-height: 62px;
  background: var(--awvgl-surface);
  transition: border-color var(--awvgl-ease), box-shadow var(--awvgl-ease);
}
.aw-vgl-bslot:not(.aw-vgl-bslot-empty):hover {
  border-color: var(--awvgl-line-strong);
  box-shadow: var(--awvgl-shadow-sm);
}
.aw-vgl-bslot-empty {
  border-style: dashed;
  color: var(--awvgl-muted);
  justify-content: center;
  font-size: 13.5px;
  font-weight: 500;
}
/* De hele slot is een link naar het product (behalve de verwijder-x). */
.aw-vgl-bslot-link {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.aw-vgl-bslot-link:hover,
.aw-vgl-bslot-link:focus {
  text-decoration: none;
  color: inherit;
}
.aw-vgl-bslot-link:hover .aw-vgl-bslot-name {
  color: var(--awvgl-accent-ink);
}
.aw-vgl-bslot-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 7px;
  background: var(--awvgl-surface-2);
  flex: none;
}
.aw-vgl-bslot-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.aw-vgl-bslot-name {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.28;
  color: var(--awvgl-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aw-vgl-bslot-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--awvgl-soft);
  font-variant-numeric: tabular-nums;
}
.aw-vgl-bx {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--awvgl-line-strong);
  background: var(--awvgl-surface);
  color: var(--awvgl-soft);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--awvgl-shadow-sm);
  transition: border-color var(--awvgl-ease), color var(--awvgl-ease), transform var(--awvgl-ease);
}
.aw-vgl-bx:hover {
  border-color: var(--awvgl-accent);
  color: var(--awvgl-accent-ink);
  transform: scale(1.08);
}
.aw-vgl-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 11px;
  background: var(--awvgl-accent);
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--awvgl-ease), box-shadow var(--awvgl-ease);
}
.aw-vgl-cta svg {
  transition: transform var(--awvgl-ease);
}
.aw-vgl-cta:hover {
  background: var(--awvgl-accent-ink);
  color: #fff;
  box-shadow: 0 6px 18px -8px rgba(0, 151, 180, 0.6);
}
.aw-vgl-cta:hover svg {
  transform: translateX(3px);
}
.aw-vgl-cta.is-disabled {
  background: var(--awvgl-line-strong);
  color: #fff;
  pointer-events: none;
}
body.aw-vgl-has-bar {
  padding-bottom: 224px;
}

/* ==========================================================================
   3. Header-badge (naast het wishlist-hartje)
   ========================================================================== */
.aw-vgl-header {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #33393e;
  text-decoration: none;
  padding: 6px;
  margin-right: 2px;
  transition: color var(--awvgl-ease);
}
.aw-vgl-header:hover {
  color: var(--awvgl-accent-ink);
}
.aw-vgl-header .aw-vgl-header-ic {
  display: inline-flex;
}
.aw-vgl-header .aw-vgl-header-count {
  position: absolute;
  top: -3px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--awvgl-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 0 0 2px var(--awvgl-surface);
}

/* ==========================================================================
   4. Vergelijkpagina
   ========================================================================== */
/* De thema-paginatitel ("Vergelijken") plakt tegen het menu; geef hem lucht.
   De class staat op <body> via de JS (initComparePage). */
body.aw-vgl-page .page-header {
  padding-top: 34px;
}
.aw-vgl {
  --awvgl-cols: 3;
  color: var(--awvgl-ink);
  font-size: 16px;
  padding: 18px 0 40px;
  max-width: 1040px;
}

/* Toolbar + schakelaar */
.aw-vgl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.aw-vgl-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--awvgl-ink);
  padding: 6px 4px;
  -webkit-tap-highlight-color: transparent;
}
.aw-vgl-track {
  position: relative;
  width: 50px;
  height: 29px;
  border-radius: 999px;
  background: var(--awvgl-line-strong);
  flex: none;
  transition: background var(--awvgl-ease);
}
.aw-vgl-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
  transition: left var(--awvgl-ease);
}
.aw-vgl-switch.is-on .aw-vgl-track {
  background: var(--awvgl-accent);
}
.aw-vgl-switch.is-on .aw-vgl-track::after {
  left: 24px;
}
.aw-vgl-cap {
  font-size: 14px;
  color: var(--awvgl-soft);
  font-variant-numeric: tabular-nums;
}

/* Scroll-wrapper: desktop overflow visible zodat de sticky kop tegen de
   viewport plakt; op smal scherm horizontaal scrollbaar. Geen omkaderde box
   (border/schaduw) meer: de tabel staat schoon op de pagina (Coolblue-stijl). */
.aw-vgl-scroll {
  overflow: visible;
  background: transparent;
}
.aw-vgl-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
}
.aw-vgl-table th,
.aw-vgl-table td {
  text-align: left;
  vertical-align: top;
  width: calc((100% - 200px) / var(--awvgl-cols));
  /* Reset de thema-celranden (reset.css zet 1px op elke td/th = vaag grid).
     De horizontale scheidingen tekenen we zelf per rij hieronder. */
  border: 0;
}
.aw-vgl-table th.aw-vgl-rowlabel {
  width: 200px;
}

/* Productkoppen (sticky) */
.aw-vgl-phead .aw-vgl-prod {
  position: sticky;
  top: var(--awvgl-top, 0px);
  z-index: 2;
  background: var(--awvgl-surface);
  border-top: 0 !important;
  border-bottom: 1px solid var(--awvgl-line-strong);
  padding: 0;
  transition: box-shadow var(--awvgl-ease);
}
.aw-vgl-phead .aw-vgl-rowlabel {
  position: sticky;
  top: var(--awvgl-top, 0px);
  left: 0;
  z-index: 3;
  background: var(--awvgl-surface);
  border-top: 0 !important;
  border-bottom: 1px solid var(--awvgl-line-strong);
  vertical-align: bottom;
}
.aw-vgl.is-stuck .aw-vgl-phead .aw-vgl-prod,
.aw-vgl.is-stuck .aw-vgl-phead .aw-vgl-rowlabel {
  box-shadow: 0 8px 16px -10px rgba(20, 40, 45, 0.3);
}
/* De hoek linksboven blijft leeg (Coolblue-stijl); label niet tonen. */
.aw-vgl-corner {
  display: none;
}
.aw-vgl-phead .aw-vgl-prod {
  height: 1px; /* laat .aw-vgl-ph de volledige celhoogte vullen (koopknoppen op één lijn) */
}
.aw-vgl-ph {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 14px 15px;
  height: 100%;
}
.aw-vgl-ph .aw-vgl-buy {
  margin-top: auto;
}
.aw-vgl-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5; /* altijd boven de productfoto-link, zodat de klik de x raakt */
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--awvgl-line-strong);
  background: var(--awvgl-surface);
  color: var(--awvgl-soft);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 4px rgba(20, 40, 45, 0.16);
  transition: border-color var(--awvgl-ease), color var(--awvgl-ease), background var(--awvgl-ease);
}
/* Onzichtbare extra klik-zone rond de x (grotere hitbox, klik landt op de x
   i.p.v. op de productfoto eronder). */
.aw-vgl-remove::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
}
.aw-vgl-remove:hover {
  border-color: #e2b3b3;
  color: #c0392b;
  background: #fdf0ee;
}
.aw-vgl-thumb {
  display: block;
  border-radius: var(--awvgl-r-sm);
  overflow: hidden;
}
.aw-vgl-thumb img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  background: transparent;
  transition: transform 0.25s ease;
}
.aw-vgl-thumb:hover img {
  transform: scale(1.04);
}
.aw-vgl-ph a.aw-vgl-name {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--awvgl-ink);
  text-decoration: none;
  transition: color var(--awvgl-ease);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.aw-vgl-ph a.aw-vgl-name:hover {
  color: var(--awvgl-accent-ink);
}

/* Eigen SVG-sterren (Woo-sterfont is niet gegarandeerd geladen op deze pagina) */
.aw-vgl-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--awvgl-soft);
}
.aw-vgl-score {
  font-weight: 800;
  color: var(--awvgl-ink);
  font-variant-numeric: tabular-nums;
}
.aw-vgl-sentinel {
  height: 1px;
  margin-bottom: -1px;
}
.aw-vgl-stars {
  position: relative;
  display: inline-block;
  line-height: 0;
  white-space: nowrap;
}
.aw-vgl-stars svg {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.aw-vgl-stars-bg svg {
  fill: var(--awvgl-star-off);
}
.aw-vgl-stars-fg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
}
.aw-vgl-stars-fg svg {
  fill: var(--awvgl-star);
}
.aw-vgl-rcount {
  color: var(--awvgl-muted);
  font-variant-numeric: tabular-nums;
}

.aw-vgl-price {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--awvgl-ink);
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}
.aw-vgl-price del {
  font-size: 14px;
  font-weight: 500;
  color: var(--awvgl-muted);
  order: 2;
}
.aw-vgl-price ins {
  text-decoration: none;
}
.aw-vgl-ph .aw-vgl-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  background: var(--awvgl-buy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--awvgl-ease), box-shadow var(--awvgl-ease);
}
.aw-vgl-ph .aw-vgl-buy:hover {
  background: var(--awvgl-buy-ink);
  color: #fff;
  box-shadow: 0 6px 16px -8px rgba(0, 177, 207, 0.6);
}
.aw-vgl-ph .aw-vgl-buy.aw-vgl-buy-alt {
  background: var(--awvgl-surface);
  color: var(--awvgl-accent-ink);
  border: 1.5px solid var(--awvgl-line-strong);
}
.aw-vgl-ph .aw-vgl-buy.aw-vgl-buy-alt:hover {
  background: var(--awvgl-accent-wash);
  border-color: var(--awvgl-accent);
  color: var(--awvgl-accent-ink);
  box-shadow: none;
}

/* Groepskoppen (inklapbaar) */
.aw-vgl-group > th {
  position: sticky;
  left: 0;
  background: var(--awvgl-surface);
  color: var(--awvgl-ink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 16px 16px 8px;
  border-bottom: 1px solid var(--awvgl-line);
  cursor: pointer;
  user-select: none;
  transition: color var(--awvgl-ease);
}
.aw-vgl-group:first-child > th {
  padding-top: 12px;
}
.aw-vgl-group:hover > th {
  color: var(--awvgl-accent-ink);
}
.aw-vgl-gh {
  display: flex;
  align-items: center;
  gap: 11px;
}
.aw-vgl-chev {
  color: var(--awvgl-accent);
  transition: transform var(--awvgl-ease);
}
.aw-vgl-group.is-collapsed .aw-vgl-chev {
  transform: rotate(-90deg);
}

/* Kenmerkrijen */
.aw-vgl-spec > th,
.aw-vgl-spec > td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--awvgl-line);
  font-size: 14.5px;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
  transition: background var(--awvgl-ease);
}
.aw-vgl-rowlabel {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--awvgl-surface);
  font-weight: 600;
  color: var(--awvgl-soft);
}
/* Geen rij-hover-achtergrond: die kleurde alleen de linker kenmerk-cel (de
   waardecellen bleven wit door de zebra-neutralisatie), wat scheef oogt. */
.aw-vgl-rowlabel:has(.aw-vgl-info:hover),
.aw-vgl-rowlabel:has(.aw-vgl-info.is-open) {
  z-index: 50;
}
.aw-vgl-val {
  color: var(--awvgl-ink);
}
.aw-vgl-na {
  color: var(--awvgl-faint);
}

/* "Beste keuze"-badge */
.aw-vgl-best {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 7px;
  padding: 3px 8px 3px 6px;
  border-radius: 999px;
  background: var(--awvgl-good-bg);
  color: var(--awvgl-good);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.005em;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 1.2;
}
.aw-vgl-best svg {
  width: 13px;
  height: 13px;
  flex: none;
}

/* ⓘ-uitleg per kenmerk */
.aw-vgl-lbl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.aw-vgl-info {
  position: relative;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  border: 1.5px solid var(--awvgl-line-strong);
  background: var(--awvgl-surface);
  color: var(--awvgl-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex: none;
  display: inline-grid;
  place-items: center;
  padding: 0;
  transition: border-color var(--awvgl-ease), color var(--awvgl-ease);
}
.aw-vgl-info:hover {
  border-color: var(--awvgl-accent);
  color: var(--awvgl-accent-ink);
}
.aw-vgl-info::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 11px);
  left: -10px;
  transform: translateY(-4px);
  width: max-content;
  max-width: 290px;
  background: var(--awvgl-ink);
  color: #fff;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  white-space: normal;
  padding: 11px 14px;
  border-radius: 10px;
  box-shadow: 0 14px 38px -10px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--awvgl-ease), transform var(--awvgl-ease), visibility var(--awvgl-ease);
  z-index: 60;
  pointer-events: none;
}
.aw-vgl-info::before {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: 5px;
  border: 6px solid transparent;
  border-bottom-color: var(--awvgl-ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--awvgl-ease), visibility var(--awvgl-ease);
  z-index: 61;
  pointer-events: none;
}
.aw-vgl-info:hover::after,
.aw-vgl-info.is-open::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.aw-vgl-info:hover::before,
.aw-vgl-info.is-open::before {
  opacity: 1;
  visibility: visible;
}

/* Lege staat */
.aw-vgl-empty {
  text-align: center;
  padding: 48px 20px;
}
.aw-vgl-empty-ic {
  color: var(--awvgl-faint);
  margin-bottom: 10px;
}
.aw-vgl-empty h2 {
  margin: 0 0 10px;
}
.aw-vgl-empty p {
  color: var(--awvgl-soft);
  max-width: 46ch;
  margin: 0 auto 18px;
}

/* Flash-melding */
.aw-vgl-flash {
  position: fixed;
  left: 50%;
  bottom: 244px;
  z-index: 10000;
  transform: translateX(-50%) translateY(12px);
  background: var(--awvgl-ink);
  color: #fff;
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.aw-vgl-flash.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   6. Theme-conflict-overrides (de theme geeft <button>:hover een gekleurde
   achtergrond en dwingt breedte/padding af; dat neutraliseren we hier)
   ========================================================================== */
/* De theme-reset (reset.css) zet een zebra op tabelkoppen:
   `table tbody > tr:nth-child(2n+1) > th` (specificiteit 0,1,4). Die kleurt de
   sticky kenmerk-kolom onregelmatig grijs (en semi-transparant = lekt bij
   horizontaal scrollen). We zetten de kenmerk-kolom dekkend wit (2 classes =
   0,2,1, wint van de zebra) en geven de groepskop juist een eigen, bewuste tint. */
.aw-vgl-table tbody .aw-vgl-rowlabel {
  background-color: var(--awvgl-surface);
}
/* Tabel volledig wit: de groepskop krijgt ook een witte achtergrond (herkenbaar
   via de vette kleine kapitalen + de hairline eronder), geen grijze band. */
.aw-vgl-table .aw-vgl-group > th {
  background-color: var(--awvgl-surface);
}
/* reset.css zebra't OOK de waarde-cellen (`tr:nth-child(2n+1) > td`, 0,1,4).
   Ook die dekkend wit (0,2,1 wint); de rij-hover (0,3,1) blijft werken. */
.aw-vgl-table .aw-vgl-spec > td {
  background-color: var(--awvgl-surface);
}
.awcf-vgl-btn,
.aw-vgl-switch,
.aw-vgl-clear,
.aw-vgl-info,
.aw-vgl-remove,
.aw-vgl-bx {
  -webkit-appearance: none;
  appearance: none;
}
/* Kaart-/single-knop + schakelaar: nooit een achtergrond van de theme erven. */
.awcf-vgl-loop .awcf-vgl-btn,
.awcf-vgl-loop .awcf-vgl-btn:hover,
.awcf-vgl-loop .awcf-vgl-btn:focus,
.awcf-vgl-single .awcf-vgl-btn:hover,
.awcf-vgl-single .awcf-vgl-btn:focus,
.aw-vgl-switch,
.aw-vgl-switch:hover,
.aw-vgl-switch:focus {
  background: none !important;
  box-shadow: none !important;
}
/* Geen hover-effect op "Toon alleen de verschillen": de theme kleurt button:hover
   wit; we houden de tekst gewoon donker (geen kleurverandering). */
.aw-vgl-switch:hover,
.aw-vgl-switch:focus {
  color: var(--awvgl-ink) !important;
}
.awcf-vgl-single .awcf-vgl-btn.is-on {
  background: var(--awvgl-accent-wash) !important;
}
/* ⓘ: witte basis, zachte cyaan hover (geen rode theme-hover). */
.aw-vgl-info,
.aw-vgl-info:focus {
  background: var(--awvgl-surface) !important;
  box-shadow: none !important;
}
.aw-vgl-info:hover {
  background: var(--awvgl-accent-wash) !important;
}
/* "Verwijder alles": geen achtergrond, zachte cyaan hover. */
.aw-vgl-clear,
.aw-vgl-clear:focus {
  background: none !important;
  box-shadow: none !important;
}
.aw-vgl-clear:hover {
  background: var(--awvgl-accent-wash) !important;
}
/* Ronde kruisjes (theme dwong padding/breedte af -> ovaal). */
.aw-vgl-remove,
.aw-vgl-bx {
  box-sizing: border-box !important;
  padding: 0 !important;
  min-width: 0 !important;
  aspect-ratio: 1 / 1;
}
.aw-vgl-remove:hover {
  background: #fdeeec !important;
}
.aw-vgl-bx,
.aw-vgl-bx:hover {
  background: var(--awvgl-surface) !important;
}
/* De AWCC winkelmand/checkout-css styelt ALLE knoppen op die pagina's:
   `body.woocommerce-cart button { border-radius:3px; color:#fff; border… }`
   (specificiteit 0,1,2). Onze zwevende balk-knoppen (× en "Verwijder alles" zijn
   <button>) werden daardoor vierkant met onzichtbare witte tekst en een rand.
   We herstellen ze vanuit .aw-vgl-bar (0,2,0, wint van 0,1,2) zodat de balk op
   elke pagina klopt. */
.aw-vgl-bar .aw-vgl-clear {
  color: var(--awvgl-accent-ink);
  border: 0;
  border-radius: 8px;
}
.aw-vgl-bar .aw-vgl-bx {
  color: var(--awvgl-soft);
  border: 1px solid var(--awvgl-line-strong);
  border-radius: 50%;
}
/* CTA-tekst wit (theme-linkkleur was groen). */
.aw-vgl-bar .aw-vgl-cta,
.aw-vgl-bar .aw-vgl-cta:hover,
.aw-vgl-bar .aw-vgl-cta:focus {
  color: #fff !important;
}
/* Koopknop-tekst forceren over theme-linkkleur heen. */
.aw-vgl-ph .aw-vgl-buy,
.aw-vgl-ph .aw-vgl-buy:hover {
  color: #fff !important;
}
.aw-vgl-ph .aw-vgl-buy.aw-vgl-buy-alt,
.aw-vgl-ph .aw-vgl-buy.aw-vgl-buy-alt:hover {
  color: var(--awvgl-accent-ink) !important;
}
/* Single: knop LANGS de beoordeling (in dezelfde rij als de reviews). */
.woocommerce-product-rating.aw-vgl-rating-row {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 18px;
}
.awcf-vgl-single.awcf-vgl-inline {
  margin: 0;
}
/* Inline naast de beoordeling: subtiel, geen omranding of achtergrondvak. */
.awcf-vgl-single.awcf-vgl-inline .awcf-vgl-btn,
.awcf-vgl-single.awcf-vgl-inline .awcf-vgl-btn:hover,
.awcf-vgl-single.awcf-vgl-inline .awcf-vgl-btn:focus,
.awcf-vgl-single.awcf-vgl-inline .awcf-vgl-btn.is-on {
  border: 0;
  border-radius: 0;
  padding: 6px 4px;
  min-height: 32px;
  font-size: 14px;
  background: none !important;
}

/* ==========================================================================
   7. Contact/USP-blok op de vergelijkpagina
   ========================================================================== */
.aw-vgl-aside {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  margin-top: 18px;
}
.aw-vgl-cta-card,
.aw-vgl-usp {
  border: 1px solid var(--awvgl-line);
  border-radius: var(--awvgl-r);
  background: var(--awvgl-surface);
  padding: 18px 20px;
}
.aw-vgl-cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.aw-vgl-cta-card .aw-vgl-cta-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--awvgl-accent-wash);
  color: var(--awvgl-accent-ink);
  display: grid;
  place-items: center;
  flex: none;
}
.aw-vgl-cta-card h3 {
  margin: 0 0 2px;
  font-size: 17px;
  color: var(--awvgl-ink);
}
.aw-vgl-cta-card p {
  margin: 0;
  color: var(--awvgl-soft);
  font-size: 14px;
}
.aw-vgl-cta-card .aw-vgl-cta-txt {
  flex: 1;
  min-width: 0;
}
.aw-vgl-cta-card .aw-vgl-phone {
  display: inline-block;
  margin-top: 6px;
  font-weight: 800;
  font-size: 19px;
  color: var(--awvgl-ink);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.aw-vgl-cta-card .aw-vgl-phone:hover {
  color: var(--awvgl-accent-ink);
}
.aw-vgl-cta-card .aw-vgl-contact {
  margin-left: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--awvgl-line-strong);
  color: var(--awvgl-ink);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: border-color var(--awvgl-ease), background var(--awvgl-ease), color var(--awvgl-ease);
}
.aw-vgl-cta-card .aw-vgl-contact:hover {
  border-color: var(--awvgl-accent);
  background: var(--awvgl-accent-wash);
  color: var(--awvgl-accent-ink);
}
.aw-vgl-usp {
  display: flex;
  flex-direction: column;
  gap: 11px;
  justify-content: center;
}
.aw-vgl-usp span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--awvgl-soft);
}
.aw-vgl-usp svg {
  width: 18px;
  height: 18px;
  color: var(--awvgl-good);
  flex: none;
}
@media (max-width: 720px) {
  .aw-vgl-aside {
    grid-template-columns: 1fr;
  }
  .aw-vgl-cta-card {
    flex-wrap: wrap;
  }
  .aw-vgl-cta-card .aw-vgl-contact {
    margin-left: 0;
  }
}

/* ==========================================================================
   8. Mobiel
   ========================================================================== */
@media (max-width: 900px) {
  .aw-vgl {
    padding: 14px 0 32px;
  }
  /* Horizontaal vegen per product, met de kenmerk-kolom bevroren links + snap.
     Maten zo dat er op een telefoon 2 producten naast elkaar passen (kenmerk 92
     + 2x140 = 372) met een kleine "peek" van de 3e als swipe-hint. */
  .aw-vgl-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 92px;
  }
  .aw-vgl-table {
    min-width: calc(92px + var(--awvgl-cols) * (100vw - 127px) / 2.25);
  }
  /* Viewport-relatief: op elke telefoon passen 2 producten volledig plus een
     vaste "peek" van de 3e (deler 2.25 = 2 volle kolommen + 0.25 zichtbaar). */
  .aw-vgl-table th,
  .aw-vgl-table td {
    width: calc((100vw - 127px) / 2.25);
  }
  .aw-vgl-table th.aw-vgl-rowlabel {
    width: 92px;
  }
  /* De bevroren kenmerk-kolom leesbaar houden tijdens horizontaal vegen. */
  .aw-vgl-rowlabel {
    border-right: 1px solid var(--awvgl-line);
  }
  .aw-vgl-phead .aw-vgl-prod {
    scroll-snap-align: start;
  }
  /* Geen verticale sticky-offset op mobiel (de overflow-container maakt anders een lege ruimte). */
  .aw-vgl-phead .aw-vgl-prod,
  .aw-vgl-phead .aw-vgl-rowlabel {
    top: 0;
  }
  /* Compacte productkop. */
  .aw-vgl-ph {
    padding: 12px 10px;
    gap: 6px;
  }
  .aw-vgl-ph .aw-vgl-thumb img {
    height: 74px;
  }
  .aw-vgl-ph .aw-vgl-name {
    font-size: 13.5px;
    -webkit-line-clamp: 2;
  }
  .aw-vgl-ph .aw-vgl-price {
    font-size: 17px;
  }
  .aw-vgl-ph .aw-vgl-rating {
    font-size: 12px;
    gap: 4px;
  }
  .aw-vgl-ph .aw-vgl-buy {
    min-height: 42px;
    font-size: 13px;
    padding: 9px 8px;
  }
  .aw-vgl-remove {
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
  }
  /* Compacte rijen. Label mag afbreken binnen de smalle bevroren kolom. */
  .aw-vgl-spec > th,
  .aw-vgl-spec > td {
    padding: 11px 10px;
    font-size: 13.5px;
  }
  .aw-vgl-rowlabel {
    font-size: 13px;
    line-height: 1.3;
    overflow-wrap: anywhere;
  }
  .aw-vgl-group > th {
    padding: 14px 10px 8px;
    font-size: 12px;
  }
  /* De ⓘ-tooltip clipt in de horizontale scroll-container; op mobiel laten we
     alleen het label zien (de waarden spreken voor zich). */
  .aw-vgl-info {
    display: none;
  }
  .aw-vgl-best {
    font-size: 10.5px;
    padding: 2px 7px;
  }
  .aw-vgl-bar-body {
    grid-template-columns: 1fr;
  }
  body.aw-vgl-has-bar {
    padding-bottom: 252px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .awcf-vgl-btn,
  .awcf-vgl-btn *,
  .aw-vgl-bar,
  .aw-vgl-flash,
  .aw-vgl *,
  .aw-vgl-cta svg,
  .aw-vgl-thumb img {
    transition: none !important;
  }
}
