/* Droomtextiel Home Page */
:root {
  --header-h: 116px;
}

.dt-home {
  --dt-max: 1600px
}

.dt-container {
  max-width: var(--dt-max);
  margin: 0 auto;
  padding: 24px 16px
}

/* Hero */
.dt-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px
}

.dt-hero__title {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary, #84B082);
  margin: 0 0 8px
}

.dt-hero__subtitle {
  font-size: 16px;
  color: #333;
  margin: 0 0 14px
}

.dt-hero__ctas {
  display: flex;
  gap: 10px;
  margin: 0 0 14px
}

.dt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, .12);
  cursor: pointer;
  text-decoration: none
}

.dt-btn--primary {
  background: var(--color-primary, #84B082);
  border-color: var(--color-primary, #84B082);
  color: #fff
}

.dt-btn--ghost {
  background: #fff;
  color: #333
}

.dt-hero__search {
  display: flex;
  gap: 8px
}

.dt-hero__search input[type=search] {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 6px;
  padding: 10px 12px
}

.dt-btn--search {
  background: #fff
}

.dt-hero__media img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05)
}


/* Full-width hero (img-based: no cropping, rounded corners visible) */
.dt-hero-fw {
  position: relative;
  width: auto;
  margin: 12px 12px 0;
  border-radius: 12px;
  overflow: hidden
}

.dt-hero-fw__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px
}

/* .dt-hero-fw__inner no longer imposes height; keep for optional overlay content */
.dt-hero-fw__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0
}

/* Subbanners grid */
.dt-hero-subbanners {
  padding: 0;
  margin: 12px 0 0
}

.dt-hero-subbanners__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px
}

.dt-hero-subbanners .dt-sub {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #fff
}

.dt-hero-subbanners .dt-sub img {
  display: block;
  width: 100%;
  height: auto
}

@media (max-width: 979px) {
  .dt-hero-subbanners__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 599px) {
  .dt-hero-subbanners__grid {
    grid-template-columns: 1fr
  }
}

/* Homepage hero */
.dreamtheme-hero {
  margin: 0 auto clamp(32px, 5vw, 56px);
  padding: 0 var(--container-pad-inline, clamp(16px, 5vw, 40px));
}

.dreamtheme-hero__container {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.dreamtheme-hero__main {
  grid-column: 1 / -1;
  width: 100%;
}

.dreamtheme-hero__side-wrapper {
  display: contents;
}

.dreamtheme-hero__side {
  display: contents;
}

.dreamtheme-hero__banner {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(132, 176, 130, .08);
  background: #f5f5f5;
  transition: transform var(--duration-base) var(--ease-standard), box-shadow var(--duration-base) var(--ease-standard);
}

.dreamtheme-hero__banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
}

.dreamtheme-hero__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.dreamtheme-hero__image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: #f0f2f1;
  aspect-ratio: var(--hero-aspect, 16 / 9);
  min-height: clamp(200px, 45vw, 440px);
}

.dreamtheme-hero__banner--main {
  grid-column: 1 / -1;
}

.dreamtheme-hero__banner--main .dreamtheme-hero__image-wrapper {
  --hero-aspect: 16 / 6;
  min-height: clamp(260px, 48vw, 460px);
}

.dreamtheme-hero__banner--side {
  grid-column: auto;
}

.dreamtheme-hero__banner--side .dreamtheme-hero__image-wrapper {
  --hero-aspect: 16 / 9;
  min-height: clamp(180px, 30vw, 260px);
}

.dreamtheme-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform var(--duration-base) var(--ease-standard);
}

.dreamtheme-hero__banner:hover .dreamtheme-hero__image {
  transform: scale(1.04);
}

.dreamtheme-hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(16px, 4vw, 32px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 70%, rgba(0, 0, 0, .85) 100%);
  color: #fff;
}

.dreamtheme-hero__title {
  margin: 0;
  font-size: clamp(20px, 5vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.25px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .55);
  display: inline-flex;
  flex-direction: column;
  gap: clamp(8px, 1.5vw, 12px);
}

.dreamtheme-hero__title::after {
  content: "";
  width: clamp(46px, 12vw, 72px);
  height: 3px;
  background: var(--color-primary, #84B082);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(132, 176, 130, .55);
}

.dreamtheme-hero__banner--side .dreamtheme-hero__title {
  font-size: clamp(18px, 4vw, 24px);
}

@media (min-width:1200px) {
  .dreamtheme-hero__container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dreamtheme-hero__banner--side .dreamtheme-hero__image-wrapper {
    min-height: clamp(180px, 28vw, 220px);
  }
}

@media (max-width:767px) {
  .dreamtheme-hero {
    margin-bottom: clamp(24px, 6vw, 36px);
    padding: 0 clamp(12px, 4vw, 20px);
  }

  .dreamtheme-hero__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 4vw, 20px);
  }

  .dreamtheme-hero__image-wrapper {
    min-height: clamp(220px, 58vw, 360px);
  }

  .dreamtheme-hero__banner--main .dreamtheme-hero__image-wrapper {
    --hero-aspect: 16 / 9;
    min-height: clamp(240px, 64vw, 400px);
  }

  .dreamtheme-hero__banner--main {
    grid-column: 1 / -1;
  }

  .dreamtheme-hero__banner--side .dreamtheme-hero__image-wrapper {
    min-height: clamp(190px, 56vw, 280px);
  }

  .dreamtheme-hero__banner--side {
    grid-column: auto;
  }

  .dreamtheme-hero__banner--side:last-child {
    grid-column: 1 / -1;
  }

  .dreamtheme-hero__title {
    font-size: clamp(20px, 6vw, 28px);
  }

  .dreamtheme-hero__overlay {
    padding: clamp(14px, 5vw, 24px);
  }

  .dreamtheme-hero__banner--main .dreamtheme-hero__image-wrapper {
    aspect-ratio: auto;
    min-height: 0;
  }

  .dreamtheme-hero__banner--main .dreamtheme-hero__image {
    width: 100%;
    height: auto;
  }
}

@media (max-width:479px) {
  .dreamtheme-hero__container {
    grid-template-columns: 1fr;
  }

  .dreamtheme-hero__banner--side {
    grid-column: 1;
  }

  .dreamtheme-hero__title::after {
    width: clamp(36px, 18vw, 50px);
  }
}

/* Countdown hero replacement */
.dt-countdown-hero {
  position: relative;
  padding: 0;
  margin: 0 auto 0;
  max-height: 500px;
}

.dt-countdown-hero__bg {
  position: relative;
  /* CRITICAL: overflow: hidden kills 3D transforms - removed */
  border-radius: 16px;
  background: transparent;
  min-height: 500px;
  max-height: 500px;
  border: 0;
  box-shadow: none;
}

.dt-countdown-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: inherit;
}

.dt-countdown-hero__overlay {
  position: absolute;
  inset: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 580px;
  width: auto;
  min-width: 320px;
  padding: 40px 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #0f1f16;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.dt-countdown-hero__label {
  font-size: 32px;
  line-height: 1.2;
  color: #48634a;
  font-weight: 400;
  margin: 0 0 16px 0;
  text-transform: none;
  letter-spacing: normal;
}

.dt-countdown-hero__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-variant-numeric: tabular-nums;
  /* Ensure 3D transform context is preserved */
  transform-style: preserve-3d;
}

.dt-countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.dt-countdown-val {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  color: #0f1f16;
}

.dt-countdown-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #163126;
  margin-top: 4px;
  font-weight: 600;
}

.dt-countdown-sep {
  font-size: 24px;
  font-weight: 700;
  color: rgba(15, 31, 22, 0.4);
  margin-top: -14px;
}

.dt-countdown-hero__sub {
  margin: 0;
  color: #163126;
  font-size: 15px;
  line-height: 1.5;
}

.dt-countdown-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  /* Flat 8px border radius */
  background: #84B082;
  /* Droomtextiel Green */
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  box-shadow: none;
  /* Flat style */
  transition: background-color .2s ease, transform .2s ease;
  width: 100%;
  /* Full width on mobile/overlay */
  max-width: 280px;
  margin: 0 auto;
}

.dt-countdown-hero__cta:hover {
  background: #739c71;
  transform: translateY(-1px);
  box-shadow: none;
}

.dt-countdown-carousel {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
  height: 100%;
}

/* White overlay over carousel (no blur) */
.dt-countdown-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.80);
  z-index: 2;
  pointer-events: none;
}

.dt-countdown-carousel {
  display: grid;
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  gap: clamp(12px, 2vw, 18px);
  /* transform: rotate(-4deg); Removed rotation */
}

.dt-countdown-column {
  position: relative;
  height: 500px;
  overflow: hidden;
  padding: 0 16px;
}

.dt-countdown-stack {
  display: grid;
  gap: 12px;
  animation: dt-countdown-column 22s linear infinite;
}

.dt-countdown-column:nth-child(odd) .dt-countdown-stack {
  animation-direction: reverse;
}

.dt-countdown-column:nth-child(2) {
  animation-duration: 24s;
}

.dt-countdown-column:nth-child(3) {
  animation-duration: 26s;
}

.dt-countdown-column:nth-child(4) {
  animation-duration: 23s;
}

.dt-countdown-column:nth-child(5) {
  animation-duration: 25s;
}

.dt-countdown-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
  /* transform: rotate(-1deg); Removed rotation */
}

.dt-countdown-card--review {
  background: #84B082;
  color: #fff;
}

.dt-countdown-card__pill {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(132, 176, 130, 0.16);
  color: #123326;
  font-weight: 700;
  font-size: 12px;
  width: max-content;
}

.dt-countdown-card__pill--outline {
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  color: #fff;
}

.dt-countdown-card__product {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
}

.dt-countdown-card__product img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 12px;
  background: #f4f4f4;
}

.dt-countdown-card__title {
  font-weight: 800;
  font-size: 14px;
  color: #0f1f16;
}

.dt-countdown-card--review .dt-countdown-card__title {
  color: #fff;
}

.dt-countdown-card__price {
  font-weight: 600;
  color: #2d6a40;
  font-size: 13px;
}

.dt-countdown-card__rating .star-rating {
  margin: 0;
}

.dt-countdown-card__stars {
  letter-spacing: 2px;
  color: #fff;
}

.dt-countdown-card__quote {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.dt-countdown-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  opacity: 0.85;
}

@keyframes dt-countdown-column {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@media (max-width: 1199px) {
  .dt-countdown-carousel {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
  }
}

@media (max-width: 879px) {
  .dt-countdown-hero__overlay {
    max-width: 100%;
    position: relative;
    inset: auto;
    margin-bottom: 18px;
  }

  .dt-countdown-carousel {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .dt-countdown-hero__bg {
    min-height: 500px;
  }
}

@media (max-width: 599px) {
  .dt-countdown-carousel {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  /* .dt-countdown-card{ transform: rotate(-0.6deg); } Removed rotation */
}

/* Flip Clock Styles */
.dt-flip-clock {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 8px 0;
}

.dt-flip-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  /* Ensure 3D transform context is preserved */
  transform-style: preserve-3d;
}

.dt-flip-digits {
  display: flex;
  gap: 4px;
  /* Ensure 3D transform context is preserved */
  transform-style: preserve-3d;
}

.dt-flip-card {
  position: relative;
  width: 44px;
  height: 64px;
  font-size: 36px;
  font-weight: 800;
  line-height: 64px;
  color: #fff;
  text-align: center;
  perspective: 200px;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.dt-flip-card__top,
.dt-flip-card__bottom,
.dt-flip-card__top-fold,
.dt-flip-card__bottom-fold {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  overflow: hidden;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.dt-flip-card__top,
.dt-flip-card__top-fold {
  top: 0;
  transform-origin: 50% 100%;
}

.dt-flip-card__top {
  z-index: 2;
}

.dt-flip-card__top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.dt-flip-card__bottom,
.dt-flip-card__bottom-fold {
  bottom: 0;
  transform-origin: 50% 0%;
}

.dt-flip-card__bottom {
  z-index: 2;
}

/* Inner content - 200% height to show half in each section */
.dt-flip-card__top .dt-flip-card__inn,
.dt-flip-card__top-fold .dt-flip-card__inn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #84B082;
  color: #fff;
  border-radius: 8px 8px 0 0;
  backface-visibility: hidden;
}

.dt-flip-card__bottom .dt-flip-card__inn,
.dt-flip-card__bottom-fold .dt-flip-card__inn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #84B082;
  color: #fff;
  border-radius: 0 0 8px 8px;
  backface-visibility: hidden;
}

.dt-flip-card__top-fold {
  z-index: 1;
  transform: rotateX(0deg);
  transition: none;
}

.dt-flip-card__bottom-fold {
  z-index: 1;
  transform: rotateX(90deg);
  transition: none;
}

/* Shadows inside flip card halves */
.dt-flip-card__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

/* Default gradients (similar to originele voorbeeld) */
.dt-flip-card__top .dt-flip-card__shadow,
.dt-flip-card__top-fold .dt-flip-card__shadow {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 1) 100%);
}

.dt-flip-card__bottom .dt-flip-card__shadow,
.dt-flip-card__bottom-fold .dt-flip-card__shadow {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.1) 100%);
}

/* Animation states */
.dt-flip-card.is-flipping .dt-flip-card__top-fold {
  z-index: 3;
  animation: dt-flip-top 0.5s linear forwards;
}

.dt-flip-card.is-flipping .dt-flip-card__bottom-fold {
  z-index: 4;
  animation: dt-flip-bottom 0.5s 0.5s linear forwards;
}

/* Shadow animaties tijdens flip */
.dt-flip-card.is-flipping .dt-flip-card__top-fold .dt-flip-card__shadow,
.dt-flip-card.is-flipping .dt-flip-card__bottom-fold .dt-flip-card__shadow {
  animation: dt-shadow-show 0.5s linear forwards, dt-shadow-hide 0.5s 0.3s linear forwards;
}

@keyframes dt-flip-top {
  0% {
    transform: rotateX(0deg);
  }

  100% {
    transform: rotateX(-90deg);
  }
}

@keyframes dt-flip-bottom {
  0% {
    transform: rotateX(90deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

@keyframes dt-shadow-show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes dt-shadow-hide {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.dt-flip-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: #163126;
  letter-spacing: 0.08em;
}

.dt-flip-sep {
  font-size: 32px;
  font-weight: 700;
  color: #84B082;
  margin-top: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .dt-countdown-hero {
    margin-bottom: 24px;
    max-height: none;
    /* Allow content to flow */
    height: auto;
  }

  .dt-countdown-hero__bg {
    min-height: auto;
    max-height: none;
    background: #f4f7f4;
    /* Simple background on mobile */
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dt-countdown-carousel {
    display: none;
    /* Hide carousel on mobile to reduce clutter */
  }

  .dt-countdown-hero__overlay {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  .dt-flip-card {
    width: 36px;
    height: 52px;
    font-size: 28px;
    line-height: 52px;
  }

  .dt-flip-sep {
    font-size: 24px;
    margin-top: 8px;
  }

  .dt-countdown-hero__label {
    color: #48634a;
    font-size: 13px;
    margin-bottom: 8px;
  }

  .dt-countdown-hero__sub {
    color: #48634a;
    margin-bottom: 20px;
  }
}

/* USP band (full-bleed) */
.dt-usp {
  margin: 0 0 24px 0;
}

.dt-usp--full {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: calc(-50vw + 12px);
  margin-right: calc(-50vw + 12px);
  width: calc(100vw - 24px);
  padding: 48px 0;
  background: transparent
}

.dt-usp__container {
  padding: 0 12px
}

.dt-usp__panel {
  background: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  border: 1px solid rgba(132, 176, 130, .16);
  overflow: hidden
}

.dt-usp__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 24px;
  align-items: flex-start;
  text-align: left
}

.dt-usp__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(132, 176, 130, .14);
  color: #48634a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase
}

.dt-usp__intro {
  margin: 0;
  color: #2f3b2f;
  opacity: .9;
  max-width: 760px
}

.dt-usp__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 4px
}

.dt-usp__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid rgba(132, 176, 130, .32);
  border-radius: 14px;
  background: rgba(255, 255, 255, .85)
}

.dt-usp__stars {
  font-size: 16px;
  letter-spacing: .12em;
  color: #f4b534
}

.dt-usp__rating-score {
  font-weight: 700;
  color: #243528
}

.dt-usp__rating-count {
  font-size: 13px;
  color: #607060
}

.dt-usp__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none
}

.dt-usp__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(132, 176, 130, .12);
  color: #2f3b2f;
  font-size: 13px;
  font-weight: 600
}

.dt-usp__trust-item::before {
  content: "\2713";
  font-size: 12px;
  color: #84B082
}

.dt-usp__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px
}

.dt-usp__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease
}

.dt-usp__cta--primary {
  background: #84B082;
  color: #fff
}

.dt-usp__cta--primary:hover {
  transform: translateY(-1px)
}

.dt-usp__cta--secondary {
  background: rgba(132, 176, 130, .08);
  color: #48634a;
  border: 1px solid rgba(132, 176, 130, .26)
}

.dt-usp__cta--secondary:hover {
  background: rgba(132, 176, 130, .14);
  transform: translateY(-1px)
}

/* USP cards grid */
.dt-usp__list {
  padding: 0;
  margin: 0;
  list-style: none
}

.dt-usp__cards {
  display: grid;
  gap: 18px
}

.dt-usp__list li {
  position: relative;
  list-style: none
}

@media (prefers-reduced-motion: no-preference) {
  .dt-usp__card {
    opacity: 0;
    transform: translateY(16px)
  }

  .dt-usp__card.is-in,
  .dt-usp__card.appear {
    opacity: 1;
    transform: translateY(0)
  }

  .dt-usp__card:nth-child(1).is-in {
    transition-delay: .05s
  }

  .dt-usp__card:nth-child(2).is-in {
    transition-delay: .1s
  }

  .dt-usp__card:nth-child(3).is-in {
    transition-delay: .15s
  }

  .dt-usp__card:nth-child(4).is-in {
    transition-delay: .2s
  }
}

@media (prefers-reduced-motion: reduce) {
  .dt-usp__card {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important
  }
}

/* Tiles */
.dt-tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 24px
}

.dt-tile {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden
}

.dt-tile img {
  width: 100%;
  height: auto;
  display: block
}

.dt-tile__label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(255, 255, 255, .9);
  border-radius: 6px;
  padding: 6px 10px;
  font-weight: 600
}

/* Products carousel */
.dt-products .dt-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 10px
}

.dt-section-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary, #84B082);
  margin: 0
}

.dt-link {
  color: #333;
  text-decoration: none
}

/* Owl tweaks for product list */
ul.products.owl-products {
  padding-left: 0;
  margin: 0
}

ul.products.owl-products .product {
  list-style: none;
  margin: 0
}

/* Responsive */
@media (max-width: 979px) {
  .dt-hero {
    grid-template-columns: 1fr
  }

  .dt-tiles__grid {
    grid-template-columns: 1fr 1fr
  }
}



/* Banner v125 equivalent */
.dt-banner125 {
  position: relative;
  padding-top: var(--pt, 80px);
  padding-bottom: var(--pb, 20px);
  background: var(--bg-color, #fff);
  overflow: hidden;
  background-image: var(--bg-url, linear-gradient(180deg, #eef3ee, #e8efe8));
  background-size: cover;
  background-position: 50% var(--bg-y, 64px);
  background-attachment: fixed;
  backface-visibility: hidden;
  transform: translateZ(0)
}

.dt-banner125__inner {
  position: relative;
  z-index: 1
}

.dt-banner125__text {
  max-width: 760px;
  margin: 0 0 10px
}

.dt-banner125__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary, #84B082);
  margin: 0 0 6px
}

.dt-banner125__subtitle {
  font-size: 15px;
  color: #333
}

.dt-banner125__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px
}

.dt-b125-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #fff
}

.dt-b125-item__link {
  display: block;
  position: relative
}

.dt-b125-item__img {
  display: block;
  position: relative;
  width: 100%;
  padding-top: var(--ratio, 72.353%);
  overflow: hidden
}

.dt-b125-item__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.dt-b125-item__meta {
  padding: 10px 0
}

.dt-b125-item__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0
}

/* hover3 effect */
.hover-style--hover3 .dt-b125-item__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 50% 100%, rgba(0, 0, 0, .0) 0%, rgba(0, 0, 0, .08) 100%);
  opacity: 0;
  transition: opacity .35s ease
}

.hover-style--hover3:hover .dt-b125-item__link::after {
  opacity: 1
}

.hover-style--hover3:hover .dt-b125-item__img img {
  transform: scale(1.06)
}

/* Responsive for banner grid */
@media (max-width: 979px) {
  .dt-banner125__grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 599px) {
  .dt-banner125__grid {
    grid-template-columns: 1fr
  }
}


/* Product v3 tabs section */
.dt-catv3 {
  margin: 28px 0
}

.dt-catv3__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px
}

.dt-catv3__tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.dt-catv3__tab {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #333;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.2
}

.dt-catv3__tab.is-active {
  border-color: var(--color-primary, #84B082);
  color: var(--color-primary, #84B082);
  background: rgba(132, 176, 130, .08)
}

/* Ensure only active panel is visible */
.dt-catv3__panel {
  display: none;
  width: 100%
}

.dt-catv3__panel.is-active {
  display: block
}

/* Standardize CTA buttons in product selection to match product cards */
.dt-catv3 .products .button,
.dt-catv3 .product .button {
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 6px;
  line-height: 1.2
}

.dt-catv3__panel {
  width: 100%
}

/* Sale tab (green chip) */
.dt-catv3__tab--sale {
  border-color: var(--color-primary, #84B082);
  background: var(--color-primary, #84B082);
  color: #fff
}

.dt-catv3__tab--sale.is-active {
  background: var(--color-primary, #84B082);
  color: #fff
}


/* USP icon refinements + fallback */
.dt-usp__list li {
  overflow: visible
}


/* USP PRO (v2) two-column layout */
.dt-usp--v2 .dt-section-title {
  font-size: 32px;
  line-height: 1.2;
  color: #48634a
}

.dt-usp__subtitle-txt {
  margin: 0;
  color: #243528;
  font-size: 18px;
  line-height: 1.45;
  max-width: 720px
}

.dt-usp__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch
}

.dt-usp__copy {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.dt-usp__lead {
  background: #fff;
  border: 1px solid rgba(132, 176, 130, .18);
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.dt-usp__lead-title {
  margin: 0;
  font-size: 20px;
  color: #243528;
  font-weight: 700
}

.dt-usp__lead-intro {
  margin: 0;
  color: #2f3b2f;
  opacity: .92;
  font-size: 15px;
  line-height: 1.55
}

.dt-usp__bullets {
  margin: 0;
  padding: 0;
  color: #243528;
  display: grid;
  gap: 8px;
  list-style: none
}

.dt-usp__bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55
}

.dt-usp__bullets li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: .2em;
  color: #84B082;
  font-size: 18px
}

.dt-usp__features {
  display: flex;
  flex-direction: column
}

.dt-usp--v2 .dt-usp__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px
}

.dt-usp__card {
  min-height: 180px;
  border-radius: 18px;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(132, 176, 130, .18);
  transition: transform .3s ease, opacity .3s ease;
  opacity: 1
}

.dt-usp__card:hover {
  transform: translateY(-4px)
}

.dt-usp__card.is-accent {
  background: #84B082;
  color: #fff;
  border-color: #84B082
}

.dt-usp__card.is-accent .dt-usp__title {
  color: #fff
}

.dt-usp__card.is-accent .dt-usp__subtitle {
  color: rgba(255, 255, 255, .94)
}

.dt-usp__card.is-accent .dt-usp__meta {
  color: rgba(255, 255, 255, .85)
}

.dt-usp__card-link,
.dt-usp__card-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  min-height: inherit;
  text-decoration: none;
  color: inherit
}

.dt-usp__card-link {
  height: 100%;
  position: relative
}

.dt-usp__card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit
}

.dt-usp__card-link:hover .dt-usp__arrow {
  transform: translateX(4px)
}

.dt-usp__card-link:focus-visible {
  outline: 2px solid rgba(132, 176, 130, .7);
  outline-offset: 4px
}

.dt-usp__card.is-accent .dt-usp__arrow {
  color: #fff
}

.dt-usp__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(132, 176, 130, .16);
  color: #84B082
}

.dt-usp__card.is-accent .dt-usp__icon {
  background: rgba(255, 255, 255, .22);
  color: #fff
}

.dt-usp__icon svg {
  width: 20px;
  height: 20px
}

.dt-usp__icon svg path,
.dt-usp__icon svg rect,
.dt-usp__icon svg line {
  stroke: currentColor
}

.dt-usp__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #48634a
}

.dt-usp__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #2f3b2f;
  opacity: .9
}

.dt-usp__meta {
  display: inline-flex;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #607060;
  font-weight: 600
}

.dt-usp__arrow {
  margin-left: auto;
  font-size: 20px;
  line-height: 1;
  color: #84B082;
  transition: transform .25s ease
}

.dt-usp__card-body .dt-usp__icon {
  background: rgba(132, 176, 130, .14)
}

.dt-usp__card-body .dt-usp__title {
  color: #84B082
}

.dt-usp__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0
}

.dt-usp__chip {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border: 1.5px solid #84B082;
  border-radius: 10px;
  color: #84B082;
  background: rgba(132, 176, 130, .08);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease
}

.dt-usp__chip:hover {
  background: rgba(132, 176, 130, .16)
}

.dt-usp__chip:focus-visible {
  outline: 2px solid #84B082;
  outline-offset: 2px
}

.dt-usp__support {
  margin-top: 40px;
  padding: 30px 32px;
  border: 1px solid rgba(132, 176, 130, .24);
  border-radius: 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start
}

.dt-usp__support-title {
  margin: 0 0 6px;
  font-size: 20px;
  color: #243528;
  font-weight: 700
}

.dt-usp__support-text {
  margin: 0;
  color: #2f3b2f;
  opacity: .92;
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px
}

.dt-usp__support-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px
}

.dt-usp__support-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(132, 176, 130, .32);
  color: #48634a;
  background: rgba(255, 255, 255, .9);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform .25s ease, background-color .25s ease
}

.dt-usp__support-cta:hover {
  transform: translateY(-2px);
  background: #fff
}

.dt-usp__support-cta--primary {
  background: #84B082;
  color: #fff;
  border-color: #84B082
}

@media (max-width: 1140px) {
  .dt-usp__grid {
    grid-template-columns: 1fr
  }

  .dt-usp__copy {
    order: 1
  }

  .dt-usp__features {
    order: 2
  }

  .dt-usp--v2 .dt-usp__cards {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
  }
}

@media (max-width: 768px) {
  .dt-usp__panel {
    padding: 32px 24px;
    border-radius: 18px
  }

  .dt-usp__header {
    align-items: flex-start;
    text-align: left
  }

  .dt-usp__proof {
    gap: 8px 12px
  }

  .dt-usp__cta-group {
    width: 100%
  }

  .dt-usp__cta {
    flex: 1 1 calc(50% - 6px);
    justify-content: center
  }

  .dt-usp__support {
    flex-direction: column;
    align-items: flex-start
  }

  .dt-usp__support-actions {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%
  }

  .dt-usp__support-cta {
    flex: 1 1 200px
  }
}

@media (max-width: 599px) {
  .dt-usp--full {
    margin-left: calc(-50vw + 8px);
    margin-right: calc(-50vw + 8px);
    width: calc(100vw - 16px);
    padding: 36px 0
  }

  .dt-usp--v2 .dt-usp__cards {
    grid-template-columns: 1fr
  }

  .dt-usp__cta {
    flex: 1 1 100%
  }

  .dt-usp__support-actions {
    flex-direction: column
  }

  .dt-usp__proof {
    flex-direction: column;
    align-items: flex-start
  }
}

/* Onze Selectie */
.dreamtheme-selection {
  padding: 80px 0 0;
  background: #fff;
  overflow: hidden;
  position: relative;
  --marquee-padding: clamp(16px, 4vw, 72px)
}

.dreamtheme-selection__inner {
  max-width: none;
  margin: 0 auto;
  padding: 0 var(--marquee-padding);
  text-align: center;
}

.dreamtheme-selection__header {
  margin-bottom: 36px
}

.dreamtheme-section-title {
  font-size: 34px;
  font-weight: 400;
  color: #84B082;
  margin: 0 0 12px
}

.dreamtheme-section-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0
}

.dreamtheme-selection__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px
}

.dreamtheme-selection__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: rgba(132, 176, 130, .12);
  border: 1px solid rgba(132, 176, 130, .28);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #2f3a2f;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 6px 18px rgba(132, 176, 130, .15)
}

.dreamtheme-selection__chip:hover,
.dreamtheme-selection__chip:focus {
  background: rgba(132, 176, 130, .22);
  border-color: #84B082;
  transform: translateY(-2px);
  outline: none
}

.dreamtheme-selection__chip.active {
  background: #84B082;
  border-color: #84B082;
  color: #fff;
  box-shadow: 0 10px 25px rgba(132, 176, 130, .35)
}

.dreamtheme-selection__chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  background: rgba(132, 176, 130, .12);
  border: 1px solid rgba(132, 176, 130, .45);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #84B082
}

.dreamtheme-selection__chip.active .dreamtheme-selection__chip-count {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .45);
  color: #fff
}

.dreamtheme-selection__chip.is-disabled {
  opacity: .45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none
}

.dreamtheme-selection__chip.is-disabled:hover,
.dreamtheme-selection__chip.is-disabled:focus {
  background: rgba(132, 176, 130, .12);
  color: #2f3a2f;
  border-color: rgba(132, 176, 130, .28)
}

.dreamtheme-selection__carousel-viewport {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
  padding: 40px 0 60px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(132, 176, 130, .06) 0%, rgba(132, 176, 130, .03) 50%, rgba(132, 176, 130, .01) 100%)
}

.dreamtheme-selection__carousel {
  display: none;
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 var(--marquee-padding)
}

.dreamtheme-selection__carousel.active {
  display: block
}

.dreamtheme-selection__products.owl-carousel {
  display: block !important;
  list-style: none;
  margin: 0;
  padding: 0
}

.dreamtheme-selection__products.owl-carousel .owl-stage-outer {
  overflow: hidden
}

.dreamtheme-selection__products.owl-carousel .owl-stage {
  display: flex;
  align-items: stretch
}

.dreamtheme-selection__products.owl-carousel .owl-item {
  display: flex;
  align-items: stretch
}

.dreamtheme-selection__products.owl-carousel .product {
  width: 100%;
  margin: 0;
  padding: 10px;
  list-style: none
}

.dreamtheme-selection__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 28px auto 0
}

.dreamtheme-selection__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #84B082;
  border: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  box-shadow: 0 6px 16px rgba(132, 176, 130, .25)
}

.dreamtheme-selection__nav-btn:hover,
.dreamtheme-selection__nav-btn:focus {
  background: var(--color-cta-blue);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18)
}

.dreamtheme-selection__nav-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08)
}

.dreamtheme-selection__nav-btn span[aria-hidden="true"] {
  display: inline-block;
  line-height: 1;
  transform: translateY(-1px)
}

.dreamtheme-selection__products .owl-dots {
  display: block !important;
  text-align: center;
  margin-top: 30px;
  padding: 0;
  position: relative;
  z-index: 10;
}

.dreamtheme-selection__products .owl-dot {
  display: inline-block !important;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  background: rgba(132, 176, 130, .3);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}

.dreamtheme-selection__products .owl-dot.active,
.dreamtheme-selection__products .owl-dot:hover {
  background: #84B082;
  transform: scale(1.2);
}

@media (max-width:1200px) {
  .dreamtheme-section-title {
    font-size: 30px
  }

  .dreamtheme-selection {
    --marquee-padding: clamp(16px, 5vw, 56px)
  }

  .dreamtheme-selection__inner {
    padding: 0
  }

  .dreamtheme-selection__carousel-viewport {
    margin-top: 32px
  }
}

@media (max-width:1024px) {
  .dreamtheme-section-title {
    font-size: 30px
  }

  .dreamtheme-selection {
    --marquee-padding: clamp(16px, 6vw, 40px)
  }

  .dreamtheme-selection__inner {
    padding: 0
  }

  .dreamtheme-selection__carousel-viewport {
    margin-top: 32px
  }
}

@media (max-width:768px) {
  .dreamtheme-selection {
    padding: 60px 0;
    --marquee-padding: clamp(14px, 7vw, 30px)
  }

  .dreamtheme-section-title {
    font-size: 26px
  }

  .dreamtheme-section-subtitle {
    font-size: 14px
  }

  .dreamtheme-selection__chips {
    gap: 10px
  }

  .dreamtheme-selection__chip {
    padding: 11px 20px;
    font-size: 13px
  }

  .dreamtheme-selection__inner {
    padding: 0
  }

  .dreamtheme-selection__nav {
    gap: 12px;
    margin-top: 24px
  }

  .dreamtheme-selection__nav-btn {
    width: 42px;
    height: 42px;
    font-size: 20px
  }
}

@media (max-width:480px) {
  .dreamtheme-selection {
    padding: 50px 0
  }

  .dreamtheme-section-title {
    font-size: 22px
  }

  .dreamtheme-selection__chip {
    width: 100%;
    justify-content: center
  }

  .dreamtheme-selection__nav {
    gap: 10px;
    margin-top: 20px
  }

  .dreamtheme-selection__nav-btn {
    width: 38px;
    height: 38px;
    font-size: 18px
  }
}