:root {
  --dh-orange: #ea580c;
  --dh-orange-dark: #c2410c;
  --dh-ink: #0f172a;
  --dh-nav: #1e293b;
  --dh-muted: #475569;
  --dh-line: #e2e8f0;
  --dh-soft: #f8fafc;
  --dh-navbg: #f3f6f9;
  --dh-search: #f7f9fb;
  --dh-white: #fff;
  --dh-max: 1280px;
  --dh-navy: #17324a;
  --dh-font: Manrope, ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--dh-font);
  color: var(--dh-ink);
  background: var(--dh-white);
  line-height: 1.5;
  letter-spacing: -0.011em;
}

img { max-width: 100%; height: auto; }
a { color: var(--dh-orange); text-decoration: none; }
a:hover { text-decoration: underline; }

.dh-skip { position: absolute; left: -999px; top: 0; }
.dh-skip:focus { left: 12px; background: #fff; padding: 8px; z-index: 20; }

.dh-wrap {
  width: min(100% - 40px, var(--dh-max));
  margin-inline: auto;
}

.dh-topbar {
  background: var(--dh-navbg);
  color: var(--dh-muted);
  font-size: 13px;
}
.dh-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 0;
}
.dh-topbar__advice {
  display: none;
  margin: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dh-muted);
}
.dh-topbar__advice a {
  color: var(--dh-ink);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}
.dh-topbar__advice svg { flex: none; color: var(--dh-orange); }
.dh-topbar__desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin: 0;
  font-weight: 600;
  font-size: 12px;
}
.dh-topbar__desktop a { color: var(--dh-muted); }
.dh-topbar__desktop a:hover { color: var(--dh-orange); }

.dh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
}

.dh-header-main { background: #fff; }
.dh-header-main__inner {
  display: grid;
  grid-template-columns: auto minmax(280px, 640px) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  justify-content: space-between;
}

.dh-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dh-header-keur {
  display: flex;
  align-items: center;
  flex: none;
  line-height: 0;
}
.dh-header-keur iframe {
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
  border: 0;
  width: 188px;
  height: 36px;
  overflow: hidden;
  background: transparent;
}
.dh-header-center {
  width: 100%;
  min-width: 0;
}

.dh-header .dh-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.dh-header .dh-logo img,
.dh-header .dh-logo__img,
body.woocommerce .dh-header .dh-logo img,
body.woocommerce-page .dh-header .dh-logo img,
body.woocommerce .dh-header .dh-logo__img,
body.woocommerce-page .dh-header .dh-logo__img {
  height: 44px !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 44px !important;
  display: block;
}

.dh-search {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}
.dh-search input {
  width: 100%;
  height: 48px;
  border: 1px solid #dce3eb;
  border-radius: 999px;
  background: var(--dh-search);
  padding: 11px 50px 11px 17px;
  font: 500 15px var(--dh-font);
  color: var(--dh-ink);
  outline: none;
}
.dh-search input:focus { border-color: var(--dh-orange); background: #fff; }
.dh-search button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--dh-orange);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.dh-search button:hover { background: var(--dh-orange-dark); }

.dh-search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 80;
  background: #fff;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  max-height: min(70vh, 420px);
  overflow-y: auto;
}
.dh-search-suggest[hidden] { display: none !important; }
.dh-search-suggest__item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  color: var(--dh-ink);
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
}
.dh-search-suggest__item:last-child { border-bottom: 0; }
.dh-search-suggest__item:hover,
.dh-search-suggest__item.is-active {
  background: #fff7ed;
  color: var(--dh-ink);
  text-decoration: none;
}
.dh-search-suggest__thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  background: #f8fafc;
  border: 1px solid #eef2f7;
}
.dh-search-suggest__body { min-width: 0; }
.dh-search-suggest__title {
  margin: 0;
  font: 650 14px/1.35 var(--dh-font);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dh-search-suggest__sku {
  margin: 2px 0 0;
  font: 500 12px/1.3 var(--dh-font);
  color: #64748b;
}
.dh-search-suggest__price {
  margin: 0;
  font: 700 13px/1.2 var(--dh-font);
  color: var(--dh-ink);
  white-space: nowrap;
}
.dh-search-suggest__empty,
.dh-search-suggest__more {
  display: block;
  padding: 14px 16px;
  font: 600 14px/1.3 var(--dh-font);
  color: #475569;
  text-decoration: none;
}
.dh-search-suggest__more {
  color: var(--dh-orange);
  background: #fffaf5;
}
.dh-search-suggest__more:hover {
  background: #fff7ed;
  color: var(--dh-orange-dark);
  text-decoration: none;
}
.dh-search-suggest__more.is-active { background: #fff7ed; }

.dh-actions { display: flex; align-items: center; gap: 8px; justify-self: end; }
.dh-icon-link {
  color: #334155;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--dh-line);
  background: #fff;
}
.dh-icon-link:hover { color: var(--dh-orange); text-decoration: none; border-color: #cbd5e1; }

.dh-cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 5px 12px 5px 5px;
  border: 1px solid var(--dh-line);
  border-radius: 999px;
  color: var(--dh-ink);
  text-decoration: none;
  background: #fff;
}
.dh-cart-btn:hover { text-decoration: none; border-color: #cbd5e1; }
.dh-cart-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
}
.dh-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: var(--dh-orange);
  color: #fff;
  border-radius: 99px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dh-cart-count[hidden] { display: none; }
.dh-cart-total { font-weight: 800; font-size: 14px; white-space: nowrap; }

.dh-btn {
  background: var(--dh-orange);
  color: #fff;
  border: 0;
  padding: 10px 19px;
  font: 700 13px/1.5 var(--dh-font);
  cursor: pointer;
  display: inline-block;
  border-radius: 7px;
  letter-spacing: -0.01em;
}
.dh-btn:hover { background: var(--dh-orange-dark); text-decoration: none; color: #fff; }
.dh-btn-soft { background: var(--dh-orange); }

.dh-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--dh-line);
  border-radius: 10px;
  color: #334155;
  cursor: pointer;
  flex: none;
}
.dh-burger:hover { border-color: #cbd5e1; color: var(--dh-ink); }
.dh-burger svg { display: block; }

.dh-nav-bar {
  background: var(--dh-navbg);
  position: relative;
  z-index: 45;
  transform: translateY(0);
}
.dh-nav-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-height: 48px;
}
.dh-nav-list > li {
  display: flex;
  align-items: stretch;
}
.dh-nav-list a,
.dh-nav-btn,
.dh-nav-link {
  color: var(--dh-nav);
  font: 700 14.4px/1.25 var(--dh-font);
  background: none;
  border: 0;
  padding: 0 11px;
  cursor: pointer;
  font-family: inherit;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dh-nav-bar .dh-nav-list > li:first-child > .dh-nav-btn,
.dh-nav-bar .dh-nav-list > li:first-child > .dh-nav-link {
  padding-left: 0;
}
.dh-nav-btn:hover,
.dh-nav-link:hover,
.has-mega.is-open > .dh-nav-btn,
.dh-nav-btn[aria-expanded="true"] {
  color: var(--dh-orange);
  text-decoration: none;
}
.dh-chevron { display: block; }

.dh-mega {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--dh-line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
  padding: 24px 0 28px;
}
.dh-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}
.has-mega.is-open > .dh-mega,
.has-mega:focus-within > .dh-mega,
.dh-nav-btn[aria-expanded="true"] + .dh-mega { display: block; }

.dh-mega-backdrop {
  display: none;
}

@media (min-width: 901px) {
  .dh-mega-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(15, 23, 42, .55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
  }
  body.dh-mega-open .dh-mega-backdrop,
  body:has(.dh-nav-bar .has-mega.is-open) .dh-mega-backdrop,
  body:has(.dh-nav-bar .has-mega:focus-within) .dh-mega-backdrop {
    opacity: 1;
    visibility: visible;
  }
  .dh-nav-bar .has-mega.is-open > .dh-mega,
  .dh-nav-bar .has-mega:focus-within > .dh-mega {
    box-shadow: 0 24px 48px rgba(15, 23, 42, .18);
  }
}
.dh-mega-grid {
  display: grid;
  grid-template-columns: 240px 1fr 260px;
  gap: 28px;
}
.dh-mega-kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 800;
}
.dh-mega-list { list-style: none; margin: 0; padding: 0; }
.dh-mega-list a {
  display: block;
  padding: 6px 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--dh-ink);
  border-radius: 0;
}
.dh-mega-list a:hover { color: var(--dh-orange); text-decoration: none; }
.dh-mega-all {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  color: var(--dh-orange);
}
.dh-mega-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.dh-mega-card {
  border: 1px solid var(--dh-line);
  border-radius: 10px;
  padding: 10px;
  color: var(--dh-ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dh-mega-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: none;
}
.dh-mega-card span span { display: block; color: #64748b; font-size: 13px; font-weight: 500; }
.dh-mega-card:hover { border-color: var(--dh-orange); text-decoration: none; }
.dh-mega-featured {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--dh-navy);
  color: #fff;
  border-radius: 12px;
  padding: 18px;
  min-height: 220px;
}
.dh-mega-featured:hover { text-decoration: none; color: #fff; }
.dh-mega-featured img {
  width: 100%;
  height: 110px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.dh-mega-featured .dh-mega-kicker {
  color: #fff;
  background: #ed6f1e;
  display: inline-block;
  width: fit-content;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 11px;
}
.dh-mega-featured strong { font-size: 20px; }
.dh-mega-featured span { color: #d7e0e8; font-size: 14px; }
.dh-mega-featured em {
  margin-top: auto;
  font-style: normal;
  background: #ed6f1e;
  color: #fff;
  display: inline-block;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
}
.dh-mega-help {
  display: block;
  margin-top: 10px;
  background: #fff7ed;
  color: var(--dh-orange);
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 700;
}
.dh-mega-help:hover { text-decoration: none; }
.dh-mega-help--soft {
  background: #fff;
  border: 1px solid var(--dh-line);
  color: var(--dh-ink);
}
.dh-mega-help--soft:hover { border-color: var(--dh-orange); color: var(--dh-orange); }

.dh-mega-grid--panels {
  grid-template-columns: minmax(340px, 1.15fr) minmax(280px, .95fr) 270px;
  gap: 24px 28px;
  align-items: start;
}
.dh-mega--panels { padding: 22px 0 26px; }
.dh-mega-sols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.dh-mega--panels a.dh-mega-sol {
  display: grid;
  grid-template-columns: 92px 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 10px;
  row-gap: 3px;
  align-items: start;
  padding: 8px;
  border: 1px solid var(--dh-line);
  border-radius: 14px;
  background: #fff;
  color: var(--dh-ink);
  min-height: 108px;
}
.dh-mega--panels a.dh-mega-sol:hover { border-color: var(--dh-orange); text-decoration: none; }
.dh-mega--panels .dh-mega-sol__img {
  grid-row: 1 / -1;
  flex: none;
  width: 92px;
  min-width: 92px;
  height: 92px;
  border-radius: 10px;
  background: #f1ebe3 center / cover no-repeat;
}
.dh-mega-sol__img--contain {
  background-color: #f8fafc;
  background-size: contain;
}
.dh-mega-sol .dh-badge { margin: 0; font-size: 10.5px; padding: 3px 7px; }
.dh-mega-sol strong,
.dh-mega-sol p { margin: 0; }
.dh-mega-sol p {
  color: var(--dh-muted);
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 500;
}
.dh-mega-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.dh-mega--panels .dh-mega-chips a {
  display: block;
  padding: 6px 10px;
  border: 1px solid var(--dh-line);
  border-radius: 8px;
  color: var(--dh-ink);
  font-size: 13px;
  font-weight: 600;
  background: #fff;
}
.dh-mega-chips a:hover {
  border-color: var(--dh-orange);
  color: var(--dh-orange);
  text-decoration: none;
}
.dh-mega-cards--2 { grid-template-columns: 1fr 1fr; }
.dh-mega--panels a.dh-mega-spot {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--dh-line);
  background: #fff;
  color: var(--dh-ink);
}
.dh-mega--panels a.dh-mega-spot:hover { border-color: var(--dh-orange); text-decoration: none; color: var(--dh-ink); }
.dh-mega-spot__img {
  display: block;
  flex: none;
  width: 100%;
  height: 118px;
  background: #f1ebe3 center / cover no-repeat;
}
.dh-mega-spot__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px 16px;
}
.dh-mega-spot__body strong {
  font-size: 18px;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.dh-mega-spot__body span:not(.dh-badge) {
  color: var(--dh-muted);
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 500;
}
.dh-mega-spot__body em {
  margin-top: 6px;
  font-style: normal;
  color: var(--dh-orange);
  font-weight: 700;
  font-size: 14px;
}

.dh-menu-drawer {
  display: none;
}

.dh-hero { position: relative; background: #fff; overflow: hidden; }
.dh-hero__split {
  width: min(100%, var(--dh-max));
  margin-inline: auto;
  min-height: 468px;
  display: grid;
  grid-template-columns: minmax(280px, 480px) 1fr;
  align-items: center;
  padding-left: 20px;
}
.dh-hero__copy { position: relative; z-index: 2; padding: 48px 24px 48px 0; max-width: 480px; }
.dh-kicker {
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12.5px;
  color: var(--dh-orange);
  font-weight: 800;
}
.dh-hero h1 {
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--dh-ink);
  margin: 0 0 14px;
  max-width: 11ch;
}
.dh-lead {
  margin: 0;
  font-size: 16.8px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--dh-muted);
  max-width: 36ch;
}
.dh-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.dh-hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  font-size: 15px;
  color: var(--dh-ink);
}
.dh-hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dh-hero-checks li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dh-orange) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M12.2 4.8a1 1 0 0 1 0 1.4l-5 5a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4L6.5 9.1l4.3-4.3a1 1 0 0 1 1.4 0z'/></svg>") center / 12px no-repeat;
  flex: none;
}
.dh-hero__media {
  min-height: 468px;
  background-color: #f1ebe3;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 16%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%);
}

.dh-usp-strip {
  background: var(--dh-soft);
  border-top: 1px solid #eef2f6;
  border-bottom: 1px solid #eef2f6;
}
.dh-usp-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 24px;
  padding: 11px 0;
  font-size: 13.4px;
  font-weight: 600;
  color: #334155;
}
.dh-usp-strip span { display: inline-flex; align-items: center; gap: 8px; }
.dh-usp-strip i {
  font-style: normal;
  width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--dh-orange);
  color: #fff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dh-section { padding: 48px 0; }
.dh-section-alt { background: #f8fafc; }
.dh-section h2,
.dh-section-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.dh-section-head p,
.dh-section-head + p {
  margin: 0 0 24px;
  color: var(--dh-muted);
  max-width: 52rem;
}
.dh-trust { padding-top: 28px; padding-bottom: 8px; }
.dh-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dh-trust-card {
  border: 1px solid var(--dh-line);
  border-radius: 14px;
  padding: 18px 19px;
  background: #fff;
}
.dh-trust-card strong { display: block; margin-bottom: 4px; }
.dh-trust-card p { margin: 0; color: var(--dh-muted); font-size: 14px; }

.dh-montage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dh-montage-card {
  border: 1px solid var(--dh-line);
  border-radius: 15px;
  padding: 22px 20px;
  color: var(--dh-ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  min-height: 210px;
}
.dh-montage-card:hover { border-color: var(--dh-orange); text-decoration: none; }
.dh-badge {
  width: fit-content;
  background: #fff7ed;
  color: var(--dh-orange-dark);
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
}
.dh-montage-card p { margin: 0; color: var(--dh-muted); flex: 1; }
.dh-card-cta { color: var(--dh-orange); font-weight: 700; }

.dh-advice {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}
.dh-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.dh-steps li {
  background: #fff;
  border: 1px solid var(--dh-line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--dh-muted);
}
.dh-steps strong { display: block; color: var(--dh-ink); }

.dh-btn-outline {
  background: transparent;
  color: var(--dh-orange);
  border: 1px solid var(--dh-orange);
}
.dh-btn-outline:hover { background: #fff7ed; color: var(--dh-orange); }
.dh-btn-white {
  background: #fff;
  color: var(--dh-orange);
}
.dh-btn-white:hover { background: #fff7ed; color: var(--dh-orange-dark); }
.dh-btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
}
.dh-btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }

.dh-section-head--row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
}
.dh-section-head--row p { margin: 0; }

.dh-rooms,
.dh-also {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dh-room-card,
.dh-also-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  background: #fff;
  color: var(--dh-ink);
  min-height: 140px;
}
.dh-room-card:hover,
.dh-also-card:hover { border-color: var(--dh-orange); text-decoration: none; }
.dh-room-card p,
.dh-also-card p { margin: 0; color: var(--dh-muted); flex: 1; }
.dh-also-card span { color: var(--dh-orange); font-weight: 700; }

.dh-watt {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  padding: 28px 32px;
}
.dh-watt h2 { margin: 0 0 8px; }
.dh-watt p { margin: 0; color: var(--dh-muted); max-width: 46rem; }

.dh-page { padding: 40px 0 64px; max-width: 800px; }
.dh-shop-wrap { padding: 32px 0 64px; }
.dh-prose h1 { margin-top: 0; }

.dh-footer-cta {
  background: var(--dh-orange);
  color: #fff;
  padding: 40px 0;
}
.dh-footer-cta h2 {
  margin: 6px 0 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.dh-footer-cta p { margin: 0; max-width: 42rem; color: rgba(255,255,255,.92); }
.dh-footer-cta .dh-kicker { color: #ffedd5; }
.dh-footer-cta__inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}
.dh-footer-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }

.dh-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 48px 0 24px;
}
.dh-footer a { color: #fff; }
.dh-footer h2 { color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 12px; }
.dh-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
.dh-footer ul, .dh-footer-list { list-style: none; margin: 0; padding: 0; }
.dh-footer li { margin: 0 0 8px; }
.dh-footer-logo {
  height: 40px !important;
  width: auto !important;
  max-width: 180px !important;
  max-height: 40px !important;
}
.dh-footer-brand p { color: #94a3b8; }
.dh-footer-rating { font-size: 14px; }
.dh-footer-contact {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #1e293b;
  border-radius: 12px;
  background: #111827;
}
.dh-copy { border-top: 1px solid #1e293b; margin-top: 32px; padding-top: 16px; font-size: 13px; color: #94a3b8; }

.dh-shop-wrap { padding: 32px 0 56px; }
.dh-archive-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: end;
  margin-bottom: 24px;
}
.dh-archive-title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  grid-column: 1;
}
.dh-archive-desc {
  grid-column: 1 / -1;
  color: var(--dh-muted);
  font-size: 15px;
  max-width: 72ch;
}
.dh-archive-desc p { margin: 0 0 8px; }
.dh-archive-desc p:last-child { margin: 0; }
.dh-archive-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--dh-muted);
  font-size: 14px;
  grid-column: 2;
  grid-row: 1;
}
.dh-archive-tools .woocommerce-result-count { margin: 0; }
.dh-archive-tools .woocommerce-ordering { margin: 0; }
.dh-archive-tools select {
  height: 40px;
  border: 1px solid var(--dh-line);
  border-radius: 8px;
  padding: 0 12px;
  font: 500 14px var(--dh-font);
  background: #fff;
}
.dh-shop-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.dh-filters-toggle {
  display: none;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--dh-line);
  border-radius: 8px;
  background: #fff;
  color: var(--dh-ink);
  font: 700 13px var(--dh-font);
  cursor: pointer;
}
.dh-filters-toggle:hover { border-color: #cbd5e1; }
.dh-filters {
  position: sticky;
  top: 16px;
}
.dh-filters__panel {
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  background: #fff;
  padding: 18px 16px 8px;
}
.dh-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.dh-filters__head h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.dh-filters__head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dh-filters__clear {
  font-size: 13px;
  font-weight: 700;
  color: var(--dh-orange);
}
.dh-filters__close {
  display: none;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--dh-ink);
  cursor: pointer;
}
.dh-filters__group {
  margin: 0;
  padding: 14px 0;
  border: 0;
  border-top: 1px solid var(--dh-line);
}
.dh-filters__group legend {
  padding: 0;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--dh-ink);
}
.dh-filters__option {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--dh-ink);
  cursor: pointer;
}
.dh-filters__option input {
  width: 16px;
  height: 16px;
  accent-color: var(--dh-orange);
  flex: none;
}
.dh-filters__name { flex: 1; }
.dh-filters__count {
  color: var(--dh-muted);
  font-variant-numeric: tabular-nums;
}
.dh-filters__option.is-empty { color: #94a3b8; }
.dh-filters__apply { display: none; margin: 8px 0 12px; width: 100%; text-align: center; }
body.dh-filters-open { overflow: hidden; }
.woocommerce-products-header img,
.term-description img { display: none !important; }
.woocommerce nav.woocommerce-pagination { margin-top: 32px; }
.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce nav.woocommerce-pagination a,
.woocommerce nav.woocommerce-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--dh-line);
  border-radius: 8px;
  color: var(--dh-ink);
}
.woocommerce nav.woocommerce-pagination .current {
  background: var(--dh-ink);
  color: #fff;
  border-color: var(--dh-ink);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: stretch;
}
.woocommerce ul.products li.product,
.woocommerce ul.products li.dh-product-card {
  display: flex;
  flex-direction: column;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  padding: 0 !important;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  height: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.woocommerce ul.products li.dh-product-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}
.dh-product-card__media {
  display: block;
  background: #f8fafc;
  aspect-ratio: 1;
  padding: 16px;
  overflow: hidden;
}
.dh-product-card__media img,
.woocommerce ul.products li.product img,
body.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  margin: 0 !important;
}
.dh-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
  gap: 8px;
}
.dh-product-card__title {
  margin: 0;
  font-size: 15.2px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.dh-product-card__title a { color: var(--dh-ink); }
.dh-product-card__title a:hover { color: var(--dh-orange); text-decoration: none; }
.dh-product-card__price,
.woocommerce ul.products .price {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--dh-ink);
}
.dh-product-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  height: 40px;
  padding: 0 16px;
  border-radius: 7px;
  background: var(--dh-orange);
  color: #fff !important;
  font: 700 13px var(--dh-font);
  text-decoration: none;
}
.dh-product-card__cart:hover { background: var(--dh-orange-dark); text-decoration: none; color: #fff !important; }
.dh-product-card__cart--ghost {
  background: #fff;
  color: var(--dh-orange) !important;
  border: 1px solid var(--dh-orange);
}
.dh-product-card__cart--ghost:hover { background: #fff7ed; color: var(--dh-orange) !important; }
.dh-product-card__cart.loading { opacity: .65; pointer-events: none; }
.dh-product-card__price .woocommerce-Price-suffix,
.dh-product-card__price .woocommerce-price-suffix,
.woocommerce ul.products .woocommerce-Price-suffix,
.woocommerce ul.products .woocommerce-price-suffix,
.woocommerce ul.products .star-rating,
.woocommerce ul.products .added_to_cart,
.woocommerce ul.products .onsale {
  display: none !important;
}

.dh-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 220;
  visibility: hidden;
  pointer-events: none;
}
.dh-mini-cart.is-open {
  visibility: visible;
  pointer-events: auto;
}
.dh-mini-cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  opacity: 0;
  transition: opacity .2s ease;
}
.dh-mini-cart.is-open .dh-mini-cart__backdrop { opacity: 1; }
.dh-mini-cart__sheet {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 100%);
  background: #fff;
  box-shadow: -8px 0 40px rgba(15, 23, 42, .18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .25s ease;
}
.dh-mini-cart.is-open .dh-mini-cart__sheet { transform: none; }
.dh-mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--dh-line);
}
.dh-mini-cart__header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.dh-mini-cart__close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.dh-mini-cart__close:hover { background: #e2e8f0; color: var(--dh-ink); }
.dh-mini-cart__success {
  margin: 12px 24px 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ecfdf5;
  color: #047857;
  font-size: 14px;
  font-weight: 600;
}
.dh-mini-cart__shipping { padding: 16px 24px 0; }
.dh-mini-cart__shipping-track {
  height: 6px;
  border-radius: 99px;
  background: #e2e8f0;
  overflow: hidden;
}
.dh-mini-cart__shipping-fill {
  height: 100%;
  background: var(--dh-orange);
  border-radius: 99px;
}
.dh-mini-cart__shipping-text {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--dh-muted);
}
.dh-mini-cart__items {
  list-style: none;
  margin: 0;
  padding: 12px 24px;
  overflow: auto;
  flex: 1;
}
.dh-mini-empty {
  color: var(--dh-muted);
  padding: 24px 0;
  text-align: center;
}
.dh-mini-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid var(--dh-line);
}
.dh-mini-item__media {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
  display: block;
}
.dh-mini-item__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}
.dh-mini-item__title {
  display: block;
  color: var(--dh-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.dh-mini-item__title:hover { color: var(--dh-orange); text-decoration: none; }
.dh-mini-item__meta {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--dh-muted);
}
.dh-mini-item__meta .woocommerce-Price-suffix,
.dh-mini-item__meta .woocommerce-price-suffix { display: none; }
.dh-mini-item__remove {
  width: 28px;
  height: 28px;
  border: 0;
  background: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.dh-mini-item__remove:hover { color: var(--dh-ink); }
.dh-mini-cart__footer {
  margin-top: auto;
  padding: 18px 24px 20px;
  background: #fff;
  border-top: 1px solid var(--dh-line);
}
.dh-mini-cart__subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 800;
}
.dh-mini-cart__vat {
  margin: 4px 0 14px;
  text-align: right;
  font-size: 12px;
  font-weight: 650;
  color: #94a3b8;
}
.dh-mini-cart__checkout {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.dh-mini-cart__tocart {
  width: 100%;
  height: 44px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #fff;
  color: var(--dh-orange);
  border: 1px solid var(--dh-orange);
}
.dh-mini-cart__trust {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  color: var(--dh-muted);
  font-size: 13px;
  font-weight: 650;
}
.dh-mini-cart__trust li {
  position: relative;
  padding-left: 16px;
}
.dh-mini-cart__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
}
.dh-mini-cart__continue {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  color: #64748b;
  font: 600 14px var(--dh-font);
  padding: 12px 0 2px;
  cursor: pointer;
}
.dh-mini-cart__continue:hover { color: var(--dh-ink); }

.single-product .dh-shop-wrap { padding-top: 16px; }
.dh-pdp-bc {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--dh-muted);
  margin: 0 0 12px;
}
.dh-pdp-bc a { color: var(--dh-muted); }
.dh-pdp-bc a:hover { color: var(--dh-orange); }
.dh-pdp-bc__sep { color: #cbd5e1; }
.dh-pdp-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: start;
}
.dh-pdp-gallery {
  background: var(--dh-soft);
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  padding: 18px;
}
.dh-pdp-gallery .woocommerce-product-gallery {
  width: 100% !important;
  float: none !important;
  opacity: 1 !important;
}
.dh-pdp-gallery .woocommerce-product-gallery__image img,
.dh-pdp-gallery .wp-post-image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
}
.dh-pdp-gallery .flex-control-thumbs,
.dh-pdp-gallery .flex-control-nav {
  display: flex;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.dh-pdp-gallery .flex-control-thumbs li { width: 72px; }
.dh-pdp-gallery .flex-control-thumbs img {
  border: 1px solid var(--dh-line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.dh-pdp-title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.dh-pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dh-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
}
.dh-pdp-rating:hover { color: var(--dh-orange); text-decoration: none; }
.dh-pdp-rating span { color: var(--dh-muted); font-weight: 600; }
.dh-stars { display: inline-flex; gap: 2px; }
.dh-star { fill: #e2e8f0; }
.dh-star.is-on { fill: var(--dh-orange); }
.dh-pdp-price {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--dh-ink);
}
.dh-pdp-price del {
  color: #94a3b8;
  font-size: 18px;
  font-weight: 600;
  margin-right: 8px;
}
.dh-pdp-price .woocommerce-Price-suffix,
.dh-pdp-price .woocommerce-price-suffix {
  display: none;
}
.dh-pdp-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dh-muted);
  line-height: 1.4;
}
.dh-pdp-meta span:not(:last-child)::after {
  content: "·";
  margin: 0 8px;
  color: #cbd5e1;
  font-weight: 700;
}
.dh-pdp-stock { color: #15803d; }
.dh-pdp-stock::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  border-radius: 50%;
  background: #22c55e;
}
.dh-pdp-stock.is-out { color: #b45309; }
.dh-pdp-stock.is-out::before { background: #f59e0b; }
.dh-pdp-buy form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
}
.dh-pdp-buy .stock { display: none; }
.dh-pdp-buy form.cart .variations,
.dh-pdp-buy form.cart .woocommerce-variation,
.dh-pdp-buy form.cart .single_variation_wrap {
  flex: 1 1 100%;
}
.dh-pdp-buy .quantity input {
  width: 72px;
  height: 52px;
  border: 1px solid var(--dh-line);
  border-radius: 8px;
  text-align: center;
  font: 700 16px var(--dh-font);
}
.dh-pdp-buy .single_add_to_cart_button,
.single_add_to_cart_button {
  background: var(--dh-orange) !important;
  color: #fff !important;
  border: 0 !important;
  height: 52px;
  padding: 0 28px;
  border-radius: 8px;
  font: 800 16px var(--dh-font) !important;
  cursor: pointer;
  flex: 1 1 200px;
}
.dh-pdp-buy .single_add_to_cart_button:hover { background: var(--dh-orange-dark) !important; }
.dh-pdp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--dh-muted);
}
.dh-pdp-trust li {
  position: relative;
  padding-left: 18px;
}
.dh-pdp-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dcfce7;
  box-shadow: inset 0 0 0 3px #16a34a;
}
.dh-pdp-pay {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.dh-pdp-pay li { line-height: 0; }
.dh-pdp-pay img {
  display: block;
  width: 54px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, .1);
}
.dh-pdp-bar {
  display: none;
}
.dh-pdp-oos {
  background: var(--dh-soft);
  border: 1px solid var(--dh-line);
  border-radius: 12px;
  padding: 16px 18px;
}
.dh-pdp-oos strong { display: block; margin-bottom: 4px; }
.dh-pdp-oos p { margin: 0 0 12px; color: var(--dh-muted); }

.dh-reviews {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  margin: 40px 0 8px;
  padding: 28px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 16px;
}
.dh-reviews__score { text-align: center; }
.dh-reviews__kicker {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dh-orange);
}
.dh-reviews__num {
  margin: 0;
  font-size: 72px;
  line-height: .9;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--dh-ink);
}
.dh-reviews__score .dh-stars { justify-content: center; margin: 10px 0; }
.dh-reviews__score .dh-star { width: 22px; height: 22px; }
.dh-reviews__meta {
  margin: 0 0 16px;
  color: var(--dh-muted);
  font-weight: 600;
  font-size: 14px;
}
.dh-reviews__list h2 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.dh-reviews__empty { margin: 0; color: var(--dh-muted); }
.dh-review {
  background: #fff;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.dh-review header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.dh-review time { color: #94a3b8; font-size: 13px; }
.dh-review p { margin: 0; }

.dh-pdp-tabs { margin: 36px 0 28px; }
.dh-pdp-tabs__nav {
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--dh-line);
  margin-bottom: 20px;
}
.dh-pdp-tabs__nav button {
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 10px 14px;
  font: 800 15px var(--dh-font);
  color: var(--dh-muted);
  cursor: pointer;
  margin-bottom: -1px;
}
.dh-pdp-tabs__nav button[aria-selected="true"] {
  color: var(--dh-ink);
  border-bottom-color: var(--dh-orange);
}
.dh-spec-table { width: 100%; border-collapse: collapse; }
.dh-spec-table th,
.dh-spec-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--dh-line);
}
.dh-spec-table th { width: 38%; color: var(--dh-muted); font-weight: 600; }

.dh-review-form {
  margin: 12px 0 40px;
  padding: 22px;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  background: #fff;
}
.dh-review-form h2 { margin: 0 0 8px; }
.dh-review-form .comment-form-comment label,
.dh-review-form .comment-form-author label,
.dh-review-form .comment-form-email label { display: block; font-weight: 700; margin-bottom: 6px; }
.dh-review-form textarea,
.dh-review-form input[type="text"],
.dh-review-form input[type="email"] {
  width: 100%;
  border: 1px solid var(--dh-line);
  border-radius: 8px;
  padding: 10px 12px;
  font: 500 15px var(--dh-font);
}
.dh-carousel { margin: 8px 0 24px; }
.dh-carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.dh-carousel__head h2,
.woocommerce .related.dh-carousel > h2,
.woocommerce .dh-carousel__head h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.03em;
}
.dh-carousel__nav { display: flex; gap: 8px; }
.dh-carousel.is-static .dh-carousel__nav { visibility: hidden; }
.dh-carousel__btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--dh-line);
  border-radius: 10px;
  background: #fff;
  color: var(--dh-ink);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.dh-carousel__btn:hover { border-color: #cbd5e1; }
.dh-carousel__btn:disabled { opacity: .35; cursor: default; }
.dh-carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
}
.dh-carousel__viewport::-webkit-scrollbar { display: none; }
.woocommerce ul.products.dh-carousel__track,
.dh-carousel__track {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 16px;
}
.woocommerce ul.products.dh-carousel__track > li {
  flex: 0 0 calc((100% - 48px) / 4);
  width: calc((100% - 48px) / 4) !important;
  scroll-snap-align: start;
  min-width: 0;
}

.widget_shopping_cart,
.wc-block-mini-cart,
.wp-block-woocommerce-mini-cart,
.xoo-wsc-modal,
.wd-side-hidden,
.cart-widget-side,
#webwinkelkeur-sidebar,
.wwk-sidebar,
.wwk-sidebar--top {
  display: none !important;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

@media (max-width: 1100px) {
  .dh-montage, .dh-trust-grid, .dh-rooms, .dh-also, .dh-bath-sols, .dh-bath-watts { grid-template-columns: 1fr 1fr; }
  .dh-mega-grid { grid-template-columns: 1fr 1fr; }
  .dh-mega-grid--panels { grid-template-columns: 1fr 1fr; }
  .dh-mega-aside { grid-column: 1 / -1; }
  .dh-mega--panels .dh-mega-aside {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 10px;
    align-items: stretch;
  }
  .dh-mega--panels .dh-mega-spot,
  .dh-mega--panels .dh-mega-help { margin-top: 0; }
  .dh-footer-cta__inner, .dh-watt, .dh-section-head--row { flex-direction: column; align-items: flex-start; }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products.dh-carousel__track > li {
    flex-basis: calc((100% - 32px) / 3);
    width: calc((100% - 32px) / 3) !important;
  }
}

@media (max-width: 900px) {
  .dh-filters-toggle { display: inline-flex; align-items: center; }
  .dh-shop-layout { display: block; }
  .dh-filters {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    top: 0;
  }
  .dh-filters.is-open { display: block; }
  .dh-filters::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .72);
  }
  .dh-filters__panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(92vw, 380px);
    overflow: auto;
    border-radius: 0;
    border: 0;
    padding: 18px 16px 28px;
    box-shadow: 8px 0 40px rgba(15, 23, 42, .22);
  }
  .dh-filters__close { display: grid; place-items: center; }
  .dh-filters__apply { display: block; }

  .dh-topbar__advice { display: inline-flex; }
  .dh-topbar__desktop { display: none; }
  .dh-topbar__inner { padding: 7px 0; min-height: 38px; }

  .dh-burger { display: flex; }
  .dh-header-main__inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 0;
    padding: 11px 0;
  }
  .dh-header-left { gap: 10px; min-width: 0; }
  .dh-header-keur { display: none; }
  .dh-header-center {
    grid-column: 1 / -1;
    order: 3;
  }
  .dh-actions { gap: 8px; }
  .dh-cart-btn {
    height: 42px;
    padding: 0;
    width: 42px;
    justify-content: center;
  }
  .dh-cart-icon { width: 40px; height: 40px; }
  .dh-cart-total { display: none; }
  .dh-header .dh-logo img,
  .dh-header .dh-logo__img,
  body.woocommerce .dh-header .dh-logo img,
  body.woocommerce-page .dh-header .dh-logo img {
    height: 36px !important;
    max-height: 36px !important;
    max-width: 140px !important;
  }

  .dh-nav-bar { display: none; }

  .dh-menu-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 210;
    visibility: hidden;
    pointer-events: none;
  }
  .dh-menu-drawer.is-open {
    visibility: visible;
    pointer-events: auto;
  }
  .dh-menu-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .72);
    opacity: 0;
    transition: opacity .25s ease;
  }
  .dh-menu-drawer.is-open .dh-menu-drawer__backdrop { opacity: 1; }
  .dh-menu-drawer__panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 90%;
    max-width: 90vw;
    background: #fff;
    box-shadow: 8px 0 40px rgba(15, 23, 42, .22);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.22, 1, .36, 1);
    overflow: hidden;
  }
  .dh-menu-drawer.is-open .dh-menu-drawer__panel { transform: none; }
  .dh-menu-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--dh-line);
    flex: none;
  }
  .dh-menu-drawer__title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dh-ink);
  }
  .dh-menu-drawer__close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: var(--dh-soft);
    color: #475569;
    cursor: pointer;
    display: grid;
    place-items: center;
  }
  .dh-menu-drawer__close:hover { background: #e2e8f0; color: var(--dh-ink); }
  .dh-menu-drawer__nav {
    overflow-y: auto;
    overscroll-behavior: contain;
    flex: 1;
    -webkit-overflow-scrolling: touch;
  }
  .dh-menu-drawer .dh-nav-list {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
  }
  .dh-menu-drawer .dh-nav-list > li {
    display: block;
    border-bottom: 1px solid var(--dh-line);
  }
  .dh-menu-drawer .dh-nav-btn,
  .dh-menu-drawer .dh-nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 16px 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--dh-ink);
    text-align: left;
  }
  .dh-menu-drawer .dh-nav-link:hover,
  .dh-menu-drawer .dh-nav-btn:hover,
  .dh-menu-drawer .has-mega.is-open > .dh-nav-btn {
    color: var(--dh-orange);
    text-decoration: none;
  }
  .dh-menu-drawer .dh-chevron {
    flex: none;
    transition: transform .2s ease;
  }
  .dh-menu-drawer .has-mega.is-open > .dh-nav-btn .dh-chevron {
    transform: rotate(180deg);
  }
  .dh-menu-drawer .dh-mega {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 12px;
    background: var(--dh-soft);
  }
  .dh-menu-drawer .has-mega.is-open > .dh-mega,
  .dh-menu-drawer .dh-nav-btn[aria-expanded="true"] + .dh-mega {
    display: block;
  }
  .dh-menu-drawer .dh-mega-grid {
    width: 100%;
    display: block;
    padding: 0 18px 8px;
  }
  .dh-menu-drawer .dh-mega-series,
  .dh-menu-drawer .dh-mega-aside { display: none; }
  .dh-menu-drawer .dh-mega--panels .dh-mega-sols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .dh-menu-drawer .dh-mega--panels .dh-mega-sol {
    min-height: 0;
    padding: 8px;
  }
  .dh-menu-drawer .dh-mega--panels .dh-mega-sol__img {
    width: 64px;
    height: 64px;
  }
  .dh-menu-drawer .dh-mega--panels .dh-mega-sol p { display: none; }
  .dh-menu-drawer .dh-mega--panels .dh-mega-aside { display: block; }
  .dh-menu-drawer .dh-mega--panels .dh-mega-spot { display: none; }
  .dh-menu-drawer .dh-mega--panels .dh-mega-help { display: block; }
  .dh-menu-drawer .dh-mega-kicker { margin: 4px 0 8px; }
  .dh-menu-drawer .dh-mega-list a {
    padding: 8px 0;
    font-size: 15px;
  }
  .dh-menu-drawer .dh-mega-all { margin-top: 6px; }
  .dh-menu-drawer .dh-mega-help {
    margin: 12px 0 4px;
  }

  .dh-mega-grid, .dh-mega-cards, .dh-advice, .dh-hero__split,
  .woocommerce div.product, .dh-footer-grid, .dh-rooms, .dh-also,
  .dh-pdp-hero, .dh-reviews {
    grid-template-columns: 1fr;
  }
  .dh-pdp-title { font-size: 22px; }
  .dh-pdp-bar.is-visible {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    align-items: center;
    gap: 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid var(--dh-line);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, .08);
  }
  .dh-pdp-bar__price {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
  }
  .dh-pdp-bar__price del { display: none; }
  .dh-pdp-bar__price .woocommerce-Price-suffix,
  .dh-pdp-bar__price .woocommerce-price-suffix { display: none; }
  .dh-pdp-bar__btn {
    flex: 1;
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--dh-orange);
    color: #fff;
    font: 800 15px var(--dh-font);
    cursor: pointer;
  }
  .dh-pdp-bar__btn:hover { background: var(--dh-orange-dark); }
  body.has-pdp-bar { padding-bottom: 76px; }
  .dh-reviews { padding: 20px; }
  .dh-reviews__num { font-size: 56px; }

  .dh-hero { padding: 0 0 28px; }
  .dh-hero__split {
    padding-left: 0;
    min-height: 0;
    gap: 0;
  }
  .dh-hero__media {
    order: -1;
    min-height: 256px;
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
    background-position: center;
  }
  .dh-hero__copy {
    padding: 22px 16px 0;
    max-width: none;
  }
  .dh-hero h1 {
    max-width: 11ch;
    font-size: 32px;
    line-height: 1.1;
  }
  .dh-kicker { margin-bottom: 12px; }
  .dh-lead { margin-top: 16px; }
  .dh-hero-actions { margin-top: 24px; }
  .dh-hero-checks { margin-top: 22px; }
  .dh-page { max-width: none; }
  .dh-archive-head { grid-template-columns: 1fr; }
  .dh-archive-tools { grid-column: 1; grid-row: auto; }
  .dh-wrap { width: min(100% - 32px, var(--dh-max)); }
  .woocommerce ul.products.dh-carousel__track > li {
    flex-basis: calc((100% - 16px) / 2);
    width: calc((100% - 16px) / 2) !important;
  }
}

@media (max-width: 560px) {
  .dh-montage, .dh-trust-grid, .dh-rooms, .dh-also { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: 1fr; }
  .woocommerce ul.products.dh-carousel__track > li {
    flex-basis: 78%;
    width: 78% !important;
  }
  .dh-search input { height: 48px; font-size: 14.8px; }
  .dh-archive-title { font-size: 26px; }
}

.dh-hero--bath .dh-hero__copy { padding-top: 28px; }
.dh-bath-bc { padding: 0; margin: 0 0 18px; }
.dh-hero--bath h1 { max-width: 13em; }
.dh-hero__media--bath {
  position: relative;
  background-position: center;
}
.dh-bath-float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  width: min(300px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .16);
  border: 1px solid var(--dh-line);
}
.dh-bath-float span {
  display: block;
  margin-bottom: 4px;
  color: var(--dh-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.dh-bath-float strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
  color: var(--dh-ink);
}
.dh-bath-sols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dh-bath-sol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 18px;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  background: #fff;
  color: var(--dh-ink);
  overflow: hidden;
  min-height: 100%;
}
.dh-bath-sol:hover { border-color: var(--dh-orange); text-decoration: none; }
.dh-bath-sol__img {
  display: block;
  aspect-ratio: 4 / 3;
  background: #f1ebe3 center / cover no-repeat;
}
.dh-bath-sol__img--contain {
  background-color: #f8fafc;
  background-size: contain;
}
.dh-bath-sol .dh-badge { margin: 14px 18px 0; }
.dh-bath-sol strong,
.dh-bath-sol p,
.dh-bath-sol .dh-card-cta { margin-left: 18px; margin-right: 18px; }
.dh-bath-sol p { margin-top: 0; color: var(--dh-muted); flex: 1; }
.dh-bath-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  background: #fff;
}
.dh-bath-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.dh-bath-table th,
.dh-bath-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  font-size: 14.5px;
  line-height: 1.5;
  border-bottom: 1px solid var(--dh-line);
}
.dh-bath-table thead th {
  background: #fff7ed;
  color: var(--dh-ink);
  font-weight: 800;
}
.dh-bath-table tbody th {
  width: 22%;
  color: var(--dh-ink);
  font-weight: 800;
}
.dh-bath-table tr:last-child th,
.dh-bath-table tr:last-child td { border-bottom: 0; }
.dh-bath-watts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.dh-bath-watts div {
  background: #fff;
  border: 1px solid var(--dh-line);
  border-radius: 14px;
  padding: 18px 16px;
}
.dh-bath-watts strong {
  display: block;
  font-size: 13px;
  color: var(--dh-orange);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dh-bath-watts span {
  display: block;
  margin: 6px 0 4px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.03em;
}
.dh-bath-watts p { margin: 0; color: var(--dh-muted); font-size: 14px; }
.dh-section-alt .dh-watt { border-color: #e2e8f0; }
.dh-bath-faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
}
.dh-bath-faq p { color: var(--dh-muted); max-width: 42rem; }
.dh-bath-faq__list { display: grid; gap: 10px; }
.dh-bath-faq__item {
  border: 1px solid var(--dh-line);
  border-radius: 14px;
  background: #fff;
}
.dh-bath-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 800;
  color: var(--dh-ink);
}
.dh-bath-faq__item summary::-webkit-details-marker { display: none; }
.dh-bath-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--dh-orange);
  font-size: 20px;
  line-height: 1;
}
.dh-bath-faq__item[open] summary::after { content: "−"; }
.dh-bath-faq__item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--dh-muted);
  font-size: 15px;
  line-height: 1.65;
}
.dh-bath-cta {
  background: var(--dh-orange);
  color: #fff;
  padding: 48px 0;
}
.dh-bath-cta h2 {
  margin: 6px 0 10px;
  font-size: 30px;
  letter-spacing: -.03em;
  color: #fff;
}
.dh-bath-cta p { margin: 0; max-width: 42rem; color: rgba(255,255,255,.92); }
.dh-bath-cta .dh-kicker { color: #ffedd5; }
.dh-landing-bath .dh-main { overflow-x: clip; }
.dh-bath-products ul.products {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.dh-bath-products ul.products li.dh-product-card {
  border-radius: 14px;
}
.dh-bath-products .dh-product-card__media {
  padding: 10px 12px 0;
  background: #fff;
}
.dh-bath-products .dh-product-card__body {
  padding: 10px 14px 14px;
  gap: 6px;
}
.dh-bath-products .dh-product-card__title {
  font-size: 13.4px;
  line-height: 1.35;
  min-height: 2.7em;
}
.dh-bath-products .dh-product-card__price {
  font-size: 14px;
}
.dh-bath-products .dh-product-card__cart {
  height: 36px;
  font-size: 12.5px;
}

@media (max-width: 900px) {
  .dh-bath-sols,
  .dh-bath-watts,
  .dh-bath-faq { grid-template-columns: 1fr 1fr; }
  .dh-hero--bath h1 { max-width: none; }
  .dh-bath-float { left: 16px; bottom: 16px; }
  .dh-bath-products ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dh-bath-sols,
  .dh-bath-watts,
  .dh-bath-faq { grid-template-columns: 1fr; }
}

body.woocommerce-checkout.dh-checkout-layout form.checkout.woocommerce-checkout.dh-checkout__form,
body.dh-checkout-pro.dh-checkout-layout form.checkout.woocommerce-checkout.dh-checkout__form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 42%) !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  float: none !important;
  gap: 0 !important;
}
body.woocommerce-checkout.dh-checkout-layout form.checkout.dh-checkout__form > *,
body.dh-checkout-pro.dh-checkout-layout form.checkout.dh-checkout__form > * {
  flex: none !important;
}
body.woocommerce-checkout .dh-checkout__primary,
body.woocommerce-checkout .dh-checkout__aside {
  float: none !important;
  clear: none !important;
  box-sizing: border-box;
}
body.woocommerce-checkout.dh-checkout-layout form.checkout.dh-checkout__form > .dh-checkout__primary,
body.dh-checkout-pro.dh-checkout-layout form.checkout.dh-checkout__form > .dh-checkout__primary {
  flex: 1 1 auto !important;
  width: auto !important;
  max-width: 680px !important;
  margin-left: auto !important;
}
body.woocommerce-checkout.dh-checkout-layout form.checkout.dh-checkout__form > .dh-checkout__aside,
body.dh-checkout-pro.dh-checkout-layout form.checkout.dh-checkout__form > .dh-checkout__aside {
  display: block !important;
  flex: 1 1 42% !important;
  width: auto !important;
  max-width: none !important;
  background: #f4f6f8;
  border-left: 1px solid #e8edf2;
}
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout #order_review,
body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout .col2-set,
body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
}
@media (max-width: 999px) {
  body.woocommerce-checkout.dh-checkout-layout form.checkout.woocommerce-checkout.dh-checkout__form,
  body.dh-checkout-pro.dh-checkout-layout form.checkout.woocommerce-checkout.dh-checkout__form {
    display: block !important;
    grid-template-columns: none !important;
  }
  body.woocommerce-checkout.dh-checkout-layout form.checkout.dh-checkout__form > .dh-checkout__primary,
  body.dh-checkout-pro.dh-checkout-layout form.checkout.dh-checkout__form > .dh-checkout__primary,
  body.woocommerce-checkout .dh-checkout__primary,
  body.woocommerce-checkout .dh-checkout__aside {
    flex: 1 1 auto !important;
    max-width: none !important;
    margin-left: 0 !important;
  }
}

.dh-calc-page .dh-main { overflow-x: clip; }
.dh-calc {
  padding: 28px 0 8px;
}
.dh-calc h1 {
  max-width: 16em;
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.dh-calc .dh-lead {
  max-width: 46rem;
  margin: 0;
}
.dh-calc-main { padding-top: 28px; }
.dh-calc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 22px;
  align-items: start;
}
.dh-calc-card,
.dh-calc-result {
  background: #fff;
  border: 1px solid var(--dh-line);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .05);
}
.dh-calc-card {
  display: grid;
  gap: 22px;
  padding: clamp(20px, 3vw, 32px);
}
.dh-calc-card h2,
.dh-calc-result h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.03em;
}
.dh-calc-card > p {
  margin: 0;
  color: var(--dh-muted);
}
.dh-calc-card fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 12px;
}
.dh-calc-card legend,
.dh-calc-field > span:first-child {
  color: var(--dh-ink);
  font-size: 14px;
  font-weight: 800;
}
.dh-calc-dims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.dh-calc-field { display: grid; gap: 7px; }
.dh-calc-input {
  position: relative;
  display: block;
}
.dh-calc-input input,
.dh-calc-input select {
  width: 100%;
  height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--dh-line);
  border-radius: 12px;
  background: #fff;
  color: var(--dh-ink);
  font: 700 15px/1.4 var(--dh-font);
  outline: none;
}
.dh-calc-input select { padding-right: 14px; }
.dh-calc-input input:focus,
.dh-calc-input select:focus {
  border-color: rgba(234, 88, 12, .65);
  box-shadow: 0 0 0 4px rgba(234, 88, 12, .12);
}
.dh-calc-input em {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dh-muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  pointer-events: none;
}
.dh-calc-choices {
  display: grid;
  gap: 10px;
}
.dh-calc-choices--rooms,
.dh-calc-choices--iso { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dh-calc-choices--walls { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.dh-calc-choices--system { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dh-calc-choice {
  cursor: pointer;
  display: block;
}
.dh-calc-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.dh-calc-choice span {
  display: grid;
  gap: 3px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--dh-line);
  border-radius: 14px;
  background: var(--dh-soft);
  transition: .18s ease;
}
.dh-calc-choice strong {
  color: var(--dh-ink);
  font-size: 14px;
  line-height: 1.3;
}
.dh-calc-choice small {
  color: var(--dh-muted);
  font-size: 12.5px;
  line-height: 1.4;
}
.dh-calc-choice input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(234, 88, 12, .12);
}
.dh-calc-choice input:checked + span {
  background: #fff7ed;
  border-color: rgba(234, 88, 12, .55);
  box-shadow: 0 10px 24px rgba(234, 88, 12, .1);
}
.dh-calc-choice input:checked + span strong { color: var(--dh-orange-dark); }
.dh-calc-choices--walls .dh-calc-choice span {
  min-height: 72px;
  place-items: center;
  text-align: center;
}
.dh-calc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.dh-calc-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--dh-soft);
  border: 1px solid var(--dh-line);
  color: var(--dh-muted);
  font-size: 14px;
  line-height: 1.55;
}
.dh-calc-note strong { color: var(--dh-ink); }
.dh-calc-result {
  position: sticky;
  top: 88px;
  overflow: hidden;
}
.dh-calc-result__top {
  padding: 28px 28px 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(234, 88, 12, .22), transparent 32%),
    linear-gradient(135deg, #17324a, #1e415c);
  color: #fff;
}
.dh-calc-result__top h2 { color: #fff; }
.dh-calc-result__top p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
}
.dh-calc-result__watt {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 16px 0 8px !important;
}
.dh-calc-result__watt strong {
  font-size: clamp(44px, 6vw, 64px);
  line-height: .92;
  letter-spacing: -0.05em;
  color: #fff;
}
.dh-calc-result__watt span {
  margin-bottom: 8px;
  font-weight: 800;
}
.dh-calc-result__volume { font-size: 14px; }
.dh-calc-result__volume strong { color: #fff; }
.dh-calc-result__body { padding: 22px 28px 28px; display: grid; gap: 18px; }
.dh-calc-meta {
  display: grid;
  gap: 10px;
  margin: 0;
}
.dh-calc-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dh-line);
}
.dh-calc-meta dt {
  color: var(--dh-muted);
  font-size: 14px;
}
.dh-calc-meta dd {
  margin: 0;
  font-weight: 800;
  color: var(--dh-ink);
  text-align: right;
}
.dh-calc-tips {
  margin: 0;
  padding-left: 18px;
  color: var(--dh-muted);
  font-size: 14px;
  line-height: 1.55;
}
.dh-calc-result__ctas {
  display: grid;
  gap: 10px;
}
.dh-calc-result__ctas .dh-btn { text-align: center; }
.dh-calc-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dh-calc-info article {
  background: #fff;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  padding: 22px;
}
.dh-calc-info h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.dh-calc-info p {
  margin: 0;
  color: var(--dh-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .dh-calc-layout,
  .dh-calc-info { grid-template-columns: 1fr; }
  .dh-calc-result { position: static; }
  .dh-calc-choices--walls { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .dh-calc-dims,
  .dh-calc-choices--rooms,
  .dh-calc-choices--iso,
  .dh-calc-choices--system { grid-template-columns: 1fr; }
}

.dh-kh-page .dh-main { overflow-x: clip; }
.dh-kh-page [hidden] { display: none !important; }
.dh-kh-hero {
  padding: 28px 0 0;
  background: linear-gradient(#fff, #f8fafc);
}
.dh-kh-hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 0 0 14px;
  max-width: 16ch;
}
.dh-kh-hero .dh-lead { max-width: 38rem; }
.dh-kh-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 28px;
  align-items: center;
}
.dh-kh-hero__media {
  min-height: 280px;
  border-radius: 18px;
  background: #e2e8f0 center / cover no-repeat;
}
.dh-kh-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .8fr);
  gap: 22px;
  align-items: start;
}
.dh-kh-card,
.dh-kh-side {
  border: 1px solid var(--dh-line);
  border-radius: 18px;
  background: #fff;
}
.dh-kh-card { padding: 22px 24px 20px; }
.dh-kh-progress {
  height: 6px;
  border-radius: 99px;
  background: #f1f5f9;
  overflow: hidden;
  margin-bottom: 10px;
}
.dh-kh-progress__bar {
  display: block;
  height: 100%;
  background: var(--dh-orange);
  border-radius: 99px;
  transition: width .25s ease;
}
.dh-kh-meta {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dh-muted);
}
.dh-kh-question {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -.03em;
  line-height: 1.2;
}
.dh-kh-help {
  margin: 0 0 16px;
  color: var(--dh-muted);
  font-size: 15px;
}
.dh-kh-options {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.dh-kh-options--need { grid-template-columns: 1fr 1fr; }
.dh-kh-option {
  text-align: left;
  border: 1px solid var(--dh-line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.dh-kh-option:hover,
.dh-kh-option.is-on {
  border-color: #fdba74;
  background: #fff7ed;
}
.dh-kh-option.is-on { box-shadow: 0 0 0 1px #fdba74; }
.dh-kh-option:focus-visible {
  outline: 2px solid var(--dh-orange);
  outline-offset: 2px;
}
.dh-kh-option strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--dh-ink);
}
.dh-kh-option small {
  display: block;
  margin-top: 4px;
  color: var(--dh-muted);
  font-size: 13px;
  line-height: 1.4;
}
.dh-kh-size {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 8px;
}
.dh-kh-field { display: grid; gap: 7px; }
.dh-kh-field > span:first-child {
  font-size: 13px;
  font-weight: 700;
  color: var(--dh-ink);
}
.dh-kh-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--dh-line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.dh-kh-input input,
.dh-kh-input select {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 11px 12px;
  font: 600 16px var(--dh-font);
  color: var(--dh-ink);
}
.dh-kh-input em {
  padding-right: 12px;
  color: var(--dh-muted);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
}
.dh-kh-nav {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.dh-kh-nav .dh-btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
}
.dh-kh-side {
  position: sticky;
  top: 108px;
  padding: 22px 22px 20px;
  background: var(--dh-navy);
  color: #fff;
  border: 0;
}
.dh-kh-side__kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fdba74;
}
.dh-kh-side__watt {
  margin: 8px 0 6px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.dh-kh-side__watt strong {
  font-size: 40px;
  letter-spacing: -.04em;
  line-height: 1;
}
.dh-kh-side__watt span { font-weight: 700; color: #cbd5e1; }
.dh-kh-side__sub {
  margin: 0 0 16px;
  color: #cbd5e1;
  font-size: 14px;
}
.dh-kh-facts {
  margin: 0;
  display: grid;
  gap: 8px;
}
.dh-kh-facts div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}
.dh-kh-facts dt { color: #94a3b8; }
.dh-kh-facts dd { margin: 0; font-weight: 700; text-align: right; }
.dh-kh-side__note {
  margin: 16px 0 0;
  font-size: 12px;
  color: #94a3b8;
}
.dh-kh-result {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
}
.dh-kh-result__intro h2 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -.03em;
}
.dh-kh-result__intro > p { color: var(--dh-muted); max-width: 40rem; }
.dh-kh-why {
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.dh-kh-why li {
  padding-left: 22px;
  position: relative;
  color: var(--dh-ink);
  font-size: 15px;
}
.dh-kh-why li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--dh-orange);
  font-weight: 800;
}
.dh-kh-result__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dh-kh-products-title {
  margin: 0 0 4px;
  font-size: 20px;
}
.dh-kh-products-help,
.dh-kh-empty {
  margin: 0 0 14px;
  color: var(--dh-muted);
  font-size: 14px;
}
.dh-kh-products {
  display: grid;
  gap: 12px;
}
.dh-kh-product {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--dh-line);
  border-radius: 14px;
  background: #fff;
}
.dh-kh-product__media {
  display: block;
  background: #f8fafc;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.dh-kh-product__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dh-kh-product__body { display: grid; align-content: start; gap: 4px; }
.dh-kh-product h3 {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}
.dh-kh-product h3 a { color: var(--dh-ink); }
.dh-kh-product h3 a:hover { color: var(--dh-orange); text-decoration: none; }
.dh-kh-product__watt,
.dh-kh-product__fit {
  margin: 0;
  font-size: 13px;
  color: var(--dh-muted);
}
.dh-kh-product__watt { font-weight: 800; color: var(--dh-orange-dark); }
.dh-kh-product__price {
  margin: 2px 0 8px;
  font-weight: 800;
}
.dh-kh-product .dh-btn { justify-self: start; }
.dh-kh-extra {
  margin-top: 16px;
  color: var(--dh-muted);
  font-size: 14.5px;
}
.dh-kh-explain {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.dh-kh-explain article {
  padding: 20px;
  border: 1px solid var(--dh-line);
  border-radius: 16px;
  background: #fff;
}
.dh-kh-explain h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -.02em;
}
.dh-kh-explain p {
  margin: 0;
  color: var(--dh-muted);
  font-size: 14.5px;
  line-height: 1.6;
}
@media (max-width: 960px) {
  .dh-kh-hero__grid,
  .dh-kh-layout,
  .dh-kh-result,
  .dh-kh-explain { grid-template-columns: 1fr; }
  .dh-kh-side { position: static; }
  .dh-kh-hero__media { min-height: 200px; }
}
@media (max-width: 640px) {
  .dh-kh-options,
  .dh-kh-options--need,
  .dh-kh-size { grid-template-columns: 1fr; }
  .dh-kh-product { grid-template-columns: 88px minmax(0, 1fr); }
  .dh-kh-hero h1 { max-width: none; }
}

