/* =========================================================
   Keuzehulp + Finder-Home — scoped vanilla CSS
   Prefix: kh-   (avoids WordPress theme collisions)
   Palette: blue-900 #1e3a8a, cyan-500 #06b6d4,
            orange-500 #f97316, green-500 #22c55e
   Font: Inter (Google Fonts — loaded by the HTML files)
   ========================================================= */

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

.kh-widget,
.kh-widget * {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  color: inherit;
}

/* ---------- Layout ---------- */
.kh-widget {
  background: #f9fafb;
  min-height: 100vh;
}

.kh-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------- Hero ---------- */
.kh-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #312e81 100%);
  color: #fff;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}

.kh-hero::before,
.kh-hero::after {
  content: '';
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
}
.kh-hero::before {
  width: 24rem; height: 24rem;
  top: -8rem; right: -8rem;
  background: rgba(6,182,212,.18);
  filter: blur(60px);
}
.kh-hero::after {
  width: 24rem; height: 24rem;
  bottom: -10rem; left: -8rem;
  background: rgba(59,130,246,.18);
  filter: blur(60px);
}

.kh-hero-inner {
  position: relative;
  z-index: 1;
}

.kh-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.35);
  color: #a5f3fc;
  border-radius: 9999px;
  padding: .35rem 1rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.kh-hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .75rem;
  color: #fff;
}

.kh-hero h1 span {
  background: linear-gradient(90deg, #67e8f9, #e0f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kh-hero p {
  font-size: 1rem;
  color: #bfdbfe;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ---------- Progress bar ---------- */
.kh-progress-wrap {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
}

.kh-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
}

.kh-progress-top .kh-step-label { font-size: .85rem; font-weight: 700; color: #fff; }
.kh-progress-top .kh-step-name  { font-size: .85rem; font-weight: 600; color: #67e8f9; }

.kh-progress-track {
  height: .5rem;
  background: rgba(255,255,255,.12);
  border-radius: 9999px;
  overflow: hidden;
  margin-bottom: .75rem;
}

.kh-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #22d3ee, #67e8f9);
  border-radius: 9999px;
  transition: width .4s ease;
}

.kh-step-dots {
  display: flex;
  justify-content: space-between;
}

.kh-step-dots span {
  font-size: .7rem;
  color: rgba(147,197,253,.5);
  font-weight: 600;
  transition: color .3s;
}

.kh-step-dots span.active {
  color: #67e8f9;
}

/* ---------- Wizard body ---------- */
.kh-body {
  padding: 3rem 0;
}

.kh-step-title {
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: .4rem;
}

.kh-step-desc {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: .95rem;
}

/* ---------- Cards grid ---------- */
.kh-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.kh-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* ---------- Selection card ---------- */
.kh-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
}

.kh-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 4px 16px rgba(37,99,235,.12);
}

.kh-card.active {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 4px 16px rgba(37,99,235,.15);
}

.kh-card-icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
  background: #eff6ff;
  color: #2563eb;
  transition: background .2s, color .2s;
  font-size: 1.4rem;
}

.kh-card.active .kh-card-icon {
  background: #2563eb;
  color: #fff;
}

.kh-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .2rem;
}

.kh-card p {
  font-size: .78rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Problem card — wider */
.kh-problem-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.kh-problem-card:hover {
  border-color: #60a5fa;
  box-shadow: 0 4px 16px rgba(37,99,235,.12);
}

.kh-problem-card.active {
  border-color: #2563eb;
  background: #eff6ff;
  box-shadow: 0 4px 16px rgba(37,99,235,.15);
}

.kh-problem-icon {
  width: 3.5rem; height: 3.5rem;
  flex-shrink: 0;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  font-size: 1.5rem;
  transition: background .2s, color .2s;
}

.kh-problem-card.active .kh-problem-icon {
  background: #2563eb;
  color: #fff;
}

.kh-problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: .25rem;
}

.kh-problem-card p {
  font-size: .82rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Feature card */
.kh-feature-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  cursor: pointer;
  text-align: left;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}

.kh-feature-card:hover  { border-color: #60a5fa; }
.kh-feature-card.active { border-color: #2563eb; background: #eff6ff; }

.kh-feature-icon {
  width: 2.5rem; height: 2.5rem;
  flex-shrink: 0;
  border-radius: .6rem;
  display: flex; align-items: center; justify-content: center;
  background: #eff6ff;
  color: #2563eb;
  font-size: 1.1rem;
  transition: background .2s, color .2s;
}

.kh-feature-card.active .kh-feature-icon {
  background: #2563eb;
  color: #fff;
}

.kh-feature-card .kh-fc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .15rem;
}

.kh-feature-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: #111827;
}

.kh-feature-card p {
  font-size: .75rem;
  color: #6b7280;
}

.kh-check-icon { color: #2563eb; font-size: 1rem; flex-shrink: 0; }

/* Budget cards */
.kh-budget-list { display: flex; flex-direction: column; gap: .75rem; }

.kh-budget-card {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  text-align: left;
}

.kh-budget-card:hover  { border-color: #60a5fa; }
.kh-budget-card.active { border-color: #2563eb; background: #eff6ff; box-shadow: 0 4px 16px rgba(37,99,235,.15); }

/* ---------- Range slider (step 2) ---------- */
.kh-room-wrap {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2rem;
}

.kh-room-display {
  text-align: center;
  margin-bottom: 1.5rem;
}

.kh-m2-number {
  font-size: 4rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
}

.kh-m2-unit { font-size: 1.5rem; color: #9ca3af; margin-left: .25rem; }

.kh-comparable {
  font-size: .85rem;
  color: #6b7280;
  margin-top: .5rem;
}

.kh-comparable strong { color: #374151; }

.kh-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: .5rem;
  border-radius: 9999px;
  background: #dbeafe;
  outline: none;
  cursor: pointer;
  accent-color: #2563eb;
  margin-bottom: .5rem;
}

.kh-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.4);
  cursor: grab;
}

.kh-slider::-moz-range-thumb {
  width: 1.4rem; height: 1.4rem;
  border-radius: 50%;
  background: #2563eb;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(37,99,235,.4);
  cursor: grab;
}

.kh-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.kh-presets {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.kh-preset-btn {
  font-size: .75rem;
  padding: .35rem .75rem;
  border-radius: .5rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #4b5563;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}

.kh-preset-btn:hover   { border-color: #60a5fa; color: #1d4ed8; }
.kh-preset-btn.active  { background: #2563eb; color: #fff; border-color: #2563eb; }

/* ---------- Nav buttons ---------- */
.kh-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.kh-nav-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #6b7280;
  background: none;
  border: none;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  padding: .5rem 0;
  transition: color .15s;
}

.kh-nav-back:hover { color: #2563eb; }

.kh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: .75rem;
  font-size: .95rem;
  font-weight: 700;
  padding: .8rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
  transition: background .15s;
}

.kh-btn-primary:hover    { background: #1d4ed8; }
.kh-btn-primary:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Result page ---------- */
.kh-result-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.kh-result-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #dcfce7;
  color: #166534;
  border-radius: 9999px;
  padding: .4rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.kh-result-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #111827;
  margin-bottom: .5rem;
}

.kh-result-header p { color: #6b7280; font-size: .95rem; }

/* Primary recommendation card */
.kh-primary-card {
  background: linear-gradient(135deg, #fff 0%, #eff6ff 100%);
  border: 2px solid #bfdbfe;
  border-radius: 1.5rem;
  box-shadow: 0 8px 40px rgba(37,99,235,.12);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.kh-primary-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .kh-primary-inner { grid-template-columns: 1fr 1fr; }
}

.kh-primary-img {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 280px;
}

.kh-primary-img img {
  max-height: 240px;
  max-width: 100%;
  object-fit: contain;
}

.kh-primary-info {
  padding: 2rem 2rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.kh-top-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: #f97316;
  color: #fff;
  border-radius: 9999px;
  padding: .3rem .8rem;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
  width: fit-content;
}

.kh-primary-brand {
  font-size: .72rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}

.kh-primary-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 1rem;
}

/* "Waarom dit product?" box */
.kh-reasons-box {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: .75rem;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.kh-reasons-label {
  font-size: .7rem;
  font-weight: 700;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.kh-reasons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.kh-reasons-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .83rem;
  color: #374151;
}

.kh-reasons-list li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

.kh-price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  margin-bottom: 1.25rem;
}

.kh-price {
  font-size: 1.9rem;
  font-weight: 800;
  color: #111827;
}

.kh-price-note { font-size: .75rem; color: #9ca3af; }

.kh-cta-row {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

@media (min-width: 400px) {
  .kh-cta-row { flex-direction: row; }
}

.kh-btn-view {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: .75rem;
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 1rem;
  transition: background .15s;
  box-shadow: 0 4px 12px rgba(37,99,235,.3);
  border: none;
  cursor: pointer;
}

.kh-btn-view:hover { background: #1d4ed8; color: #fff; }

.kh-btn-chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: #fff;
  color: #374151;
  text-decoration: none;
  border-radius: .75rem;
  font-size: .9rem;
  font-weight: 700;
  padding: .85rem 1rem;
  border: 2px solid #e5e7eb;
  transition: border-color .15s;
}

.kh-btn-chat:hover { border-color: #22c55e; color: #374151; }
.kh-btn-chat span  { color: #22c55e; }

/* Alternatives section */
.kh-alt-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.kh-alt-title svg, .kh-alt-title .kh-icon { color: #2563eb; }

.kh-alt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 540px) {
  .kh-alt-grid { grid-template-columns: 1fr 1fr; }
}

.kh-alt-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s;
}

.kh-alt-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(37,99,235,.1);
}

.kh-alt-img-wrap {
  width: 5.5rem; height: 5.5rem;
  flex-shrink: 0;
  background: #f9fafb;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  padding: .5rem;
}

.kh-alt-img-wrap img {
  max-height: 100%; max-width: 100%;
  object-fit: contain;
}

.kh-alt-brand {
  font-size: .7rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .2rem;
}

.kh-alt-name {
  font-size: .85rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: .4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kh-alt-card:hover .kh-alt-name { color: #2563eb; }

.kh-alt-reason {
  font-size: .73rem;
  color: #6b7280;
  margin-bottom: .4rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kh-alt-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
}

/* Restart */
.kh-restart {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.kh-restart button {
  background: none;
  border: none;
  color: #2563eb;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: color .15s;
}

.kh-restart button:hover { color: #1e3a8a; }

/* No-result fallback */
.kh-no-result {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 3rem;
  text-align: center;
}

.kh-no-result p { color: #6b7280; margin-bottom: 1.5rem; }

/* Features count note */
.kh-features-note {
  text-align: center;
  font-size: .78rem;
  color: #9ca3af;
  margin-top: 1.5rem;
}

/* =========================================================
   FINDER HOME  (compact 3-step embedded widget)
   ========================================================= */

#humitec-finder .fh-widget {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

#humitec-finder .fh-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

#humitec-finder .fh-dot {
  border-radius: 9999px;
  height: .5rem;
  background: rgba(255,255,255,.25);
  width: .5rem;
  transition: width .3s, background .3s;
}

#humitec-finder .fh-dot.active {
  background: #06b6d4;
  width: 1.5rem;
}

#humitec-finder h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

#humitec-finder .fh-back-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

#humitec-finder .fh-back-btn {
  background: none;
  border: none;
  color: #bfdbfe;
  font-size: .82rem;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
}

#humitec-finder .fh-back-btn:hover { color: #fff; }

#humitec-finder .fh-context {
  font-size: .82rem;
  color: #93c5fd;
  margin-bottom: 1rem;
}

#humitec-finder .fh-context strong { color: #fff; }

/* Step 1: room pills */
#humitec-finder .fh-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

#humitec-finder .fh-pill {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: .4rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, color .15s, border-color .15s;
}

#humitec-finder .fh-pill:hover {
  background: #06b6d4;
  color: #0f172a;
  border-color: #06b6d4;
}

/* Step 2: problem cards */
#humitec-finder .fh-problems {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: .75rem;
}

#humitec-finder .fh-problem-btn {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  padding: 1rem .75rem;
  border-radius: .75rem;
  cursor: pointer;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  transition: background .15s;
}

#humitec-finder .fh-problem-btn:hover { background: rgba(255,255,255,.28); }

#humitec-finder .fh-problem-icon { font-size: 1.4rem; display: block; margin-bottom: .35rem; }

/* Step 3: product cards */
#humitec-finder .fh-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
}

#humitec-finder .fh-product-card {
  background: #fff;
  border-radius: .75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

#humitec-finder .fh-product-img {
  height: 8rem;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
}

#humitec-finder .fh-product-img img {
  max-height: 100%; max-width: 100%;
  object-fit: contain;
}

#humitec-finder .fh-product-body {
  padding: .75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#humitec-finder .fh-product-brand {
  font-size: .65rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  margin-bottom: .15rem;
}

#humitec-finder .fh-product-name {
  font-size: .78rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: .35rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#humitec-finder .fh-product-coverage {
  font-size: .68rem;
  color: #6b7280;
  margin-bottom: .35rem;
}

#humitec-finder .fh-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#humitec-finder .fh-product-price {
  font-size: .9rem;
  font-weight: 800;
  color: #111827;
}

#humitec-finder .fh-bekijk-btn {
  font-size: .7rem;
  font-weight: 700;
  background: #f97316;
  color: #fff;
  text-decoration: none;
  border-radius: .4rem;
  padding: .3rem .6rem;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  transition: background .15s;
}

#humitec-finder .fh-bekijk-btn:hover { background: #ea6c08; }

#humitec-finder .fh-empty {
  background: rgba(255,255,255,.12);
  border-radius: .75rem;
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  font-size: .9rem;
}

#humitec-finder .fh-empty a {
  display: inline-block;
  margin-top: .75rem;
  background: #06b6d4;
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
  padding: .5rem 1.25rem;
  border-radius: .6rem;
}

/* Utility */
.kh-hidden { display: none !important; }
