:root {
  --wo-home-navy: #040f3d;
  --wo-home-navy-soft: #0a1a52;
  --wo-home-gold: #dea14b;
  --wo-home-gold-dark: #be7f27;
  --wo-home-blue-50: #f2f6ff;
  --wo-home-blue-100: #e7eefc;
  --wo-home-ink: #172033;
  --wo-home-muted: #667085;
  --wo-home-border: #e4e8ef;
  --wo-home-soft: #f7f8fb;
  --wo-home-white: #fff;
  --wo-home-success: #16794b;
  --wo-home-danger: #b42318;
  --wo-home-shadow-sm: 0 8px 24px rgba(4, 15, 61, 0.07);
  --wo-home-shadow-md: 0 18px 48px rgba(4, 15, 61, 0.12);
  --wo-home-radius-sm: 10px;
  --wo-home-radius-md: 16px;
  --wo-home-radius-lg: 24px;
  --wo-home-container: 1210px;
}

.wo-home-page,
.wo-home-page * {
  box-sizing: border-box;
}

.wo-home-page {
  margin: 0;
  color: var(--wo-home-ink);
  background: var(--wo-home-white);
  font-family: Inter, Montserrat, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.wo-home-page img {
  max-width: 100%;
}

.wo-home-page a {
  color: inherit;
}

.wo-home-page button,
.wo-home-page input {
  font: inherit;
}

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

.wo-home-main {
  overflow: clip;
}

.wo-home-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wo-home-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--wo-home-gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wo-home-section {
  padding: 76px 0;
}

.wo-home-section--soft {
  background: var(--wo-home-soft);
}

.wo-home-section--dark {
  color: var(--wo-home-white);
  background:
    radial-gradient(circle at 12% 5%, rgba(222, 161, 75, 0.17), transparent 31%),
    linear-gradient(135deg, var(--wo-home-navy), #0b1d59);
}

.wo-home-section--guides {
  background: linear-gradient(180deg, #fff, #f8f9fc);
}

.wo-home-section-heading {
  margin-bottom: 34px;
}

.wo-home-section-heading h2,
.wo-home-trust-layout__intro h2,
.wo-home-cta-strip h2 {
  margin: 0;
  color: var(--wo-home-navy);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.wo-home-section-heading p,
.wo-home-trust-layout__intro > p {
  max-width: 720px;
  margin: 13px 0 0;
  color: var(--wo-home-muted);
  font-size: 1.03rem;
}

.wo-home-section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.wo-home-section-heading--center p {
  margin-inline: auto;
}

.wo-home-section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.wo-home-section-heading--light h2,
.wo-home-section-heading--light p {
  color: var(--wo-home-white);
}

.wo-home-section-heading--light p {
  color: rgba(255, 255, 255, 0.72);
}

.wo-home-section-heading--light .wo-home-eyebrow {
  color: #f2c984;
}

.wo-home-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.wo-home-button:hover {
  transform: translateY(-1px);
}

.wo-home-button:focus-visible,
.wo-home-text-link:focus-visible,
.wo-home-choice-card:focus-visible,
.wo-home-product-card a:focus-visible,
.wo-home-brand-card:focus-visible,
.wo-home-feature-card:focus-visible,
.wo-home-guide-card a:focus-visible {
  outline: 3px solid rgba(222, 161, 75, 0.48);
  outline-offset: 3px;
}

.wo-home-button svg,
.wo-home-text-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wo-home-button--primary {
  color: var(--wo-home-navy);
  background: var(--wo-home-gold);
  box-shadow: 0 8px 18px rgba(222, 161, 75, 0.28);
}

.wo-home-button--primary:hover {
  background: #e8ad5a;
  box-shadow: 0 10px 22px rgba(222, 161, 75, 0.36);
}

.wo-home-button--secondary {
  color: var(--wo-home-navy);
  background: var(--wo-home-white);
  border-color: rgba(4, 15, 61, 0.16);
}

.wo-home-button--secondary:hover {
  border-color: rgba(4, 15, 61, 0.34);
}

.wo-home-button--white {
  color: var(--wo-home-navy);
  background: var(--wo-home-white);
}

.wo-home-button--small {
  min-height: 38px;
  padding: 9px 14px;
  font-size: 0.85rem;
}

.wo-home-button--full {
  width: 100%;
}

.wo-home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--wo-home-navy);
  font-weight: 800;
  text-decoration: none;
}

.wo-home-text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.wo-home-text-link svg {
  width: 17px;
  height: 17px;
}

/* Fallback header en footer worden alleen gebruikt als bestaande includes ontbreken. */
.wo-home-fallback-header {
  border-bottom: 1px solid var(--wo-home-border);
  background: var(--wo-home-white);
}

.wo-home-fallback-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.wo-home-logo {
  display: inline-flex;
  align-items: center;
  color: var(--wo-home-navy);
  font-size: 1.35rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.035em;
}

.wo-home-logo strong {
  color: var(--wo-home-gold);
}

.wo-home-logo--light span {
  color: var(--wo-home-white);
}

.wo-home-fallback-header nav,
.wo-home-fallback-footer nav {
  display: flex;
  gap: 24px;
}

.wo-home-fallback-header nav a,
.wo-home-fallback-footer nav a {
  font-weight: 700;
  text-decoration: none;
}

.wo-home-fallback-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #020a2d;
}

.wo-home-fallback-footer__grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.wo-home-fallback-footer p {
  max-width: 460px;
}

/* Advertenties */
.wo-home-top-ad,
.wo-home-mid-ad,
.wo-home-bottom-ad {
  padding-top: 18px;
}

.wo-home-bottom-ad {
  padding-bottom: 48px;
}

.wo-home-ad {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--wo-home-border);
  border-radius: var(--wo-home-radius-md);
  background: var(--wo-home-white);
}

.wo-home-ad__label {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 10px;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 15, 61, 0.82);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wo-home-ad__link {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 22px;
  color: inherit;
  text-decoration: none;
}

.wo-home-ad__picture {
  display: block;
  flex: 1 1 62%;
  width: auto;
  min-width: 0;
}

.wo-home-ad__picture:only-child {
  flex-basis: 100%;
  width: 100%;
}

.wo-home-ad__picture img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.wo-home-ad__content {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 18px;
  padding: 22px 26px;
}

.wo-home-ad__title {
  color: var(--wo-home-navy);
  font-size: 1.15rem;
}

.wo-home-ad__text {
  flex: 1;
  color: var(--wo-home-muted);
}

.wo-home-ad--native,
.wo-home-ad--retailer,
.wo-home-ad--guide {
  box-shadow: var(--wo-home-shadow-sm);
}

.wo-home-ad--native .wo-home-ad__link,
.wo-home-ad--retailer .wo-home-ad__link,
.wo-home-ad--guide .wo-home-ad__link {
  padding-top: 18px;
}

.wo-home-featured-ad-wrap {
  margin-top: 30px;
}

/* Hero */
.wo-home-hero {
  position: relative;
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 83% 18%, rgba(222, 161, 75, 0.22), transparent 27%),
    linear-gradient(135deg, #f7f9ff 0%, #fff 56%, #f7efe2 100%);
  border-bottom: 1px solid #edf0f5;
}

.wo-home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(4, 15, 61, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(4, 15, 61, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 80%);
}

.wo-home-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: 60px;
}

.wo-home-hero__content h1 {
  max-width: 770px;
  margin: 0;
  color: var(--wo-home-navy);
  font-size: clamp(2.35rem, 5vw, 4.55rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.wo-home-hero__intro {
  max-width: 690px;
  margin: 23px 0 0;
  color: #46516a;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}

.wo-home-search {
  position: relative;
  display: grid;
  max-width: 690px;
  grid-template-columns: 1fr auto;
  margin-top: 28px;
  padding: 5px;
  border: 1px solid rgba(4, 15, 61, 0.13);
  border-radius: 13px;
  background: var(--wo-home-white);
  box-shadow: var(--wo-home-shadow-sm);
}

.wo-home-search__icon {
  position: absolute;
  top: 50%;
  left: 19px;
  display: flex;
  transform: translateY(-50%);
  color: #7a8498;
  pointer-events: none;
}

.wo-home-search__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.wo-home-search input {
  min-width: 0;
  min-height: 48px;
  padding: 10px 16px 10px 48px;
  border: 0;
  outline: 0;
  color: var(--wo-home-ink);
  background: transparent;
}

.wo-home-search button {
  min-width: 104px;
  border: 0;
  border-radius: 9px;
  color: var(--wo-home-white);
  background: var(--wo-home-navy);
  font-weight: 800;
  cursor: pointer;
}

.wo-home-search:focus-within {
  border-color: var(--wo-home-gold);
  box-shadow: 0 0 0 4px rgba(222, 161, 75, 0.15), var(--wo-home-shadow-sm);
}

.wo-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.wo-home-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.wo-home-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #46516a;
  font-size: 0.9rem;
  font-weight: 700;
}

.wo-home-trust-list svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--wo-home-success);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wo-home-spotlight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(4, 15, 61, 0.09);
  border-radius: var(--wo-home-radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--wo-home-shadow-md);
}

.wo-home-spotlight-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(222, 161, 75, 0.12);
  pointer-events: none;
}

.wo-home-spotlight-card__topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 0;
}

.wo-home-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--wo-home-navy);
  background: #f6dfbd;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.wo-home-badge--sponsored {
  color: #fff;
  background: #59657c;
}

.wo-home-spotlight-card__updated {
  color: var(--wo-home-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.wo-home-spotlight-card__image {
  display: flex;
  min-height: 265px;
  align-items: center;
  justify-content: center;
  padding: 18px 30px 0;
}

.wo-home-spotlight-card__image img {
  width: 100%;
  max-width: 330px;
  height: 250px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.wo-home-spotlight-card__body {
  position: relative;
  z-index: 1;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--wo-home-border);
}

.wo-home-card__brand {
  margin: 0 0 4px;
  color: var(--wo-home-gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.wo-home-spotlight-card h2,
.wo-home-product-card h3,
.wo-home-deal-card h3,
.wo-home-guide-card h3 {
  margin: 0;
  color: var(--wo-home-navy);
  line-height: 1.25;
  letter-spacing: -0.022em;
}

.wo-home-spotlight-card h2 {
  font-size: 1.45rem;
}

.wo-home-spotlight-card__body > p {
  margin: 10px 0 0;
  color: var(--wo-home-muted);
  font-size: 0.93rem;
}

.wo-home-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin: 20px 0 15px;
}

.wo-home-price-row__label {
  display: block;
  color: var(--wo-home-muted);
  font-size: 0.76rem;
}

.wo-home-price-row strong {
  color: var(--wo-home-navy);
  font-size: 1.65rem;
  line-height: 1;
}

.wo-home-delivery {
  color: var(--wo-home-success);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
}

.wo-home-spotlight-card--empty {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px;
  text-align: center;
}

.wo-home-spotlight-card__empty-icon {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  margin: 28px 0;
  border-radius: 50%;
  color: var(--wo-home-navy);
  background: var(--wo-home-blue-50);
}

.wo-home-spotlight-card__empty-icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

/* Keuzehulp */
.wo-home-section--choices {
  padding-top: 62px;
}

.wo-home-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wo-home-choice-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--wo-home-border);
  border-radius: var(--wo-home-radius-md);
  background: var(--wo-home-white);
  box-shadow: 0 4px 16px rgba(4, 15, 61, 0.035);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.wo-home-choice-card:hover {
  transform: translateY(-2px);
  border-color: rgba(222, 161, 75, 0.64);
  box-shadow: var(--wo-home-shadow-sm);
}

.wo-home-choice-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  color: var(--wo-home-navy);
  background: var(--wo-home-blue-50);
}

.wo-home-choice-card__icon svg,
.wo-home-choice-card__arrow svg,
.wo-home-brand-card__arrow svg,
.wo-home-feature-card svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wo-home-choice-card__body {
  display: flex;
  flex-direction: column;
}

.wo-home-choice-card__body strong {
  color: var(--wo-home-navy);
}

.wo-home-choice-card__body span {
  margin-top: 3px;
  color: var(--wo-home-muted);
  font-size: 0.82rem;
}

.wo-home-choice-card__arrow {
  display: flex;
  color: #9aa2b1;
}

/* Producten */
.wo-home-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.wo-home-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--wo-home-border);
  border-radius: var(--wo-home-radius-md);
  background: var(--wo-home-white);
  box-shadow: 0 5px 18px rgba(4, 15, 61, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wo-home-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(4, 15, 61, 0.15);
  box-shadow: var(--wo-home-shadow-md);
}

.wo-home-product-card--sponsored {
  border-color: rgba(89, 101, 124, 0.38);
}

.wo-home-product-card__media {
  position: relative;
  display: flex;
  min-height: 226px;
  align-items: center;
  justify-content: center;
  padding: 48px 18px 14px;
  background: linear-gradient(180deg, #fff, #fafbfc);
}

.wo-home-product-card__media .wo-home-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.wo-home-product-card__media img {
  display: block;
  width: 100%;
  height: 175px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.wo-home-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
  border-top: 1px solid var(--wo-home-border);
}

.wo-home-product-card h3 {
  min-height: 2.5em;
  font-size: 1rem;
}

.wo-home-product-card h3 a {
  text-decoration: none;
}

.wo-home-product-card h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wo-home-product-card__description {
  min-height: 4em;
  margin: 9px 0 14px;
  color: var(--wo-home-muted);
  font-size: 0.82rem;
}

.wo-home-product-card__price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #eef0f4;
}

.wo-home-product-card__price span {
  color: var(--wo-home-muted);
  font-size: 0.72rem;
}

.wo-home-product-card__price strong {
  color: var(--wo-home-navy);
  font-size: 1.25rem;
}

.wo-home-product-card__delivery {
  min-height: 1.6em;
  margin: 5px 0 12px;
  color: var(--wo-home-success);
  font-size: 0.74rem;
  font-weight: 700;
}

.wo-home-product-card__compare {
  display: block;
  margin-top: 10px;
  color: var(--wo-home-navy);
  font-size: 0.79rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.wo-home-product-card__compare:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wo-home-empty-state {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px;
  border: 1px dashed #cbd1dc;
  border-radius: var(--wo-home-radius-md);
  background: var(--wo-home-white);
}

.wo-home-empty-state > span {
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 14px;
  color: var(--wo-home-navy);
  background: var(--wo-home-blue-50);
}

.wo-home-empty-state svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.wo-home-empty-state h3,
.wo-home-empty-state p {
  margin: 0;
}

.wo-home-empty-state h3 {
  color: var(--wo-home-navy);
}

.wo-home-empty-state p {
  margin-top: 4px;
  color: var(--wo-home-muted);
}

/* Deals */
.wo-home-deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wo-home-deal-card {
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  border: 1px solid var(--wo-home-border);
  border-radius: var(--wo-home-radius-md);
  background: var(--wo-home-white);
  box-shadow: var(--wo-home-shadow-sm);
}

.wo-home-deal-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 12px 16px;
  background: linear-gradient(180deg, #fff, #f7f8fa);
}

.wo-home-deal-card__image img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.wo-home-deal-card__image .wo-home-badge {
  position: absolute;
  top: 11px;
  left: 10px;
  right: 10px;
  justify-content: center;
  text-align: center;
}

.wo-home-discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  min-width: 48px;
  min-height: 34px;
  place-items: center;
  padding: 5px 8px;
  border-radius: 9px;
  color: #fff;
  background: var(--wo-home-danger);
  font-size: 0.82rem;
  font-weight: 900;
}

.wo-home-deal-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
  border-left: 1px solid var(--wo-home-border);
}

.wo-home-deal-card h3 {
  min-height: 2.5em;
  font-size: 1rem;
}

.wo-home-deal-card__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
  padding-top: 15px;
}

.wo-home-deal-card__prices strong {
  color: var(--wo-home-navy);
  font-size: 1.35rem;
}

.wo-home-deal-card__prices del {
  color: #8b93a3;
  font-size: 0.82rem;
}

.wo-home-deal-card__shop {
  margin: 4px 0 12px;
  color: var(--wo-home-muted);
  font-size: 0.75rem;
}

/* Merken */
.wo-home-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wo-home-brand-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 17px;
  border: 1px solid var(--wo-home-border);
  border-radius: var(--wo-home-radius-md);
  background: var(--wo-home-white);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.wo-home-brand-card:hover {
  transform: translateY(-2px);
  border-color: rgba(222, 161, 75, 0.55);
  box-shadow: var(--wo-home-shadow-sm);
}

.wo-home-brand-card__monogram {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 14px;
  color: var(--wo-home-white);
  background: var(--wo-home-navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.wo-home-brand-card__content {
  display: flex;
  flex-direction: column;
}

.wo-home-brand-card__content strong {
  color: var(--wo-home-navy);
  font-size: 1.05rem;
}

.wo-home-brand-card__content small {
  margin-top: 3px;
  color: var(--wo-home-muted);
}

.wo-home-brand-card__arrow {
  display: flex;
  color: #9aa2b1;
}

/* Eigenschappen */
.wo-home-feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.wo-home-feature-card {
  position: relative;
  display: flex;
  min-height: 140px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 19px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--wo-home-radius-md);
  color: #fff;
  background: rgba(255, 255, 255, 0.075);
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.wo-home-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(222, 161, 75, 0.65);
  background: rgba(255, 255, 255, 0.12);
}

.wo-home-feature-card::before {
  content: "";
  position: absolute;
  top: -42px;
  right: -42px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(222, 161, 75, 0.13);
}

.wo-home-feature-card strong {
  font-size: 1rem;
}

.wo-home-feature-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.wo-home-feature-card svg {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #f0c477;
}

/* Vertrouwen */
.wo-home-trust-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 64px;
}

.wo-home-trust-layout__intro .wo-home-text-link {
  margin-top: 22px;
}

.wo-home-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wo-home-trust-grid article {
  padding: 23px;
  border: 1px solid var(--wo-home-border);
  border-radius: var(--wo-home-radius-md);
  background: var(--wo-home-white);
  box-shadow: 0 5px 18px rgba(4, 15, 61, 0.04);
}

.wo-home-trust-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 15px;
  border-radius: 12px;
  color: var(--wo-home-navy);
  background: var(--wo-home-blue-50);
}

.wo-home-trust-grid svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wo-home-trust-grid h3,
.wo-home-trust-grid p {
  margin: 0;
}

.wo-home-trust-grid h3 {
  color: var(--wo-home-navy);
  font-size: 1rem;
}

.wo-home-trust-grid p {
  margin-top: 7px;
  color: var(--wo-home-muted);
  font-size: 0.84rem;
}

.wo-home-disclosure {
  margin: 32px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--wo-home-gold);
  color: #59657a;
  background: #fbf7ef;
  font-size: 0.84rem;
}

/* Koopgidsen */
.wo-home-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wo-home-guide-card {
  overflow: hidden;
  border: 1px solid var(--wo-home-border);
  border-radius: var(--wo-home-radius-md);
  background: var(--wo-home-white);
  box-shadow: 0 5px 18px rgba(4, 15, 61, 0.045);
}

.wo-home-guide-card__visual {
  display: grid;
  min-height: 150px;
  place-items: center;
  color: var(--wo-home-navy);
  background:
    radial-gradient(circle at center, rgba(222, 161, 75, 0.2), transparent 32%),
    linear-gradient(135deg, var(--wo-home-blue-50), #fff7eb);
}

.wo-home-guide-card__visual span {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--wo-home-shadow-sm);
}

.wo-home-guide-card__visual svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}

.wo-home-guide-card__body {
  padding: 20px;
}

.wo-home-guide-card__meta {
  color: var(--wo-home-gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wo-home-guide-card h3 {
  margin-top: 8px;
  font-size: 1.08rem;
}

.wo-home-guide-card h3 a {
  text-decoration: none;
}

.wo-home-guide-card p {
  min-height: 3.9em;
  margin: 9px 0 17px;
  color: var(--wo-home-muted);
  font-size: 0.86rem;
}

.wo-home-guide-card .wo-home-text-link {
  font-size: 0.82rem;
}

.wo-home-ad--guide {
  min-height: 100%;
}

.wo-home-ad--guide .wo-home-ad__link {
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 36px 24px 24px;
}

.wo-home-ad--guide .wo-home-ad__content {
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 0 0;
}

/* CTA */
.wo-home-cta-strip {
  padding: 48px 0;
  background: var(--wo-home-navy);
}

.wo-home-cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wo-home-cta-strip .wo-home-eyebrow {
  color: #f1c57a;
}

.wo-home-cta-strip h2 {
  max-width: 720px;
  color: var(--wo-home-white);
}

.wo-home-cta-strip__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

/* Mobile sticky */
.wo-home-mobile-sticky {
  position: fixed;
  z-index: 9999;
  right: 8px;
  bottom: 8px;
  left: 8px;
  display: none;
}

.wo-home-mobile-sticky__close {
  position: absolute;
  z-index: 3;
  top: -11px;
  right: -2px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--wo-home-navy);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(4, 15, 61, 0.25);
}

.wo-home-ad--mobile-sticky {
  border-color: rgba(4, 15, 61, 0.18);
  box-shadow: 0 14px 36px rgba(4, 15, 61, 0.28);
}

.wo-home-ad--mobile-sticky .wo-home-ad__picture {
  display: none;
}

.wo-home-ad--mobile-sticky .wo-home-ad__link {
  min-height: 72px;
}

.wo-home-ad--mobile-sticky .wo-home-ad__content {
  gap: 8px;
  padding: 11px 44px 11px 12px;
}

.wo-home-ad--mobile-sticky .wo-home-ad__title {
  font-size: 0.9rem;
}

.wo-home-ad--mobile-sticky .wo-home-ad__text {
  display: none;
}

.wo-home-ad--mobile-sticky .wo-home-button {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 0.72rem;
}

@media (max-width: 1179px) {
  .wo-home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
    gap: 36px;
  }

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

  .wo-home-product-card:nth-child(n + 4) {
    display: none;
  }

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

  .wo-home-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .wo-home-section {
    padding: 62px 0;
  }

  .wo-home-hero {
    padding: 48px 0 56px;
  }

  .wo-home-hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .wo-home-hero__content {
    max-width: 760px;
  }

  .wo-home-hero__spotlight {
    max-width: 620px;
  }

  .wo-home-choice-grid,
  .wo-home-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .wo-home-product-card:nth-child(n + 3) {
    display: none;
  }

  .wo-home-trust-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .wo-home-cta-strip__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .wo-home-fallback-header nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .wo-home-container {
    width: min(calc(100% - 24px), var(--wo-home-container));
  }

  .wo-home-section {
    padding: 50px 0;
  }

  .wo-home-section-heading {
    margin-bottom: 24px;
  }

  .wo-home-section-heading--split {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .wo-home-hero {
    padding: 38px 0 42px;
  }

  .wo-home-hero__content h1 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .wo-home-search {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .wo-home-search button {
    min-height: 44px;
  }

  .wo-home-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wo-home-trust-list {
    display: grid;
    gap: 8px;
  }

  .wo-home-spotlight-card__image {
    min-height: 220px;
  }

  .wo-home-spotlight-card__image img {
    height: 205px;
  }

  .wo-home-choice-grid {
    grid-template-columns: 1fr;
  }

  .wo-home-choice-card {
    min-height: 92px;
  }

  .wo-home-product-grid {
    display: grid;
    grid-auto-columns: minmax(82%, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 12px;
    margin-right: -12px;
    padding-right: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .wo-home-product-card,
  .wo-home-product-card:nth-child(n) {
    display: flex;
    scroll-snap-align: start;
  }

  .wo-home-deal-grid,
  .wo-home-brand-grid,
  .wo-home-feature-grid,
  .wo-home-trust-grid,
  .wo-home-guide-grid {
    grid-template-columns: 1fr;
  }

  .wo-home-deal-card {
    grid-template-columns: 38% 62%;
  }

  .wo-home-feature-card {
    min-height: 108px;
  }

  .wo-home-ad__link,
  .wo-home-ad__content {
    align-items: stretch;
    flex-direction: column;
  }

  .wo-home-ad__content {
    gap: 12px;
    padding: 28px 16px 16px;
  }

  .wo-home-ad__text {
    font-size: 0.85rem;
  }

  .wo-home-cta-strip__actions {
    width: 100%;
    flex-direction: column;
  }

  .wo-home-fallback-footer__grid,
  .wo-home-fallback-footer nav {
    flex-direction: column;
  }

  .wo-home-mobile-sticky.is-visible {
    display: block;
  }
}

@media (max-width: 420px) {
  .wo-home-deal-card {
    grid-template-columns: 1fr;
  }

  .wo-home-deal-card__image {
    min-height: 180px;
  }

  .wo-home-deal-card__image img {
    height: 145px;
  }

  .wo-home-deal-card__body {
    border-top: 1px solid var(--wo-home-border);
    border-left: 0;
  }

  .wo-home-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .wo-home-delivery {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wo-home-page *,
  .wo-home-page *::before,
  .wo-home-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}



.wo-home-price-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    min-height: 52px;
    box-sizing: border-box;
    margin-top: 20px;
    padding: 13px 24px;

    border: 0;
    border-radius: 8px;
    outline: none;

    background-color: #4b65bf;
    color: #ffffff !important;

    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.1s ease;
}

.wo-home-price-button,
.wo-home-price-button:link,
.wo-home-price-button:visited,
.wo-home-price-button:hover,
.wo-home-price-button:focus,
.wo-home-price-button:focus-visible,
.wo-home-price-button:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.wo-home-price-button:hover {
    background-color: #3f58ad;
    color: #ffffff !important;
}

.wo-home-price-button:focus-visible {
    background-color: #3f58ad;
    color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(75, 101, 191, 0.28);
}

.wo-home-price-button:active {
    background-color: #354c9c;
    color: #ffffff !important;
    transform: translateY(1px);
}

.wo-home-price-button__text {
    color: #ffffff !important;
}

.wo-home-price-button__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;

    color: #ffffff !important;
}

.wo-home-price-button__icon svg {
    display: block;
    width: 18px;
    height: 18px;

    color: #ffffff !important;
    fill: currentColor !important;
    stroke: currentColor !important;
}

.wo-home-price-button__icon svg path,
.wo-home-price-button__icon svg line,
.wo-home-price-button__icon svg polyline {
    fill: currentColor;
    stroke: currentColor;
}

@media (max-width: 767px) {
    .wo-home-price-button {
        min-height: 50px;
        margin-top: 16px;
        padding: 13px 18px;

        border-radius: 8px;

        font-size: 17px;
        line-height: 1.3;
    }
}