
/* ============================================================
   RESET & VARIABLES
   WP: Verplaats naar /wp-content/themes/outletloket/assets/css/main.css
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ol-yellow:    #ffde59;
  --ol-yellow-dk: #e8c94f;
  --ol-black:     #111111;
  --ol-white:     #ffffff;
  --ol-grey-1:    #F4F4F4;
  --ol-grey-2:    #E8E8E8;
  --ol-grey-3:    #999999;
  --ol-grey-4:    #555555;
  --ol-green:     #1a9e5c;
  --ol-red:       #e53935;
  --ol-orange:    #e65100;
  --ol-radius:    6px;
  --ol-font:      'Inter', sans-serif;
  --ol-display:   'Barlow Condensed', sans-serif;
  --ol-max:       1200px;
  --ol-shadow:    0 2px 12px rgba(0,0,0,.07);
  --ol-shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

body {
  font-family: var(--ol-font);
  color: var(--ol-black);
  background: var(--ol-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--ol-font); cursor: pointer; border: none; }

/* Utility */
.w { max-width: var(--ol-max); margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section--grey { background: var(--ol-grey-1); }
.section--dark { background: var(--ol-black); }
.section-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 28px;
}
.section-title {
  font-family: var(--ol-display);
  font-size: 28px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em;
  line-height: 1;
}
.section-title--white { color: var(--ol-white); }
.section-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ol-yellow); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: ''; width: 16px; height: 2px;
  background: var(--ol-yellow);
}
.link-all {
  font-size: 13px; font-weight: 600; color: var(--ol-yellow);
  display: flex; align-items: center; gap: 4px;
  transition: gap .15s;
}
.link-all:hover { gap: 8px; }

/* ── ANIMATIONS ── */
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,222,89,.4); }
  70%  { box-shadow: 0 0 0 9px rgba(255,222,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,222,89,0); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ── TOPBAR ── */
.site-topbar {
  background: var(--ol-black);
  color: #999; font-size: 11.5px;
  letter-spacing: .04em; padding: 8px 0;
  animation: fadeIn .3s ease;
}
.site-topbar__inner {
  display: flex; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.site-topbar__item {
  display: flex; align-items: center; gap: 5px;
}
.site-topbar__item::before { content: '✓'; color: var(--ol-yellow); font-weight: 700; }

/* ── HEADER ── */
.site-header {
  background: var(--ol-white);
  border-bottom: 1px solid var(--ol-grey-2);
  position: sticky; top: 0; z-index: 200;
  animation: fadeIn .4s ease;
}
.site-header__inner {
  height: 62px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center; gap: 20px;
}

/* Logo */
.site-logo { display: flex; align-items: center; }

/* Search — WP: searchform.php */
.site-search {
  display: flex;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  overflow: hidden;
  transition: border-color .18s; height: 40px;
}
.site-search:focus-within { border-color: var(--ol-yellow); }
.site-search__input {
  flex: 1; border: none; outline: none;
  font-family: var(--ol-font); font-size: 13.5px;
  padding: 0 14px; color: var(--ol-black);
}
.site-search__input::placeholder { color: var(--ol-grey-3); }
.site-search__btn {
  background: var(--ol-yellow); border: none;
  width: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--ol-black); transition: background .18s; flex-shrink: 0;
}
.site-search__btn:hover { background: var(--ol-yellow-dk); }

/* Header actions */
.site-header__actions { display: flex; align-items: center; gap: 6px; }
.hdr-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500;
  color: var(--ol-grey-4); padding: 7px 12px;
  border-radius: var(--ol-radius);
  border: 1.5px solid transparent;
  transition: all .15s; white-space: nowrap;
}
.hdr-btn:hover { color: var(--ol-black); border-color: var(--ol-grey-2); }
.hdr-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
/* WP: woocommerce_header_add_to_cart_fragment */
.hdr-btn--cart {
  background: var(--ol-yellow);
  color: var(--ol-black) !important;
  border-color: var(--ol-yellow) !important;
  font-weight: 700 !important;
  animation: pulse-ring 2.5s ease infinite;
}
.hdr-btn--cart:hover { background: var(--ol-yellow-dk) !important; }
.cart-count {
  background: var(--ol-black); color: var(--ol-white);
  font-size: 10px; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── NAV — WP: wp_nav_menu() ── */
.site-nav { border-bottom: 1px solid var(--ol-grey-2); background: var(--ol-white); }
.site-nav__inner {
  display: flex; overflow-x: auto; scrollbar-width: none;
}
.site-nav__inner::-webkit-scrollbar { display: none; }
.site-nav__item {
  font-size: 13px; font-weight: 500;
  color: var(--ol-grey-4); padding: 12px 15px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .15s;
}
.site-nav__item:hover { color: var(--ol-black); }
.site-nav__item--active { color: var(--ol-black); border-bottom-color: var(--ol-yellow); font-weight: 600; }
.site-nav__item--deals { color: var(--ol-red); font-weight: 600; }

/* ── HERO ── */
.hero {
  background: var(--ol-black);
  overflow: hidden; position: relative;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 100% at 75% 50%, rgba(255,222,89,.06) 0%, transparent 70%);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px; position: relative; z-index: 1;
}
.hero__left {
  padding: 64px 0;
  display: flex; flex-direction: column; justify-content: center;
  animation: fadeUp .6s ease .1s both;
}
.hero__kicker {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ol-yellow); margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.hero__kicker::before { content: ''; width: 18px; height: 2px; background: var(--ol-yellow); }
.hero__title {
  font-family: var(--ol-display);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 900; line-height: .92;
  color: var(--ol-white); text-transform: uppercase;
  letter-spacing: -.01em; margin-bottom: 22px;
}
.hero__title mark { background: none; color: var(--ol-yellow); display: block; }
.hero__sub {
  font-size: 15px; line-height: 1.65;
  color: #777; max-width: 360px; margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 12px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ol-yellow); color: var(--ol-black);
  font-family: var(--ol-display);
  font-weight: 800; font-size: 15px;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--ol-radius);
  transition: background .18s, transform .12s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.btn-primary:hover {
  background: var(--ol-yellow-dk);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,222,89,.35);
}
.btn-ghost {
  font-size: 13px; font-weight: 500;
  color: #777; display: flex; align-items: center; gap: 5px;
  transition: color .15s;
}
.btn-ghost:hover { color: var(--ol-white); }
.hero__stats {
  display: flex; gap: 36px;
  margin-top: 44px; padding-top: 36px;
  border-top: 1px solid #222; flex-wrap: wrap;
}
.hero__stat-val {
  font-family: var(--ol-display);
  font-size: 34px; font-weight: 900;
  color: var(--ol-white); line-height: 1;
}
.hero__stat-val em { color: var(--ol-yellow); font-style: normal; }
.hero__stat-label {
  font-size: 11px; color: #555;
  text-transform: uppercase; letter-spacing: .08em; margin-top: 3px;
}

/* Hero right — outlet visual */
.hero__right {
  display: flex; align-items: stretch;
  background: #0c0c0c;
  position: relative; overflow: hidden;
  animation: fadeIn .8s ease .2s both;
}
.hero__right::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,222,89,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,222,89,.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero__right::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,222,89,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__visual {
  position: relative; z-index: 1;
  width: 100%; padding: 40px 44px;
  display: flex; flex-direction: column; justify-content: center;
}

/* Hero right — header bar */
.hero__v-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.hero__v-label { font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #444; }
.hero__v-kicker { font-family: var(--ol-display); font-size: 15px; font-weight: 900; color: var(--ol-yellow); letter-spacing: .04em; }

/* Deal rows */
.hero__v-deals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.hero__v-deal {
  display: flex; align-items: center;
  background: #111; border: 1px solid #1e1e1e; border-radius: 8px;
  padding: 13px 18px; color: inherit; transition: border-color .18s, background .18s;
}
.hero__v-deal:hover { border-color: rgba(255,222,89,.25); background: #131309; }
.hero__v-deal-left { flex: 1; min-width: 0; }
.hero__v-deal-brand {
  font-family: var(--ol-display); font-size: 19px; font-weight: 900;
  text-transform: uppercase; color: var(--ol-white); line-height: 1;
}
.hero__v-deal-cat { font-size: 10.5px; color: #444; margin-top: 2px; text-transform: uppercase; letter-spacing: .08em; }
.hero__v-deal-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hero__v-deal-was {
  font-family: var(--ol-display); font-size: 15px; font-weight: 700;
  color: #2e2e2e; text-decoration: line-through; text-decoration-color: #e53935;
}
.hero__v-deal-now { font-family: var(--ol-display); font-size: 22px; font-weight: 900; color: var(--ol-white); }
.hero__v-deal-pct {
  font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: var(--ol-yellow); color: var(--ol-black); padding: 3px 7px; border-radius: 3px; white-space: nowrap;
}

/* Brand ticker strip */
.hero__v-brands {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 18px; border-top: 1px solid #1a1a1a;
}
.hero__v-brand {
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #2e2e2e; padding: 3px 9px; border: 1px solid #1e1e1e; border-radius: 3px;
}

/* Hero right — visual collection cards */
@media (min-width: 1024px) {
  .hero__right {
    background: transparent;
    overflow: visible;
  }
  .hero__right::before,
  .hero__right::after {
    display: none;
  }
  .hero-right {
    position: relative;
    width: 100%;
    padding: 40px 44px;
  }
  .hero-right__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 0 4px;
  }
  .hero-right__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ol-white);
    letter-spacing: .03em;
  }
  .hero-right__tag {
    color: var(--ol-yellow);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }
  .hero-card {
    position: relative;
    display: block;
    width: 100%;
    height: 230px;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--ol-yellow);
    color: var(--ol-black);
    text-decoration: none;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, filter .3s ease;
  }
  .hero-card:hover,
  .hero-card:focus-visible {
    filter: saturate(1.04);
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
  }
  .hero-card:last-child {
    margin-bottom: 0;
  }
  .hero-card:focus-visible {
    outline: 3px solid var(--ol-white);
    outline-offset: 3px;
  }
  .hero-card__circle {
    position: absolute;
    border-radius: 50%;
    background: #fdf3b8;
    will-change: transform;
  }
  .hero-card__circle--1 {
    width: 360px;
    height: 360px;
    left: -150px;
    top: -130px;
    animation: heroCardFloat1 11s ease-in-out infinite;
  }
  .hero-card__circle--2 {
    width: 320px;
    height: 320px;
    right: -110px;
    bottom: -130px;
    animation: heroCardFloat2 13s ease-in-out infinite;
  }
  .hero-card__title {
    position: absolute;
    top: 38px;
    left: 36px;
    z-index: 2;
    max-width: 48%;
    font-family: 'Archivo Black', var(--ol-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--ol-black);
    line-height: 1;
    text-transform: uppercase;
  }
  .hero-card__subtitle {
    position: absolute;
    top: 90px;
    left: 36px;
    z-index: 2;
    max-width: 45%;
    color: rgba(17,17,17,.7);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
  }
  .hero-card__brand {
    position: absolute;
    bottom: 28px;
    left: 36px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ol-black);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
  }
  .hero-card__brand-bar {
    display: inline-block;
    width: 22px;
    height: 2.5px;
    background: var(--ol-black);
  }
  .hero-card__cta {
    position: absolute;
    right: 28px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--ol-black);
    color: var(--ol-yellow);
    transition: width .3s cubic-bezier(.2,.8,.2,1), padding .3s cubic-bezier(.2,.8,.2,1);
  }
  .hero-card__cta-label {
    max-width: 0;
    margin-right: 0;
    overflow: hidden;
    color: var(--ol-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: max-width .3s cubic-bezier(.2,.8,.2,1), margin-right .3s cubic-bezier(.2,.8,.2,1);
  }
  .hero-card__cta-arrow {
    display: inline-block;
    color: var(--ol-yellow);
    font-size: 18px;
    line-height: 1;
    transition: transform .3s ease;
  }
  .hero-card:hover .hero-card__cta {
    width: 145px;
    padding: 0 18px;
    justify-content: space-between;
  }
  .hero-card:hover .hero-card__cta-label {
    max-width: 120px;
    margin-right: 8px;
  }
  .hero-card:hover .hero-card__cta-arrow {
    transform: translateX(2px);
  }
  .hero-card__product-wrap {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 58%;
    height: 100%;
    overflow: visible;
  }
  .hero-card__product {
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 105%;
    object-fit: contain;
    object-position: right center;
    mix-blend-mode: multiply;
    transform: translateY(-50%);
    transition: transform .42s cubic-bezier(.2,.8,.2,1), filter .3s ease;
  }
  .hero-card:hover .hero-card__product,
  .hero-card:focus-visible .hero-card__product {
    filter: drop-shadow(0 14px 18px rgba(0,0,0,.18));
    transform: translateY(-50%) scale(1.09);
  }
}

@keyframes heroCardFloat1 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.06) translate(8px, -6px); }
}
@keyframes heroCardFloat2 {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(-10px, 8px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card__circle--1,
  .hero-card__circle--2 {
    animation: none;
  }
}
@media (max-width: 1023px) {
  .hero-right {
    display: none;
  }
}

/* ── USP STRIP ── */
.usp-strip {
  border-bottom: 1px solid var(--ol-grey-2);
  padding: 18px 0;
  animation: fadeUp .5s ease .2s both;
}
.usp-strip__inner {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.usp-strip__item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--ol-grey-4);
}
.usp-strip__item svg { color: var(--ol-yellow); flex-shrink: 0; width: 18px; height: 18px; }

/* ── CATEGORIES — WP: woocommerce_product_categories ── */
.woo-category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
/* WP: .product-category (WooCommerce default class) */
.woo-category-list__item {
  background: var(--ol-grey-1);
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  padding: 20px;
  display: flex; align-items: center; gap: 14px;
  cursor: pointer; transition: all .2s cubic-bezier(.34,1.56,.64,1);
}
.woo-category-list__item:hover {
  border-color: var(--ol-yellow);
  background: #fffbf0;
  transform: translateY(-3px);
}
.woo-category-list__icon {
  width: 52px; height: 52px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.woo-category-list__icon img { width: 52px; height: 52px; display: block; }
.woo-category-list__name {
  font-size: 14px; font-weight: 600; color: var(--ol-black); line-height: 1.2;
}
.woo-category-list__count { font-size: 11px; color: var(--ol-grey-3); margin-top: 2px; }

/* ── PRODUCT GRID — WP: woocommerce_product_loop ── */
/* WP: ul.products → .woo-product-grid */
.woo-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* WP: li.product → .woo-product-card */
.woo-product-card {
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  overflow: hidden;
  background: var(--ol-white);
  transition: all .2s cubic-bezier(.34,1.56,.64,1);
  display: flex; flex-direction: column;
}
.woo-product-card:hover {
  border-color: #ccc;
  box-shadow: var(--ol-shadow-lg);
  transform: translateY(-4px);
}

/* WP: .woocommerce-loop-product__link → .woo-product-card__img-wrap */
.woo-product-card__img-wrap {
  height: 180px; background: var(--ol-grey-1);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.woo-product-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
  background: #FFFFFF;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}
.woo-product-card:hover .woo-product-card__img-wrap img { transform: scale(1.05); }

/* WP: .onsale → .woo-product-card__badge */
.woo-product-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--ol-yellow); color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 11px; font-weight: 800;
  padding: 2px 8px; border-radius: 3px;
  letter-spacing: .04em;
}
.woo-product-card__badge--new {
  background: var(--ol-black); color: var(--ol-yellow);
}
.woo-product-card__cond { position: absolute; top: 32px; left: 10px; font-size: 9.5px; font-weight: 700; padding: 2px 6px; border-radius: 3px; letter-spacing: .06em; text-transform: uppercase; background: #e65100; color: #fff; pointer-events: none; }
.woo-product-card__cond--new { background: var(--ol-green); }
.woo-product-card__body {
  padding: 14px; flex: 1; display: flex; flex-direction: column;
}

/* WP: .woocommerce-loop-product__title */
.woo-product-card__brand {
  font-size: 10.5px; font-weight: 700;
  color: var(--ol-yellow); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 4px;
}
.woo-product-card__title {
  font-size: 13.5px; font-weight: 500;
  color: var(--ol-black); line-height: 1.35;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: auto;
}

/* WP: .price → .woo-price */
.woo-price {
  display: flex; align-items: baseline;
  gap: 7px; margin-top: 14px;
}
.woo-price__current {
  font-family: var(--ol-display);
  font-size: 22px; font-weight: 900; color: var(--ol-black);
}
.woo-price__original {
  font-size: 12.5px; color: var(--ol-grey-3);
  text-decoration: line-through;
}
.woo-product-card__foot {
  padding: 10px 14px;
  border-top: 1px solid var(--ol-grey-2);
  display: flex; align-items: center; justify-content: space-between;
}
.woo-stock {
  font-size: 11.5px; font-weight: 600;
  color: var(--ol-green);
  display: flex; align-items: center; gap: 5px;
}
.woo-stock::before {
  content: ''; width: 6px; height: 6px;
  background: var(--ol-green); border-radius: 50%;
}

/* WP: .add_to_cart_button → .woo-add-to-cart */
.woo-add-to-cart {
  font-family: var(--ol-display);
  font-size: 12px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--ol-black); color: var(--ol-white);
  border: none; padding: 7px 14px; border-radius: 3px;
  cursor: pointer; transition: background .15s;
}
.woo-add-to-cart:hover { background: var(--ol-yellow); color: var(--ol-black); }

/* ── PROMO BANNER ── */
.promo-banner {
  background: var(--ol-yellow);
  padding: 0;
  overflow: hidden;
}
.promo-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
  align-items: center;
}
.promo-banner__left {
  padding: 40px 48px 40px 0;
}
.promo-banner__tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(0,0,0,.5); margin-bottom: 10px;
}
.promo-banner__title {
  font-family: var(--ol-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900; line-height: .95;
  text-transform: uppercase; color: var(--ol-black);
  margin-bottom: 16px;
}
.promo-banner__sub {
  font-size: 14px; color: rgba(0,0,0,.6);
  line-height: 1.5; margin-bottom: 24px; max-width: 360px;
}
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ol-black); color: var(--ol-white);
  font-family: var(--ol-display);
  font-weight: 800; font-size: 14px;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 12px 24px; border-radius: var(--ol-radius);
  transition: background .18s, transform .12s;
}
.btn-dark:hover { background: #333; transform: translateY(-1px); }
.promo-banner__right {
  display: flex; align-items: center; justify-content: center;
  position: relative; padding: 20px;
  background: rgba(0,0,0,.05);
  min-height: 220px;
}
.promo-banner__img {
  max-height: 180px; width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.2));
  transition: transform .35s;
}
.promo-banner:hover .promo-banner__img { transform: translateY(-4px); }
.promo-banner__discount {
  position: absolute; top: 20px; right: 20px;
  background: var(--ol-black); color: var(--ol-yellow);
  font-family: var(--ol-display);
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 8px 14px; border-radius: var(--ol-radius);
  line-height: 1.2; text-align: center;
}
.promo-banner__discount strong { display: block; font-size: 26px; }

.promo-banner--wk {
  background:
    radial-gradient(circle at 86% 16%, rgba(255,255,255,.4) 0 0, transparent 165px),
    linear-gradient(90deg, #fff 0%, #fff 49%, #f8f8f2 100%);
  border-top: 6px solid var(--ol-yellow);
  border-bottom: 6px solid var(--ol-yellow);
}
.promo-banner__inner--link {
  color: inherit;
  text-decoration: none;
}
.promo-banner--wk .promo-banner__inner {
  min-height: 300px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 42px;
}
.promo-banner--wk .promo-banner__left {
  padding: 44px 0;
}
.promo-banner--wk .promo-banner__tag {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ol-yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
  margin-bottom: 14px;
}
.promo-banner--wk .promo-banner__tag::before {
  content: "";
  width: 42px;
  height: 3px;
  background: currentColor;
}
.promo-banner--wk .promo-banner__title {
  max-width: 660px;
  font-size: clamp(38px, 5.1vw, 72px);
  letter-spacing: .02em;
  line-height: .92;
  margin-bottom: 22px;
}
.promo-banner--wk .promo-banner__sub {
  max-width: 560px;
  color: var(--ol-black);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.32;
  margin-bottom: 18px;
}
.promo-banner__points {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin-bottom: 24px;
}
.promo-banner__points span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ol-black);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}
.promo-banner__points b {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ol-yellow);
  color: var(--ol-black);
  font-family: var(--ol-font);
  font-size: 17px;
  line-height: 1;
}
.promo-banner--wk .btn-dark {
  min-height: 52px;
  padding: 0 28px;
  color: var(--ol-yellow);
  font-size: 17px;
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}
.promo-banner--wk:hover .btn-dark {
  transform: translateY(-2px);
  background: #000;
}
.promo-banner__note {
  margin: 18px 0 0;
  color: rgba(0,0,0,.48);
  font-size: 12px;
  line-height: 1.45;
}
.promo-banner__right--wk {
  overflow: hidden;
  background: transparent;
  padding: 28px 0;
}
.wk-deal-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 236px;
  margin-left: auto;
  padding: 34px 36px;
  border: 1px solid rgba(0,0,0,.08);
  background: var(--ol-yellow);
  box-shadow: 0 18px 46px rgba(0,0,0,.10);
  overflow: hidden;
}
.wk-deal-card::before,
.wk-deal-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wk-deal-card::before {
  right: -88px;
  top: -82px;
  width: 270px;
  height: 270px;
  background: rgba(255,255,255,.55);
}
.wk-deal-card::after {
  right: -18px;
  bottom: -54px;
  width: 190px;
  height: 190px;
  border: 3px solid rgba(255,255,255,.62);
}
.wk-deal-card__badge {
  position: absolute;
  right: 26px;
  top: 24px;
  z-index: 3;
  padding: 10px 15px 9px;
  border-radius: 6px;
  background: var(--ol-black);
  color: var(--ol-yellow);
  font-family: var(--ol-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.wk-deal-card__badge strong {
  display: block;
  font-size: 26px;
}
.wk-deal-card__ball {
  position: absolute;
  right: 64px;
  top: 68px;
  z-index: 1;
  font-size: 122px;
  line-height: 1;
  opacity: .18;
  transform: rotate(-12deg);
}
.wk-deal-card__title {
  position: relative;
  z-index: 2;
  max-width: 250px;
  font-family: var(--ol-display);
  font-size: 54px;
  font-weight: 900;
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ol-black);
}
.wk-deal-card__subtitle {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  color: rgba(0,0,0,.62);
  font-size: 16px;
  font-weight: 800;
}
.wk-deal-card__icons {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.wk-deal-card__icons span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ol-black);
  font-size: 18px;
}
.wk-deal-card__brand {
  position: absolute;
  right: 32px;
  bottom: 28px;
  z-index: 2;
  width: 150px;
  opacity: .82;
}
.wk-deal-card__brand svg {
  width: 100%;
  height: auto;
}
.promo-banner--wk:hover .wk-deal-card {
  transform: translateY(-3px);
}
.wk-deal-card,
.promo-banner--wk .btn-dark {
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* ── SEO TEXT BLOCK ── */
.seo-text-section { padding: 0 0 40px; }
.seo-text-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px; margin-top: 8px;
}
.seo-text-block {
  background: var(--ol-grey-1);
  border-radius: 8px; padding: 24px;
}
.seo-text-block h3 {
  font-family: var(--ol-display);
  font-size: 18px; font-weight: 900;
  text-transform: uppercase; margin-bottom: 10px;
}
.seo-text-block p {
  font-size: 13.5px; line-height: 1.7; color: var(--ol-grey-4);
}
@media (max-width: 900px) {
  .seo-text-grid { grid-template-columns: 1fr; }
}

/* ── BRANDS — WP: WooCommerce Brands plugin ── */
.woo-brand-showcase { padding: 56px 0; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.brand-card {
  background: var(--ol-white);
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  padding: 20px 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  cursor: pointer;
  transition: all .2s cubic-bezier(.34,1.56,.64,1);
  text-align: center;
  color: inherit;
  min-height: 98px;
  text-decoration: none;
}
.brand-card:hover {
  border-color: var(--ol-yellow);
  box-shadow: var(--ol-shadow);
  transform: translateY(-3px);
}
.brand-card__name {
  font-family: var(--ol-display);
  font-size: 15px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--ol-black);
}
.brand-card__count {
  font-size: 11px; color: var(--ol-grey-3);
}
.brand-card__dot {
  width: 32px; height: 4px;
  background: var(--ol-grey-2);
  border-radius: 2px;
  transition: background .2s;
}
.brand-card:hover .brand-card__dot { background: var(--ol-yellow); }

/* ── REVIEWS — WP: WooCommerce reviews / Trustpilot ── */
.reviews-section { padding: 60px 0; background: var(--ol-grey-1); }
.reviews-summary {
  display: flex; align-items: center; gap: 32px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.reviews-score {
  text-align: center;
  background: var(--ol-white);
  border: 1.5px solid var(--ol-grey-2);
  border-radius: 10px; padding: 24px 32px;
  flex-shrink: 0;
}
.reviews-score__num {
  font-family: var(--ol-display);
  font-size: 56px; font-weight: 900; line-height: 1;
  color: var(--ol-black);
}
.reviews-score__stars { color: var(--ol-yellow); font-size: 20px; margin: 4px 0; letter-spacing: 2px; }
.reviews-score__label { font-size: 12px; color: var(--ol-grey-3); }
.reviews-bars {
  display: grid;
  flex: 1;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  min-width: 280px;
}
.review-platform {
  background: var(--ol-white);
  border: 1.5px solid var(--ol-grey-2);
  border-radius: 8px;
  color: var(--ol-grey-4);
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 16px 18px;
  text-decoration: none;
}
.review-platform strong {
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.review-platform span {
  color: var(--ol-grey-3);
  font-size: 12px;
  font-weight: 700;
}
.review-platform__name {
  color: var(--ol-yellow) !important;
  font-family: var(--ol-display);
  font-size: 12px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.review-platform:hover {
  border-color: var(--ol-yellow);
  color: var(--ol-black);
}
.reviews-helped {
  background: var(--ol-black);
  border-radius: 8px;
  color: var(--ol-white);
  display: flex;
  flex: 0 0 230px;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
}
.reviews-helped strong {
  color: var(--ol-yellow);
  font-family: var(--ol-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.reviews-helped span {
  color: rgba(255,255,255,.76);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
}

.reviews-carousel { position: relative; }
.reviews-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 4px;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.reviews-grid::-webkit-scrollbar { display: none; }
.reviews-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: 999px;
  background: var(--ol-yellow);
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  cursor: pointer;
  transform: translateY(-50%);
}
.reviews-carousel__nav::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--ol-black);
  border-right: 2px solid var(--ol-black);
}
.reviews-carousel__nav--prev { left: -21px; }
.reviews-carousel__nav--prev::before { transform: translateX(2px) rotate(-135deg); }
.reviews-carousel__nav--next { right: -21px; }
.reviews-carousel__nav--next::before { transform: translateX(-2px) rotate(45deg); }
.reviews-carousel__nav:disabled { opacity: .28; cursor: default; }
/* WP: .comment.review → .review-card */
.review-card {
  background: var(--ol-white);
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 0;
  padding: 22px;
  scroll-snap-align: start;
  transition: box-shadow .2s;
}
.review-card:hover { box-shadow: var(--ol-shadow); }
.review-card__stars { color: var(--ol-yellow); font-size: 14px; margin-bottom: 10px; letter-spacing: 1px; }
.review-card__stars--four span { color: var(--ol-grey-2); }
.review-card__text {
  font-size: 14px; line-height: 1.65; color: var(--ol-grey-4);
  margin-bottom: 16px;
}
.review-card__text::before { content: '"'; font-size: 20px; color: var(--ol-yellow); line-height: 0; vertical-align: -.2em; margin-right: 2px; }
.review-card__author {
  display: flex; align-items: center; gap: 10px;
  border-top: 1px solid var(--ol-grey-2); padding-top: 14px;
}
.review-card__avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--ol-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ol-display);
  font-size: 14px; font-weight: 900; color: var(--ol-black);
  flex-shrink: 0;
}
.review-card__name { font-size: 13px; font-weight: 600; color: var(--ol-black); }
.review-card__date { font-size: 11px; color: var(--ol-grey-3); }
.review-card__product { font-size: 11px; color: var(--ol-yellow); font-weight: 600; margin-top: 1px; }
.review-card__verified {
  margin-left: auto;
  font-size: 10px; color: var(--ol-green); font-weight: 600;
  display: flex; align-items: center; gap: 3px;
}

/* ── WHY US ── */
.why-section { padding: 60px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px; background: var(--ol-grey-2);
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  overflow: hidden;
  margin-top: 28px;
}
.why-card {
  background: var(--ol-white);
  padding: 32px 24px;
  transition: background .2s;
}
.why-card:hover { background: #fffbf0; }
.why-card__icon {
  width: 44px; height: 44px;
  background: var(--ol-yellow);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-card__icon svg { width: 22px; height: 22px; color: var(--ol-black); }
.why-card__title {
  font-family: var(--ol-display);
  font-size: 18px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .03em;
  margin-bottom: 8px; color: var(--ol-black);
}
.why-card__text { font-size: 13.5px; line-height: 1.65; color: var(--ol-grey-4); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ol-black);
  border-top: 3px solid var(--ol-yellow);
  padding: 52px 0 24px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid #1e1e1e; margin-bottom: 24px;
}
.site-footer__brand p {
  font-size: 13px; color: #aaa; line-height: 1.7;
  margin-top: 16px; max-width: 250px;
}
.site-footer__col h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ol-white); margin-bottom: 14px;
}
.site-footer__col ul { list-style: none; }
.site-footer__col li { margin-bottom: 8px; }
.site-footer__col a {
  font-size: 13px; color: var(--ol-yellow); transition: color .15s;
}
.site-footer__col a:hover { color: var(--ol-white); }
.site-footer__bottom {
  display: flex; justify-content: space-between;
  font-size: 11.5px; color: #888; flex-wrap: wrap; gap: 8px;
}
.site-footer__bottom a { color: var(--ol-yellow); }
.site-footer__bottom a:hover { color: var(--ol-white); }
.footer-legal { display: flex; gap: 20px; }
.payment-row {
  display: flex; gap: 6px; align-items: center; margin-top: 20px;
}
.payment-badge {
  background: #1a1a1a; border: 1px solid #2a2a2a;
  border-radius: 3px; padding: 4px 10px;
  font-size: 10.5px; color: var(--ol-yellow); font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero__right { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .woo-category-list { grid-template-columns: repeat(2, 1fr); }
  .woo-product-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-grid { grid-template-columns: repeat(4, 1fr); }
  .review-card { flex-basis: calc((100% - 14px) / 2); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .promo-banner__inner { grid-template-columns: 1fr; }
  .promo-banner__right { display: none; }
}
@media (max-width: 640px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .site-header__actions .hdr-btn:not(.hdr-btn--cart) { display: none; }
  .reviews-bars { flex: 1 1 100%; grid-template-columns: 1fr; min-width: 0; }
  .reviews-helped { flex: 1 1 100%; }
  .reviews-grid { margin: 0 -16px; padding: 0 16px 4px; scroll-padding-inline: 16px; }
  .review-card { flex-basis: min(86vw, 360px); }
  .reviews-carousel__nav { display: none; }
  .woo-category-list { gap: 7px; }
  .woo-category-list__item {
    min-width: 0;
    min-height: 58px;
    gap: 8px;
    padding: 9px;
    border-radius: 7px;
  }
  .woo-category-list__item > div:last-child { min-width: 0; }
  .woo-category-list__icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
  .woo-category-list__icon img {
    width: 30px;
    height: 30px;
  }
  .woo-category-list__name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .woo-category-list__count { display: none; }
  .woo-product-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .hero__title { font-size: 44px; }
}

.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social__btn { width: 34px; height: 34px; border-radius: 6px; background: #1a1a1a; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; color: #666; transition: background .15s, color .15s, border-color .15s; }
.footer-social__btn:hover { background: var(--ol-yellow); color: var(--ol-black); border-color: var(--ol-yellow); }
.promo-banner__img svg { width: 180px; max-width: 100%; height: auto; }

/* WordPress and WooCommerce integration */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.site-main { min-height: 52vh; }
.content-section { padding: 48px 0 64px; }
.entry-header { margin-bottom: 24px; }
.entry-title, .page-title { font-family: var(--ol-display); font-size: clamp(32px, 4vw, 52px); font-weight: 900; line-height: .95; text-transform: uppercase; color: var(--ol-black); }
.entry-content { font-size: 15px; line-height: 1.75; color: var(--ol-grey-4); }
.entry-content p, .entry-content ul, .entry-content ol, .entry-content table, .entry-content form { margin-bottom: 18px; }
.entry-content a { color: var(--ol-black); border-bottom: 2px solid var(--ol-yellow); }
.site-logo img, .custom-logo-link img { max-height: 48px; width: auto; }
.site-nav .menu { display: flex; list-style: none; overflow-x: auto; scrollbar-width: none; }
.site-nav .menu::-webkit-scrollbar { display: none; }
.site-nav .menu a { display: block; font-size: 13px; font-weight: 500; color: var(--ol-grey-4); padding: 12px 15px; white-space: nowrap; border-bottom: 2px solid transparent; transition: all .15s; }
.site-nav .menu a:hover, .site-nav .current-menu-item > a { color: var(--ol-black); border-bottom-color: var(--ol-yellow); }
.site-nav__fallback { display: flex; overflow-x: auto; scrollbar-width: none; }
.site-nav__fallback::-webkit-scrollbar { display: none; }
.site-search form { display: contents; }
.no-woo-notice { background: #fffbf0; border: 1.5px solid var(--ol-yellow); border-radius: var(--ol-radius); padding: 16px 18px; color: var(--ol-grey-4); font-size: 14px; line-height: 1.6; }
ul.woo-product-grid, .woocommerce ul.products { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product { width: auto; float: none; margin: 0; }
.woo-product-card__link { color: inherit; display: flex; flex-direction: column; flex: 1; }
.woo-product-card .price, .woocommerce div.product p.price, .woocommerce div.product span.price { display: flex; align-items: baseline; gap: 7px; color: var(--ol-black); margin-top: 14px; font-family: var(--ol-display); font-size: 22px; font-weight: 900; }
.woo-product-card .price del, .woocommerce div.product p.price del, .woocommerce div.product span.price del { order: 2; opacity: 1; color: var(--ol-grey-3); font-family: var(--ol-font); font-size: 12.5px; font-weight: 400; }
.woo-product-card .price ins, .woocommerce div.product p.price ins, .woocommerce div.product span.price ins { text-decoration: none; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit, .woocommerce .button, .button, .wp-element-button { font-family: var(--ol-display); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--ol-black); color: var(--ol-white); border: none; border-radius: 3px; padding: 11px 16px; line-height: 1.2; transition: background .15s, color .15s, transform .12s; }
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce .button:hover, .button:hover, .wp-element-button:hover { background: var(--ol-yellow); color: var(--ol-black); transform: translateY(-1px); }
.woocommerce a.added_to_cart { display: inline-flex; margin-left: 8px; font-size: 12px; font-weight: 700; color: var(--ol-green); }
.woocommerce span.onsale { background: var(--ol-yellow); color: var(--ol-black); border-radius: 3px; min-height: auto; min-width: auto; line-height: 1.2; padding: 4px 8px; font-family: var(--ol-display); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.woocommerce .woocommerce-result-count { color: var(--ol-grey-4); font-size: 13px; margin: 0 0 20px; }
.woocommerce .woocommerce-ordering select, .woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce form .form-row select, .woocommerce .quantity .qty, .woocommerce input[type='text'], .woocommerce input[type='email'], .woocommerce input[type='tel'], .woocommerce input[type='password'], .woocommerce textarea, .woocommerce select { border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); padding: 10px 12px; font-family: var(--ol-font); font-size: 14px; background: var(--ol-white); color: var(--ol-black); min-height: 42px; }
.woocommerce .woocommerce-ordering select:focus, .woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row textarea:focus, .woocommerce input:focus, .woocommerce textarea:focus, .woocommerce select:focus { outline: none; border-color: var(--ol-yellow); }
.woo-page { padding: 34px 0 64px; }
.woo-page .woocommerce-products-header { background: var(--ol-black); margin: 0 0 28px; padding: 38px 34px; border-radius: var(--ol-radius); }
.woo-page .woocommerce-products-header__title { color: var(--ol-white); font-family: var(--ol-display); font-size: clamp(34px, 4vw, 54px); font-weight: 900; text-transform: uppercase; line-height: .95; }
.woo-page .term-description { color: #555; max-width: 820px; font-size: 15.5px; line-height: 1.8; margin-top: 12px; }
.woocommerce nav.woocommerce-pagination { margin-top: 36px; }
.woocommerce nav.woocommerce-pagination ul { border: 0; display: flex; justify-content: center; gap: 4px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center; color: var(--ol-grey-4); background: var(--ol-white); }
.woocommerce nav.woocommerce-pagination ul li span.current, .woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--ol-yellow); color: var(--ol-black); border-color: var(--ol-yellow); }
.woocommerce div.product { padding: 36px 0 64px; }
.woocommerce div.product div.images img { background: var(--ol-white); border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); padding: 18px; object-fit: contain; }
.woocommerce div.product .product_title { font-family: var(--ol-display); font-size: clamp(32px, 4vw, 56px); font-weight: 900; text-transform: uppercase; line-height: .95; color: var(--ol-black); }
.woocommerce div.product form.cart { display: flex; gap: 10px; align-items: center; margin: 24px 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; margin: 34px 0 0; border-bottom: 1.5px solid var(--ol-grey-2); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { border: 1.5px solid var(--ol-grey-2); background: var(--ol-grey-1); border-radius: var(--ol-radius) var(--ol-radius) 0 0; margin: 0 4px 0 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--ol-white); border-bottom-color: var(--ol-white); }
.woocommerce div.product .woocommerce-tabs .panel { border: 1.5px solid var(--ol-grey-2); border-top: 0; padding: 24px; border-radius: 0 0 var(--ol-radius) var(--ol-radius); color: var(--ol-grey-4); line-height: 1.7; }
.woocommerce table.shop_table { border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); overflow: hidden; background: var(--ol-white); }
.woocommerce table.shop_table th { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--ol-black); background: var(--ol-grey-1); }
.woocommerce table.shop_table td, .woocommerce table.shop_table th { padding: 14px; border-color: var(--ol-grey-2); }
.woocommerce-cart .cart-collaterals .cart_totals, .woocommerce-checkout #order_review, .woocommerce-checkout #payment, .woocommerce-account .woocommerce-MyAccount-navigation, .woocommerce-account .woocommerce-MyAccount-content, .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register { background: var(--ol-white); border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); padding: 22px; box-shadow: var(--ol-shadow); }
.woocommerce-checkout #payment { background: var(--ol-grey-1); }
.woocommerce-checkout #payment ul.payment_methods { border-bottom-color: var(--ol-grey-2); }
.woocommerce-checkout label .required,
.woocommerce-checkout label .ol-required-star,
.wc-block-checkout label .required,
.wc-block-checkout label .ol-required-star,
.wc-block-components-text-input label .ol-required-star,
.wc-block-components-combobox label .ol-required-star,
.wc-block-components-select label .ol-required-star {
  color: #c44f00 !important;
  display: inline !important;
  font-family: var(--ol-font);
  font-size: 1.08em;
  font-weight: 900;
  line-height: 1;
  margin-left: 4px;
  opacity: 1 !important;
  text-decoration: none !important;
  visibility: visible !important;
}
.woocommerce-checkout label.ol-required-label,
.wc-block-checkout label.ol-required-label {
  font-weight: 700;
}
.woocommerce-checkout .woocommerce-invalid label .required,
.woocommerce-checkout .woocommerce-invalid label .ol-required-star,
.wc-block-checkout .has-error label .ol-required-star {
  color: var(--ol-red) !important;
}
.wc-block-checkout .wc-block-components-text-input input[type="tel"]::placeholder,
.wp-block-woocommerce-checkout .wc-block-components-text-input input[type="tel"]::placeholder {
  color: transparent;
  opacity: 0;
}
.ol-checkout-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 14px;
  padding: 12px;
  background: #f4fbef;
  border: 1px solid #c2dba0;
  border-radius: 8px;
}
.ol-checkout-reassurance span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #315d0e;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}
.ol-checkout-reassurance span::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ol-green);
  flex-shrink: 0;
}
.woocommerce-info, .woocommerce-message, .woocommerce-error { border-top-color: var(--ol-yellow); background: #fffbf0; color: var(--ol-black); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--ol-green); }
.woocommerce-error::before { color: var(--ol-red); }
.woocommerce-account .woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.woocommerce-account .woocommerce-MyAccount-navigation a { display: block; padding: 10px 12px; background: var(--ol-grey-1); border-radius: var(--ol-radius); font-weight: 600; color: var(--ol-grey-4); }
.woocommerce-account .woocommerce-MyAccount-navigation .is-active a, .woocommerce-account .woocommerce-MyAccount-navigation a:hover { background: var(--ol-yellow); color: var(--ol-black); }
.search-result-list { display: grid; gap: 14px; }
.search-result-card { border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); padding: 18px; transition: box-shadow .15s, border-color .15s; }
.search-result-card:hover { border-color: var(--ol-yellow); box-shadow: var(--ol-shadow); }
.search-result-card h2 { font-family: var(--ol-display); font-size: 24px; text-transform: uppercase; margin-bottom: 8px; }
.not-found-box { background: var(--ol-grey-1); border-radius: var(--ol-radius); padding: 28px; }
.woo-stock--low { color: #b45309; }
.woo-stock--low::before { background: #b45309; }
.woo-stock--out { color: var(--ol-red); }
.woo-stock--out::before { background: var(--ol-red); }
@media (max-width: 1024px) { ul.woo-product-grid, .woocommerce ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .site-header__inner { grid-template-columns: 120px 1fr auto; gap: 10px; } .hdr-btn { padding: 8px; font-size: 0; } .hdr-btn .cart-count, .hdr-btn svg { font-size: 10px; } ul.woo-product-grid, .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); } .woo-product-card__foot { flex-direction: column; align-items: stretch; gap: 8px; } .woo-add-to-cart, .woocommerce a.button { width: 100%; justify-content: center; text-align: center; } .promo-banner__left { padding-right: 0; } .site-search__input { min-width: 0; } .woocommerce div.product form.cart { align-items: stretch; flex-wrap: wrap; } }
@media (max-width: 480px) { .w { padding: 0 14px; } .site-header__inner { grid-template-columns: 108px 1fr auto; } .woo-product-card__img-wrap { height: 150px; } .woo-product-card__body { padding: 11px; } .woo-price__current, .woo-product-card .price { font-size: 18px; } .section { padding: 42px 0; } }

/* Content/blog page legacy styles moved to assets/css/static-pages.css. */

/* Source: product.html */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --yellow: #ffde59;
  --black:  #111;
  --white:  #fff;
  --grey-1: #F4F4F4;
  --grey-2: #E8E8E8;
  --grey-3: #999;
  --grey-4: #555;
  --green:  #1a9e5c;
  --red:    #e53935;
  --radius: 6px;
  --font:   'Inter', sans-serif;
  --display:'Barlow Condensed', sans-serif;
  --max:    1200px;
}
body { font-family: var(--font); color: var(--black); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.w { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* ── FADE-IN ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes popIn {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18); }
  70%  { transform: scale(.94); }
  100% { transform: scale(1); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,222,89,.4); }
  70%  { box-shadow: 0 0 0 10px rgba(255,222,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,222,89,0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--black);
  color: #aaa; font-size: 11.5px;
  letter-spacing: .04em; padding: 9px 0;
  animation: fadeIn .4s ease;
}
.topbar-inner {
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.topbar-inner span { display: flex; align-items: center; gap: 5px; }
.topbar-inner span::before { content: '✓'; color: var(--yellow); }

/* ── HEADER ── */
header {
  background: var(--white);
  border-bottom: 1px solid var(--grey-2);
  position: sticky; top: 0; z-index: 200;
  animation: fadeIn .4s ease;
}
.header-row {
  height: 62px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center; gap: 20px;
}
.searchbox {
  display: flex;
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .18s;
  height: 40px;
}
.searchbox:focus-within { border-color: var(--yellow); }
.searchbox input {
  flex: 1; border: none; outline: none;
  font-family: var(--font); font-size: 13.5px;
  padding: 0 14px; color: var(--black);
}
.searchbox input::placeholder { color: var(--grey-3); }
.searchbox button {
  background: var(--yellow); border: none;
  width: 44px; cursor: pointer;
  font-size: 15px; color: var(--black);
  transition: background .18s; flex-shrink: 0;
}
.searchbox button:hover { background: #e8c94f; }
.hdr-actions { display: flex; align-items: center; gap: 6px; }
.hdr-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 500;
  color: var(--grey-4); padding: 7px 12px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: all .15s; cursor: pointer; white-space: nowrap;
}
.hdr-btn:hover { color: var(--black); border-color: var(--grey-2); }
.hdr-btn svg { width: 16px; height: 16px; }
.hdr-cart {
  background: var(--yellow); color: var(--black) !important;
  border-color: var(--yellow) !important; font-weight: 700 !important;
  animation: pulse-ring 2s ease infinite;
}
.hdr-cart:hover { background: #e8c94f !important; }

/* ── NAV ── */
.nav-bar { border-bottom: 1px solid var(--grey-2); background: var(--white); }
.nav-row { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.nav-row::-webkit-scrollbar { display: none; }
.nav-item {
  font-size: 13px; font-weight: 500;
  color: var(--grey-4); padding: 12px 15px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: all .15s;
}
.nav-item:hover { color: var(--black); }
.nav-item.active { color: var(--black); border-bottom-color: var(--yellow); font-weight: 600; }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 14px 0;
  font-size: 12.5px; color: var(--grey-3);
  display: flex; align-items: center; gap: 6px;
  animation: slideRight .4s ease .1s both;
}
.breadcrumb a { color: var(--grey-3); transition: color .15s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { color: var(--grey-2); }
.breadcrumb strong { color: var(--black); font-weight: 500; }

/* ── PRODUCT LAYOUT ── */
.product-page { padding: 0 0 60px; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* ── GALLERY ── */
.gallery { animation: scaleIn .5s ease .15s both; }
.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background: var(--grey-1);
  border-radius: 10px;
  border: 1.5px solid var(--grey-2);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
}
.gallery-main img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 32px;
  transition: transform .4s ease;
}
.gallery-main:hover img { transform: scale(1.06); }
.gallery-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--yellow); color: var(--black);
  font-family: var(--display);
  font-size: 13px; font-weight: 800;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: .04em;
  z-index: 2;
}
.gallery-badge-cond {
  position: absolute; top: 48px; left: 16px;
  background: #e65100; color: #fff;
  font-family: var(--display);
  font-size: 11px; font-weight: 800;
  padding: 3px 9px; border-radius: 4px;
  letter-spacing: .08em; text-transform: uppercase;
  z-index: 2;
}
.gallery-badge-cond--new { background: var(--green); }
.gallery-pickup-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 36px);
  background: #eefbe8;
  color: #00c800;
  font-family: var(--display);
  font-size: clamp(15px, 2.2vw, 21px);
  font-weight: 900;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 5px;
  box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.prod-cond-chip { display: inline-flex; align-items: center; gap: 6px; background: #eefbe8; color: #225514; font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 20px; border: 1.5px solid #bde7ad; margin-top: 10px; }
.prod-cond-chip--new { background: #edfaf3; color: #147a48; border-color: #a0e0c0; }
.prod-cond-chip--outlet { background: #f1f9ed; color: #225514; border-color: #bde7ad; }
.gallery-thumbs {
  display: flex; gap: 8px; margin-top: 10px;
}
.thumb {
  width: 72px; height: 72px;
  background: var(--grey-1);
  border: 1.5px solid var(--grey-2);
  border-radius: 6px; overflow: hidden;
  cursor: pointer;
  transition: border-color .15s, transform .15s;
  flex-shrink: 0;
}
.thumb:hover, .thumb.active {
  border-color: var(--yellow);
  transform: translateY(-1px);
}
.thumb img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 6px;
}

/* ── PRODUCT INFO ── */
.prod-info { animation: fadeUp .5s ease .2s both; }
.prod-info-brand {
  font-size: 11px; font-weight: 700;
  color: var(--yellow); text-transform: uppercase;
  letter-spacing: .14em; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.prod-info-brand::after {
  content: ''; flex: 0 0 30px; height: 2px;
  background: var(--yellow); display: block;
}
.prod-info h1 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 16px;
}
.rating-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.stars { color: var(--yellow); font-size: 15px; letter-spacing: 1px; }
.rating-count { font-size: 12.5px; color: var(--grey-3); }
.rating-link { font-size: 12.5px; color: var(--grey-4); text-decoration: underline; }
.product-trust-line {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--grey-4);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 18px;
}
.product-trust-line a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-trust-line a:hover { color: var(--black); }
.product-trust-line::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Price block */
.price-block {
  background: var(--grey-1);
  border-radius: 8px; padding: 20px;
  margin-bottom: 12px;
  border: 1.5px solid var(--grey-2);
}
.price-main {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 6px;
}
.price-sale {
  font-family: var(--display);
  font-size: 42px; font-weight: 900;
  color: var(--black); line-height: 1;
}
.price-was {
  font-size: 18px; color: var(--grey-3);
  text-decoration: line-through;
}
.price-save {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff3cd; color: #856404;
  font-size: 12px; font-weight: 700;
  padding: 2px 8px; border-radius: 3px;
  margin-left: 4px;
}
.price-incl { font-size: 12px; color: var(--grey-3); margin-top: 4px; }

/* Stock */
.stock-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--green); margin-bottom: 20px;
}
.stock-dot {
  width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  animation: pulse-ring 1.8s ease infinite;
}

.product-certainty {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  padding: 13px 14px;
  border: 1.5px solid var(--ol-grey-2);
  border-left: 4px solid var(--ol-yellow);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffdf2 0%, #fff 62%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .04);
}

.product-certainty__item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ol-black);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.product-certainty__item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--ol-green);
  color: var(--ol-white);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.product-certainty__item--pickup {
  color: #225514;
}

.product-certainty__item--transport {
  color: #225514;
}

.product-certainty__item--pickup::before {
  background: var(--ol-yellow);
  color: var(--ol-black);
}

.product-certainty__item--transport::before {
  background: var(--ol-green);
  color: var(--ol-white);
}

/* Delivery */
.delivery-info {
  background: var(--grey-1);
  border-radius: 8px; padding: 14px 16px;
  margin-bottom: 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.delivery-info--near-price {
  border: 1px solid var(--grey-2);
}
.delivery-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--grey-4);
}
.delivery-row svg { color: var(--yellow); flex-shrink: 0; width: 16px; height: 16px; }
.delivery-row strong { color: var(--black); }

/* Afhaalkorting block — WP: shown when product has tag :50ak */
.pickup-deal {
  background: #f0faf5;
  border: 1.5px solid var(--green);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px;
}
.pickup-deal__badge {
  background: var(--green); color: var(--white);
  font-family: var(--display); font-size: 14px; font-weight: 900;
  padding: 6px 12px; border-radius: 5px;
  white-space: nowrap; text-transform: uppercase; flex-shrink: 0;
  letter-spacing: .04em;
}
.pickup-deal__body { font-size: 13px; line-height: 1.6; color: #222; }
.pickup-deal__body strong { color: #111; }
.pickup-deal__note { font-size: 12px; color: #777; margin-top: 3px; }
.ol-pickup-discount-note {
  align-items: flex-start;
  background: #f6fff2;
  border: 1.5px solid #b9e3a5;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(31, 112, 24, .08);
  color: #225514;
  display: flex;
  gap: 12px;
  margin: 0 0 18px;
  padding: 13px 15px;
}
.ol-pickup-discount-note.is-active {
  background: #effbea;
  border-color: var(--ol-green);
}
.ol-pickup-discount-note__badge {
  background: var(--ol-green);
  border-radius: 5px;
  color: var(--ol-white);
  flex: 0 0 auto;
  font-family: var(--ol-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
}
.ol-pickup-discount-note strong {
  color: #16450c;
  display: block;
  font-family: var(--ol-display);
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.ol-pickup-discount-note p {
  color: #4f6d46;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  margin: 5px 0 0;
}
.ol-pickup-discount-note__transport {
  border-top: 1px solid rgba(34, 85, 20, .16);
  margin-top: 9px !important;
  padding-top: 9px;
}
@media (max-width: 640px) {
  .ol-pickup-discount-note {
    gap: 10px;
    padding: 12px;
  }
  .ol-pickup-discount-note strong {
    font-size: 16px;
  }
}

/* CTA buttons */
.cta-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.btn-add-cart {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--yellow); color: var(--black);
  font-family: var(--display);
  font-size: 17px; font-weight: 900;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 16px 32px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background .18s, transform .12s;
  position: relative; overflow: hidden;
}
.btn-add-cart::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity .2s;
}
.btn-add-cart:hover { background: #e8c94f; transform: translateY(-1px); }
.btn-add-cart:hover::after { opacity: 1; animation: shimmer .8s ease; }
.btn-add-cart:active { transform: scale(.98); }
.btn-add-cart.added {
  background: var(--green); color: white;
  animation: popIn .4s ease;
}

/* Trust pills */
.trust-pills {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.trust-pill {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; color: var(--grey-4);
  background: var(--grey-1);
  border: 1px solid var(--grey-2);
  padding: 5px 10px; border-radius: 20px;
}
.trust-pill svg { width: 12px; height: 12px; color: var(--green); }

/* Witgoed comparison */
.ol-witgoed-compare {
  margin: 38px 0 0;
  padding: 18px;
  border: 1.5px solid var(--grey-2);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0,0,0,.04);
}
.ol-witgoed-compare__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}
.ol-witgoed-compare__head h2 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
}
.ol-witgoed-compare__head p {
  margin: 0;
  max-width: 340px;
  color: var(--grey-4);
  font-size: 14px;
  line-height: 1.35;
}
.ol-witgoed-compare__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.ol-witgoed-compare__table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--grey-2);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}
.ol-witgoed-compare__table th {
  padding: 10px 12px;
  border-bottom: 1px solid var(--grey-2);
  background: var(--grey-1);
  color: var(--grey-4);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}
.ol-witgoed-compare__table td {
  padding: 12px;
  border-bottom: 1px solid var(--grey-2);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  vertical-align: middle;
}
.ol-witgoed-compare__table tr:last-child td {
  border-bottom: 0;
}
.ol-witgoed-compare__table tr.is-current td {
  background: #fffdf2;
}
.ol-witgoed-compare__table td.is-different {
  background: #fffdf2;
  box-shadow: inset 3px 0 0 var(--yellow);
}
.ol-witgoed-compare__product {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  color: var(--black);
  text-decoration: none;
}
.ol-witgoed-compare__product:hover strong {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 3px;
}
.ol-witgoed-compare__thumb {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--grey-2);
  border-radius: 7px;
  background: var(--white);
}
.ol-witgoed-compare__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ol-witgoed-compare__product strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}
.ol-witgoed-compare__product em {
  display: inline-flex;
  margin-top: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.ol-witgoed-compare__price {
  font-family: var(--display);
  font-size: 16px;
  white-space: nowrap;
}
.ol-witgoed-compare__price.is-best {
  color: var(--green);
}
.ol-witgoed-compare__price del {
  color: var(--grey-3);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
}
.ol-witgoed-compare__price ins {
  color: var(--black);
  text-decoration: none;
}
.ol-witgoed-compare__price.is-best ins {
  color: var(--green);
}
.ol-witgoed-compare__energy {
  min-width: 86px;
}
.ol-energy-label {
  --energy-color: #777;
  --energy-text: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 12px 0 10px;
  border-radius: 4px 2px 2px 4px;
  background: var(--energy-color);
  color: var(--energy-text);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.ol-energy-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 10px solid var(--energy-color);
}
.ol-energy-label.is-energy-aplusplusplus,
.ol-energy-label.is-energy-aplusplus,
.ol-energy-label.is-energy-aplus,
.ol-energy-label.is-energy-a {
  --energy-color: #009a44;
}
.ol-energy-label.is-energy-b {
  --energy-color: #51b848;
}
.ol-energy-label.is-energy-c {
  --energy-color: #bfd730;
  --energy-text: #111;
}
.ol-energy-label.is-energy-d {
  --energy-color: #ffe04b;
  --energy-text: #111;
}
.ol-energy-label.is-energy-e {
  --energy-color: #f9a825;
  --energy-text: #111;
}
.ol-energy-label.is-energy-f {
  --energy-color: #ef6c00;
}
.ol-energy-label.is-energy-g {
  --energy-color: #d32f2f;
}
.ol-witgoed-compare__badge,
.ol-witgoed-compare__stock {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 5px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #eaf8ef;
  color: var(--green);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .03em;
  line-height: 1.1;
  text-transform: uppercase;
}
.ol-witgoed-compare__badge.is-pickup {
  background: #fff4bf;
  color: var(--black);
}
.ol-witgoed-compare__note {
  display: block;
  margin-top: 5px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}
.ol-witgoed-compare__note.is-cheaper {
  color: var(--green);
}
.ol-witgoed-compare__note.is-pricier {
  color: var(--grey-4);
}

/* ── TABS ── */
.tabs-section {
  margin-top: 60px;
  animation: fadeUp .5s ease .4s both;
}
.tabs-nav {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--grey-2);
  margin-bottom: 28px;
}
.tab-btn {
  font-size: 14px; font-weight: 600;
  color: var(--grey-3); padding: 12px 20px;
  border: none; background: none; cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .15s;
}
.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--black); border-bottom-color: var(--yellow); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .25s ease; max-width: 820px; }
.tab-panel p,
.tab-panel li,
.product-short-description p,
.product-short-description li {
  font-size: 16px;
  line-height: 1.9;
  color: var(--grey-4);
}
.tab-panel p,
.product-short-description p {
  max-width: 760px;
  margin: 0 0 22px;
}
.tab-panel h2,
.tab-panel h3,
.tab-panel h4,
.product-short-description h2,
.product-short-description h3,
.product-short-description h4 {
  max-width: 760px;
  color: var(--black);
  line-height: 1.16;
  margin: 34px 0 12px;
}
.tab-panel h2,
.product-short-description h2 { font-size: 28px; }
.tab-panel h3,
.product-short-description h3 { font-size: 22px; }
.tab-panel h4,
.product-short-description h4 { font-size: 18px; }
.tab-panel ul,
.tab-panel ol,
.product-short-description ul,
.product-short-description ol {
  max-width: 760px;
  margin: 12px 0 28px;
  padding-left: 24px;
}
.tab-panel li,
.product-short-description li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.tab-panel li::marker,
.product-short-description li::marker {
  color: var(--yellow);
}
.tab-panel > :first-child,
.product-short-description > :first-child { margin-top: 0; }
.tab-panel > :last-child,
.product-short-description > :last-child { margin-bottom: 0; }
.product-specs-visual {
  display: grid;
  gap: 18px;
}
.product-specs-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.product-spec-tile {
  background: #fffdf2;
  border: 1.5px solid var(--grey-2);
  border-left: 4px solid var(--yellow);
  border-radius: 8px;
  padding: 13px 14px;
}
.product-spec-tile span {
  color: var(--grey-3);
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.15;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.product-spec-tile strong {
  color: var(--black);
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}
.product-spec-table {
  border: 1.5px solid var(--grey-2);
  border-radius: 8px;
  display: grid;
  margin: 0;
  overflow: hidden;
}
.product-spec-row {
  display: grid;
  grid-template-columns: minmax(180px, 32%) 1fr;
}
.product-spec-row + .product-spec-row {
  border-top: 1px solid var(--grey-2);
}
.product-spec-row dt,
.product-spec-row dd {
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
  padding: 13px 15px;
}
.product-spec-row dt {
  background: var(--grey-1);
  color: var(--grey-4);
  font-weight: 800;
}
.product-spec-row dd {
  color: var(--black);
  font-weight: 650;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--grey-2); }
.spec-table td {
  padding: 12px 0; font-size: 13.5px;
}
.spec-table td:first-child {
  color: var(--grey-4); width: 40%; font-weight: 500;
}
.spec-table td:last-child { color: var(--black); font-weight: 600; }

/* ── RELATED PRODUCTS ── */
.related { padding: 60px 0; background: var(--grey-1); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.prod {
  border: 1.5px solid var(--grey-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: all .2s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.prod:hover {
  border-color: #ccc;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transform: translateY(-3px);
}
.prod-img-wrap {
  height: 160px; background: var(--grey-1);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.prod-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 14px;
  transition: transform .3s;
}
.prod:hover .prod-img-wrap img { transform: scale(1.05); }
.prod-disc {
  position: absolute; top: 8px; left: 8px;
  background: var(--yellow); color: var(--black);
  font-family: var(--display);
  font-size: 11px; font-weight: 800;
  padding: 2px 7px; border-radius: 3px;
}
.prod-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.prod-brand {
  font-size: 10px; font-weight: 700;
  color: var(--yellow); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 4px;
}
.prod-name {
  font-size: 13px; font-weight: 500;
  line-height: 1.35; color: var(--black);
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: auto;
}
.prod-price-row {
  display: flex; align-items: baseline;
  gap: 6px; margin-top: 12px;
}
.prod-sale { font-family: var(--display); font-size: 20px; font-weight: 900; }
.prod-was { font-size: 12px; color: var(--grey-3); text-decoration: line-through; }
.prod-foot {
  padding: 10px 14px; border-top: 1px solid var(--grey-2);
  display: flex; justify-content: space-between; align-items: center;
}
.prod-stock-ok {
  font-size: 11px; font-weight: 600; color: var(--green);
  display: flex; align-items: center; gap: 4px;
}
.prod-stock-ok::before {
  content: ''; width: 5px; height: 5px;
  background: var(--green); border-radius: 50%;
}
.btn-add {
  font-family: var(--display); font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--black); color: var(--white);
  border: none; padding: 6px 12px; border-radius: 3px;
  cursor: pointer; transition: background .15s;
}
.btn-add:hover { background: var(--yellow); color: var(--black); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  border-top: 3px solid var(--yellow);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid #1e1e1e; margin-bottom: 24px;
}
.footer-brand p { font-size: 13px; color: #aaa; line-height: 1.7; margin-top: 14px; max-width: 240px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: var(--yellow); transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 11.5px; color: #888; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--yellow); }
.footer-bottom a:hover { color: var(--white); }
.footer-links { display: flex; gap: 20px; }

/* Responsive */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .header-row { grid-template-columns: auto 1fr auto; }
  .hdr-actions .hdr-btn:not(.hdr-cart) { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumbs { flex-wrap: wrap; }
}

.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social__btn { width: 34px; height: 34px; border-radius: 6px; background: #1a1a1a; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; color: #666; transition: background .15s, color .15s, border-color .15s; }
.footer-social__btn:hover { background: var(--ol-yellow); color: var(--ol-black); border-color: var(--ol-yellow); }

/* Source: winkel/index.html */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --ol-yellow:    #ffde59; --ol-yellow-dk: #e8c94f; --ol-black: #111111; --ol-white: #ffffff;
  --ol-grey-1: #F4F4F4; --ol-grey-2: #E8E8E8; --ol-grey-3: #999999; --ol-grey-4: #555555;
  --ol-green: #1a9e5c; --ol-red: #e53935; --ol-radius: 6px;
  --ol-font: 'Inter', sans-serif; --ol-display: 'Barlow Condensed', sans-serif;
  --ol-max: 1200px; --ol-shadow: 0 2px 12px rgba(0,0,0,.07); --ol-shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}
body { font-family: var(--ol-font); color: var(--ol-black); background: var(--ol-white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: var(--ol-font); cursor: pointer; border: none; }
.w { max-width: var(--ol-max); margin: 0 auto; padding: 0 20px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(255,222,89,.4); } 70% { box-shadow: 0 0 0 9px rgba(255,222,89,0); } 100% { box-shadow: 0 0 0 0 rgba(255,222,89,0); } }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .07s; } .reveal-delay-2 { transition-delay: .14s; } .reveal-delay-3 { transition-delay: .21s; }
.site-topbar { background: var(--ol-black); color: #999; font-size: 11.5px; letter-spacing: .04em; padding: 8px 0; animation: fadeIn .3s ease; }
.site-topbar__inner { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.site-topbar__item { display: flex; align-items: center; gap: 5px; }
.site-topbar__item::before { content: '✓'; color: var(--ol-yellow); font-weight: 700; }
.site-header { background: var(--ol-white); border-bottom: 1px solid var(--ol-grey-2); position: sticky; top: 0; z-index: 200; animation: fadeIn .4s ease; }
.site-header__inner { height: 62px; display: grid; grid-template-columns: 180px 1fr auto; align-items: center; gap: 20px; }
.site-search { display: flex; border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); overflow: hidden; transition: border-color .18s; height: 40px; }
.site-search:focus-within { border-color: var(--ol-yellow); }
.site-search__input { flex: 1; border: none; outline: none; font-family: var(--ol-font); font-size: 13.5px; padding: 0 14px; color: var(--ol-black); }
.site-search__input::placeholder { color: var(--ol-grey-3); }
.site-search__btn { background: var(--ol-yellow); border: none; width: 44px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ol-black); transition: background .18s; }
.site-search__btn:hover { background: var(--ol-yellow-dk); }
.site-header__actions { display: flex; align-items: center; gap: 6px; }
.hdr-btn { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; color: var(--ol-grey-4); padding: 7px 12px; border-radius: var(--ol-radius); border: 1.5px solid transparent; transition: all .15s; white-space: nowrap; }
.hdr-btn:hover { color: var(--ol-black); border-color: var(--ol-grey-2); }
.hdr-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.hdr-btn--cart { background: var(--ol-yellow); color: var(--ol-black) !important; border-color: var(--ol-yellow) !important; font-weight: 700 !important; animation: pulse-ring 2.5s ease infinite; }
.cart-count { background: var(--ol-black); color: var(--ol-white); font-size: 10px; font-weight: 700; width: 17px; height: 17px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.site-nav { border-bottom: 1px solid var(--ol-grey-2); background: var(--ol-white); }
.site-nav__inner { display: flex; overflow-x: auto; scrollbar-width: none; }
.site-nav__inner::-webkit-scrollbar { display: none; }
.site-nav__item { font-size: 13px; font-weight: 500; color: var(--ol-grey-4); padding: 12px 15px; white-space: nowrap; border-bottom: 2px solid transparent; transition: all .15s; }
.site-nav__item:hover { color: var(--ol-black); }
.site-nav__item--active { color: var(--ol-black); border-bottom-color: var(--ol-yellow); font-weight: 600; }
.site-nav__item--deals { color: var(--ol-red); font-weight: 600; }
.breadcrumb { padding: 14px 0; font-size: 12.5px; color: var(--ol-grey-3); display: flex; align-items: center; gap: 6px; animation: fadeUp .4s ease .1s both; }
.breadcrumb a { color: var(--ol-grey-3); transition: color .15s; }
.breadcrumb a:hover { color: var(--ol-black); }
.breadcrumb span { color: var(--ol-grey-2); }
.breadcrumb strong { color: var(--ol-black); font-weight: 500; }
.cat-header { background: var(--ol-black); padding: 40px 0; animation: fadeUp .5s ease .1s both; }
.cat-header__inner { display: grid; grid-template-columns: minmax(0,1fr); gap: 20px; align-items: start; }
.cat-header__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ol-yellow); margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.cat-header__eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--ol-yellow); }
.cat-header__title { font-family: var(--ol-display); font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: var(--ol-white); text-transform: uppercase; line-height: .95; }
.cat-header__count { font-size: 14px; color: #555; margin-top: 8px; }
.cat-header__subcats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 0; }
.subcat-pill { background: rgba(255,255,255,.08); color: #aaa; font-size: 12px; font-weight: 500; padding: 5px 12px; border-radius: 20px; border: 1px solid rgba(255,255,255,.1); cursor: pointer; transition: all .15s; }
.subcat-pill:hover, .subcat-pill.active { background: var(--ol-yellow); color: var(--ol-black); border-color: var(--ol-yellow); font-weight: 600; }
.cat-layout { padding: 32px 0 60px; }
.cat-layout__inner { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.woo-filters { position: sticky; top: 80px; }
.filter-group { margin-bottom: 24px; border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); overflow: hidden; }
.filter-group__head { padding: 13px 16px; background: var(--ol-grey-1); display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
.filter-group__title { font-size: 13px; font-weight: 700; color: var(--ol-black); text-transform: uppercase; letter-spacing: .06em; }
.filter-group__toggle { font-size: 12px; color: var(--ol-grey-3); transition: transform .2s; }
.filter-group__toggle.open { transform: rotate(180deg); }
.filter-group__body { padding: 14px 16px; background: var(--ol-white); }
.filter-option { display: flex; align-items: center; gap: 10px; padding: 6px 0; cursor: pointer; border-radius: 3px; transition: background .1s; }
.filter-option:hover { background: var(--ol-grey-1); padding-left: 4px; }
.filter-option input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--ol-yellow); cursor: pointer; flex-shrink: 0; }
.filter-option input[type="radio"] { width: 15px; height: 15px; accent-color: var(--ol-yellow); cursor: pointer; flex-shrink: 0; }
.filter-option__label { font-size: 13px; color: var(--ol-grey-4); flex: 1; }
.filter-option__count { font-size: 11px; color: var(--ol-grey-3); }
.filter-option--link { text-decoration: none; color: inherit; }
.filter-option__bullet { width: 15px; height: 15px; border: 1.5px solid var(--ol-grey-3); border-radius: 50%; flex-shrink: 0; background: var(--ol-white); }
.filter-option--link:hover .filter-option__bullet { border-color: var(--ol-yellow); background: var(--ol-yellow); }
.filter-option--link.is-active { background: rgba(255, 221, 75, .18); padding-left: 4px; }
.filter-option--link.is-active .filter-option__label { color: var(--ol-black); font-weight: 700; }
.filter-option--link.is-active .filter-option__count { color: var(--ol-black); }
.filter-option--link.is-active .filter-option__bullet { border-color: var(--ol-yellow); background: var(--ol-yellow); box-shadow: inset 0 0 0 3px var(--ol-white); }
.brand-filter-search { margin-bottom: 10px; }
.brand-filter-search input { width: 100%; min-height: 38px; border: 1.5px solid var(--ol-grey-2); border-radius: 6px; padding: 8px 10px; font-family: var(--ol-font); font-size: 13px; color: var(--ol-black); background: var(--ol-white); outline: none; }
.brand-filter-search input:focus { border-color: var(--ol-yellow); box-shadow: 0 0 0 2px rgba(255, 220, 65, .2); }
.filter-price { display: flex; gap: 8px; align-items: center; }
.filter-price input { flex: 1; border: 1.5px solid var(--ol-grey-2); border-radius: 4px; padding: 7px 10px; font-size: 13px; font-family: var(--ol-font); outline: none; }
.filter-price input:focus { border-color: var(--ol-yellow); }
.filter-price span { font-size: 12px; color: var(--ol-grey-3); }
.btn-filter-apply { width: 100%; background: var(--ol-yellow); color: var(--ol-black); font-family: var(--ol-display); font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 10px; border-radius: 4px; border: none; cursor: pointer; margin-top: 10px; transition: background .15s; }
.btn-filter-apply:hover { background: var(--ol-yellow-dk); }
.btn-filter-reset { width: 100%; background: none; color: var(--ol-grey-3); font-size: 12px; padding: 6px; border: none; cursor: pointer; margin-top: 4px; transition: color .15s; }
.btn-filter-reset:hover { color: var(--ol-red); }
.active-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.active-filter { display: flex; align-items: center; gap: 5px; background: var(--ol-yellow); color: var(--ol-black); font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 20px; cursor: pointer; text-decoration: none; transition: background .15s; }
.active-filter:hover { background: var(--ol-yellow-dk); }
.active-filter span { font-size: 13px; line-height: 1; }
.active-filters--results { align-items: center; margin: 0 0 12px; padding: 10px 12px; border: 1.5px solid var(--ol-grey-2); border-radius: 8px; background: var(--ol-white); }
.active-filters__label { font-family: var(--ol-display); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; color: var(--ol-grey-4); }
.btn-filter-reset--inline { width: auto; margin: 0 0 0 auto; padding: 4px 0; color: var(--ol-black); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.tool-intent-panel { display: grid; grid-template-columns: minmax(170px, 230px) minmax(0, 1fr); gap: 14px; align-items: center; margin: 0 0 16px; padding: 14px 16px; border: 1.5px solid var(--ol-grey-2); border-radius: 8px; background: linear-gradient(135deg, #111 0%, #1b1b1b 100%); color: var(--ol-white); overflow: hidden; }
.tool-intent-panel__copy { display: grid; gap: 4px; min-width: 0; }
.tool-intent-panel__copy span { color: var(--ol-yellow); font-family: var(--ol-display); font-size: 11px; font-weight: 900; letter-spacing: .14em; line-height: 1; text-transform: uppercase; }
.tool-intent-panel__copy h2 { margin: 0; color: var(--ol-white); font-family: var(--ol-display); font-size: 25px; font-weight: 900; line-height: .96; text-transform: uppercase; }
.tool-intent-panel__links { display: flex; flex-wrap: wrap; gap: 8px; min-width: 0; }
.tool-intent { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 8px 12px; border: 1.5px solid rgba(255,255,255,.14); border-radius: 6px; background: rgba(255,255,255,.06); color: var(--ol-white); font-family: var(--ol-display); font-size: 12px; font-weight: 900; line-height: 1; text-transform: uppercase; text-decoration: none; transition: background .15s, border-color .15s, color .15s; }
.tool-intent:hover,
.tool-intent.is-active { border-color: var(--ol-yellow); background: var(--ol-yellow); color: var(--ol-black); }
.tool-intent-panel--sidebar { display: grid; grid-template-columns: 1fr; gap: 12px; margin: 0 0 14px; padding: 14px; }
.tool-intent-panel--sidebar .tool-intent-panel__copy h2 { font-size: 24px; }
.tool-intent-panel--sidebar .tool-intent-panel__links { display: grid; grid-template-columns: 1fr; gap: 8px; }
.tool-intent-panel--sidebar .tool-intent { justify-content: space-between; min-height: 40px; padding: 10px 12px; }
.tool-intent-panel--sidebar .tool-intent::after { content: "›"; margin-left: 8px; font-family: var(--ol-font); font-size: 18px; font-weight: 900; line-height: 1; }
.tool-intent-panel--inline { display: none; }
.tool-impulse { margin: 0 0 18px; padding: 14px; border: 1.5px solid var(--ol-grey-2); border-radius: 8px; background: var(--ol-grey-1); overflow: hidden; }
.tool-impulse__head { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-bottom: 12px; }
.tool-impulse__head span { color: var(--ol-yellow-dk); font-family: var(--ol-display); font-size: 11px; font-weight: 900; letter-spacing: .14em; line-height: 1; text-transform: uppercase; }
.tool-impulse__head h2 { margin: 5px 0 0; color: var(--ol-black); font-family: var(--ol-display); font-size: 25px; font-weight: 900; line-height: .98; text-transform: uppercase; }
.tool-impulse__head p { max-width: 300px; margin: 0; color: var(--ol-grey-4); font-size: 13px; line-height: 1.35; }
.tool-impulse__carousel { position: relative; min-width: 0; }
.tool-impulse__rail { display: flex; flex-wrap: nowrap; gap: 10px; margin: 0 -14px; padding: 0 52px 4px 14px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: 14px; -webkit-overflow-scrolling: touch; }
.tool-impulse__rail::-webkit-scrollbar { display: none; }
.tool-impulse__nav { position: absolute; top: 50%; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border: 1.5px solid var(--ol-grey-2); border-radius: 999px; background: var(--ol-yellow); box-shadow: 0 8px 20px rgba(0,0,0,.12); cursor: pointer; transform: translateY(-50%); }
.tool-impulse__nav::before { content: ""; display: block; width: 9px; height: 9px; border-top: 2px solid var(--ol-black); border-right: 2px solid var(--ol-black); }
.tool-impulse__nav--prev { left: -4px; }
.tool-impulse__nav--prev::before { transform: translateX(2px) rotate(-135deg); }
.tool-impulse__nav--next { right: -4px; }
.tool-impulse__nav--next::before { transform: translateX(-2px) rotate(45deg); }
.tool-impulse__nav:disabled { opacity: .35; cursor: default; }
.tool-impulse__card { display: grid; grid-template-rows: 116px 1fr; min-width: 0; border: 1.5px solid var(--ol-grey-2); border-radius: 7px; background: var(--ol-white); overflow: hidden; }
.tool-impulse__media { display: flex; align-items: center; justify-content: center; min-width: 0; background: #fff; border-bottom: 2px solid var(--ol-yellow); text-decoration: none; }
.tool-impulse__media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.tool-impulse__body { display: grid; grid-template-rows: auto minmax(38px, auto) auto auto; gap: 7px; min-width: 0; padding: 10px; }
.tool-impulse__brand { color: var(--ol-yellow-dk); font-family: var(--ol-display); font-size: 10px; font-weight: 900; letter-spacing: .12em; line-height: 1; text-transform: uppercase; }
.tool-impulse__title { display: -webkit-box; min-height: 38px; overflow: hidden; color: var(--ol-black); font-size: 13px; font-weight: 800; line-height: 1.3; text-decoration: none; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.tool-impulse__price { min-height: 24px; color: #7a7f00; font-family: var(--ol-display); font-size: 15px; font-weight: 900; line-height: 1; }
.tool-impulse__price del { color: var(--ol-grey-3); font-family: var(--ol-font); font-size: 12px; font-weight: 400; }
.tool-impulse__price ins { text-decoration: none; }
.tool-impulse__add { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; border-radius: 4px; background: var(--ol-black); color: var(--ol-white); font-family: var(--ol-display); font-size: 11px; font-weight: 900; letter-spacing: .06em; line-height: 1; text-transform: uppercase; text-decoration: none; }
.tool-impulse__add:hover { background: var(--ol-yellow); color: var(--ol-black); }
.tool-impulse__card { flex: 0 0 184px; scroll-snap-align: start; }
.home-under-25 { padding: 0 0 42px; background: var(--ol-white); }
.home-under-25 .tool-impulse--home { margin: 0; background: linear-gradient(135deg, #fffdf2 0%, #fff 58%); }
.tool-impulse__intro { display: grid; gap: 7px; justify-items: end; }
.tool-impulse__intro .link-all { font-size: 12px; }
.prod-info .tool-impulse--product { margin: 14px 0 16px; padding: 12px; background: #fffdf2; }
.prod-info .tool-impulse--product .tool-impulse__head { display: grid; gap: 6px; align-items: start; }
.prod-info .tool-impulse--product .tool-impulse__head h2 { font-size: 20px; }
.prod-info .tool-impulse--product .tool-impulse__head p { max-width: none; font-size: 12px; }
.prod-info .tool-impulse--product .tool-impulse__card { flex-basis: 156px; grid-template-rows: 92px 1fr; }
.prod-info .tool-impulse--product .tool-impulse__media img { padding: 9px; }
.prod-info .tool-impulse--product .tool-impulse__title { min-height: 34px; font-size: 12px; }
.prod-info .tool-impulse--product .tool-impulse__price { font-size: 13px; }
.prod-info .tool-impulse--product .tool-impulse__add { min-height: 34px; font-size: 10px; }
@media (max-width: 760px) {
  .woo-filters .tool-intent-panel--sidebar { display: none; }
  .tool-intent-panel--inline { display: grid; }
  .tool-intent-panel { grid-template-columns: 1fr; gap: 12px; padding: 13px; }
  .tool-intent-panel__copy h2,
  .tool-impulse__head h2 { font-size: 21px; }
  .tool-intent-panel__links { flex-wrap: nowrap; margin: 0 -13px; padding: 0 13px 4px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
  .tool-intent-panel__links::-webkit-scrollbar { display: none; }
  .tool-intent { flex: 0 0 auto; min-height: 40px; min-width: 116px; scroll-snap-align: start; }
  .tool-impulse__head { display: grid; gap: 8px; align-items: start; }
  .tool-impulse__head p { max-width: none; }
  .tool-impulse__intro { justify-items: start; }
  .tool-impulse__rail { margin: 0 -13px; padding: 0 13px 4px; scroll-snap-type: x proximity; }
  .tool-impulse__nav { display: none; }
  .tool-impulse__card { flex-basis: 170px; }
}
.quick-filter-panel { display: grid; gap: 10px; margin: 0 0 16px; }
.quick-filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.quick-filter-row__label { min-width: 116px; font-family: var(--ol-display); font-size: 12px; font-weight: 900; letter-spacing: .08em; line-height: 1; text-transform: uppercase; color: var(--ol-grey-4); }
.quick-filter-carousel { flex: 1 1 auto; min-width: 0; }
.quick-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.quick-filter { display: inline-flex; align-items: center; justify-content: center; min-height: 36px; padding: 8px 12px; border: 1.5px solid var(--ol-grey-2); border-radius: 6px; background: var(--ol-white); color: var(--ol-black); font-family: var(--ol-display); font-size: 12px; font-weight: 900; line-height: 1; text-transform: uppercase; text-decoration: none; transition: background .15s, border-color .15s, color .15s; }
.quick-filter:hover { border-color: var(--ol-yellow); background: #fff8d8; color: var(--ol-black); }
.quick-filter.is-active { border-color: var(--ol-yellow); background: var(--ol-yellow); color: var(--ol-black); }
.quick-filter--brand { gap: 8px; }
.quick-filter--brand span { min-width: 18px; padding: 3px 5px; border-radius: 999px; background: var(--ol-grey-1); color: var(--ol-grey-4); font-family: var(--ol-font); font-size: 11px; font-weight: 700; line-height: 1; text-align: center; }
.quick-filter--brand.is-active span { background: rgba(0, 0, 0, .12); color: var(--ol-black); }
.quick-filter-nav { display: none; }
.cat-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }
.cat-toolbar__result { font-size: 13px; color: var(--ol-grey-4); }
.cat-toolbar__result strong { color: var(--ol-black); }
.cat-toolbar__right { display: flex; gap: 8px; align-items: center; }
.sort-select { border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); padding: 7px 12px; font-family: var(--ol-font); font-size: 13px; color: var(--ol-black); background: var(--ol-white); cursor: pointer; outline: none; transition: border-color .15s; appearance: none; padding-right: 28px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; }
.sort-select:focus { border-color: var(--ol-yellow); }
.ol-per-page-form { margin: 0; }
.ol-per-page-select { border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); min-height: 38px; padding: 0 34px 0 12px; font-family: var(--ol-font); font-size: 13px; color: var(--ol-black); background-color: var(--ol-white); cursor: pointer; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; }
.ol-per-page-select:focus { border-color: var(--ol-yellow); }
.view-toggle { display: flex; border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); overflow: hidden; }
.view-btn { padding: 7px 10px; background: none; border: none; cursor: pointer; color: var(--ol-grey-3); transition: all .15s; }
.view-btn.active { background: var(--ol-yellow); color: var(--ol-black); }
.view-btn:hover:not(.active) { background: var(--ol-grey-1); }
.woo-product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.woo-product-grid.list-view { grid-template-columns: 1fr; }
.woo-product-card { border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); overflow: hidden; background: var(--ol-white); transition: all .2s cubic-bezier(.34,1.56,.64,1); display: flex; flex-direction: column; }
.woo-product-card:hover { border-color: #ccc; box-shadow: var(--ol-shadow-lg); transform: translateY(-4px); }
.woo-product-card__img-wrap { height: 200px; background: #FFFFFF; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.woo-product-card__img-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .35s ease; }
.woo-product-card:hover .woo-product-card__img-wrap img { transform: scale(1.05); }
.woo-product-card__badge { position: absolute; top: 10px; left: 10px; background: var(--ol-yellow); color: var(--ol-black); font-family: var(--ol-display); font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 3px; letter-spacing: .04em; }
.woo-product-card__badge--new { background: var(--ol-black); color: var(--ol-yellow); }
.woo-product-card__cond { position: absolute; top: 32px; left: 10px; font-size: 9.5px; font-weight: 700; padding: 2px 6px; border-radius: 3px; letter-spacing: .06em; text-transform: uppercase; background: #e65100; color: #fff; pointer-events: none; }
.woo-product-card__cond--new { background: var(--ol-green); }
.woo-product-card__pickup-badge { position: absolute; left: 12px; bottom: 12px; z-index: 2; max-width: calc(100% - 24px); display: inline-flex; flex-wrap: wrap; align-items: center; gap: 3px 5px; overflow: visible; text-overflow: clip; background: #eefbe8; color: #00c800; font-family: var(--ol-display); font-size: 13px; font-weight: 900; line-height: 1; padding: 8px 10px; border-radius: 5px; box-shadow: 0 1px 0 rgba(0,0,0,.04); white-space: normal; text-align: center; }
.woo-product-card__pickup-amount,
.woo-product-card__pickup-label { display: inline-block; }
.woo-product-card__body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.woo-product-card__brand { font-size: 10.5px; font-weight: 700; color: var(--ol-yellow); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.woo-product-card__title { font-size: 13.5px; font-weight: 500; color: var(--ol-black); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: auto; }
.woo-price { display: flex; align-items: baseline; gap: 7px; margin-top: 14px; }
.woo-price__current { font-family: var(--ol-display); font-size: 22px; font-weight: 900; color: var(--ol-black); }
.woo-price__original { font-size: 12.5px; color: var(--ol-grey-3); text-decoration: line-through; }
.woo-product-card__foot { padding: 10px 14px; border-top: 1px solid var(--ol-grey-2); display: flex; align-items: center; justify-content: space-between; }
.woo-stock { font-size: 11.5px; font-weight: 600; color: var(--ol-green); display: flex; align-items: center; gap: 5px; }
.woo-stock::before { content: ''; width: 6px; height: 6px; background: var(--ol-green); border-radius: 50%; }
.woo-stock--low { color: #b45309; }
.woo-stock--low::before { background: #b45309; }
.woo-add-to-cart { font-family: var(--ol-display); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; background: var(--ol-black); color: var(--ol-white); border: none; padding: 7px 14px; border-radius: 3px; cursor: pointer; transition: background .15s; min-height: 44px; }
.woo-add-to-cart:hover { background: var(--ol-yellow); color: var(--ol-black); }
.woo-product-grid.list-view .woo-product-card { flex-direction: row; }
.woo-product-grid.list-view .woo-product-card__img-wrap { width: 160px; height: auto; flex-shrink: 0; }
.woo-product-grid.list-view .woo-product-card__body { padding: 18px 20px; }
.woo-product-grid.list-view .woo-product-card__title { -webkit-line-clamp: 3; }
.woo-product-grid.list-view .woo-product-card__foot { border-top: none; border-left: 1px solid var(--ol-grey-2); padding: 18px; flex-direction: column; align-items: flex-end; justify-content: center; gap: 10px; width: 160px; flex-shrink: 0; }
.woo-pagination { display: flex; justify-content: center; align-items: center; gap: 4px; margin-top: 40px; }
.page-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); font-size: 13px; font-weight: 500; color: var(--ol-grey-4); background: var(--ol-white); cursor: pointer; transition: all .15s; }
.page-btn:hover { border-color: var(--ol-yellow); color: var(--ol-black); }
.page-btn.active { background: var(--ol-yellow); border-color: var(--ol-yellow); color: var(--ol-black); font-weight: 700; }
.page-btn--prev, .page-btn--next { width: auto; padding: 0 14px; gap: 6px; }
.site-footer { background: var(--ol-black); border-top: 3px solid var(--ol-yellow); padding: 52px 0 24px; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #1e1e1e; margin-bottom: 24px; }
.site-footer__brand p { font-size: 13px; color: #aaa; line-height: 1.7; margin-top: 16px; max-width: 250px; }
.site-footer__col h5 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ol-white); margin-bottom: 14px; }
.site-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.site-footer__col a { color: var(--ol-yellow); transition: color .15s; }
.site-footer__col a:hover { color: var(--ol-white); }
.site-footer__bottom { display: flex; justify-content: space-between; font-size: 11.5px; color: #888; flex-wrap: wrap; gap: 8px; }
.site-footer__bottom a { color: var(--ol-yellow); }
.site-footer__bottom a:hover { color: var(--ol-white); }
.footer-legal { display: flex; gap: 20px; }
.mobile-filter-btn { display: none; }
.woo-filters--open {
  display: block !important;
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  width: 100vw !important; height: 100vh !important;
  overflow-y: auto !important; overflow-x: hidden !important;
  z-index: 9999 !important;
  background: #fff !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}
.woo-filters--open .filter-group { overflow: visible; }
.woo-filters--open .mobile-filter-close { display: block !important; }
@media (max-width: 900px) {
  .cat-layout__inner { grid-template-columns: 1fr; }
  .woo-filters { display: none; }
  .woo-product-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .mobile-filter-btn { display: flex; align-items: center; gap: 8px; background: var(--ol-black); color: var(--ol-white); border: none; border-radius: var(--ol-radius); padding: 10px 16px; font-size: 13px; font-weight: 600; cursor: pointer; min-height: 44px; }
  .mobile-filter-btn svg { width: 16px; height: 16px; }
  .mobile-filter-close { display: none; width: 100%; padding: 12px; background: var(--ol-black); color: var(--ol-white); border: none; font-size: 14px; font-weight: 600; cursor: pointer; border-radius: var(--ol-radius); margin-bottom: 16px; min-height: 44px; }
}
@media (max-width: 640px) {
  .site-header__inner { grid-template-columns: auto 1fr auto; }
  .site-header__actions .hdr-btn:not(.hdr-btn--cart) { display: none; }
  .woo-product-grid { grid-template-columns: repeat(2, 1fr); }
  .site-topbar { display: none; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.footer-social__btn { width: 34px; height: 34px; border-radius: 6px; background: #1a1a1a; border: 1px solid #2a2a2a; display: flex; align-items: center; justify-content: center; color: #666; transition: background .15s, color .15s, border-color .15s; }
.footer-social__btn:hover { background: var(--ol-yellow); color: var(--ol-black); border-color: var(--ol-yellow); }

/* Final theme overrides after imported page styles */
.site-footer__col a { color: var(--ol-yellow); }
.site-footer__col a:hover { color: var(--ol-white); }
.site-nav .menu a { display:block; font-size:13px; font-weight:500; color:var(--ol-grey-4); padding:12px 15px; white-space:nowrap; border-bottom:2px solid transparent; }
.site-nav .menu a:hover, .site-nav .current-menu-item > a { color:var(--ol-black); border-bottom-color:var(--ol-yellow); }
body.admin-bar .site-header { top: 32px; }
body.admin-bar .woo-filters { top: 112px; }

@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }
.cat-layout__intro { background: var(--ol-grey-1); border-radius: 8px; padding: 22px 24px; font-size: 15.5px; line-height: 1.8; color: #555; margin-bottom: 28px; }
.cat-layout__intro p,
.cat-layout__intro .term-description { color: #555; font-size: 15.5px; line-height: 1.8; }
.cat-layout__intro p { margin: 0 0 10px; }
.cat-layout__intro p:last-child { margin-bottom: 0; }
.ol-deals-landing {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
}
.ol-deals-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  padding: 26px 28px;
  border-radius: 8px;
  background: radial-gradient(circle at 88% 12%, rgba(255,220,65,.18) 0, rgba(255,220,65,0) 30%), var(--ol-black);
  color: var(--ol-white);
  overflow: hidden;
}
.ol-deals-hero::before,
.ol-deals-hero::after {
  position: absolute;
  z-index: 0;
  color: rgba(255,220,65,.16);
  font-family: var(--ol-display);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}
.ol-deals-hero::before {
  content: "%";
  top: 22px;
  right: 20%;
  font-size: clamp(46px, 7vw, 92px);
  transform: rotate(-10deg);
}
.ol-deals-hero::after {
  content: "%%";
  right: 32px;
  bottom: -8px;
  color: rgba(255,255,255,.08);
  font-size: clamp(64px, 9vw, 118px);
  letter-spacing: .08em;
}
.ol-deals-hero__copy,
.ol-deals-hero__cta {
  position: relative;
  z-index: 1;
}
.ol-deals-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--ol-yellow);
  font-family: var(--ol-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: uppercase;
}
.ol-deals-eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: currentColor;
}
.ol-deals-hero h2,
.ol-deals-section-head h2 {
  margin: 0;
  font-family: var(--ol-display);
  font-weight: 900;
  line-height: .96;
  text-transform: uppercase;
}
.ol-deals-hero h2 {
  max-width: 660px;
  color: var(--ol-white);
  font-size: clamp(32px, 4.4vw, 56px);
}
.ol-deals-hero p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #b7b7b7;
  font-size: 15px;
  line-height: 1.6;
}
.ol-deals-hero__note {
  margin-top: 10px !important;
  color: #8f8f8f !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}
.ol-deals-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.ol-deals-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--ol-white);
  font-size: 12px;
  font-weight: 800;
}
.ol-deals-bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ol-yellow);
}
.ol-deals-hero__cta,
.ol-deal-month__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--ol-yellow);
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.ol-deals-hero__cta:hover,
.ol-deal-month__button:hover {
  background: var(--ol-yellow-dk);
  color: var(--ol-black);
}
.ol-deal-month {
  display: grid;
  grid-template-columns: minmax(230px, 34%) minmax(0, 1fr);
  align-items: stretch;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: 8px;
  background: var(--ol-white);
  overflow: hidden;
}
.ol-deal-month__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  background: linear-gradient(135deg, #fff8d8 0%, #fff 62%);
}
.ol-deal-month__image span,
.ol-deals-popular-card__image span {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 4px;
  background: var(--ol-yellow);
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 12px;
  font-weight: 900;
}
.ol-deal-month__image img {
  width: 100%;
  height: 100%;
  max-height: 260px;
  object-fit: contain;
  padding: 24px;
}
.ol-deal-month__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 10px;
  min-width: 0;
  padding: 24px 28px;
}
.ol-deal-month__copy h3 {
  max-width: 680px;
  margin: 0;
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.ol-deal-month__copy p {
  margin: 0;
  color: var(--ol-grey-4);
  font-size: 14px;
  line-height: 1.5;
}
.ol-deal-month__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.ol-deal-month__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #ecf9ef;
  color: #137b3a;
  font-size: 12px;
  font-weight: 900;
}
.ol-deal-month__price {
  color: #7a7f00;
  font-family: var(--ol-display);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.ol-deal-month__price del {
  color: var(--ol-grey-3);
  font-family: var(--ol-font);
  font-size: 15px;
  font-weight: 500;
}
.ol-deal-month__price ins {
  text-decoration: none;
}
.ol-deal-month__saving {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 5px;
  background: #fff3bf;
  color: #7a5a00;
  font-size: 13px;
  font-weight: 900;
}
.ol-deals-popular {
  display: grid;
  gap: 12px;
}
.ol-deals-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.ol-deals-section-head h2 {
  color: var(--ol-black);
  font-size: 28px;
}
.ol-deals-section-head a {
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.ol-deals-section-head a:hover {
  color: var(--ol-yellow-dk);
}
.ol-deals-category-groups {
  display: grid;
  gap: 22px;
}
.ol-deals-category-section {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: 8px;
  background: var(--ol-white);
}
.ol-deals-popular__rail {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ol-deals-popular__rail::-webkit-scrollbar {
  display: none;
}
.ol-deals-card-carousel .ol-deals-popular__rail {
  padding: 0 50px 4px 0;
}
.ol-deals-popular-card {
  display: grid;
  grid-template-rows: 150px minmax(0, 1fr);
  flex: 0 0 calc((100% - 36px) / 4);
  min-width: 0;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: 8px;
  background: var(--ol-white);
  color: var(--ol-black);
  overflow: hidden;
  text-decoration: none;
}
.ol-deals-popular-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  min-height: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 2px solid var(--ol-yellow);
}
.ol-deals-popular-card__image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 14px;
}
.ol-deals-popular-card__body {
  display: grid;
  grid-template-rows: auto minmax(38px, auto) auto auto;
  gap: 7px;
  align-content: start;
  min-width: 0;
  padding: 12px;
}
.ol-deals-popular-card__body span {
  color: var(--ol-yellow-dk);
  font-family: var(--ol-display);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
}
.ol-deals-popular-card__body strong {
  display: -webkit-box;
  min-height: 38px;
  overflow: hidden;
  color: var(--ol-black);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.ol-deals-popular-card__body .price {
  color: #7a7f00;
  font-family: var(--ol-display);
  font-size: 18px;
  font-weight: 900;
}
.ol-deals-popular-card__body del {
  color: var(--ol-grey-3);
  font-family: var(--ol-font);
  font-size: 12px;
  font-weight: 500;
}
.ol-deals-popular-card__body ins {
  text-decoration: none;
}
.ol-deals-card-cta {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 5px;
  background: var(--ol-black);
  color: var(--ol-white) !important;
  font-family: var(--ol-display);
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: .04em !important;
  line-height: 1 !important;
  text-transform: uppercase;
}
.ol-deals-popular-card:hover .ol-deals-card-cta {
  background: var(--ol-yellow);
  color: var(--ol-black) !important;
}
@media (max-width: 760px) {
  .ol-deals-landing {
    gap: 14px;
    margin-bottom: 22px;
  }

  .ol-deals-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
  }

  .ol-deals-hero::before {
    top: 14px;
    right: 18px;
    font-size: 54px;
  }

  .ol-deals-hero::after {
    display: none;
  }

  .ol-deals-hero h2 {
    font-size: 35px;
  }

  .ol-deals-hero p {
    font-size: 14px;
    line-height: 1.5;
  }

  .ol-deals-hero__note {
    font-size: 11.5px !important;
  }

  .ol-deals-bullets {
    flex-direction: column;
    gap: 7px;
  }

  .ol-deals-bullets li {
    width: 100%;
    justify-content: flex-start;
  }

  .ol-deals-hero__cta {
    width: 100%;
  }

  .ol-deal-month {
    grid-template-columns: 1fr;
  }

  .ol-deal-month__image {
    min-height: 190px;
  }

  .ol-deal-month__image img {
    max-height: 200px;
    padding: 18px;
  }

  .ol-deal-month__copy {
    padding: 18px;
  }

  .ol-deal-month__copy h3 {
    font-size: 27px;
  }

  .ol-deal-month__price {
    font-size: 26px;
  }

  .ol-deal-month__button {
    width: 100%;
  }

  .ol-deals-section-head {
    align-items: start;
  }

  .ol-deals-section-head h2 {
    font-size: 23px;
  }

  .ol-deals-section-head a {
    font-size: 11px;
  }

  .ol-deals-category-groups {
    gap: 14px;
  }

  .ol-deals-category-section {
    margin: 0 -18px;
    padding: 16px 18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .ol-deals-popular__rail {
    gap: 10px;
    margin: 0 -18px;
    padding: 0 18px 4px;
  }

  .ol-deals-card-carousel .ol-deals-popular__rail {
    padding-right: 58px;
  }

  .ol-deals-popular-card {
    flex: 0 0 178px;
    scroll-snap-align: start;
  }
}
.ol-category-seo-copy p { margin: 0 0 10px; }
.ol-category-seo-copy p:last-of-type { margin-bottom: 0; }
.woo-results { min-width: 0; }
.ol-category-help-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin: 34px 0 0;
  padding: 34px 38px;
  overflow: hidden;
  border: 1.5px solid #efd252;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ol-yellow) 0%, #ffe875 62%, #fff5bc 100%);
  color: var(--ol-black);
}
.ol-category-help-banner::after {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: min(34%, 360px);
  background: var(--ol-black);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .08;
  pointer-events: none;
}
.ol-category-help-banner__copy,
.ol-category-help-banner__actions {
  position: relative;
  z-index: 1;
}
.ol-category-help-banner__copy span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
}
.ol-category-help-banner__copy h2 {
  margin: 0;
  max-width: 640px;
  font-family: var(--ol-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}
.ol-category-help-banner__copy p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #3b3313;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}
.ol-category-help-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.ol-category-help-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1.5px solid var(--ol-black);
  border-radius: var(--ol-radius);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.ol-category-help-banner__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.ol-category-help-banner__btn--dark {
  background: var(--ol-black);
  color: var(--ol-white);
}
.ol-category-help-banner__btn--light {
  background: var(--ol-white);
  color: var(--ol-black);
}
.ol-category-help-banner__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}
@media (max-width: 900px) {
  .ol-category-help-banner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }
  .ol-category-help-banner__actions {
    justify-content: flex-start;
  }
}
@media (max-width: 640px) {
  .ol-category-help-banner {
    margin-top: 28px;
    padding: 24px 18px;
  }
  .ol-category-help-banner__copy h2 {
    font-size: 34px;
  }
  .ol-category-help-banner__actions,
  .ol-category-help-banner__btn {
    width: 100%;
  }
}
.woo-filter-form { display: block; }
.filter-group__head { width: 100%; border: 0; font-family: var(--ol-font); }
.filter-option--muted { opacity: .55; }
.site-search { position: relative; overflow: visible; }
.ol-search-form { position: relative; }
.cat-search { position: relative; flex: 1 1 220px; max-width: 280px; }
.cat-search input { width: 100%; border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); padding: 8px 14px; font-size: 13px; font-family: var(--ol-font); outline: none; }
.cat-search input:focus { border-color: var(--ol-yellow); }
.ol-search-suggestions { position: absolute; z-index: 25000; top: calc(100% + 8px); left: 0; right: 0; min-width: min(420px, calc(100vw - 32px)); max-height: min(68vh, 560px); overflow: auto; padding: 10px; border: 1.5px solid var(--ol-grey-2); border-radius: 8px; background: #fff; box-shadow: 0 18px 44px rgba(0,0,0,.14); }
.cat-search .ol-search-suggestions { right: auto; width: min(420px, calc(100vw - 32px)); }
.site-search .ol-search-suggestions { top: calc(100% + 10px); }
.ol-search-suggestions[hidden] { display: none; }
.ol-search-suggestions__section + .ol-search-suggestions__section { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--ol-grey-2); }
.ol-search-suggestions__heading { margin: 0 0 6px; color: var(--ol-grey-3); font-family: var(--ol-display); font-size: 12px; font-weight: 900; line-height: 1; letter-spacing: .12em; text-transform: uppercase; }
.ol-search-suggestions__item { display: flex; align-items: center; gap: 10px; min-height: 42px; padding: 8px; border-radius: 6px; color: var(--ol-black); text-decoration: none; transition: background .15s, color .15s; }
.ol-search-suggestions__item:hover,
.ol-search-suggestions__item:focus { background: #fff8d8; color: var(--ol-black); outline: none; }
.ol-search-suggestions__thumb { width: 46px; height: 46px; flex: 0 0 46px; object-fit: contain; border: 1px solid var(--ol-grey-2); border-radius: 5px; background: #fff; padding: 4px; }
.ol-search-suggestions__text { display: grid; gap: 3px; min-width: 0; }
.ol-search-suggestions__text strong { overflow: hidden; color: inherit; font-size: 13px; font-weight: 800; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.ol-search-suggestions__text small { color: var(--ol-grey-4); font-size: 12px; font-weight: 600; line-height: 1.2; }
.ol-search-suggestions__price { display: flex; align-items: baseline; gap: 6px; }
.ol-search-suggestions__regular-price { color: var(--ol-grey-3); text-decoration: line-through; }
.ol-search-suggestions__current-price { color: var(--ol-black); font-weight: 800; }
.ol-search-suggestions__item--search .ol-search-suggestions__text strong,
.ol-search-suggestions__item--brand .ol-search-suggestions__text strong,
.ol-search-suggestions__item--category .ol-search-suggestions__text strong { font-family: var(--ol-display); font-size: 16px; font-weight: 900; text-transform: uppercase; }
.ol-search-form--loading .site-search__input,
.ol-search-form--loading input[type="search"] { cursor: progress; }
.woo-results .woocommerce-ordering { margin: 0; }
.woo-results .woocommerce-ordering select { min-height: 36px; }
.woo-results ul.products::before, .woo-results ul.products::after { display: none; }
.not-found-box { border: 1.5px solid var(--ol-grey-2); border-radius: var(--ol-radius); background: var(--ol-white); padding: 32px; text-align: center; }
.not-found-box h2 { margin: 0 0 10px; font-family: var(--ol-display); font-size: 30px; line-height: 1; text-transform: uppercase; color: var(--ol-black); }
.not-found-box p { max-width: 540px; margin: 0 auto; color: var(--ol-grey-4); font-size: 14px; line-height: 1.7; }
.not-found-box .btn-primary { margin-top: 14px; display: inline-flex; }
.not-found-box__suggestions { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: 18px auto 0; max-width: 680px; }
.not-found-box__actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.not-found-box__actions .btn-primary { margin-top: 0; }
.not-found-box--sold-out { padding: 42px 28px; }
.mobile-filter-close { display: none; }
.woo-filters--open .mobile-filter-close { display: block; }
.ol-static-page { padding: 0; }
.ol-static-page__article > .page-hero,
.ol-static-page__article > .content-section,
.ol-static-page__article > .content-section--grey,
.ol-static-page__article > .content-section--dark,
.ol-static-page__article > .faq-page,
.ol-static-page__article > .blog-page { width: 100%; }
.ol-static-page__article > :first-child { margin-top: 0; }
.ol-static-page .entry-content { margin: 0; }
.ol-static-page .page-hero { margin: 0; }
.ol-static-page .breadcrumb { margin: 0; }
.faq-q svg { width:16px; height:16px; }
.faq-a { overflow:hidden; }
.faq-a.open { display:block; }
.product-page .woocommerce, .single-product .summary { color:var(--ol-black); }

/* WordPress/WooCommerce product detail polish */
.outlet-product-detail {
  --yellow: var(--ol-yellow);
  --black: var(--ol-black);
  --white: var(--ol-white);
  --grey-1: var(--ol-grey-1);
  --grey-2: var(--ol-grey-2);
  --grey-3: var(--ol-grey-3);
  --grey-4: var(--ol-grey-4);
  --green: var(--ol-green);
  --red: var(--ol-red);
  --radius: var(--ol-radius);
  --display: var(--ol-display);
}
.outlet-product-detail .breadcrumb {
  flex-wrap: wrap;
}
.outlet-product-detail .gallery-main {
  background: var(--ol-white);
}
.outlet-product-detail .thumb {
  appearance: none;
  padding: 0;
  background: var(--ol-white);
}
.outlet-product-detail .thumb img {
  margin: 0 auto;
}
.outlet-product-detail .price-sale .price,
.outlet-product-detail .price-sale {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.outlet-product-detail .price-sale del {
  color: var(--ol-grey-3);
  font-family: var(--ol-font);
  font-size: 18px;
  font-weight: 500;
  text-decoration: line-through;
}
.outlet-product-detail .price-sale ins {
  color: var(--ol-black);
  text-decoration: none;
}
.outlet-product-detail .price-save .woocommerce-Price-amount {
  font-size: inherit;
}
.outlet-product-detail .product-condition-link {
  display: block;
  font-size: 11.5px;
  color: var(--ol-grey-3);
  margin-top: 5px;
  text-decoration: underline;
}
.outlet-product-detail .stock-row.woo-stock--out {
  color: var(--ol-red);
}
.outlet-product-detail .stock-row.woo-stock--out .stock-dot {
  background: var(--ol-red);
  animation: none;
}
.outlet-product-detail form.cart {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  flex-wrap: wrap;
}
.outlet-product-detail form.cart .quantity.ol-quantity-stepper {
  display: grid;
  grid-template-columns: 44px 54px 44px;
  align-items: stretch;
  min-height: 54px;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  overflow: hidden;
  background: var(--ol-white);
}
.outlet-product-detail form.cart .quantity.ol-quantity-stepper .qty {
  width: 54px;
  min-height: 54px;
  border: 0;
  border-radius: 0;
}
.ol-qty-stepper__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 54px;
  border: 0;
  background: var(--ol-white);
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}
.ol-qty-stepper__button:disabled {
  color: var(--ol-grey-3);
  cursor: not-allowed;
  opacity: .45;
}
.outlet-product-detail form.cart .quantity .qty {
  width: 78px;
  min-height: 54px;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  font-family: var(--ol-display);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
}
.outlet-product-detail .cta-group--single-quantity form.cart .quantity {
  display: none !important;
}
.outlet-product-detail .cta-group--single-quantity form.cart .single_add_to_cart_button,
.outlet-product-detail .cta-group--single-quantity form.cart .button {
  flex-basis: 100%;
  width: 100%;
}
.outlet-product-detail form.cart .single_add_to_cart_button,
.outlet-product-detail form.cart .button {
  flex: 1 1 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  background: var(--ol-yellow);
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--ol-radius);
  border: 0;
}
.outlet-product-detail form.cart .single_add_to_cart_button:hover,
.outlet-product-detail form.cart .button:hover {
  background: var(--ol-yellow-dk);
  color: var(--ol-black);
}
.outlet-product-detail .awdr-bulk-customizable-table {
  display: none;
}
.outlet-product-detail .awdr-bulk-customizable-table.ol-has-bulk-rows,
.outlet-product-detail .awdr-bulk-customizable-table:has(.bulk_table_row) {
  display: block;
  width: 100%;
  margin: 2px 0 14px;
  padding: 14px;
  border: 1.5px solid rgba(255, 222, 89, .88);
  border-radius: var(--ol-radius);
  background:
    linear-gradient(135deg, rgba(255, 222, 89, .18) 0%, rgba(255, 255, 255, .96) 44%),
    var(--ol-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
  overflow: hidden;
}
.outlet-product-detail .awdr-bulk-customizable-table::before {
  content: "Staffelkorting";
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 0 0 10px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--ol-black);
  color: var(--ol-yellow);
  font-family: var(--ol-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}
.outlet-product-detail .awdr-bulk-customizable-table::after {
  content: "Automatisch verrekend in de winkelwagen.";
  display: block;
  margin-top: 9px;
  color: var(--ol-grey-4);
  font-size: 12px;
  line-height: 1.35;
}
.outlet-product-detail .wdr_bulk_table_msg {
  width: 100%;
  margin: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0 6px;
  table-layout: fixed;
}
.outlet-product-detail .wdr_bulk_table_msg th,
.outlet-product-detail .wdr_bulk_table_msg td {
  border: 0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
}
.outlet-product-detail .wdr_bulk_table_msg thead th {
  color: var(--ol-grey-4);
  font-family: var(--ol-font);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.outlet-product-detail .wdr_bulk_table_msg thead th:last-child,
.outlet-product-detail .wdr_bulk_table_msg tbody td:last-child {
  text-align: right;
}
.outlet-product-detail .wdr_bulk_table_msg tbody td {
  background: var(--ol-white);
  border-top: 1px solid var(--ol-grey-2);
  border-bottom: 1px solid var(--ol-grey-2);
}
.outlet-product-detail .wdr_bulk_table_msg tbody td:first-child {
  border-left: 1px solid var(--ol-grey-2);
  border-radius: var(--ol-radius) 0 0 var(--ol-radius);
}
.outlet-product-detail .wdr_bulk_table_msg tbody td:last-child {
  border-right: 1px solid var(--ol-grey-2);
  border-radius: 0 var(--ol-radius) var(--ol-radius) 0;
}
.outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_title {
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_title::after {
  content: " korting";
  font-family: var(--ol-font);
  font-size: 11px;
  font-weight: 800;
  color: var(--ol-grey-4);
  text-transform: uppercase;
}
.outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_range {
  font-weight: 800;
}
.outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_range::before {
  content: "vanaf ";
  color: var(--ol-grey-4);
  font-size: 12px;
  font-weight: 700;
}
.outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_range::after {
  content: " stuks";
  color: var(--ol-grey-4);
  font-size: 12px;
  font-weight: 700;
}
.outlet-product-detail .wdr_bulk_table_msg .wdr_table_discounted_price {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--ol-yellow);
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.outlet-product-detail .wdr_bulk_table_msg .wdr_table_discounted_price .amount {
  font: inherit;
}
.outlet-product-detail .wdr_bulk_table_msg .wdr_table_discounted_price .woocommerce-Price-currencySymbol {
  margin-right: 2px;
}
.outlet-product-detail .variations {
  width: 100%;
  margin-bottom: 10px;
}
.outlet-product-detail .variations th,
.outlet-product-detail .variations td {
  display: block;
  padding: 4px 0;
  text-align: left;
}
.outlet-product-detail .variations select,
.outlet-product-detail .woocommerce-variation-add-to-cart select {
  width: 100%;
  min-height: 44px;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  padding: 8px 12px;
  font-family: var(--ol-font);
}
.outlet-product-detail .woocommerce-variation-price {
  margin: 10px 0;
}
.outlet-product-detail .woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
}
.outlet-product-detail .woocommerce-product-attributes tr {
  border-bottom: 1px solid var(--ol-grey-2);
}
.outlet-product-detail .woocommerce-product-attributes th,
.outlet-product-detail .woocommerce-product-attributes td {
  padding: 12px 0;
  font-size: 13.5px;
  text-align: left;
}
.outlet-product-detail .woocommerce-product-attributes th {
  color: var(--ol-grey-4);
  width: 40%;
  font-weight: 500;
}
.outlet-product-detail .woocommerce-product-attributes td {
  color: var(--ol-black);
  font-weight: 600;
}
.outlet-product-detail .commentlist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.outlet-product-detail .comment_container {
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  padding: 16px;
  margin-bottom: 12px;
}
.outlet-product-detail #review_form_wrapper {
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  padding: 18px;
  background: var(--ol-grey-1);
}
.outlet-product-detail #review_form textarea,
.outlet-product-detail #review_form input[type="text"],
.outlet-product-detail #review_form input[type="email"] {
  width: 100%;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  padding: 10px 12px;
}
.outlet-product-detail #review_form .submit {
  background: var(--ol-black);
  color: var(--ol-white);
  border: 0;
  border-radius: var(--ol-radius);
  padding: 12px 18px;
  font-weight: 800;
}
.woocommerce .related.products {
  padding: 60px 0;
  background: var(--ol-grey-1);
}
.woocommerce .related.products > h2 {
  max-width: var(--ol-max);
  margin: 0 auto 24px;
  padding: 0 20px;
  font-family: var(--ol-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
}
.woocommerce .related.products ul.products {
  max-width: var(--ol-max);
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 760px) {
  body.single-product .woocommerce .related.products ul.products,
  body.single-product .related.products ul.products {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  body.single-product .woocommerce .related.products ul.products > li.product,
  body.single-product .related.products ul.products > li.product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
  }
}
.woocommerce .woocommerce-ordering select {
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  padding: 9px 12px;
  font-family: var(--ol-font);
}
.woocommerce nav.woocommerce-pagination ul {
  border: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 34px;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 36px;
  min-height: 36px;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ol-grey-4);
  background: var(--ol-white);
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--ol-yellow);
  border-color: var(--ol-yellow);
  color: var(--ol-black);
}
.site-footer {
  border-top: 3px solid var(--ol-yellow);
  background: var(--ol-black);
}
.site-footer__brand > svg {
  width: 130px;
  height: auto;
}
.site-footer__brand > svg text,
.site-footer__brand > svg rect {
  fill: var(--ol-white);
}
.site-footer__grid {
  grid-template-columns: 1.7fr repeat(4, minmax(135px, 1fr));
  padding-bottom: 40px;
  border-bottom: 1px solid #1e1e1e;
}
.site-footer__bottom a,
.site-footer__col a {
  color: var(--ol-yellow);
}
.site-footer__bottom a:hover,
.site-footer__col a:hover {
  color: var(--ol-white);
}
.footer-payments {
  margin-top: 18px;
}
.footer-payments__label {
  color: #8f8f8f;
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.footer-payments__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: 310px;
}
.footer-payments__logos img {
  background: #fff;
  border: 1px solid #2d2d2d;
  border-radius: 5px;
  display: block;
  height: 30px;
  max-width: 92px;
  object-fit: contain;
  padding: 5px 8px;
}
.footer-payments__logos img:first-child {
  max-width: 118px;
  width: 118px;
}
.footer-payments__logos img[alt="Apple Pay"] {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 980px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .footer-payments__logos {
    max-width: 100%;
  }
}
.mobile-menu-toggle,
.mobile-route-drawer,
.mobile-route-overlay,
.mobile-bottom-routes {
  display: none;
}
.mobile-menu-is-open {
  overflow: hidden;
}
@media (max-width: 760px) {
  body {
    padding-bottom: 0;
  }
  .site-topbar {
    display: none;
  }
  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
  }
  body.admin-bar .site-header {
    top: 46px;
  }
  .site-header__inner {
    height: auto;
    min-height: 60px;
    grid-template-columns: 42px 112px 1fr auto;
    gap: 8px;
  }
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--ol-black);
    border: 0;
    border-radius: var(--ol-radius);
    color: var(--ol-white);
  }
  .mobile-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
  }
  .site-logo svg,
  .custom-logo-link img {
    width: 104px;
    max-height: 42px;
  }
  .site-search {
    display: none;
  }
  .site-header__actions {
    justify-self: end;
  }
  .site-header__actions .hdr-btn:not(.hdr-btn--cart) {
    display: none;
  }
  .hdr-btn--cart {
    min-width: 40px;
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }
  .hdr-btn--cart svg {
    width: 18px;
    height: 18px;
  }
  .hdr-btn--cart .cart-count {
    position: absolute;
    margin: -22px -28px 0 0;
  }
  .site-nav {
    display: none;
  }
  .mobile-route-overlay {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 110000;
  }
  .mobile-route-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-route-drawer {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 110010;
    width: min(430px, 92vw);
    max-width: 92vw;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    padding: 0;
    background: var(--ol-white);
    border-right: 3px solid var(--ol-yellow);
    transform: translateX(-104%);
    transition: transform .22s ease;
    box-shadow: 16px 0 40px rgba(0, 0, 0, .18);
  }
  .mobile-route-drawer.is-open {
    transform: translateX(0);
  }
  .mobile-route-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 58px;
    padding: 12px 14px;
    border-bottom: 1.5px solid var(--ol-grey-2);
    background: var(--ol-black);
  }
  .mobile-route-drawer__title {
    color: var(--ol-white);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: .01em;
  }
  .mobile-route-drawer__close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: var(--ol-radius);
    background: transparent;
    color: var(--ol-white);
    font-size: 28px;
    line-height: 1;
  }
  .mobile-route-drawer__search {
    padding: 12px 14px;
    border-bottom: 1.5px solid var(--ol-grey-2);
  }
  .mobile-route-drawer__search .site-search {
    display: flex;
    width: 100%;
  }
  .mobile-route-drawer__search .ol-search-suggestions {
    position: static;
    min-width: 0;
    width: 100%;
    max-height: 52vh;
    margin-top: 10px;
  }
  .mobile-route-section {
    display: grid;
    gap: 0;
  }
  .mobile-route-section h3 {
    margin: 0;
    padding: 13px 14px 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ol-grey-3);
    background: var(--ol-grey-1);
    border-bottom: 1.5px solid var(--ol-grey-2);
  }
  .mobile-route-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 14px;
    border: 0;
    border-bottom: 1.5px solid var(--ol-grey-2);
    border-radius: 0;
    color: var(--ol-black);
    background: var(--ol-white);
    font-weight: 700;
  }
  .mobile-route-group {
    border-bottom: 1.5px solid var(--ol-grey-2);
  }
  .mobile-route-parent {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
    border: 0;
    background: var(--ol-white);
    color: var(--ol-black);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
  }
  .mobile-route-parent__chevron {
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--ol-grey-3);
    border-right: 2px solid var(--ol-grey-3);
    transform: rotate(45deg);
    transition: transform .18s ease;
    flex: 0 0 auto;
  }
  .mobile-route-parent[aria-expanded="true"] {
    background: #fff8cf;
  }
  .mobile-route-parent[aria-expanded="true"] .mobile-route-parent__chevron {
    transform: rotate(135deg);
  }
  .mobile-route-sublist {
    display: grid;
    gap: 0;
    padding: 4px 0 10px;
    background: #fbfbfb;
    border-top: 1.5px solid var(--ol-grey-2);
  }
  .mobile-route-sublist[hidden] {
    display: none !important;
  }
  .mobile-route-sublist strong {
    padding: 12px 20px 5px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ol-grey-3);
  }
  .mobile-route-sublist a {
    display: flex;
    align-items: center;
    min-height: 39px;
    padding: 9px 20px;
    color: var(--ol-grey-4);
    font-size: 14px;
    font-weight: 600;
  }
  .mobile-route-sublist a:hover,
  .mobile-route-sublist a:focus-visible {
    color: var(--ol-black);
    background: var(--ol-white);
  }
  .mobile-route-sublist__all {
    min-height: 34px !important;
    margin: 6px 20px 0;
    padding: 8px 0 0 !important;
    border-top: 1px solid var(--ol-grey-2);
    color: var(--ol-grey-4) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
  }
  .mobile-route-link--deals {
    color: var(--ol-red);
    background: #fff7f2;
  }
}

@media (max-width: 760px) {
  .mobile-bottom-routes,
  nav.mobile-bottom-routes,
  [class*="mobile-bottom-routes"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
}
@media (max-width: 640px) {
  .outlet-product-detail form.cart .quantity.ol-quantity-stepper {
    grid-template-columns: 42px 48px 42px;
    width: 132px;
    min-height: 50px;
  }

  .outlet-product-detail form.cart .quantity.ol-quantity-stepper .qty {
    width: 48px;
    min-height: 50px;
  }

  .ol-qty-stepper__button {
    width: 42px;
    min-height: 50px;
    font-size: 20px;
  }

  .outlet-product-detail .cta-group--single-quantity form.cart .quantity {
    display: none !important;
  }

  .outlet-product-detail .cta-group--single-quantity form.cart .single_add_to_cart_button,
  .outlet-product-detail .cta-group--single-quantity form.cart .button {
    width: 100%;
    flex-basis: 100%;
  }

  .outlet-product-detail form.cart .stock {
    display: none !important;
  }

  .outlet-product-detail form.cart .single_add_to_cart_button,
  .outlet-product-detail form.cart .button,
  .outlet-product-detail form.cart .quantity {
    width: 100%;
  }
  .outlet-product-detail form.cart .quantity.ol-quantity-stepper {
    width: 132px;
  }
  .outlet-product-detail form.cart .quantity .qty {
    width: 100%;
  }
  .outlet-product-detail form.cart .quantity.ol-quantity-stepper .qty {
    width: 48px;
  }
  .outlet-product-detail .awdr-bulk-customizable-table {
    padding: 12px;
    margin-bottom: 12px;
  }
  .outlet-product-detail .awdr-bulk-customizable-table::before {
    width: 100%;
    justify-content: center;
    font-size: 13px;
  }
  .outlet-product-detail .wdr_bulk_table_msg {
    border-spacing: 0 7px;
  }
  .outlet-product-detail .wdr_bulk_table_msg th,
  .outlet-product-detail .wdr_bulk_table_msg td {
    padding: 9px 8px;
  }
  .outlet-product-detail .wdr_bulk_table_msg thead th {
    font-size: 9.5px;
    letter-spacing: .05em;
  }
  .outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_title {
    font-size: 17px;
  }
  .outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_range::before,
  .outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_range::after,
  .outlet-product-detail .wdr_bulk_table_msg .wdr_bulk_title::after {
    display: none;
  }
  .outlet-product-detail .wdr_bulk_table_msg .wdr_table_discounted_price {
    min-height: 30px;
    padding: 0 8px;
    font-size: 15px;
  }
  .tabs-nav {
    overflow-x: auto;
  }
  .tab-btn {
    white-space: nowrap;
  }
}

/* ── INFORMATIEPAGINA'S — gedeeld ── */
.w--narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }

.breadcrumb { padding: 14px 0; font-size: 12.5px; color: var(--ol-grey-3); display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--ol-grey-3); transition: color .15s; }
.breadcrumb a:hover { color: var(--ol-black); }
.breadcrumb span { color: var(--ol-grey-2); }
.breadcrumb strong { color: var(--ol-black); font-weight: 500; }

.page-hero { background: var(--ol-black); padding: 52px 0 48px; }
.page-hero__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ol-yellow); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.page-hero__eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--ol-yellow); }
.page-hero__title { font-family: var(--ol-display); font-size: clamp(34px, 5vw, 60px); font-weight: 900; color: var(--ol-white); text-transform: uppercase; line-height: .95; margin-bottom: 16px; }
.page-hero__intro { font-size: 15px; color: #888; line-height: 1.7; max-width: 560px; }
.page-hero__lead { font-size: 16px; line-height: 1.7; color: #aaa; max-width: 560px; }
.page-hero__cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--ol-yellow); color: var(--ol-black); font-weight: 700; font-size: 14px; padding: 13px 24px; border-radius: var(--ol-radius); transition: background .15s; }
.btn-primary:hover { background: var(--ol-yellow-dk); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--ol-white); font-weight: 600; font-size: 14px; padding: 13px 24px; border-radius: var(--ol-radius); border: 1.5px solid #444; transition: border-color .15s; }
.btn-secondary:hover { border-color: #888; }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; background: var(--ol-black); color: var(--ol-white); font-weight: 700; font-size: 14px; padding: 13px 24px; border-radius: var(--ol-radius); transition: background .15s; }
.btn-dark:hover { background: #333; }
.btn-yellow { background: var(--ol-yellow); color: var(--ol-black); font-weight: 700; font-size: 14px; padding: 12px 24px; border-radius: var(--ol-radius); transition: background .15s; display: inline-flex; align-items: center; }
.btn-yellow:hover { background: var(--ol-yellow-dk); }
.btn-outline { background: none; border: 1.5px solid #333; color: #999; font-size: 14px; padding: 12px 24px; border-radius: var(--ol-radius); transition: all .15s; display: inline-flex; align-items: center; }
.btn-outline:hover { border-color: var(--ol-white); color: var(--ol-white); }

/* ── LEVERING & RETOURNEREN ── */
.usp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 36px 0 56px; }
.usp-box { background: var(--ol-grey-1); border: 1.5px solid var(--ol-grey-2); border-radius: 10px; padding: 20px; text-align: center; }
.usp-box__icon { width: 40px; height: 40px; background: var(--ol-yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: var(--ol-black); }
.usp-box__val { font-family: var(--ol-display); font-size: 22px; font-weight: 900; margin-bottom: 4px; }
.usp-box__label { font-size: 12px; color: var(--ol-grey-4); line-height: 1.4; }

.content-block { margin-bottom: 48px; }
.content-block__title { font-family: var(--ol-display); font-size: 26px; font-weight: 900; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.content-block__icon { width: 36px; height: 36px; background: var(--ol-yellow); border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--ol-black); }
.content-block p { font-size: 14.5px; color: var(--ol-grey-4); line-height: 1.75; margin-bottom: 14px; }
.content-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.content-block li { font-size: 14.5px; color: var(--ol-grey-4); line-height: 1.5; display: flex; align-items: flex-start; gap: 10px; }
.content-block li::before { content: '✓'; color: var(--ol-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.callout { background: #fffbf0; border-left: 3px solid var(--ol-yellow); border-radius: 0 8px 8px 0; padding: 16px 20px; margin-bottom: 20px; font-size: 14px; color: var(--ol-black); line-height: 1.65; }
.callout strong { font-weight: 700; }

.steps { display: flex; flex-direction: column; margin-bottom: 20px; }
.step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--ol-grey-2); }
.step:last-child { border-bottom: none; }
.step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--ol-black); color: var(--ol-yellow); font-family: var(--ol-display); font-size: 16px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.step__body strong { font-size: 14.5px; font-weight: 700; display: block; margin-bottom: 4px; }
.step__body p { font-size: 13.5px; color: var(--ol-grey-4); line-height: 1.6; margin: 0; }

.divider { border: none; border-top: 1.5px solid var(--ol-grey-2); margin: 48px 0; }

.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.contact-card { background: var(--ol-grey-1); border: 1.5px solid var(--ol-grey-2); border-radius: 10px; padding: 20px 24px; }
.contact-card__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ol-grey-3); margin-bottom: 6px; }
.contact-card__val { font-size: 16px; font-weight: 700; color: var(--ol-black); }
.contact-card__sub { font-size: 12.5px; color: var(--ol-grey-4); margin-top: 3px; }

/* ── FAQ ── */
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 40px; }
.faq-tab { font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 20px; border: 1.5px solid var(--ol-grey-2); color: var(--ol-grey-4); cursor: pointer; background: var(--ol-white); transition: all .15s; }
.faq-tab:hover { border-color: var(--ol-black); color: var(--ol-black); }
.faq-tab.active { background: var(--ol-black); color: var(--ol-yellow); border-color: var(--ol-black); }

.faq-section { margin-bottom: 52px; }
.faq-section__title { font-family: var(--ol-display); font-size: 22px; font-weight: 900; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.faq-section__icon { width: 32px; height: 32px; background: var(--ol-yellow); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--ol-black); }

.faq-list { border: 1.5px solid var(--ol-grey-2); border-radius: 10px; overflow: hidden; }
.faq-item { border-bottom: 1.5px solid var(--ol-grey-2); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 18px 20px; font-size: 14.5px; font-weight: 600; color: var(--ol-black); display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; line-height: 1.4; }
.faq-q:hover { background: var(--ol-grey-1); }
.faq-q svg { flex-shrink: 0; transition: transform .2s; color: var(--ol-grey-3); }
.faq-q.open { background: var(--ol-grey-1); }
.faq-q.open svg { transform: rotate(180deg); color: var(--ol-black); }
.faq-a { display: none; padding: 0 20px 20px; font-size: 14px; color: var(--ol-grey-4); line-height: 1.75; }
.faq-a.open { display: block; animation: fadeUp .2s ease; }
.faq-a a { color: var(--ol-black); text-decoration: underline; }
.faq-a ul { margin: 10px 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.faq-a li { display: flex; align-items: flex-start; gap: 8px; }
.faq-a li::before { content: '✓'; color: var(--ol-green); font-weight: 700; flex-shrink: 0; }

.contact-block { background: var(--ol-black); border-radius: 12px; padding: 40px; margin: 56px 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.contact-block__left h3 { font-family: var(--ol-display); font-size: 28px; font-weight: 900; color: var(--ol-white); text-transform: uppercase; margin-bottom: 6px; }
.contact-block__left p { font-size: 14px; color: #666; }
.contact-block__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 14px; border-bottom: 1px solid var(--ol-grey-2); }
.hours-table td:first-child { color: var(--ol-grey-4); width: 120px; }
.hours-table td:last-child { font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

/* ── PRODUCTCONDITIES ── */
.badge-strip { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.badge-demo { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 10px 16px; }
.badge-demo__pill { font-family: var(--ol-display); font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 4px; letter-spacing: .08em; text-transform: uppercase; }
.badge-demo__pill--outlet { background: var(--ol-orange); color: #fff; }
.badge-demo__pill--new { background: var(--ol-green); color: #fff; }
.badge-demo__label { font-size: 13px; color: #ccc; }

.cond-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 64px; }
.cond-card { border-radius: 12px; overflow: hidden; border: 2px solid var(--ol-grey-2); }
.cond-card__head { padding: 28px 32px; display: flex; align-items: center; gap: 16px; }
.cond-card--outlet .cond-card__head { background: #fff4ed; border-bottom: 2px solid #f5c4a0; }
.cond-card--new .cond-card__head { background: #edfaf3; border-bottom: 2px solid #a0e0c0; }
.cond-card__icon { width: 52px; height: 52px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cond-card--outlet .cond-card__icon { background: var(--ol-orange); color: #fff; }
.cond-card--new .cond-card__icon { background: var(--ol-green); color: #fff; }
.cond-card__pill { font-family: var(--ol-display); font-size: 11px; font-weight: 800; padding: 3px 9px; border-radius: 4px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; display: inline-block; }
.cond-card--outlet .cond-card__pill { background: var(--ol-orange); color: #fff; }
.cond-card--new .cond-card__pill { background: var(--ol-green); color: #fff; }
.cond-card__name { font-family: var(--ol-display); font-size: 26px; font-weight: 900; text-transform: uppercase; line-height: 1; }
.cond-card--outlet .cond-card__name { color: #c84f00; }
.cond-card--new .cond-card__name { color: #127a47; }
.cond-card__sub { font-size: 13px; color: var(--ol-grey-4); margin-top: 4px; }
.cond-card__body { padding: 28px 32px; background: var(--ol-white); }
.cond-card__desc { font-size: 14.5px; line-height: 1.7; color: var(--ol-grey-4); margin-bottom: 20px; }
.cond-check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cond-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.5; color: var(--ol-black); }
.cond-check-list li::before { content: '✓'; flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; margin-top: 1px; }
.cond-card--outlet .cond-check-list li::before { background: #fff4ed; color: var(--ol-orange); border: 1.5px solid #f5c4a0; }
.cond-card--new .cond-check-list li::before { background: #edfaf3; color: var(--ol-green); border: 1.5px solid #a0e0c0; }

.examples-block { background: var(--ol-grey-1); border-radius: 10px; padding: 20px 24px; margin-top: 20px; }
.examples-block__title { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ol-grey-3); margin-bottom: 10px; }
.examples-block__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.examples-block__tag { font-size: 12px; background: var(--ol-white); border: 1.5px solid var(--ol-grey-2); border-radius: 20px; padding: 4px 11px; color: var(--ol-grey-4); }

.section-intro { font-size: 15px; color: var(--ol-grey-4); line-height: 1.7; max-width: 640px; margin-bottom: 36px; }

.guarantee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
.guarantee-card { background: var(--ol-grey-1); border-radius: 10px; padding: 24px; }
.guarantee-card__icon { width: 40px; height: 40px; background: var(--ol-yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: var(--ol-black); }
.guarantee-card__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.guarantee-card__body { font-size: 13.5px; color: var(--ol-grey-4); line-height: 1.65; }

.cond-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 64px; }
.cond-why-card { border: 1.5px solid var(--ol-grey-2); border-radius: 10px; padding: 24px; }
.cond-why-card__num { font-family: var(--ol-display); font-size: 40px; font-weight: 900; color: var(--ol-yellow); line-height: 1; margin-bottom: 10px; }
.cond-why-card__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cond-why-card__body { font-size: 13.5px; color: var(--ol-grey-4); line-height: 1.65; }

.cta-block { border-radius: 12px; padding: 48px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 72px; }
.cta-block--yellow { background: var(--ol-yellow); }
.cta-block--grey { background: var(--ol-grey-1); }
.cta-block__title { font-family: var(--ol-display); font-size: clamp(24px, 3vw, 36px); font-weight: 900; text-transform: uppercase; line-height: 1; }
.cta-block__sub { font-size: 14px; color: var(--ol-grey-4); margin-top: 6px; }
.cta-block__body { font-size: 15px; line-height: 1.65; color: #333; margin-bottom: 24px; }
.cta-block__btn { background: var(--ol-black); color: var(--ol-white); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: var(--ol-radius); white-space: nowrap; transition: opacity .15s; display: inline-block; }
.cta-block__btn:hover { opacity: .85; }

/* ── OVER OUTLET LOKET & RESTPARTIJ VERKOPEN ── */
.content-section { padding: 56px 0; }
.content-section--grey { background: var(--ol-grey-1); }
.content-section--dark { background: var(--ol-black); color: var(--ol-white); }

.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-grid--wide { grid-template-columns: 3fr 2fr; }

.content-label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ol-yellow); margin-bottom: 12px; }
.content-title { font-family: var(--ol-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; text-transform: uppercase; line-height: .95; margin-bottom: 20px; }
.content-title--white { color: var(--ol-white); }
.content-body { font-size: 15px; line-height: 1.75; color: var(--ol-grey-4); }
.content-body--dark { color: #bbb; }
.content-body p + p { margin-top: 16px; }
.content-body ul { margin-top: 12px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.content-body ul li { display: flex; align-items: flex-start; gap: 10px; }
.content-body ul li::before { content: ''; width: 6px; height: 6px; background: var(--ol-yellow); border-radius: 50%; margin-top: 8px; flex-shrink: 0; }

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #222; }
.stat-block { background: #1a1a1a; padding: 32px 24px; text-align: center; }
.stat-val { font-family: var(--ol-display); font-size: clamp(28px, 5vw, 44px); font-weight: 900; color: var(--ol-white); line-height: 1; }
.stat-val em { color: var(--ol-yellow); font-style: normal; }
.stat-label { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }

.about-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.about-why-card { background: var(--ol-white); border: 1.5px solid var(--ol-grey-2); border-radius: 10px; padding: 28px 24px; transition: border-color .2s, transform .2s; }
.about-why-card:hover { border-color: var(--ol-yellow); transform: translateY(-3px); }
.about-why-card__icon { width: 42px; height: 42px; background: var(--ol-yellow); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.about-why-card__title { font-family: var(--ol-display); font-size: 20px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.about-why-card__body { font-size: 13.5px; line-height: 1.65; color: var(--ol-grey-4); }
.about-why-card__body ul { margin-top: 8px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.about-why-card__body ul li { display: flex; align-items: flex-start; gap: 8px; }
.about-why-card__body ul li::before { content: ''; width: 5px; height: 5px; background: var(--ol-yellow); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

.about-hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.about-hours-table tr { border-bottom: 1px solid #333; }
.about-hours-table td { padding: 10px 0; color: #ccc; }
.about-hours-table td:last-child { text-align: right; color: var(--ol-white); font-weight: 500; }
.about-hours-table tr:last-child { border-bottom: none; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-item__label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #666; }
.contact-item__val { font-size: 15px; color: var(--ol-white); font-weight: 500; }
.contact-item__val a { color: var(--ol-yellow); }

.media-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-top: 24px; }
.media-badge { background: #222; border: 1px solid #333; border-radius: 6px; padding: 12px 24px; font-family: var(--ol-display); font-size: 18px; font-weight: 900; color: #aaa; letter-spacing: .04em; }

/* ── RESTPARTIJ VERKOPEN ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
.process-step { position: relative; }
.process-step__num { font-family: var(--ol-display); font-size: 56px; font-weight: 900; color: var(--ol-yellow); line-height: 1; margin-bottom: 8px; }
.process-step__title { font-family: var(--ol-display); font-size: 20px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; color: var(--ol-white); }
.process-step__body { font-size: 13.5px; line-height: 1.65; color: #888; }
.process-connector { position: absolute; top: 28px; right: -10px; width: 20px; height: 2px; background: #333; }
.process-step:last-child .process-connector { display: none; }

.type-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.type-tag { background: #222; border: 1px solid #333; border-radius: 6px; padding: 10px 18px; font-size: 13.5px; color: #ccc; font-weight: 500; }

.restpartij-cta { background: var(--ol-yellow); border-radius: 10px; padding: 40px 36px; }
.restpartij-cta__title { font-family: var(--ol-display); font-size: clamp(26px, 3vw, 40px); font-weight: 900; text-transform: uppercase; line-height: .95; margin-bottom: 12px; }
.restpartij-cta__body { font-size: 15px; line-height: 1.65; color: #333; margin-bottom: 24px; }

/* ── RESPONSIVE — INFORMATIEPAGINA'S ── */
@media (max-width: 900px) {
  .usp-row { grid-template-columns: repeat(2, 1fr); }
  .contact-row { grid-template-columns: 1fr; }
  .guarantee-grid, .cond-why-grid { grid-template-columns: 1fr 1fr; }
  .content-grid, .content-grid--wide { grid-template-columns: 1fr; gap: 32px; }
  .about-why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .usp-row { grid-template-columns: repeat(2, 1fr); }
  .faq-tabs { gap: 6px; }
  .faq-tab { padding: 7px 12px; font-size: 12.5px; }
  .cond-grid { grid-template-columns: 1fr; }
  .guarantee-grid, .cond-why-grid { grid-template-columns: 1fr; }
  .cond-card__head, .cond-card__body { padding: 20px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .contact-block { padding: 28px 24px; }
}
@media (max-width: 400px) {
  .usp-row { grid-template-columns: 1fr; }
}

/* ── TOPBAR SVG ICONS ── */
.site-topbar__item::before { display: none; }
.site-topbar__item svg { color: var(--ol-yellow); flex-shrink: 0; }
.site-topbar a.site-topbar__item { color: inherit; text-decoration: none; }
.site-topbar a.site-topbar__item:hover { color: var(--ol-white); }

/* Outlet Loket CTA fixes */

/* ── WINKELWAGEN: CHECKOUT KNOP (klassiek + block cart) ── */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.checkout-button,
a.checkout-button,
a.wc-block-cart__submit-button,
.wc-block-cart__submit-button {
  display: block !important;
  width: 100% !important;
  background: #3B6D11 !important;
  color: #EAF3DE !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  border: none !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: background .15s ease !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::before,
.woocommerce .wc-proceed-to-checkout a.checkout-button::before,
a.checkout-button::before,
a.wc-block-cart__submit-button::before {
  content: "✓ " !important;
  font-weight: 900 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
a.checkout-button:hover,
a.wc-block-cart__submit-button:hover,
.wc-block-cart__submit-button:hover {
  background: #27500A !important;
  color: #EAF3DE !important;
}

/* ── WINKELWAGEN: TRUST BADGES ── */
.ol-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.ol-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #EAF3DE;
  color: #3B6D11;
  border: 1px solid #c2dba0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  white-space: nowrap;
}

/* ── WINKELWAGEN: VERDER WINKELEN KNOP ── */
.woocommerce-cart .wc-backward,
.woocommerce .return-to-shop a,
.woocommerce-cart .return-to-shop a {
  display: inline-block !important;
  background: transparent !important;
  color: #3B6D11 !important;
  border: 1.5px solid #3B6D11 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  text-decoration: none !important;
  transition: background .15s ease, color .15s ease !important;
  margin-top: 10px !important;
}
.woocommerce-cart .wc-backward:hover,
.woocommerce .return-to-shop a:hover,
.woocommerce-cart .return-to-shop a:hover {
  background: #EAF3DE !important;
  color: #27500A !important;
}

/* ── WINKELWAGEN: URGENTIE BADGE ── */
.ol-stock-urgent {
  display: inline-flex;
  align-items: center;
  background: #fde8e8;
  color: #c0392b;
  border: 1px solid #f5b7b1;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  margin-left: 8px;
  white-space: nowrap;
  vertical-align: middle;
}

/* ── LEGE WINKELWAGEN (Block Cart) ── */

.wp-block-woocommerce-empty-cart-block .wp-block-heading:first-of-type,
.wp-block-woocommerce-empty-cart-block hr.wp-block-separator,
.wp-block-woocommerce-empty-cart-block .wp-block-separator {
  display: none !important;
}
.ol-empty-block-header {
  text-align: center;
  padding: 40px 0 48px;
}
.ol-empty-block-header svg { color: #c2dba0; margin-bottom: 18px; }
.ol-empty-block-header__title {
  font-family: var(--ol-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.ol-empty-block-header__sub { color: var(--ol-grey-4); font-size: 16px; margin-bottom: 28px; }
.ol-empty-block-header__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.ol-empty-block-header__btn {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.ol-empty-block-header__btn--primary { background: #3B6D11; color: #EAF3DE; }
.ol-empty-block-header__btn--primary:hover { background: #27500A; color: #EAF3DE; }
.ol-empty-block-header__btn--secondary { background: transparent; color: #3B6D11; border: 1.5px solid #3B6D11; }
.ol-empty-block-header__btn--secondary:hover { background: #EAF3DE; }
.wp-block-woocommerce-empty-cart-block .wp-block-heading {
  font-family: var(--ol-font) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  text-align: left !important;
  margin-bottom: 20px !important;
  text-transform: none !important;
}
.wp-block-woocommerce-empty-cart-block .wp-block-button__link {
  background: var(--ol-yellow) !important;
  color: var(--ol-black) !important;
  border-radius: var(--ol-radius) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border: none !important;
  text-decoration: none !important;
}
.wp-block-woocommerce-empty-cart-block .wp-block-button__link:hover { background: var(--ol-yellow-dk) !important; }
.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-onsale {
  background: #3B6D11 !important;
  border-radius: 4px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
}

/* ── LEGE WINKELWAGEN (klassiek template fallback) ── */
.ol-empty-cart {
  text-align: center;
  padding: 48px 20px 64px;
  max-width: 720px;
  margin: 0 auto;
}
.ol-empty-cart__icon {
  color: #c2dba0;
  margin-bottom: 20px;
}
.ol-empty-cart__heading {
  font-family: var(--ol-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.ol-empty-cart__sub {
  color: var(--ol-grey-4);
  font-size: 16px;
  margin-bottom: 28px;
}
.ol-empty-cart__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.ol-empty-cart__btn {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.ol-empty-cart__btn--primary {
  background: #3B6D11;
  color: #EAF3DE;
}
.ol-empty-cart__btn--primary:hover { background: #27500A; color: #EAF3DE; }
.ol-empty-cart__btn--secondary {
  background: transparent;
  color: #3B6D11;
  border: 1.5px solid #3B6D11;
}
.ol-empty-cart__btn--secondary:hover { background: #EAF3DE; }
.ol-empty-cart__featured-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

/* ── WINKELWAGEN: CROSS-SELLS ── */
.ol-cart-cross-sells {
  margin: 18px 0 28px;
  padding: 18px;
  background: #f7f7f7;
  border: 1.5px solid var(--ol-grey-2);
  border-radius: 10px;
  font-family: var(--ol-font);
}
.ol-cart-cross-sells--mobile-priority {
  display: none;
}
.ol-cart-cross-sells__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  align-items: end;
  gap: 14px;
  margin-bottom: 16px;
}
.ol-cart-cross-sells__head .section-eyebrow {
  margin-bottom: 6px;
}
.ol-cart-cross-sells__head h2 {
  font-family: var(--ol-display);
  font-size: clamp(22px, 3vw, 30px);
  line-height: .95;
  text-transform: uppercase;
  margin: 0;
}
.ol-cart-cross-sells__head p {
  color: var(--ol-grey-4);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
.ol-cart-cross-sells__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.ol-cart-cross-sell__card {
  display: grid;
  grid-template-rows: 128px minmax(0, 1fr);
  overflow: hidden;
  background: var(--ol-white);
  border: 1.5px solid var(--ol-grey-2);
  border-radius: var(--ol-radius);
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.ol-cart-cross-sell__card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 12px 28px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.ol-cart-cross-sell__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  background: #fff;
}
.ol-cart-cross-sell__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}
.ol-cart-cross-sell__discount,
.ol-cart-cross-sell__condition {
  position: absolute;
  left: 10px;
  z-index: 2;
  font-family: var(--ol-display);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  border-radius: 3px;
}
.ol-cart-cross-sell__discount {
  top: 10px;
  color: var(--ol-black);
  background: var(--ol-yellow);
  padding: 3px 8px;
}
.ol-cart-cross-sell__condition {
  top: 34px;
  color: #fff;
  background: #e65100;
  padding: 3px 7px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ol-cart-cross-sell__condition--new {
  background: var(--ol-green);
}
.ol-cart-cross-sell__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px;
  border-top: 1px solid var(--ol-grey-2);
}
.ol-cart-cross-sell__brand {
  color: var(--ol-yellow);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.ol-cart-cross-sell__title {
  color: var(--ol-black);
  display: -webkit-box;
  min-height: 38px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ol-cart-cross-sell__title:hover {
  color: #8b7900;
}
.ol-cart-cross-sell__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 9px 0 12px;
  color: #8b8b00;
  font-family: var(--ol-display);
  font-size: 16px;
  font-weight: 900;
}
.ol-cart-cross-sell__price del {
  order: 2;
  color: var(--ol-grey-3);
  font-family: var(--ol-font);
  font-size: 12px;
  font-weight: 400;
}
.ol-cart-cross-sell__price ins {
  text-decoration: none;
}
.ol-cart-cross-sell__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}
.ol-cart-cross-sell__add {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: 100%;
  padding: 10px 12px !important;
  background: var(--ol-black) !important;
  color: var(--ol-white) !important;
  border-radius: 4px !important;
  font-family: var(--ol-display);
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .06em;
  line-height: 1.05;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
}
.ol-cart-cross-sell__add::before {
  content: "+";
  margin-right: 6px;
}
.ol-cart-cross-sell__add:hover {
  background: var(--ol-yellow) !important;
  color: var(--ol-black) !important;
}
.ol-cart-cross-sell__details {
  color: var(--ol-grey-4);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.ol-cart-cross-sell__details:hover {
  color: var(--ol-black);
}

.ol-mini-cart .ol-cart-cross-sells {
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.ol-mini-cart .ol-cart-cross-sells__head {
  display: block;
  margin-bottom: 10px;
}

.ol-mini-cart .ol-cart-cross-sells__head .section-eyebrow {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
}

.ol-mini-cart .ol-cart-cross-sells__head h2 {
  color: #111;
  font-family: var(--ol-font);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}

.ol-mini-cart .ol-cart-cross-sells__head p {
  display: none;
}

.ol-mini-cart .ol-cart-cross-sells__grid {
  grid-template-columns: 1fr;
  gap: 8px;
}

.ol-mini-cart .ol-cart-cross-sell__card {
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: none;
  border-radius: 7px;
}

.ol-mini-cart .ol-cart-cross-sell__media {
  min-height: 104px;
}

.ol-mini-cart .ol-cart-cross-sell__media img {
  padding: 8px;
}

.ol-mini-cart .ol-cart-cross-sell__body {
  border-top: 0;
  border-left: 1px solid var(--ol-grey-2);
  padding: 9px 10px;
  min-width: 0;
}

.ol-mini-cart .ol-cart-cross-sell__brand {
  margin-bottom: 4px;
  font-size: 9.5px;
}

.ol-mini-cart .ol-cart-cross-sell__title {
  min-height: 0;
  font-size: 12px;
  line-height: 1.25;
}

.ol-mini-cart .ol-cart-cross-sell__price {
  margin: 6px 0 8px;
  font-size: 13px;
}

.ol-mini-cart .ol-cart-cross-sell__actions {
  grid-template-columns: 1fr;
}

.ol-mini-cart .ol-cart-cross-sell__add {
  min-height: 32px;
  padding: 7px 10px !important;
  font-size: 11px !important;
}

.ol-mini-cart .ol-cart-cross-sell__details {
  display: none;
}

@media (max-width: 980px) {
  .ol-cart-cross-sells__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .ol-cart-cross-sells--desktop-inline {
    display: none;
  }
  .ol-cart-cross-sells--mobile-priority {
    display: block;
  }
  .ol-cart-cross-sells {
    margin: 12px 0 18px;
    padding: 14px;
  }
  .ol-cart-cross-sells__head {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .ol-cart-cross-sells__head h2 {
    font-size: 22px;
  }
  .ol-cart-cross-sells__head p {
    font-size: 12.5px;
  }
  .ol-cart-cross-sells__grid {
    grid-auto-columns: minmax(238px, 82vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .ol-cart-cross-sell__card {
    grid-template-rows: 116px minmax(0, 1fr);
    scroll-snap-align: start;
  }
  .ol-cart-cross-sell__media {
    min-height: 116px;
  }
  .ol-cart-cross-sell__body {
    border-top: 1px solid var(--ol-grey-2);
    border-left: 0;
  }
  .ol-cart-cross-sell__actions {
    grid-template-columns: 1fr;
  }
  .ol-cart-cross-sell__details {
    text-align: center;
  }

  .ol-mini-cart .ol-cart-cross-sells {
    margin-top: 12px;
    padding: 12px;
  }

  .ol-mini-cart .ol-cart-cross-sells__head {
    display: block;
    margin-bottom: 10px;
  }

  .ol-mini-cart .ol-cart-cross-sells__head h2 {
    font-size: 14px;
  }

  .ol-mini-cart .ol-cart-cross-sells__head p {
    display: none;
  }

  .ol-mini-cart .ol-cart-cross-sells__grid {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .ol-mini-cart .ol-cart-cross-sell__card {
    grid-template-columns: 72px minmax(0, 1fr);
    grid-template-rows: none;
  }

  .ol-mini-cart .ol-cart-cross-sell__media {
    min-height: 98px;
  }

  .ol-mini-cart .ol-cart-cross-sell__body {
    border-left: 1px solid var(--ol-grey-2);
  }

  .ol-mini-cart .ol-cart-cross-sell__actions {
    grid-template-columns: 1fr;
  }

  .ol-mini-cart .ol-cart-cross-sell__details {
    display: none;
  }
}

/* ── STICKY MOBIELE CHECKOUT KNOP ── */
.ol-sticky-checkout {
  display: none;
}
@media (max-width: 768px) {
  .ol-sticky-checkout {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    padding: 12px 16px;
    background: #fff;
    border-top: 1px solid var(--ol-grey-2);
    box-shadow: 0 -4px 16px rgba(0,0,0,.1);
    transition: transform .2s ease;
  }
  .ol-sticky-checkout[aria-hidden="true"] {
    transform: translateY(100%);
    pointer-events: none;
  }
  .ol-sticky-checkout__btn {
    display: block;
    width: 100%;
    background: #3B6D11;
    color: #EAF3DE;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
  }
  .ol-sticky-checkout__btn:hover { background: #27500A; color: #EAF3DE; }
}

/* ── BESTELLING ONTVANGEN ── */
.woocommerce-order-received .entry-header {
  display: none;
}
.woocommerce-order-received .content-section {
  padding-top: 0;
}
.ol-thankyou {
  display: grid;
  gap: 24px;
  margin-bottom: 54px;
}
.ol-thankyou__hero {
  background: var(--ol-black);
  color: var(--ol-white);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 54px);
  position: relative;
  overflow: hidden;
}
.ol-thankyou__hero::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -120px;
  width: 280px;
  height: 280px;
  border: 34px solid rgba(255, 222, 89, .14);
  border-radius: 50%;
}
.ol-thankyou__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ol-yellow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.ol-thankyou__status-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ol-yellow);
  color: var(--ol-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ol-display);
  font-size: 24px;
  font-weight: 900;
}
.ol-thankyou__hero h1 {
  font-family: var(--ol-display);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 900;
  line-height: .88;
  text-transform: uppercase;
  max-width: 760px;
  margin-bottom: 16px;
}
.ol-thankyou__hero p {
  color: #cfcfcf;
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 24px;
}
.ol-thankyou__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.ol-thankyou__outline {
  color: var(--ol-white) !important;
  border-color: #444 !important;
}
.ol-thankyou__outline:hover {
  border-color: var(--ol-yellow) !important;
  color: var(--ol-yellow) !important;
}
.ol-thankyou__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.ol-thankyou__summary-card,
.ol-thankyou__next-card,
.ol-thankyou__panel {
  background: var(--ol-white);
  border: 1.5px solid var(--ol-grey-2);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
}
.ol-thankyou__summary-card {
  padding: 17px 18px;
}
.ol-thankyou__summary-card span,
.ol-thankyou__eyebrow {
  display: block;
  color: var(--ol-grey-3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ol-thankyou__summary-card strong {
  display: block;
  color: var(--ol-black);
  font-size: 16px;
  line-height: 1.25;
}
.ol-thankyou__next {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
}
.ol-thankyou__gateway-message:empty {
  display: none;
}
.ol-thankyou__gateway-message > * {
  margin-bottom: 0 !important;
}
.ol-thankyou__next-card {
  display: flex;
  gap: 14px;
  padding: 20px;
}
.ol-thankyou__next-card--highlight {
  background: #fffbf0;
  border-color: #f1d767;
}
.ol-thankyou__next-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--ol-yellow);
  color: var(--ol-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  font-family: var(--ol-display);
  font-size: 22px;
  font-weight: 900;
}
.ol-thankyou__next h2,
.ol-thankyou__panel h2 {
  font-family: var(--ol-display);
  font-size: 25px;
  line-height: .95;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ol-thankyou__next p {
  color: var(--ol-grey-4);
  font-size: 13.5px;
  line-height: 1.65;
}
.ol-thankyou__details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}
.ol-thankyou__panel {
  padding: 22px;
}
.ol-thankyou__panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ol-grey-2);
}
.ol-thankyou__panel-head > strong {
  font-family: var(--ol-display);
  font-size: 26px;
  color: var(--ol-black);
  white-space: nowrap;
}
.ol-thankyou__items {
  display: grid;
  gap: 10px;
}
.ol-thankyou__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--ol-grey-1);
  border-radius: 8px;
}
.ol-thankyou__item-img {
  width: 72px;
  height: 72px;
  border-radius: 7px;
  background: var(--ol-white);
  border: 1px solid var(--ol-grey-2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ol-thankyou__item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.ol-thankyou__item h3 {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 4px;
}
.ol-thankyou__item span {
  color: var(--ol-grey-3);
  font-size: 12px;
}
.ol-thankyou__item-total {
  font-family: var(--ol-display);
  font-size: 19px;
  font-weight: 900;
  white-space: nowrap;
}
.ol-thankyou__totals {
  margin-top: 16px;
  border-top: 1px solid var(--ol-grey-2);
}
.ol-thankyou__total-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ol-grey-2);
  color: var(--ol-grey-4);
  font-size: 14px;
}
.ol-thankyou__total-row:last-child {
  border-bottom: 0;
}
.ol-thankyou__total-row strong {
  color: var(--ol-black);
  text-align: right;
}
.ol-thankyou__side {
  display: grid;
  gap: 14px;
}
.ol-thankyou address {
  color: var(--ol-grey-4);
  font-style: normal;
  line-height: 1.65;
  padding: 14px 0 4px;
}
.ol-thankyou__contact-line {
  color: var(--ol-grey-4);
  font-size: 14px;
  margin-top: 8px;
}
.ol-thankyou__delivery-note {
  background: #f6fff2;
  border: 1.5px solid #b9e3a5;
  border-radius: 8px;
  color: #225514;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 12px;
  padding: 12px 14px;
}
.ol-thankyou--failed .ol-thankyou__status-icon {
  background: var(--ol-red);
  color: #fff;
}

@media (max-width: 980px) {
  .ol-thankyou__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ol-thankyou__next,
  .ol-thankyou__details {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .ol-thankyou {
    gap: 16px;
    margin-bottom: 34px;
  }
  .ol-thankyou__hero {
    margin-left: -14px;
    margin-right: -14px;
    border-radius: 0;
    padding: 30px 18px;
  }
  .ol-thankyou__hero h1 {
    font-size: 42px;
  }
  .ol-thankyou__hero p {
    font-size: 14.5px;
  }
  .ol-thankyou__summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .ol-thankyou__summary-card {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    padding: 14px;
  }
  .ol-thankyou__summary-card span {
    margin-bottom: 0;
  }
  .ol-thankyou__summary-card strong {
    text-align: right;
    font-size: 14px;
  }
  .ol-thankyou__next-card {
    padding: 16px;
  }
  .ol-thankyou__panel {
    padding: 16px;
  }
  .ol-thankyou__panel-head {
    display: block;
  }
  .ol-thankyou__panel-head > strong {
    display: block;
    margin-top: 10px;
  }
  .ol-thankyou__item {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 10px;
  }
  .ol-thankyou__item-img {
    width: 58px;
    height: 58px;
  }
  .ol-thankyou__item-total {
    grid-column: 2;
    font-size: 17px;
  }
  .ol-thankyou__total-row {
    font-size: 13px;
  }
}

/* ── SEO: INTERNE LINKS BLOK ── */
.ol-internal-links {
  margin: 32px 0 0;
  padding: 20px 24px;
  background: var(--ol-grey-1);
  border-radius: var(--ol-radius);
  border: 1px solid var(--ol-grey-2);
}
.ol-internal-links__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ol-grey-4);
  margin-bottom: 12px;
}
.ol-internal-links__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ol-internal-links__list a {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #3B6D11;
  background: #EAF3DE;
  border: 1px solid #c2dba0;
  border-radius: 999px;
  padding: 4px 14px;
  text-decoration: none;
  transition: background .12s, color .12s;
}
.ol-internal-links__list a:hover {
  background: #3B6D11;
  color: #EAF3DE;
}

/* ── WINKELWAGEN: CONDITIE BADGE ── */
.ol-cond-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  text-transform: uppercase;
  letter-spacing: .05em;
  vertical-align: middle;
  margin-right: 6px;
  white-space: nowrap;
}
.ol-cond-badge--nieuw    { background: #EAF3DE; color: #3B6D11; border: 1px solid #c2dba0; }
.ol-cond-badge--showroom { background: #e8f0fe; color: #1a56db; border: 1px solid #b3c7f7; }
.ol-cond-badge--outlet   { background: #fff3e0; color: #e65100; border: 1px solid #ffd180; }

/* Productcondities layout override: keep Nieuw and Outlet side by side on desktop. */
.product-conditions-section {
  overflow: visible;
}

.product-conditions-layout,
.content-section > .w.product-conditions-layout,
.w--narrow:has(.cond-grid),
.entry-content:has(.cond-grid) {
  max-width: 1240px !important;
  width: 100%;
}

.product-conditions-layout .cond-grid,
.product-conditions-section .cond-grid,
.w--narrow:has(.cond-grid) .cond-grid,
.entry-content .cond-grid,
.ol-static-page .cond-grid,
.cond-grid:has(.cond-card--new):has(.cond-card--outlet) {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: start !important;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1180px !important;
  width: 100% !important;
}

.product-conditions-layout .cond-card,
.product-conditions-section .cond-card,
.w--narrow:has(.cond-grid) .cond-card,
.entry-content .cond-grid .cond-card,
.ol-static-page .cond-card {
  width: 100% !important;
  max-width: none !important;
}

.cond-card--new { order: 1; }
.cond-card--outlet { order: 2; }

@media (max-width: 820px) {
  .product-conditions-layout .cond-grid,
  .product-conditions-section .cond-grid,
  .w--narrow:has(.cond-grid) .cond-grid,
  .entry-content .cond-grid,
  .ol-static-page .cond-grid,
  .cond-grid:has(.cond-card--new):has(.cond-card--outlet) {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* Mobile viewport/routing guard: prevent right-side blank gutters and keep routes tidy. */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  body {
    position: relative;
    min-width: 0;
    padding-bottom: 64px;
  }

  .site-header,
  .site-nav,
  .site-main,
  .site-footer,
  .section,
  .section--grey,
  .hero,
  .usp-strip,
  .featured-products,
  .reviews-section,
  .why-section,
  .promo-banner {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .w,
  .site-header > .w,
  .section > .w,
  .section--grey > .w,
  .site-footer > .w {
    width: 100%;
    max-width: 100%;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .site-header__inner {
    width: 100%;
    min-width: 0;
    grid-template-columns: 42px minmax(0, 1fr) 46px !important;
    gap: 10px !important;
  }

  .site-header .site-logo {
    min-width: 0;
    overflow: hidden;
  }

  .site-header .site-logo__img,
  .site-header .custom-logo-link img,
  .site-header .site-logo svg {
    width: min(142px, 100%) !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: 42px !important;
    object-fit: contain;
  }

  .site-header__actions {
    min-width: 0;
    width: auto;
    justify-self: end;
  }

  .site-header__actions .hdr-btn:not(.hdr-btn--cart) {
    display: none !important;
  }

  .hdr-btn--cart {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
  }

  .mobile-route-overlay {
    width: 100%;
    max-width: 100%;
    z-index: 110000 !important;
  }

  .mobile-route-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
    z-index: 110010 !important;
  }

  .featured-products .section-head {
    align-items: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .featured-products .section-title {
    max-width: 58vw;
  }

  .featured-products .link-all {
    margin-left: auto;
    white-space: nowrap;
  }

  .featured-products .woo-product-grid,
  .woocommerce ul.products.woo-product-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .featured-products .woo-product-card,
  .woocommerce ul.products .woo-product-card,
  .woocommerce ul.products li.product {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 420px) {
  .site-header > .w,
  .section > .w,
  .section--grey > .w,
  .site-footer > .w {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .site-header__inner {
    grid-template-columns: 40px minmax(0, 1fr) 44px !important;
    gap: 8px !important;
  }

  .site-header .site-logo__img,
  .site-header .custom-logo-link img,
  .site-header .site-logo svg {
    width: min(132px, 100%) !important;
  }

  .featured-products .woo-product-grid,
  .woocommerce ul.products.woo-product-grid {
    gap: 10px !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    overflow: visible !important;
  }
  body .site-header {
    padding: 12px 0 !important;
  }
  body .site-header .site-header__inner {
    grid-template-columns: 40px minmax(0, 1fr) auto !important;
    row-gap: 12px !important;
    column-gap: 8px !important;
  }
  body .site-header .mobile-menu-toggle {
    grid-column: 1;
    grid-row: 1;
  }
  body .site-header .site-logo,
  body .site-header .custom-logo-link {
    grid-column: 2;
    grid-row: 1;
  }
  body .site-header .site-header__actions {
    grid-column: 3;
    grid-row: 1;
  }
  body .site-header .site-search {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex !important;
    width: 100%;
    min-width: 0;
    height: 44px;
    margin-top: 0;
    margin-bottom: 0;
  }
  body .site-header .site-search form,
  body .site-header .site-search .ol-search-form {
    display: flex;
    width: 100%;
  }
  body .site-header .site-search__input {
    min-width: 0;
    font-size: 14px;
  }
  body .site-header .site-search__btn {
    flex: 0 0 48px;
    width: 48px;
  }
  .site-search .ol-search-suggestions {
    min-width: 0;
    width: 100%;
    max-height: 56vh;
  }
}

.site-footer__address {
  margin-top: 8px !important;
  color: #ddd !important;
  font-weight: 700;
  line-height: 1.45 !important;
}

@media (max-width: 760px) {
  body.single-product .outlet-product-detail .breadcrumb {
    flex-wrap: nowrap;
    gap: 4px;
    max-height: 30px;
    overflow: hidden;
    padding: 8px 0 6px;
    font-size: 11px;
    line-height: 1.35;
    white-space: nowrap;
  }

  body.single-product .product-grid {
    gap: 18px;
  }

  body.single-product .gallery-main {
    aspect-ratio: auto;
    height: clamp(248px, 68vw, 286px);
    border-radius: 8px;
  }

  body.single-product .gallery-main img {
    padding: 20px 26px;
  }

  body.single-product .gallery-badge {
    top: 12px;
    left: 12px;
    font-size: 12px;
  }

  body.single-product .gallery-badge-cond {
    top: 42px;
    left: 12px;
  }

  body.single-product .gallery-pickup-badge {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    padding: 8px 10px;
    font-size: 13px;
  }

  body.single-product .prod-info {
    display: flex;
    flex-direction: column;
  }

  body.single-product .prod-info > * {
    order: 20;
  }

  body.single-product .prod-info-brand {
    order: 1;
    margin-bottom: 7px;
  }

  body.single-product .prod-info h1 {
    order: 2;
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.03;
  }

  body.single-product .price-block {
    order: 3;
    margin-bottom: 10px;
    padding: 12px;
  }

  body.single-product .price-main {
    align-items: flex-start;
    gap: 7px;
    margin-bottom: 5px;
  }

  body.single-product .outlet-product-detail .price-sale,
  body.single-product .outlet-product-detail .price-sale .price {
    gap: 5px 8px;
    font-size: 34px;
    line-height: .98;
  }

  body.single-product .outlet-product-detail .price-sale del {
    width: 100%;
    font-size: 15px;
  }

  body.single-product .price-save {
    margin-left: 0;
    font-size: 11px;
    white-space: nowrap;
  }

  body.single-product .stock-row {
    order: 4;
    margin-bottom: 8px;
  }

  body.single-product .product-condition-summary {
    order: 5;
    margin-bottom: 10px;
  }

  body.single-product .prod-cond-chip {
    max-width: 100%;
    font-size: 11.5px;
    line-height: 1.25;
  }

  body.single-product .cta-group {
    order: 6;
    margin-bottom: 10px;
  }

  body.single-product .outlet-product-detail form.cart {
    gap: 8px;
  }

  body.single-product .outlet-product-detail form.cart .quantity {
    flex: 0 0 70px;
  }

  body.single-product .outlet-product-detail form.cart .quantity.ol-quantity-stepper {
    flex: 0 0 132px;
    width: 132px;
  }

  body.single-product .outlet-product-detail form.cart .quantity .qty {
    width: 70px;
    min-height: 50px;
    font-size: 17px;
  }

  body.single-product .outlet-product-detail form.cart .quantity.ol-quantity-stepper .qty {
    width: 48px;
    border: 0;
  }

  body.single-product .outlet-product-detail .cta-group--single-quantity form.cart .quantity {
    display: none !important;
  }

  body.single-product .outlet-product-detail .cta-group--single-quantity form.cart .single_add_to_cart_button,
  body.single-product .outlet-product-detail .cta-group--single-quantity form.cart .button {
    flex-basis: 100%;
    width: 100%;
  }

  body.single-product .outlet-product-detail form.cart .stock {
    display: none !important;
  }

  body.single-product .outlet-product-detail form.cart .single_add_to_cart_button,
  body.single-product .outlet-product-detail form.cart .button {
    min-height: 50px;
    padding: 13px 16px;
    font-size: 14px;
    letter-spacing: .04em;
  }

  body.single-product .product-trust-line {
    order: 9;
    display: flex;
    font-size: 12px;
    line-height: 1.35;
    margin: 0 0 12px;
  }

  body.single-product .delivery-info {
    order: 7;
    padding: 12px;
    gap: 7px;
    margin-bottom: 12px;
  }

  body.single-product .delivery-row {
    align-items: flex-start;
    font-size: 12.5px;
    line-height: 1.35;
  }

  body.single-product .rating-row {
    order: 8;
    margin: 2px 0 6px;
  }

  body.single-product .product-certainty {
    order: 10;
    gap: 6px;
    margin: 10px 0 12px;
    padding: 10px 11px;
    border-radius: 7px;
    box-shadow: none;
  }

  body.single-product .product-certainty__item {
    gap: 7px;
    font-size: 12px;
    line-height: 1.25;
  }

  body.single-product .product-certainty__item::before {
    width: 13px;
    height: 13px;
    font-size: 9px;
  }

  body.single-product .ol-witgoed-compare {
    margin-top: 24px;
    padding: 14px;
    border-radius: 8px;
    box-shadow: none;
  }

  body.single-product .ol-witgoed-compare__head {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
  }

  body.single-product .ol-witgoed-compare__head h2 {
    font-size: 24px;
  }

  body.single-product .ol-witgoed-compare__head p {
    max-width: none;
    font-size: 13px;
  }

  body.single-product .ol-witgoed-compare__table {
    min-width: 760px;
  }

  body.single-product .ol-witgoed-compare__table th,
  body.single-product .ol-witgoed-compare__table td {
    padding: 10px;
  }

  body.single-product .ol-witgoed-compare__product {
    min-width: 230px;
  }

  .ol-checkout-reassurance {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin-top: 10px;
  }

  .ol-checkout-reassurance span {
    white-space: normal;
  }

  body.single-product .tabs-section {
    margin-top: 38px;
  }

  body.single-product .tabs-nav {
    gap: 0;
    overflow-x: auto;
    margin-bottom: 24px;
    padding-bottom: 2px;
  }

  body.single-product .tab-btn {
    flex: 0 0 auto;
    padding: 12px 14px;
    font-size: 13px;
  }

  body.single-product .tab-panel.active {
    max-width: none;
  }

  body.single-product .tab-panel p,
  body.single-product .tab-panel li,
  body.single-product .product-short-description p,
  body.single-product .product-short-description li {
    font-size: 16.5px;
    line-height: 1.86;
  }

  body.single-product .tab-panel p,
  body.single-product .product-short-description p {
    margin-bottom: 24px;
  }

  body.single-product .tab-panel h2,
  body.single-product .product-short-description h2 {
    font-size: 27px;
    line-height: 1.14;
    margin: 34px 0 12px;
  }

  body.single-product .tab-panel h3,
  body.single-product .product-short-description h3 {
    font-size: 22px;
    line-height: 1.18;
    margin: 30px 0 10px;
  }

  body.single-product .tab-panel ul,
  body.single-product .tab-panel ol,
  body.single-product .product-short-description ul,
  body.single-product .product-short-description ol {
    margin: 10px 0 30px;
    padding-left: 22px;
  }

  body.single-product .tab-panel li,
  body.single-product .product-short-description li {
    margin-bottom: 12px;
    padding-left: 3px;
  }

  body.single-product .product-specs-visual {
    gap: 12px;
  }

  body.single-product .product-specs-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.single-product .product-spec-tile {
    padding: 11px 12px;
  }

  body.single-product .product-spec-tile span {
    font-size: 10px;
    margin-bottom: 4px;
  }

  body.single-product .product-spec-tile strong {
    font-size: 17px;
  }

  body.single-product .product-spec-row {
    grid-template-columns: 1fr;
  }

  body.single-product .product-spec-row dt,
  body.single-product .product-spec-row dd {
    font-size: 13.5px;
    padding: 10px 12px;
  }

  body.single-product .product-spec-row dt {
    padding-bottom: 4px;
  }

  body.single-product .product-spec-row dd {
    padding-top: 0;
  }
}

.woo-product-card__img-wrap img,
.woocommerce ul.products li.product .woo-product-card__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.woo-product-card:hover .woo-product-card__img-wrap img,
.woocommerce ul.products li.product:hover .woo-product-card__img-wrap img {
  transform: none !important;
}

@media (max-width: 1024px) {
  .promo-banner--wk .promo-banner__inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .promo-banner--wk .promo-banner__right {
    display: flex;
  }

  .promo-banner__right--wk {
    min-height: 0;
    padding: 0 0 28px;
  }

  .wk-deal-card {
    width: 100%;
    min-height: 180px;
  }
}

@media (max-width: 640px) {
  .promo-banner--wk {
    border-top-width: 5px;
    border-bottom-width: 5px;
  }

  .promo-banner--wk .promo-banner__left {
    padding: 32px 0 20px;
  }

  .promo-banner--wk .promo-banner__tag {
    font-size: 12px;
    gap: 9px;
    margin-bottom: 12px;
  }

  .promo-banner--wk .promo-banner__tag::before {
    width: 28px;
  }

  .promo-banner--wk .promo-banner__title {
    font-size: clamp(34px, 11vw, 44px);
    line-height: .94;
    margin-bottom: 16px;
  }

  .promo-banner--wk .promo-banner__sub {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 16px;
  }

  .promo-banner__points {
    gap: 9px;
    margin-bottom: 18px;
  }

  .promo-banner__points span {
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
  }

  .promo-banner__points b {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .promo-banner--wk .btn-dark {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    padding: 0 18px;
    font-size: 16px;
  }

  .promo-banner__note {
    font-size: 11px;
    margin-top: 14px;
  }

  .promo-banner__right--wk {
    padding-bottom: 22px;
  }

  .wk-deal-card {
    min-height: 150px;
    padding: 22px;
  }

  .wk-deal-card__title {
    max-width: 170px;
    font-size: 38px;
  }

  .wk-deal-card__subtitle {
    font-size: 13px;
    margin-top: 10px;
  }

  .wk-deal-card__icons {
    margin-top: 18px;
    gap: 7px;
  }

  .wk-deal-card__icons span {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .wk-deal-card__badge {
    right: 18px;
    top: 18px;
    padding: 8px 11px 7px;
  }

  .wk-deal-card__badge strong {
    font-size: 21px;
  }

  .wk-deal-card__ball {
    right: 38px;
    top: 48px;
    font-size: 92px;
  }

  .wk-deal-card__brand {
    right: 18px;
    bottom: 20px;
    width: 112px;
  }
}

/* Mobile conversion routes: compact homepage hero and remove the old bottom bar. */
.hero__kicker-mobile,
.hero__title-mobile,
.hero__benefits {
  display: none;
}
.hero .btn-secondary {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 0 !important;
  }

  .mobile-bottom-routes,
  nav.mobile-bottom-routes,
  [class*="mobile-bottom-routes"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .site-header {
    padding: 12px 0 !important;
  }

  .site-header__inner {
    grid-template-columns: 40px minmax(0, 1fr) auto !important;
    row-gap: 12px !important;
    column-gap: 8px !important;
  }

  .site-header__actions {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
  }

  .site-header__actions .hdr-btn {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border: 1.5px solid var(--ol-grey-2);
    border-radius: var(--ol-radius);
    background: var(--ol-white);
    color: var(--ol-black);
    font-size: 0 !important;
  }

  .site-header__actions .hdr-btn:not(.hdr-btn--cart) {
    display: inline-flex !important;
  }

  .site-header__actions .hdr-btn svg {
    width: 18px !important;
    height: 18px !important;
  }

  .site-header__actions .hdr-btn--cart {
    background: var(--ol-yellow);
    border-color: var(--ol-yellow);
  }

  .site-header__actions .hdr-btn--cart .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    margin: 0 !important;
  }

  body.home .hero,
  body.front-page .hero {
    margin-top: 12px;
  }

  .hero__inner {
    display: block;
    min-height: 0 !important;
  }

  .hero__left {
    padding: 42px 0 24px;
    justify-content: flex-start;
  }

  .hero__kicker {
    margin-bottom: 14px;
    font-size: 10.5px;
  }

  .hero__kicker-desktop,
  .hero__title-desktop,
  .hero__sub--desktop {
    display: none;
  }

  .hero__kicker-mobile,
  .hero__title-mobile {
    display: inline;
  }

  .hero__title {
    margin-bottom: 16px;
    font-size: 42px;
    line-height: .95;
    letter-spacing: 0;
  }

  .hero__benefits {
    display: grid;
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    font-size: 15px;
    line-height: 1.35;
    color: #858585;
  }

  .hero__benefits li {
    position: relative;
    padding-left: 18px;
  }

  .hero__benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .56em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--ol-yellow);
  }

  .hero__actions {
    align-items: stretch;
    gap: 8px;
    margin-top: 0;
  }

  .hero__actions .btn-primary,
  .hero .btn-secondary {
    flex: 1 1 0;
    justify-content: center;
    min-height: 48px;
    padding: 0 12px;
    font-size: 12px;
    text-align: center;
  }

  .hero .btn-secondary {
    display: inline-flex;
    background: transparent;
    color: var(--ol-white);
    border-color: #343434;
  }

  .usp-strip__item--rating {
    display: none !important;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
  }

  .hero__stat-val {
    font-size: 23px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero__stat-label {
    font-size: 9px;
    line-height: 1.2;
  }

  .hero__right {
    display: block !important;
    margin: 8px -16px 0;
    padding: 0 0 34px;
    background: transparent;
    overflow: visible;
  }

  .hero__right::before,
  .hero__right::after,
  .hero-right__header {
    display: none !important;
  }

  .hero-right {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 0 16px 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-right::-webkit-scrollbar {
    display: none;
  }

  .hero-card {
    position: relative;
    display: block;
    flex: 0 0 77%;
    height: 142px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 8px;
    background: var(--ol-yellow);
    color: var(--ol-black);
    scroll-snap-align: start;
    box-shadow: none;
  }

  .hero-card__circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(253, 243, 184, .82);
  }

  .hero-card__circle--1 {
    width: 210px;
    height: 210px;
    left: -102px;
    top: -96px;
  }

  .hero-card__circle--2 {
    width: 180px;
    height: 180px;
    right: -78px;
    bottom: -84px;
  }

  .hero-card__title {
    position: absolute;
    top: 20px;
    left: 18px;
    z-index: 2;
    max-width: 55%;
    font-family: 'Archivo Black', var(--ol-display);
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
  }

  .hero-card__subtitle {
    position: absolute;
    top: 54px;
    left: 18px;
    z-index: 2;
    max-width: 48%;
    color: rgba(17, 17, 17, .68);
    font-size: 11.5px;
    font-weight: 600;
    line-height: 1.35;
  }

  .hero-card__brand {
    display: none;
  }

  .hero-card__cta {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 4;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--ol-black);
    color: var(--ol-yellow);
  }

  .hero-card__cta-label {
    display: none;
  }

  .hero-card__cta-arrow {
    color: var(--ol-yellow);
    font-size: 17px;
    line-height: 1;
  }

  .hero-card__product-wrap {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    width: 50%;
    height: 100%;
  }

  .hero-card__product {
    position: absolute;
    top: 50%;
    right: 2px;
    width: 100%;
    height: 102%;
    object-fit: contain;
    object-position: right center;
    mix-blend-mode: multiply;
    transform: translateY(-50%);
  }

  .ol-category-help-banner {
    margin-top: 20px;
    padding: 16px;
    gap: 14px;
  }

  .ol-category-help-banner__copy span {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .ol-category-help-banner__copy h2 {
    font-size: 28px;
  }

  .ol-category-help-banner__copy p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.45;
  }

  .ol-category-help-banner__actions {
    gap: 8px;
  }

  .ol-category-help-banner__btn {
    min-height: 44px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hero__title {
    font-size: 39px;
  }

  .hero-card {
    flex-basis: 78%;
  }
}

/* Deals entry points */
.site-nav__item--deals {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 7px 0;
  padding: 7px 12px !important;
  border: 1px solid rgba(17,17,17,.08) !important;
  border-radius: 999px;
  background: #fff4b8;
  color: var(--ol-black) !important;
  font-weight: 800;
}
.site-nav__item--deals:hover {
  background: var(--ol-yellow);
  color: var(--ol-black) !important;
}
@media (min-width: 761px) {
  .site-nav {
    position: relative;
    z-index: 80;
    overflow: visible;
  }

  .site-nav__fallback {
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: visible;
  }

  .site-nav__entry {
    position: static;
    display: flex;
    align-items: stretch;
  }

  .site-nav__entry::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: 14px;
  }

  .site-nav__entry:hover::after,
  .site-nav__entry:focus-within::after {
    display: block;
  }

  .site-nav__entry > .site-nav__item {
    display: inline-flex;
    align-items: center;
  }

  .site-nav__entry:hover > .site-nav__item,
  .site-nav__entry:focus-within > .site-nav__item {
    color: var(--ol-black);
    border-bottom-color: var(--ol-yellow);
  }

  .site-nav__mega {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: var(--ol-white);
    border-top: 1px solid var(--ol-grey-2);
    border-bottom: 1px solid var(--ol-grey-2);
    box-shadow: 0 22px 46px rgba(17, 17, 17, .12);
    transform: translateY(0);
    transition: opacity .12s ease, visibility .12s ease;
  }

  .site-nav__entry:hover .site-nav__mega,
  .site-nav__entry:focus-within .site-nav__mega {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__mega-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(170px, 1fr));
    gap: 34px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 24px 30px;
  }

  .site-nav__mega-col {
    min-width: 0;
  }

  .site-nav__mega-col strong {
    display: block;
    margin-bottom: 10px;
    color: var(--ol-black);
    font-family: var(--ol-display);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
  }

  .site-nav__mega-col a {
    display: block;
    padding: 6px 0;
    color: var(--ol-grey-4);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
  }

  .site-nav__mega-col a:hover,
  .site-nav__mega-col a:focus-visible {
    color: var(--ol-black);
    text-decoration: underline;
    text-decoration-color: var(--ol-yellow);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }
}
.home-deals-strip {
  padding: 34px 0 30px;
  background: linear-gradient(180deg, #fff 0%, #fff9d8 100%);
  border-bottom: 1px solid var(--ol-grey-2);
}
.home-deals-strip__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.home-deals-strip__head p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--ol-grey-4);
  font-size: 14px;
  line-height: 1.55;
}
.home-deals-strip__rail {
  padding-bottom: 4px;
}
.cat-toolbar__deals-link {
  color: var(--ol-black);
  font-family: var(--ol-display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.cat-toolbar__deals-link:hover {
  color: var(--ol-yellow-dk);
}
.ol-search-suggestions__item--quicklink .ol-search-suggestions__text strong {
  font-family: var(--ol-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
@media (max-width: 760px) {
  .mobile-route-link--deals {
    border-color: var(--ol-yellow) !important;
    background: var(--ol-yellow) !important;
    color: var(--ol-black) !important;
    font-family: var(--ol-display);
    font-weight: 900;
    text-transform: uppercase;
  }

  .home-deals-strip {
    padding: 26px 0 24px;
  }

  .home-deals-strip__head {
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
  }

  .home-deals-strip__head .section-title {
    font-size: 28px;
  }

  .home-deals-strip__head .link-all {
    justify-self: start;
  }

  .cat-toolbar__deals-link {
    flex: 1 1 100%;
    order: 4;
    font-size: 11px;
  }
}

/* Core Web Vitals stability: reserve predictable space for above-the-fold UI. */
.site-topbar {
  min-height: 32px;
}

.site-header {
  min-height: 64px;
}

.site-header__inner {
  min-height: 62px;
}

.site-search,
.ol-search-form {
  min-height: 40px;
}

.site-nav {
  min-height: 48px;
}

.hero {
  min-height: 560px;
}

.hero__inner {
  min-height: 560px;
}

.hero__left {
  min-height: 500px;
}

.hero__right {
  min-height: 500px;
}

.hero-right {
  min-height: 410px;
}

.hero-card {
  min-height: 188px;
}

.hero-card__product-wrap,
.hero-card__product {
  aspect-ratio: 4 / 3;
}

.usp-strip {
  min-height: 54px;
}

.woo-page .woocommerce-products-header,
.page-hero {
  min-height: 214px;
}

.woo-results,
.woo-results ul.products,
.woo-results .woo-product-grid {
  min-height: 1px;
}

.woo-product-card__img-wrap,
.woocommerce ul.products li.product .woo-product-card__img-wrap {
  aspect-ratio: 1 / 1;
  min-height: 200px;
}

.woo-results.is-list-view .woo-product-card__img-wrap,
.woo-results .products.list-view .woo-product-card__img-wrap,
.woo-results .woo-product-grid.list-view .woo-product-card__img-wrap {
  aspect-ratio: 1 / 1;
}

.tool-impulse__carousel,
.ol-deals-card-carousel {
  min-height: 278px;
}

.tool-impulse__rail,
.ol-deals-popular__rail,
.home-new-products__rail {
  min-height: 260px;
}

.tool-impulse__card {
  min-height: 272px;
}

.tool-impulse__media {
  aspect-ratio: 1 / 0.63;
}

.ol-deals-popular-card__image {
  aspect-ratio: 4 / 3;
}

@media (max-width: 760px) {
  .site-topbar,
  .site-nav {
    min-height: 0;
  }

  .site-header {
    min-height: 142px;
  }

  .site-header__inner {
    min-height: 118px;
  }

  .site-search,
  .ol-search-form {
    min-height: 44px;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner,
  .hero__left {
    min-height: 0;
  }

  .hero__right {
    min-height: 178px;
  }

  .hero-right {
    min-height: 144px;
  }

  .hero-card {
    min-height: 142px;
  }

  .usp-strip {
    min-height: 96px;
  }

  .woo-page .woocommerce-products-header,
  .page-hero {
    min-height: 190px;
  }

  .woo-product-card__img-wrap,
  .woocommerce ul.products li.product .woo-product-card__img-wrap {
    min-height: 150px;
  }

  .tool-impulse__carousel,
  .ol-deals-card-carousel {
    min-height: 260px;
  }

  .tool-impulse__rail,
  .ol-deals-popular__rail,
  .home-new-products__rail {
    min-height: 246px;
  }

  .tool-impulse__card {
    min-height: 254px;
  }

  .ol-deals-card-carousel .ol-deals-popular-card,
  .home-deals-strip .ol-deals-popular-card,
  .home-new-products .ol-deals-popular-card {
    grid-template-rows: 150px minmax(0, 1fr);
    min-height: 0;
  }

  .ol-deals-card-carousel .ol-deals-popular-card__image,
  .home-deals-strip .ol-deals-popular-card__image,
  .home-new-products .ol-deals-popular-card__image {
    aspect-ratio: auto;
    height: 150px;
    min-height: 0;
    overflow: hidden;
  }

  .ol-deals-card-carousel .ol-deals-popular-card__image img,
  .home-deals-strip .ol-deals-popular-card__image img,
  .home-new-products .ol-deals-popular-card__image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 12px;
  }
}
