/* 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);
  }
}

/* USP band (full-bleed) */
.dt-usp{margin: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}
}
