/* ============================================================
   Humitec Theme — Main Stylesheet
   Palette:
     Primary  blue-900  #1e3a8a / blue-950 #172554
     Accent   cyan-500  #06b6d4
     CTA      orange-500 #f97316
     Success  green-500 #22c55e
     Background gray-50 #f9fafb
     Text      gray-800 #1f2937
   Font: Inter (Google Fonts)
============================================================ */

/* ---- Reset / Base ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #1f2937;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

/* ---- Layout helpers -------------------------------------- */
.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ---- Typography ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

/* ============================================================
   USP TOP BAR
============================================================ */
.usp-bar {
  background: #172554;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 0;
  display: none;
}
@media (min-width: 768px) { .usp-bar { display: block; } }

.usp-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.usp-bar__items {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.usp-bar__item svg { color: #22c55e; width: 1rem; height: 1rem; }

.usp-bar__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 1px solid #1e3a8a;
  padding-left: 1rem;
  white-space: nowrap;
}
.lang-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0;
  transition: color 0.15s;
}
.lang-btn:hover { color: #06b6d4; }
.lang-btn--inactive { color: #93c5fd; font-weight: 400; }
.lang-btn--inactive:hover { color: #fff; }
.lang-sep { color: #1e3a8a; }

/* ============================================================
   SITE HEADER
============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.10); }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  gap: 1.5rem;
}

/* Logo */
.site-logo { flex-shrink: 0; display: flex; align-items: center; min-width: 140px; }
.site-logo a { display: flex; align-items: center; }
.site-logo img { height: 2.5rem; width: auto; }
.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1e3a8a;
  letter-spacing: -0.04em;
}
.logo-text__accent { color: #06b6d4; }
.logo-text__dot { color: #f97316; }

/* Search form */
.header-search {
  flex: 1;
  max-width: 36rem;
  display: none;
}
@media (min-width: 768px) { .header-search { display: block; } }

.header-search form { position: relative; width: 100%; }
.header-search input[type="search"],
.header-search input[type="text"] {
  width: 100%;
  background: #f3f4f6;
  border: 2px solid transparent;
  border-radius: 9999px;
  padding: 0.625rem 3rem 0.625rem 1.25rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.header-search input:focus {
  border-color: #06b6d4;
  background: #fff;
}
.header-search button[type="submit"] {
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2.5rem;
  background: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  box-shadow: 0 2px 8px rgba(29,78,216,.3);
}
.header-search button[type="submit"]:hover { background: #1e3a8a; }
.header-search button svg { width: 1.1rem; height: 1.1rem; stroke-width: 2.5; }

/* Header actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}
@media (min-width: 768px) { .header-actions { display: flex; } }

.header-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #4b5563;
  font-size: 0.7rem;
  font-weight: 500;
  transition: color 0.15s;
  text-decoration: none;
  background: none;
  border: none;
}
.header-action:hover { color: #1e3a8a; }
.header-action svg { width: 1.5rem; height: 1.5rem; margin-bottom: 0.125rem; }
.header-action--wa svg { color: #22c55e; }

.cart-icon-wrap { position: relative; }
.cart-count {
  position: absolute;
  top: -0.375rem;
  right: -0.5rem;
  background: #f97316;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile controls */
.header-mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) { .header-mobile { display: none; } }

.header-mobile svg { width: 1.5rem; height: 1.5rem; color: #4b5563; }
.header-mobile .cart-icon-wrap { position: relative; }

.btn-hamburger {
  background: none;
  border: none;
  padding: 0.25rem;
  display: flex;
  align-items: center;
}

/* ============================================================
   CATEGORY NAV / MEGA MENU
============================================================ */
.category-nav {
  display: none;
  border-top: 1px solid #f3f4f6;
}
@media (min-width: 768px) { .category-nav { display: block; } }

.category-nav__inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-item__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #374151;
  transition: color 0.15s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-item__link:hover { color: #1e3a8a; }
.nav-item__link svg { width: 1rem; height: 1rem; color: #9ca3af; transition: color 0.15s; }
.nav-item:hover .nav-item__link svg { color: #1e3a8a; }

/* Dropdown / mega */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 14rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 10px 40px rgba(0,0,0,.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
  z-index: 200;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: #4b5563;
  border-bottom: 1px solid #f9fafb;
  transition: background 0.1s, color 0.1s;
  text-decoration: none;
}
.nav-dropdown a:last-child { border-bottom: 0; }
.nav-dropdown a:hover { background: #f9fafb; color: #1e3a8a; }
.nav-dropdown a.highlight { color: #1e3a8a; font-weight: 600; }

/* Special nav pills */
.nav-pill--orange {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  background: #fff7ed;
  color: #c2410c;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  transition: background 0.15s;
  text-decoration: none;
  white-space: nowrap;
  margin: 0.5rem 0.5rem;
}
.nav-pill--orange:hover { background: #ffedd5; }
.nav-pill--orange .badge {
  background: #f97316;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.125rem 0.375rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-pill--blue {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  background: #1e3a8a;
  color: #fff;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  transition: background 0.15s;
  text-decoration: none;
  white-space: nowrap;
  margin: 0.5rem 0.5rem 0.5rem auto;
  flex-shrink: 0;
}
.nav-pill--blue:hover { background: #1d4ed8; }
.nav-pill--blue svg { width: 0.875rem; height: 0.875rem; }

/* ============================================================
   MOBILE MENU
============================================================ */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 0.5rem 1rem 1rem;
}
.mobile-menu.is-open { display: block; }

.mobile-menu__item {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  border-radius: 0.5rem;
  transition: background 0.1s, color 0.1s;
  text-decoration: none;
}
.mobile-menu__item:hover { background: #f9fafb; color: #1e3a8a; }
.mobile-menu__item--orange {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #c2410c;
  background: #fff7ed;
  font-weight: 700;
}
.mobile-menu__item--blue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e3a8a;
  color: #fff;
  font-weight: 700;
}
.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem 0.5rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 0.5rem;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn--orange {
  background: #f97316;
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,.28);
}
.btn--orange:hover { background: #ea580c; }

.btn--white {
  background: #fff;
  color: #1e3a8a;
}
.btn--white:hover { background: #f3f4f6; }

.btn--green {
  background: #22c55e;
  color: #fff;
}
.btn--green:hover { background: #16a34a; }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn--outline:hover { background: rgba(255,255,255,.1); }

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  background: #1e3a8a;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
  mix-blend-mode: overlay;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}
@media (min-width: 1024px) { .hero__content { padding: 8rem 0; } }

.hero__inner { max-width: 48rem; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.1;
}
.hero h1 .accent { color: #67e8f9; }

.hero__lead {
  font-size: 1.125rem;
  color: #bfdbfe;
  margin-bottom: 2.5rem;
  max-width: 38rem;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  padding: 1rem 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4b5563;
}
@media (min-width: 768px) {
  .trust-strip__inner { justify-content: space-between; }
}
.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.trust-strip__item svg { width: 1.1rem; height: 1.1rem; }
.trust-strip__item svg.green  { color: #22c55e; }
.trust-strip__item svg.yellow { color: #fbbf24; fill: #fbbf24; }
.trust-strip__item svg.blue   { color: #3b82f6; }

/* ============================================================
   B2B BANNER
============================================================ */
.b2b-banner {
  padding: 2.5rem 0 0.5rem;
}
.b2b-banner__card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(to right, #172554, #1e3a8a, #164e63);
  box-shadow: 0 20px 60px rgba(23,37,84,.2);
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .b2b-banner__card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
  }
}

.b2b-banner__glow-a {
  position: absolute;
  top: -5rem; right: -5rem;
  width: 18rem; height: 18rem;
  background: rgba(6,182,212,.2);
  border-radius: 9999px;
  filter: blur(3rem);
  pointer-events: none;
}
.b2b-banner__glow-b {
  position: absolute;
  bottom: -5rem; left: -5rem;
  width: 18rem; height: 18rem;
  background: rgba(96,165,250,.2);
  border-radius: 9999px;
  filter: blur(3rem);
  pointer-events: none;
}

.b2b-banner__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(6,182,212,.2);
  border: 1px solid rgba(6,182,212,.3);
  color: #a5f3fc;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.b2b-banner__badge svg { width: 0.875rem; height: 0.875rem; }

.b2b-banner__body { position: relative; color: #fff; max-width: 42rem; }
.b2b-banner__body h2 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.b2b-banner__body p { color: #bfdbfe; font-size: 1rem; margin-bottom: 1rem; }

.b2b-banner__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.75rem;
  color: #93c5fd;
}
.b2b-banner__checks span { display: flex; align-items: center; gap: 0.375rem; }
.b2b-banner__checks svg { width: 0.875rem; height: 0.875rem; color: #22c55e; }

.b2b-banner__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-shrink: 0;
}
.b2b-banner__cta a:last-child {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a5f3fc;
  transition: color 0.15s;
}
.b2b-banner__cta a:last-child:hover { color: #fff; }

/* ============================================================
   SECTION HEADINGS
============================================================ */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}
.section-heading p { color: #6b7280; max-width: 36rem; margin: 0 auto; }

.section { padding: 4rem 0; }
.section--light { background: #f3f4f6; }
.section--white { background: #fff; }
.section--bordered { border-top: 1px solid #e5e7eb; }

/* ============================================================
   PROBLEM CARDS
============================================================ */
.problem-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .problem-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(4,1fr); } }

.problem-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.problem-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.10); }

.problem-card__icon {
  width: 4rem; height: 4rem;
  background: #eff6ff;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.2s;
}
.problem-card:hover .problem-card__icon { transform: scale(1.08); }
.problem-card__icon svg { width: 2rem; height: 2rem; }

.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.problem-card:hover h3 { color: #1e3a8a; }
.problem-card p { font-size: 0.875rem; color: #6b7280; }

/* ============================================================
   CATEGORY CARDS
============================================================ */
.cat-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cat-grid { grid-template-columns: repeat(4,1fr); } }

.cat-card {
  position: relative;
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  text-decoration: none;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,.8) 0%, rgba(17,24,39,.15) 50%, transparent 100%);
}
.cat-card__badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #f97316;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.cat-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.cat-card__info h3 { font-size: 1.125rem; font-weight: 700; color: #fff; }
.cat-card__info p  { font-size: 0.8125rem; color: #93c5fd; margin-top: 0.25rem; }

/* ============================================================
   PRODUCT FINDER BLOCK
============================================================ */
.finder-block {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 50%, #312e81 100%);
  box-shadow: 0 25px 60px rgba(23,37,84,.2);
  padding: 2rem;
}
@media (min-width: 768px) { .finder-block { padding: 3.5rem; } }

.finder-block__glow-a {
  position: absolute; top: -8rem; right: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(6,182,212,.2);
  border-radius: 9999px;
  filter: blur(3rem);
  pointer-events: none;
}
.finder-block__glow-b {
  position: absolute; bottom: -10rem; left: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(96,165,250,.2);
  border-radius: 9999px;
  filter: blur(3rem);
  pointer-events: none;
}

.finder-block__inner { position: relative; z-index: 1; max-width: 56rem; margin: 0 auto; }

.finder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.3);
  color: #a5f3fc;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
  margin-bottom: 1.5rem;
}

.finder-block h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.finder-block h2 .gradient-text {
  background: linear-gradient(to right, #67e8f9, #e0f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.finder-block__lead {
  color: #bfdbfe;
  text-align: center;
  font-size: 1.0625rem;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* Step indicator */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: #93c5fd;
}
.step-indicator__num {
  width: 1.5rem; height: 1.5rem;
  border-radius: 9999px;
  background: rgba(6,182,212,.3);
  border: 1px solid #06b6d4;
  color: #a5f3fc;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6875rem;
}
.step-indicator__arrow {
  width: 0.75rem; height: 0.75rem;
  border-top: 2px solid #60a5fa;
  border-right: 2px solid #60a5fa;
  transform: rotate(45deg);
  margin: 0 0.125rem;
}

/* Finder steps inside the block (server-side teaser) */
.finder-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .finder-steps { grid-template-columns: repeat(3,1fr); } }

.finder-step {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.finder-step__num {
  width: 2rem; height: 2rem;
  border-radius: 9999px;
  background: #06b6d4;
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
}
.finder-step h3 { color: #fff; font-size: 0.875rem; font-weight: 700; margin-bottom: 0.375rem; }
.finder-step p  { color: #93c5fd; font-size: 0.75rem; }

.finder-cta-link {
  text-align: center;
  margin-top: 2rem;
}
.finder-cta-link a {
  color: #67e8f9;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.15s;
}
.finder-cta-link a:hover { color: #fff; }

.finder-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.75rem;
  color: #93c5fd;
}
.finder-trust span { display: flex; align-items: center; gap: 0.375rem; }
.finder-trust svg { width: 1rem; height: 1rem; color: #22c55e; }

/* ============================================================
   PRODUCT GRID & CARDS
============================================================ */
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .product-grid--3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1024px) { .product-grid--3 { grid-template-columns: repeat(3,1fr); } }

.product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  border-color: #93c5fd;
}

.product-card__badge-abs {
  position: absolute;
  top: 1rem; left: 1rem;
  background: #f97316;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  z-index: 2;
  display: flex; align-items: center; gap: 0.25rem;
}
.product-card__badge-abs svg { width: 0.75rem; height: 0.75rem; fill: currentColor; }

.product-card__oos {
  position: absolute;
  top: 1rem; right: 1rem;
  background: #4b5563;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  z-index: 2;
}

.product-card__img-wrap {
  padding: 1rem;
  background: #fff;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__img-wrap img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
  display: block;
  margin: 0 auto;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.05); }

.product-card__body {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.stars-row {
  display: flex;
  gap: 0.125rem;
}
.stars-row svg {
  width: 1rem; height: 1rem;
  fill: none;
  stroke: #d1d5db;
  stroke-width: 1.5;
}
.product-card__stars span {
  font-size: 0.7rem;
  color: #9ca3af;
}

.product-card__brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  display: inline-block;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.product-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 0.625rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
  text-decoration: none;
}
.product-card:hover .product-card__title { color: #1e3a8a; }

.spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
}
.chip {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.5rem;
  border-radius: 9999px;
}
.chip--blue   { background: #eff6ff; color: #1d4ed8; }
.chip--cyan   { background: #ecfeff; color: #0e7490; }
.chip--green  { background: #f0fdf4; color: #15803d; }
.chip--purple { background: #faf5ff; color: #7e22ce; }

.product-card__desc {
  font-size: 0.7875rem;
  color: #6b7280;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  margin-bottom: 0.75rem;
}

.product-card__footer {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.75rem;
  margin-top: auto;
}

.stock-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.stock-badge svg { width: 0.875rem; height: 0.875rem; }
.stock-badge--in  { color: #16a34a; }
.stock-badge--out { color: #dc2626; }

.product-card__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
}

.btn-add-cart {
  background: #22c55e;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}
.btn-add-cart:hover { background: #16a34a; }
.btn-add-cart svg { width: 1rem; height: 1rem; }

/* ============================================================
   BEST SELLERS SECTION HEADER
============================================================ */
.section-flex-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-flex-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.25rem;
}
.section-flex-header p { color: #6b7280; font-size: 0.875rem; }
.link-more {
  display: none;
  align-items: center;
  gap: 0.25rem;
  color: #1d4ed8;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.15s;
  text-decoration: none;
}
@media (min-width: 768px) { .link-more { display: flex; } }
.link-more:hover { color: #1e3a8a; }
.link-more svg { width: 1rem; height: 1rem; transform: rotate(-90deg); }

/* ============================================================
   USE CASES
============================================================ */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px)  { .use-cases-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .use-cases-grid { grid-template-columns: repeat(6,1fr); } }

.use-case-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 1rem;
  background: #eff6ff;
  transition: background 0.15s;
}
.use-case-item:hover { background: #dbeafe; }

.use-case-icon {
  width: 4rem; height: 4rem;
  background: #fff;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.use-case-icon svg { width: 2rem; height: 2rem; color: #1d4ed8; }

.use-case-item p {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}

/* ============================================================
   BLOG / KLIMAATADVIES CARDS
============================================================ */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  border-color: #bfdbfe;
  transform: translateY(-0.25rem);
}

.blog-card__img {
  height: 11rem;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-card__img img {
  max-height: 9rem;
  object-fit: contain;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }

.blog-card__cat {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.625rem;
  border-radius: 9999px;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}

.blog-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card:hover .blog-card__body h3 { color: #1e3a8a; }
.blog-card__body p {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  color: #9ca3af;
  border-top: 1px solid #f3f4f6;
  padding-top: 0.75rem;
}
.blog-card__avatar {
  width: 1.25rem; height: 1.25rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1d4ed8, #06b6d4);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.55rem; font-weight: 700;
}
.blog-card__sep { color: #d1d5db; }

.blog-card__read-more {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1d4ed8;
  display: flex; align-items: center; gap: 0.25rem;
  transition: gap 0.15s;
}
.blog-card:hover .blog-card__read-more { gap: 0.5rem; }
.blog-card__read-more svg { width: 1rem; height: 1rem; transform: rotate(-90deg); }

/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  background: #fff;
  border: none;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1f2937;
  text-align: left;
  cursor: pointer;
  transition: background 0.1s;
}
.faq-trigger:hover { background: #f9fafb; }
.faq-trigger span { flex: 1; padding-right: 1rem; }
.faq-icon { width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: #6b7280; transition: transform 0.2s; }
.faq-item.is-open .faq-icon { transform: rotate(180deg); }

.faq-body {
  display: none;
  padding: 0 1.25rem 1.25rem;
  border-top: 1px solid #f3f4f6;
  background: #fff;
}
.faq-body p { color: #4b5563; font-size: 0.9375rem; line-height: 1.7; padding-top: 0.75rem; }
.faq-item.is-open .faq-body { display: block; }

/* ============================================================
   SEO TEXT BLOCK
============================================================ */
.seo-block {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.seo-block h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: 1rem; }

.seo-text { color: #4b5563; font-size: 0.9rem; line-height: 1.75; }
.seo-text p { margin-bottom: 1rem; }
.seo-text strong { color: #1f2937; }
.seo-text.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-seo-toggle {
  margin-top: 1rem;
  background: none;
  border: none;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex; align-items: center; gap: 0.25rem;
  cursor: pointer;
  transition: color 0.15s;
}
.btn-seo-toggle:hover { color: #1e3a8a; text-decoration: underline; }
.btn-seo-toggle svg { width: 1rem; height: 1rem; transition: transform 0.2s; }
.btn-seo-toggle.is-expanded svg { transform: rotate(180deg); }

/* ============================================================
   SEO LINK GRID
============================================================ */
.seo-link-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2,1fr);
}
@media (min-width: 768px) { .seo-link-grid { grid-template-columns: repeat(4,1fr); } }

.seo-link-grid ul { display: flex; flex-direction: column; gap: 0.5rem; }
.seo-link-grid a {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.15s;
  text-decoration: none;
}
.seo-link-grid a:hover { color: #1d4ed8; }

/* ============================================================
   SECTION HEADER WITH ICON
============================================================ */
.section-icon-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.section-icon-header__left { display: flex; align-items: center; gap: 0.75rem; }
.section-icon-header__icon {
  background: #eff6ff;
  border-radius: 0.75rem;
  padding: 0.625rem;
  display: flex; align-items: center; justify-content: center;
}
.section-icon-header__icon svg { width: 1.5rem; height: 1.5rem; color: #1d4ed8; }
.section-icon-header__title h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
.section-icon-header__title p { font-size: 0.8125rem; color: #6b7280; margin-top: 0.25rem; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4,1fr); } }

.footer-brand .logo-fallback {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  display: none;
}
.footer-brand img.footer-logo {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-badge {
  border: 1px solid #374151;
  border-radius: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.7rem;
  color: #6b7280;
}

.footer-col h3 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul li + li { margin-top: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.15s;
  text-decoration: none;
}
.footer-col a:hover { color: #06b6d4; }
.footer-col .badge-inline {
  display: inline-block;
  background: #f97316;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  padding: 0.1rem 0.375rem;
  border-radius: 9999px;
  vertical-align: middle;
  margin-left: 0.25rem;
  line-height: 1.4;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.footer-contact li + li { margin-top: 0.5rem; }
.footer-contact svg { width: 1rem; height: 1rem; color: #22c55e; flex-shrink: 0; }

.footer-company {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #1f2937;
}
.footer-company h4 { color: #fff; font-size: 0.8125rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-company p { font-size: 0.75rem; color: #6b7280; line-height: 1.6; }
.footer-company strong { color: #9ca3af; }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}
.footer-bottom__links a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s;
  font-size: 0.8125rem;
}
.footer-bottom__links a:hover { color: #fff; }

/* ============================================================
   ARCHIVE (CATEGORY / SHOP) PAGE
============================================================ */
.archive-header { margin-bottom: 2rem; }
.archive-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}
.archive-header p { color: #6b7280; max-width: 52rem; line-height: 1.7; }

.archive-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .archive-layout { flex-direction: row; align-items: flex-start; }
}

/* Filter sidebar */
.filter-sidebar {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .filter-sidebar {
    width: 15rem;
    position: sticky;
    top: 6.5rem;
  }
}

.filter-sidebar__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.filter-sidebar__header svg { width: 1rem; height: 1rem; color: #1d4ed8; }
.filter-sidebar__header h2 { font-size: 0.875rem; font-weight: 700; color: #111827; }

.filter-section {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.filter-section:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }

.filter-section__title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #374151;
  margin-bottom: 0.625rem;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #4b5563;
  padding: 0.25rem 0;
  cursor: pointer;
  transition: color 0.1s;
}
.filter-check:hover { color: #1e3a8a; }
.filter-check input[type="checkbox"] { accent-color: #1d4ed8; width: 1rem; height: 1rem; }

/* Price inputs */
.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  color: #374151;
  font-weight: 500;
}
.price-input {
  width: 5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 0.375rem 0.5rem;
  font-size: 0.8125rem;
  outline: none;
  transition: border-color 0.15s;
  text-align: center;
}
.price-input:focus { border-color: #1d4ed8; }

/* Dual range slider */
.dual-range-slider {
  position: relative;
  height: 1.5rem;
  margin: 0.5rem 0;
}
.dual-range-slider input[type="range"] {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%; height: 1.5rem;
  margin: 0; padding: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  pointer-events: none;
}
.dual-range-slider input[type="range"]:focus { outline: none; }
.dual-range-slider input[type="range"]::-webkit-slider-runnable-track {
  background: transparent; height: 1.5rem; border: 0;
}
.dual-range-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: auto;
  width: 1.25rem; height: 1.25rem;
  margin-top: 0.125rem;
  border-radius: 9999px;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(37,99,235,.35);
  cursor: grab;
  transition: transform 0.1s, box-shadow 0.1s;
}
.dual-range-slider input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(37,99,235,.5);
}
.dual-range-slider input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; }
.dual-range-slider input[type="range"]::-moz-range-track { background: transparent; height: 1.5rem; border: 0; }
.dual-range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 1.25rem; height: 1.25rem;
  border-radius: 9999px;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(37,99,235,.35);
  cursor: grab;
}

.range-track-bg {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 0.375rem;
  background: #e5e7eb;
  border-radius: 9999px;
  transform: translateY(-50%);
  pointer-events: none;
}
.range-track-fill {
  position: absolute;
  top: 50%;
  height: 0.375rem;
  background: #2563eb;
  border-radius: 9999px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Sort + result bar */
.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.result-count { font-size: 0.9375rem; color: #6b7280; }
.result-count strong { color: #111827; }

.sort-select {
  border: 1px solid #d1d5db;
  border-radius: 0.625rem;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s;
  background: #fff;
  cursor: pointer;
}
.sort-select:focus { border-color: #1d4ed8; }

/* Mobile filter button */
.mobile-filter-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  cursor: pointer;
  transition: border-color 0.15s;
}
.mobile-filter-btn:hover { border-color: #93c5fd; }
.mobile-filter-btn svg { width: 1rem; height: 1rem; }
.filter-count-badge {
  background: #1d4ed8;
  color: #fff;
  border-radius: 9999px;
  width: 1.25rem; height: 1.25rem;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* Mobile filter drawer */
.filter-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 300;
  display: none;
}
.filter-drawer-overlay.is-open { display: block; }

.filter-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(20rem, 90vw);
  background: #fff;
  z-index: 301;
  overflow-y: auto;
  padding: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.3s;
}
.filter-drawer-overlay.is-open .filter-drawer { transform: translateX(0); }

.filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.filter-drawer__header h2 { font-size: 1.125rem; font-weight: 700; }
.btn-close-drawer {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}
.btn-close-drawer svg { width: 1.5rem; height: 1.5rem; color: #6b7280; }

.btn-apply-filter {
  display: block;
  width: 100%;
  margin-top: 1rem;
  background: #1d4ed8;
  color: #fff;
  border: none;
  border-radius: 0.75rem;
  padding: 0.875rem;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-apply-filter:hover { background: #1e3a8a; }

/* No products */
.no-products {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
}
.no-products p { color: #6b7280; font-size: 1.0625rem; margin-bottom: 1rem; }

/* ============================================================
   SINGLE PRODUCT PAGE
============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: #6b7280; text-decoration: none; transition: color 0.15s; }
.breadcrumb a:hover { color: #1d4ed8; }
.breadcrumb__sep { color: #d1d5db; font-size: 0.75rem; }
.breadcrumb__current { color: #374151; font-weight: 500; }

.product-hero {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .product-hero__grid { grid-template-columns: 1fr 1fr; }
}

/* Gallery */
.product-gallery {
  padding: 1.5rem;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
@media (min-width: 1024px) {
  .product-gallery {
    border-bottom: 0;
    border-right: 1px solid #e5e7eb;
  }
}
.product-gallery__main {
  aspect-ratio: 1;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 1rem;
}
.product-gallery__main img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  padding: 1rem;
}
.product-gallery__thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.thumb-btn {
  width: 5rem; height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
  padding: 0;
}
.thumb-btn.is-active {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29,78,216,.15);
}
.thumb-btn:hover { border-color: #9ca3af; }
.thumb-btn img { width: 100%; height: 100%; object-fit: contain; padding: 0.25rem; }

/* Product info panel */
.product-info { padding: 2rem; display: flex; flex-direction: column; }

.product-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.product-brand-pill {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1d4ed8;
  background: #eff6ff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.product-sku-pill {
  font-size: 0.875rem;
  color: #9ca3af;
  background: #f9fafb;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.product-info h1 {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 900;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.product-reviews-placeholder {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.stars-placeholder {
  display: flex;
  gap: 0.25rem;
}
.stars-placeholder svg { width: 1.25rem; height: 1.25rem; stroke: #d1d5db; fill: none; stroke-width: 1.5; }
.reviews-text { font-size: 0.875rem; color: #9ca3af; }
.kiyoh-note {
  font-size: 0.7rem;
  color: #1d4ed8;
  background: #eff6ff;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.product-price { font-size: 2rem; font-weight: 900; color: #111827; }

.product-short-desc {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

/* Quick spec tiles */
.quick-specs {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.quick-spec {
  border-radius: 0.75rem;
  padding: 0.75rem;
}
.quick-spec--blue   { background: #eff6ff; }
.quick-spec--cyan   { background: #ecfeff; }
.quick-spec--green  { background: #f0fdf4; }
.quick-spec--purple { background: #faf5ff; }
.quick-spec__label { font-size: 0.7rem; color: #6b7280; margin-bottom: 0.125rem; }
.quick-spec__value { font-weight: 700; font-size: 0.875rem; }
.quick-spec--blue   .quick-spec__value { color: #1e40af; }
.quick-spec--cyan   .quick-spec__value { color: #0e7490; }
.quick-spec--green  .quick-spec__value { color: #166534; }
.quick-spec--purple .quick-spec__value { color: #6b21a8; }

/* CTA row */
.product-cta-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.btn-add-to-cart-lg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.0625rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s;
}
.btn-add-to-cart-lg--active {
  background: #f97316;
  color: #fff;
  box-shadow: 0 6px 20px rgba(249,115,22,.25);
}
.btn-add-to-cart-lg--active:hover { background: #ea580c; }
.btn-add-to-cart-lg--disabled {
  background: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}
.btn-add-to-cart-lg svg { width: 1.25rem; height: 1.25rem; }

.btn-bol {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.15s, color 0.15s;
  text-decoration: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-bol:hover { border-color: #93c5fd; color: #1d4ed8; }
.btn-bol svg { width: 1rem; height: 1rem; }

/* Product USPs */
.product-usps { display: flex; flex-direction: column; gap: 0.5rem; border-top: 1px solid #e5e7eb; padding-top: 1rem; }
.product-usp { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #4b5563; }
.product-usp svg { width: 1rem; height: 1rem; color: #22c55e; flex-shrink: 0; }
.product-usp--gray svg { color: #9ca3af; }

/* Lower product sections */
.product-lower {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) { .product-lower { grid-template-columns: repeat(2,1fr); } }

.product-section-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
}
.product-section-card h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }

/* Specs table */
.specs-table { width: 100%; }
.specs-table .spec-row {
  display: flex;
  padding: 0.625rem 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 0.875rem;
}
.specs-table .spec-row:last-child { border-bottom: 0; }
.spec-label { color: #6b7280; flex: 0 0 50%; padding-right: 1rem; }
.spec-value { font-weight: 500; color: #111827; }
.spec-value--yes { color: #16a34a; }
.spec-value--no  { color: #9ca3af; }

/* Description prose */
.product-desc { color: #4b5563; line-height: 1.75; font-size: 0.9375rem; white-space: pre-line; }

/* Use-case tags */
.product-use-cases { margin-top: 1.5rem; }
.product-use-cases h3 { font-size: 0.875rem; font-weight: 700; color: #1f2937; margin-bottom: 0.75rem; }
.use-case-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.use-case-tag {
  font-size: 0.8125rem;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
}

/* Bundle includes */
.bundle-includes { margin-top: 1.5rem; }
.bundle-includes h3 { font-size: 0.875rem; font-weight: 700; color: #1f2937; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.bundle-includes h3 svg { width: 1rem; height: 1rem; color: #1d4ed8; }
.bundle-list { display: flex; flex-direction: column; gap: 0.5rem; }
.bundle-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: #4b5563; }
.bundle-list li svg { width: 1rem; height: 1rem; color: #22c55e; flex-shrink: 0; margin-top: 0.125rem; }

/* Cross-sell */
.crosssell h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }

/* ============================================================
   B2B PAGE
============================================================ */
.b2b-hero {
  background: linear-gradient(135deg, #172554 0%, #1e3a8a 60%, #164e63 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.b2b-hero__glow-a {
  position: absolute; top: -8rem; right: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(6,182,212,.2);
  border-radius: 9999px; filter: blur(3rem); pointer-events: none;
}
.b2b-hero__glow-b {
  position: absolute; bottom: -10rem; left: -8rem;
  width: 24rem; height: 24rem;
  background: rgba(96,165,250,.2);
  border-radius: 9999px; filter: blur(3rem); pointer-events: none;
}
.b2b-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .b2b-hero__grid { grid-template-columns: 1fr 1fr; } }

.b2b-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.3);
  color: #a5f3fc;
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.b2b-hero__badge svg { width: 0.875rem; height: 0.875rem; }

.b2b-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.b2b-hero h1 .gradient-text {
  background: linear-gradient(to right, #67e8f9, #e0f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.b2b-hero p { color: #bfdbfe; font-size: 1.0625rem; line-height: 1.6; margin-bottom: 1.5rem; }

.b2b-hero__ctas { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 480px) { .b2b-hero__ctas { flex-direction: row; } }

.b2b-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #bfdbfe;
}
.b2b-hero__stats span { display: flex; align-items: center; gap: 0.375rem; }
.b2b-hero__stats svg { width: 1rem; height: 1rem; }
.b2b-hero__stats .icon-star { color: #fbbf24; }
.b2b-hero__stats .icon-check { color: #22c55e; }

.b2b-product-mosaic {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0.75rem;
  position: relative;
}
.b2b-product-mosaic::before {
  content: '';
  position: absolute; inset: -1rem;
  background: rgba(6,182,212,.15);
  border-radius: 2rem;
  filter: blur(2rem);
  z-index: 0;
}
.b2b-product-tile {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 1rem;
  padding: 1rem;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1;
  position: relative;
  z-index: 1;
}
.b2b-product-tile img { max-height: 100%; object-fit: contain; }
.b2b-mosaic-note {
  text-align: center;
  font-size: 0.7rem;
  color: #93c5fd;
  font-weight: 600;
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

.b2b-usp-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .b2b-usp-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .b2b-usp-grid { grid-template-columns: repeat(3,1fr); } }

.b2b-usp-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.b2b-usp-card:hover { border-color: #93c5fd; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.b2b-usp-icon {
  width: 3rem; height: 3rem;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.b2b-usp-icon svg { width: 1.5rem; height: 1.5rem; }
.b2b-usp-card h3 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.b2b-usp-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }

/* B2B form */
.b2b-form-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
.b2b-form-header {
  background: linear-gradient(to right, #1e3a8a, #164e63);
  color: #fff;
  padding: 2rem;
}
.b2b-form-header h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}
.b2b-form-header p { color: #bfdbfe; font-size: 0.875rem; }

.b2b-form-body { padding: 2rem; }

.form-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: repeat(2,1fr); } }

.form-field { display: flex; flex-direction: column; gap: 0.375rem; }
.form-field label { font-size: 0.875rem; font-weight: 700; color: #374151; }
.form-input {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  background: #fff;
  font-family: inherit;
}
.form-input:focus { outline: none; border-color: #1d4ed8; box-shadow: 0 0 0 3px rgba(29,78,216,.1); }
select.form-input { cursor: pointer; }
textarea.form-input { resize: vertical; }

.form-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 480px) { .form-checkbox-grid { grid-template-columns: repeat(2,1fr); } }

.form-check-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: background 0.1s;
}
.form-check-label:hover { background: #f9fafb; }
.form-check-label input[type="checkbox"] { accent-color: #1d4ed8; width: 1rem; height: 1rem; }

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
@media (min-width: 640px) {
  .form-footer { flex-direction: row; justify-content: space-between; }
}
.form-footer p { font-size: 0.75rem; color: #9ca3af; }
.form-footer a { color: #1d4ed8; }
.form-footer a:hover { text-decoration: underline; }

/* B2B contact strip */
.b2b-contact-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  padding: 2rem 2.5rem;
}
.b2b-contact-card__header { text-align: center; margin-bottom: 2rem; }
.b2b-contact-card__header h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.b2b-contact-card__header p { color: #6b7280; }

.b2b-contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .b2b-contact-methods { grid-template-columns: repeat(3,1fr); } }

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 2px solid #e5e7eb;
  transition: border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.contact-method:hover { border-color: #93c5fd; }
.contact-method__icon {
  width: 3rem; height: 3rem;
  border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.contact-method__icon svg { width: 1.5rem; height: 1.5rem; }
.contact-method--wa .contact-method__icon { background: #f0fdf4; color: #16a34a; }
.contact-method--wa:hover .contact-method__icon { background: #22c55e; color: #fff; }
.contact-method--tel .contact-method__icon { background: #eff6ff; color: #1d4ed8; }
.contact-method--tel:hover .contact-method__icon { background: #1d4ed8; color: #fff; }
.contact-method--mail .contact-method__icon { background: #fff7ed; color: #ea580c; }
.contact-method--mail:hover .contact-method__icon { background: #f97316; color: #fff; }
.contact-method__label { font-weight: 700; color: #111827; font-size: 0.9375rem; }
.contact-method__sub { font-size: 0.8125rem; color: #6b7280; }

/* ============================================================
   KEUZEHULP PAGE
============================================================ */
.keuzehulp-page { padding: 4rem 0; }
.keuzehulp-intro { max-width: 42rem; margin-bottom: 2.5rem; }
.keuzehulp-intro h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 0.75rem; }
.keuzehulp-intro p { color: #6b7280; line-height: 1.7; }

.keuzehulp-app-container {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  min-height: 24rem;
}

/* ============================================================
   404 PAGE
============================================================ */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
}
.page-404__num {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: #e5e7eb;
  margin-bottom: 1rem;
}
.page-404 h1 { font-size: 2rem; margin-bottom: 0.75rem; }
.page-404 p { color: #6b7280; margin-bottom: 2rem; max-width: 30rem; }

/* ============================================================
   WooCommerce overrides (minimal, keep Woo working)
============================================================ */
.woocommerce-breadcrumb { display: none; } /* we output our own */

.woocommerce .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce .woocommerce-notices-wrapper .woocommerce-info,
.woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  border-radius: 0.75rem;
  border-left-width: 4px;
}

/* Cart / Checkout base */
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  padding: 2rem 0;
}

.woocommerce table.shop_table { border-radius: 0.75rem; overflow: hidden; border: 1px solid #e5e7eb; }
.woocommerce table.shop_table th { background: #f9fafb; font-weight: 700; color: #374151; }
.woocommerce #payment .payment_methods li { border-radius: 0.5rem; }
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  background: #f97316 !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 0.75rem !important;
  border: none !important;
  transition: background 0.15s !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: #ea580c !important;
}

/* My Account */
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  display: block;
  transition: background 0.1s;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: #eff6ff;
  color: #1e3a8a;
}

/* ============================================================
   UTILITY / RESPONSIVE HELPERS
============================================================ */
@media (min-width: 768px) { .hidden-mobile { display: block !important; } }
@media (max-width: 767px) { .hidden-mobile { display: none !important; } }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.text-center { text-align: center; }
.mt-2  { margin-top: 0.5rem; }
.mt-4  { margin-top: 1rem; }
.mt-8  { margin-top: 2rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-8  { margin-bottom: 2rem; }
.py-4  { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

.breadcrumb-dark a { color: #93c5fd; }
.breadcrumb-dark .breadcrumb__sep { color: rgba(147,197,253,.4); }
.breadcrumb-dark .breadcrumb__current { color: #fff; }
