/*
 * Voordeelacties v1.39 — Editorial Human UI
 * Calmer, more editorial and more human, inspired by coupon platforms but refined.
 */

:root {
  --kk-human-ink: #141414;
  --kk-human-ink-soft: #303030;
  --kk-human-muted: #6c6c6c;
  --kk-human-muted-2: #8b8b8b;
  --kk-human-bg: #f6f5f2;
  --kk-human-panel: #ffffff;
  --kk-human-panel-soft: #fbfaf8;
  --kk-human-highlight: #ede4d4;
  --kk-human-line: #e8e4de;
  --kk-human-line-strong: #ddd7cf;
  --kk-human-accent: var(--kk-cta, var(--kk-accent, #ef6b18));
  --kk-human-accent-dark: var(--kk-accent-hover, #d35f14);
  --kk-human-radius-sm: 14px;
  --kk-human-radius: 22px;
  --kk-human-radius-lg: 28px;
  --kk-shadow-soft: 0 10px 30px rgba(17, 17, 17, 0.05);
}

html,
body {
  background: var(--kk-human-bg);
}

body {
  color: var(--kk-human-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.kk-site-shell {
  max-width: none;
  background: var(--kk-human-bg);
  box-shadow: none;
}

.kk-container {
  max-width: 1220px;
  padding-inline: clamp(18px, 3vw, 32px);
}

a {
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

/* Top promo and header */
.kk-header-promo {
  background: linear-gradient(90deg, color-mix(in srgb, var(--kk-human-accent) 96%, #000 4%) 0%, color-mix(in srgb, var(--kk-human-accent) 84%, #c87a12 16%) 100%);
  color: #fff;
}

.kk-header-promo__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 44px;
  font-size: .87rem;
}

.kk-header-promo__inner strong {
  font-weight: 700;
}

.kk-header-promo__inner a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.kk-header,
.kk-header--sticky {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.kk-header__bar {
  min-height: 76px;
  gap: clamp(18px, 3vw, 42px);
}

.kk-header .kk-logo a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--kk-human-ink);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}

.kk-logo__badge {
  width: 30px;
  height: 34px;
  border-radius: 10px;
  background: var(--kk-human-accent);
  color: #fff;
  box-shadow: none;
  transform: rotate(-7deg);
}

.kk-header .kk-logo img,
.kk-header .kk-logo .custom-logo {
  max-width: min(220px, 26vw);
  max-height: 42px;
}

.kk-header .kk-nav .kk-menu {
  gap: 8px;
}

.kk-header .kk-nav .kk-menu > li > a {
  min-height: 76px;
  padding: 0 12px;
  color: #383838;
  font-size: .95rem;
  font-weight: 550;
  letter-spacing: -.01em;
}

.kk-header .kk-nav .kk-menu > li > a::after {
  display: none;
}

.kk-header .kk-nav .kk-menu > li > a:hover,
.kk-header .kk-nav .kk-menu > li > a:focus-visible,
.kk-header .kk-nav .kk-menu > .current-menu-item > a,
.kk-header .kk-nav .kk-menu > .current-menu-parent > a,
.kk-header .kk-nav .kk-menu > .current-menu-ancestor > a {
  color: var(--kk-human-ink);
}

.kk-header__actions {
  gap: 12px;
}

.kk-header__secondary {
  min-height: 42px;
  padding: 0 8px;
  color: #454545;
  font-size: .92rem;
  font-weight: 550;
}

.kk-header__secondary:hover {
  color: var(--kk-human-ink);
}

.kk-header__secondary svg {
  width: 18px;
  height: 18px;
}

.kk-header .kk-nav__toggle {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border: 1px solid var(--kk-human-line-strong);
  border-radius: 15px;
  box-shadow: none;
}

.kk-header-context {
  border-bottom: 1px solid var(--kk-human-line);
  background: #fff;
}

.kk-header-context__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  gap: 20px;
  align-items: center;
  min-height: 72px;
}

.kk-header-context__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
}

.kk-header-context__links a {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.kk-header-context__links a:hover {
  color: var(--kk-human-accent);
}

.kk-header-context__search {
  position: relative;
}

.kk-header-context__search::before {
  content: "⌕";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #8b8b8b;
  font-size: 1rem;
}

.kk-header-context__search input {
  width: 100%;
  height: 46px;
  padding: 0 16px 0 42px;
  border: 1px solid var(--kk-human-line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--kk-human-ink);
  font-size: .95rem;
}

.kk-header-note {
  background: #f0efec;
  border-bottom: 1px solid var(--kk-human-line);
}

.kk-header-note__inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606060;
  font-size: .9rem;
  text-align: center;
}

/* Hero */
.kk-pepper-hero {
  padding: 34px 0 22px;
  background: var(--kk-human-bg);
}

.kk-pepper-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, .95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

.kk-pepper-hero__copy {
  min-width: 0;
}

.kk-human-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #7a6b57;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.kk-pepper-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--kk-human-ink);
  font-size: clamp(2.75rem, 5.1vw, 4.45rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.06em;
}

.kk-pepper-hero h1 span {
  color: var(--kk-human-accent);
}

.kk-pepper-hero p {
  max-width: 640px;
  margin: 0 0 26px;
  color: #505050;
  font-size: 1.08rem;
  line-height: 1.7;
}

.kk-reference-search-card {
  padding: 24px;
  border: 1px solid var(--kk-human-line);
  border-radius: var(--kk-human-radius);
  background: #fff;
  box-shadow: var(--kk-shadow-soft);
}

.kk-human-search-intro {
  margin-bottom: 16px;
}

.kk-human-search-intro strong,
.kk-human-search-intro span {
  display: block;
}

.kk-human-search-intro strong {
  color: var(--kk-human-ink);
  font-size: 1rem;
  font-weight: 700;
}

.kk-human-search-intro span {
  margin-top: 4px;
  color: var(--kk-human-muted);
  font-size: .85rem;
}

.kk-reference-search-card .kk-search,
.kk-reference-search-card .kk-search--lg {
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 10px;
  min-height: 56px;
}

.kk-reference-search-card .kk-search input[type="search"] {
  height: 56px;
  padding-left: 46px;
  border: 1px solid var(--kk-human-line-strong);
  border-radius: 14px;
  background: #fff;
  color: var(--kk-human-ink);
  font-size: .98rem;
  box-shadow: none;
}

.kk-reference-search-card .kk-search input[type="search"]:focus {
  border-color: #bbb1a4;
  box-shadow: 0 0 0 4px rgba(197, 170, 139, 0.14);
}

.kk-reference-search-card .kk-search button,
.kk-btn--cta,
.kk-btn--primary {
  box-shadow: none !important;
}

.kk-reference-search-card .kk-search button {
  height: 56px;
  min-height: 56px;
  border-radius: 14px;
  background: var(--kk-human-accent);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
}

.kk-reference-search-card .kk-search button:hover {
  background: var(--kk-human-accent-dark);
}

.kk-reference-search-card__popular {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--kk-human-line);
}

.kk-reference-search-card__popular > span {
  display: block;
  margin-bottom: 10px;
  color: var(--kk-human-muted-2);
  font-size: .78rem;
  font-weight: 600;
}

.kk-popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kk-popular-searches a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--kk-human-line);
  border-radius: 999px;
  background: #faf9f7;
  color: #444;
  font-size: .86rem;
  font-weight: 600;
  text-decoration: none;
}

.kk-popular-searches a:hover {
  border-color: color-mix(in srgb, var(--kk-human-accent) 40%, var(--kk-human-line));
  color: var(--kk-human-accent);
  background: #fff;
}

.kk-reference-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.kk-reference-stat {
  min-height: 84px;
  padding: 18px 20px;
  border: 1px solid var(--kk-human-line);
  border-radius: 18px;
  background: #fff;
}

.kk-reference-stat::after,
.kk-reference-stat:not(:last-child)::after {
  display: none;
}

.kk-reference-stat strong {
  display: block;
  margin-bottom: 4px;
  color: var(--kk-human-ink);
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -.03em;
}

.kk-reference-stat > span {
  color: var(--kk-human-muted);
  font-size: .86rem;
}

/* Spotlight */
.kk-spotlight {
  min-width: 0;
}

.kk-spotlight__shell {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(190px, 1.02fr);
  gap: 24px;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--kk-human-radius-lg);
  background: var(--kk-human-highlight);
}

.kk-spotlight__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kk-spotlight__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #7f6130;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.kk-spotlight__brand {
  margin-bottom: 8px;
  color: #555;
  font-size: 1.02rem;
}

.kk-spotlight__content h2 {
  margin: 0 0 12px;
  color: var(--kk-human-ink);
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -.04em;
}

.kk-spotlight__content h2 a {
  color: inherit;
  text-decoration: none;
}

.kk-spotlight__content p {
  margin: 0 0 18px;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.65;
}

.kk-spotlight__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.kk-spotlight__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #5b5243;
  font-size: .82rem;
  font-weight: 600;
}

.kk-spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.kk-spotlight__button,
.kk-coupons--featured .kk-coupon__actions .kk-btn,
.kk-reference-offer .kk-btn,
.kk-reference-cta .kk-btn {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--kk-human-accent);
  color: #fff;
  font-size: .94rem;
  font-weight: 700;
}

.kk-spotlight__button:hover,
.kk-coupons--featured .kk-coupon__actions .kk-btn:hover,
.kk-reference-offer .kk-btn:hover,
.kk-reference-cta .kk-btn:hover {
  background: var(--kk-human-accent-dark);
}

.kk-spotlight__link {
  color: #433a30;
  font-weight: 600;
  text-decoration: none;
}

.kk-spotlight__visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.7), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.42) 100%),
    linear-gradient(160deg, #375448 0%, #1a2b24 100%);
}

.kk-spotlight__visual::before,
.kk-spotlight__visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: .9;
}

.kk-spotlight__visual::before {
  width: 190px;
  height: 190px;
  right: -40px;
  top: -18px;
  background: rgba(255,255,255,0.08);
}

.kk-spotlight__visual::after {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: -82px;
  background: rgba(255,255,255,0.05);
}

.kk-spotlight__visual-card {
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border-radius: 22px;
  background: rgba(255,255,255,0.96);
  box-shadow: var(--kk-shadow-soft);
}

.kk-spotlight__visual-card img {
  max-width: 80px;
  max-height: 80px;
}

.kk-spotlight__visual-card span {
  color: var(--kk-human-ink);
  font-size: 2.2rem;
  font-weight: 800;
}

/* Sections */
.kk-reference-section,
.kk-why-section,
.kk-reference-product-section,
.kk-reference-categories,
.kk-reference-cta-section {
  padding: 40px 0 28px;
}

.kk-reference-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.kk-reference-section__head--stacked {
  align-items: start;
}

.kk-reference-section__head h2 {
  margin: 0;
  color: var(--kk-human-ink);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.05em;
}

.kk-reference-section__head p {
  max-width: 680px;
  margin: 10px 0 0;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

.kk-reference-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.kk-reference-more:hover {
  color: var(--kk-human-accent);
}

/* Coupon cards */
.kk-coupons--featured {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.kk-coupons--featured .kk-coupon--row {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 20px;
  border: 1px solid var(--kk-human-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
}

.kk-coupons--featured .kk-coupon--row:hover {
  border-color: #d7cec2;
  background: #fff;
  box-shadow: var(--kk-shadow-soft);
  transform: none;
}

.kk-coupons--featured .kk-coupon__media {
  min-height: 74px;
  margin-bottom: 14px;
}

.kk-coupons--featured .kk-coupon__logo {
  width: 100%;
  height: 120px;
  justify-content: center;
  border-radius: 20px;
  background: #fff;
}

.kk-coupons--featured .kk-coupon__logo img {
  max-width: 130px;
  max-height: 48px;
}

.kk-coupons--featured .kk-coupon__save {
  display: none;
}

.kk-coupons--featured .kk-coupon__meta--top {
  margin-bottom: 10px;
}

.kk-coupons--featured .kk-badge {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4f2ee;
  color: #666;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.kk-coupons--featured .kk-badge--deal {
  background: #f3efe8;
}

.kk-coupons--featured .kk-badge--expiring {
  background: #fff0e5;
  color: #b66326;
}

.kk-coupons--featured .kk-coupon__title {
  margin: 0 0 10px;
  color: var(--kk-human-ink);
  font-size: 1.05rem;
  line-height: 1.44;
  font-weight: 760;
}

.kk-coupons--featured .kk-coupon__title a {
  color: inherit;
  text-decoration: none;
}

.kk-coupons--featured .kk-coupon__meta {
  gap: 8px;
  color: #727272;
  font-size: .82rem;
}

.kk-coupons--featured .kk-coupon__excerpt {
  margin-top: 10px;
  color: #555;
  font-size: .9rem;
  line-height: 1.62;
}

.kk-coupons--featured .kk-coupon__actions {
  margin-top: auto;
  gap: 10px;
}

.kk-coupons--featured .kk-coupon__action-label,
.kk-coupons--featured .kk-coupon__hint {
  display: none;
}

.kk-coupons--featured .kk-coupon__verified {
  margin-top: 0;
  color: #6f6f6f;
  font-size: .78rem;
}

.kk-coupons--featured .kk-coupon__verified span {
  color: #2c9b63;
}

/* Product compare */
.kk-reference-product {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(220px, .82fr) minmax(420px, 1.35fr);
  border: 1px solid var(--kk-human-line);
  border-radius: 28px;
  background: #fff;
}

.kk-reference-product__media {
  margin: 20px;
  border-radius: 22px;
  background: #f7f6f3;
}

.kk-reference-product__media img {
  height: 320px;
  object-fit: contain;
}

.kk-reference-product__info {
  padding: 30px 22px 30px 4px;
}

.kk-reference-product__badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4f2ee;
  color: #61594d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.kk-reference-product__info h2 {
  margin: 8px 0 12px;
  font-size: 1.42rem;
  line-height: 1.22;
  font-weight: 760;
  letter-spacing: -.03em;
}

.kk-reference-product__info h2 a {
  color: inherit;
  text-decoration: none;
}

.kk-reference-product__rating {
  margin-bottom: 18px;
  color: #666;
}

.kk-reference-product__rating > span {
  color: #f3a520;
}

.kk-reference-product__specs {
  gap: 11px;
}

.kk-reference-product__specs li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 7px;
  color: #666;
}

.kk-reference-product__specs li > span {
  display: none;
}

.kk-reference-product__specs strong {
  margin-right: 5px;
  color: #454545;
  font-weight: 600;
}

.kk-reference-product__offers {
  padding: 26px 20px 18px;
  border-left: 1px solid var(--kk-human-line);
}

.kk-reference-product__offers-head {
  padding: 0 4px 14px;
}

.kk-reference-product__offers-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--kk-human-ink);
  font-size: 1rem;
  font-weight: 740;
}

.kk-reference-product__offers-head small {
  color: #727272;
  font-size: .82rem;
}

.kk-reference-product__offers-head > a {
  color: #4d4d4d;
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
}

.kk-reference-offers {
  display: grid;
  gap: 10px;
}

.kk-reference-offer {
  display: grid;
  grid-template-columns: minmax(130px, 1.1fr) minmax(105px, .85fr) 60px 126px;
  gap: 10px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--kk-human-line);
  border-radius: 16px;
  background: #fff;
}

.kk-reference-offer.is-best {
  border-color: #ead3c2;
  background: #fffbf8;
}

.kk-reference-offer.is-best::before {
  content: "Beste prijs";
  position: absolute;
  top: -8px;
  left: 16px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #fff0e7;
  color: #b66224;
  font-size: .67rem;
  font-weight: 700;
}

.kk-reference-offer__shop {
  display: flex;
  align-items: center;
  gap: 10px;
}

.kk-reference-offer__shop img {
  max-width: 56px;
  max-height: 22px;
}

.kk-reference-offer__shop strong {
  font-size: .92rem;
  font-weight: 700;
}

.kk-reference-offer__price strong {
  display: block;
  color: var(--kk-human-ink);
  font-size: 1rem;
  font-weight: 760;
}

.kk-reference-offer__price small {
  color: #6d8b76;
  font-size: .76rem;
}

.kk-reference-offer__rating {
  color: #555;
  font-size: .88rem;
  font-weight: 600;
}

.kk-reference-product__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: #444;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}

.kk-reference-product__more:hover {
  color: var(--kk-human-accent);
}

/* Brand grid */
.kk-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.kk-brand-chip {
  display: grid;
  place-items: center;
  min-height: 68px;
  padding: 10px 14px;
  border: 1px solid var(--kk-human-line);
  border-radius: 14px;
  background: rgba(255,255,255,0.55);
  text-decoration: none;
}

.kk-brand-chip:hover {
  border-color: #d8cfbf;
  background: #fff;
}

.kk-brand-chip img {
  max-width: 100px;
  max-height: 28px;
  filter: saturate(.95);
}

.kk-brand-chip span {
  color: #4d4d4d;
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
}

/* Categories */
.kk-reference-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kk-reference-category-list a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--kk-human-line);
  border-radius: 999px;
  background: #fff;
  color: #3f3f3f;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
}

.kk-reference-category-list a:hover {
  border-color: #d7cec2;
  color: var(--kk-human-accent);
}

/* Why section */
.kk-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.kk-why-card {
  padding: 24px 22px;
  border: 1px solid var(--kk-human-line);
  border-radius: 22px;
  background: #fff;
}

.kk-why-card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #fff0e5;
  color: var(--kk-human-accent);
  font-size: 1.2rem;
  font-weight: 800;
}

.kk-why-card h3 {
  margin: 0 0 10px;
  color: var(--kk-human-ink);
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 740;
  letter-spacing: -.02em;
}

.kk-why-card p {
  margin: 0;
  color: #595959;
  font-size: .95rem;
  line-height: 1.65;
}

/* CTA */
.kk-reference-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid var(--kk-human-line);
  border-radius: 24px;
  background: #fff;
}

.kk-reference-cta__icon,
.kk-reference-trust-row {
  display: none !important;
}

.kk-reference-cta strong {
  display: block;
  margin-bottom: 6px;
  color: var(--kk-human-ink);
  font-size: 1.12rem;
  font-weight: 740;
}

.kk-reference-cta p {
  margin: 0;
  color: #555;
  font-size: .95rem;
  line-height: 1.6;
}

/* Footer */
.kk-footer--reference {
  margin-top: 26px;
  border-top: 1px solid var(--kk-human-line);
  background: #fff;
}

.kk-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, .95fr) minmax(0, 1.4fr);
  gap: 32px;
  padding: 44px 32px 28px;
}

.kk-footer__intro h2 {
  margin: 0 0 12px;
  color: var(--kk-human-ink);
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.04em;
}

.kk-footer__intro p {
  max-width: 520px;
  margin: 0;
  color: #565656;
  font-size: 1rem;
  line-height: 1.7;
}

.kk-footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.kk-footer__socials a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f4f2ee;
  color: #555;
  font-size: 1rem;
  text-decoration: none;
}

.kk-footer__socials a:hover {
  color: var(--kk-human-accent);
  background: #fff0e5;
}

.kk-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kk-footer__col h3 {
  margin: 0 0 12px;
  color: var(--kk-human-ink);
  font-size: 1rem;
  font-weight: 740;
}

.kk-footer__col a {
  display: block;
  margin: 0 0 10px;
  color: #555;
  font-size: .95rem;
  text-decoration: none;
}

.kk-footer__col a:hover {
  color: var(--kk-human-accent);
}

.kk-footer__assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 32px 28px;
}

.kk-footer__assurance-item {
  padding: 18px 18px 16px;
  border: 1px solid var(--kk-human-line);
  border-radius: 18px;
  background: #faf9f7;
}

.kk-footer__assurance-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--kk-human-ink);
  font-size: .98rem;
  font-weight: 700;
}

.kk-footer__assurance-item span {
  color: #656565;
  font-size: .9rem;
  line-height: 1.55;
}

.kk-footer__reference-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 0 32px 34px;
  color: #777;
  font-size: .84rem;
}

.kk-footer__reference-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.kk-footer__reference-links a {
  color: #666;
  font-size: .88rem;
  text-decoration: none;
}

.kk-footer__reference-links a:hover {
  color: var(--kk-human-accent);
}

.kk-footer__note {
  text-align: right;
}

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid rgba(20, 20, 20, 0.55);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1140px) {
  .kk-coupons--featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kk-brand-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .kk-reference-product {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .kk-reference-product__offers {
    grid-column: 1 / -1;
    border-top: 1px solid var(--kk-human-line);
    border-left: 0;
  }

  .kk-footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .kk-header-promo__inner {
    min-height: 40px;
    font-size: .78rem;
    gap: 10px;
  }

  .kk-header__bar {
    min-height: 70px;
  }

  .kk-header .kk-nav .kk-menu > li > a {
    min-height: 48px;
  }

  .kk-header__secondary,
  .kk-header-context__search {
    display: none;
  }

  .kk-header-context__inner {
    grid-template-columns: 1fr;
    min-height: 58px;
  }

  .kk-header-context__links {
    gap: 12px 18px;
    padding: 10px 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .kk-header-context__links::-webkit-scrollbar {
    display: none;
  }

  .kk-header-context__links a {
    white-space: nowrap;
    font-size: .92rem;
  }

  .kk-pepper-hero__grid {
    grid-template-columns: 1fr;
  }

  .kk-reference-product__media img {
    height: 280px;
  }

  .kk-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .kk-footer__columns,
  .kk-footer__assurance {
    grid-template-columns: 1fr 1fr;
  }

  .kk-footer__reference-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .kk-footer__reference-links {
    justify-content: flex-start;
  }

  .kk-footer__note {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .kk-container {
    padding-inline: 18px;
  }

  .kk-header-promo__inner {
    flex-wrap: wrap;
    padding: 8px 0;
    text-align: center;
  }

  .kk-pepper-hero {
    padding-top: 20px;
  }

  .kk-pepper-hero h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
  }

  .kk-pepper-hero p,
  .kk-reference-section__head p {
    font-size: .98rem;
  }

  .kk-reference-search-card {
    padding: 18px;
    border-radius: 18px;
  }

  .kk-reference-search-card .kk-search,
  .kk-reference-search-card .kk-search--lg {
    grid-template-columns: 1fr;
  }

  .kk-reference-search-card .kk-search button {
    width: 100%;
  }

  .kk-reference-stats,
  .kk-coupons--featured,
  .kk-why-grid,
  .kk-footer__columns,
  .kk-footer__assurance {
    grid-template-columns: 1fr;
  }

  .kk-spotlight__shell {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .kk-spotlight__visual {
    min-height: 240px;
  }

  .kk-spotlight__visual-card {
    width: 96px;
    height: 96px;
  }

  .kk-reference-product {
    display: block;
  }

  .kk-reference-product__media {
    margin: 16px;
  }

  .kk-reference-product__info {
    padding: 8px 20px 22px;
  }

  .kk-reference-product__offers {
    padding: 20px 14px 14px;
  }

  .kk-reference-offer {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 10px;
  }

  .kk-reference-offer__rating {
    display: none;
  }

  .kk-reference-offer .kk-btn {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 42px;
    padding-inline: 16px;
    font-size: .86rem;
  }

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

  .kk-brand-chip {
    min-height: 62px;
  }

  .kk-reference-cta {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .kk-reference-cta .kk-btn {
    width: 100%;
  }

  .kk-footer__top,
  .kk-footer__assurance,
  .kk-footer__reference-row {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
