@charset "UTF-8";
:root {
  --wt-color-white: #ffffff;
  --wt-color-surface: #fafafa;
  --wt-color-surface-alt: #f2f2f2;
  --wt-color-border: #dbdbdb;
  --wt-color-text: #4d4d4d;
  --wt-color-text-strong: #2e2e2e;
  --wt-color-text-muted: #666666;
  --wt-color-accent: #e05a21;
  --wt-color-orange: #fc7a08;
  --wt-color-logo-dark: #3c3c3c;
  --wt-color-logo-orange: #f06022;
  --wt-color-cart: #fc7a08;
  --wt-color-blue: #1ba4ff;
  --wt-color-yellow: #ffee57;
  --wt-color-coral: #fd796b;
  --wt-color-mint: #65e6ab;
  --wt-color-teal: #44bcc3;
  --wt-font-display: "Work Sans", system-ui, sans-serif;
  --wt-font-body: "Open Sans", system-ui, sans-serif;
  --wt-font-size-xs: 0.75rem;
  --wt-font-size-sm: 0.875rem;
  --wt-font-size-base: 1rem;
  --wt-font-size-lg: 1.125rem;
  --wt-font-size-xl: 1.25rem;
  --wt-font-size-2xl: 1.5rem;
  --wt-font-size-3xl: 1.875rem;
  --wt-font-size-4xl: 2.25rem;
  --wt-font-size-5xl: 3rem;
  --wt-font-size-6xl: 3.75rem;
  --wt-font-size-7xl: 4.5rem;
  --wt-space-xs: 0.25rem;
  --wt-space-sm: 0.5rem;
  --wt-space-md: 1rem;
  --wt-space-lg: 1.5rem;
  --wt-space-xl: 2rem;
  --wt-space-2xl: 3rem;
  --wt-space-3xl: 4rem;
  --wt-space-4xl: 6rem;
  --wt-content-size: 1440px;
  --wt-wide-size: 1440px;
  --wt-radius-lg: 16px;
  --wt-color-orange-base: #fc7a08;
}

:where(.wp-block-image) img {
  border-radius: var(--wt-radius-lg, 16px);
  max-width: 100%;
  height: auto;
}

.wp-block-quote {
  border-left: 4px solid var(--wt-color-accent);
  padding-left: var(--wt-space-lg);
  font-style: italic;
}

.entry-content > * {
  max-width: var(--wt-content-size, 1440px);
  margin-inline: auto;
  padding-inline: var(--wt-space-lg);
}
.entry-content > .alignwide {
  max-width: var(--wt-wide-size, 1440px);
}
.entry-content > .alignfull {
  max-width: none;
  padding-inline: 0;
}

.wt-grid {
  display: grid;
  grid-template-columns: repeat(var(--wt-grid-cols, 3), minmax(0, 1fr));
  gap: var(--wt-space-2xl);
  max-width: var(--wt-content-size, 1440px);
  margin-inline: auto;
  padding-inline: var(--wt-space-lg);
}

@media (max-width: 900px) {
  .wt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .wt-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.wt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease;
}
.wt-btn:hover, .wt-btn:focus, .wt-btn:visited {
  color: #fff;
}
.wt-btn--orange {
  padding: 14px 22px;
  border-radius: 999px;
  background-color: var(--wt-color-orange);
  font-family: var(--wt-font-body);
  font-size: var(--wt-font-size-base);
  line-height: 1;
}
.wt-btn--dark {
  padding: 14px 28px;
  border-radius: 10px;
  background-color: var(--wt-color-text-strong);
  font-family: var(--wt-font-display);
  font-size: 16px;
  line-height: 24px;
}
.wt-btn--dark:hover, .wt-btn--dark:focus {
  background-color: var(--wt-color-orange);
}

.wt-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--wt-font-body);
  font-size: var(--wt-font-size-base);
  line-height: 1.6;
  color: var(--wt-color-text);
}
.wt-bullets li {
  margin: 0;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wt-container {
  max-width: var(--wt-content-size, 1440px);
  margin-inline: auto;
  padding-inline: var(--wt-space-lg);
}

.site-header {
  position: relative;
  z-index: 100;
  box-shadow: var(--wt-header-shadow, 0 4px 8px rgba(0, 0, 0, 0.06));
}
.site-header.is-sticky {
  position: sticky;
  top: 0;
}
.site-header *,
.site-header *::before,
.site-header *::after {
  box-sizing: border-box;
}

/* ---------------------------------------------------------------------------
   Top utility bar (orange)
   --------------------------------------------------------------------------- */
body.zakelijk {
  --wt-color-orange: var(--wt-color-business, #19a4ff);
}

.topbar {
  background-color: var(--wt-color-orange);
  color: var(--wt-color-white);
}
.topbar__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--wt-space-lg);
  min-height: 44px;
}

.audience-switcher {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
}
.audience-switcher__pill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 36px;
  background-color: var(--wt-color-white);
  border-radius: 10px 10px 0 0;
  z-index: 0;
  pointer-events: none;
  transition: left var(--wt-switch-speed, 360ms) cubic-bezier(0.4, 0, 0.2, 1), width var(--wt-switch-speed, 360ms) cubic-bezier(0.4, 0, 0.2, 1);
}
.audience-switcher__pill::before, .audience-switcher__pill::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 10px;
  aspect-ratio: 1;
}
.audience-switcher__pill::before {
  left: -10px;
  background-image: radial-gradient(circle at 0 0, transparent 10px, var(--wt-color-white) 10.5px);
}
.audience-switcher__pill::after {
  right: -10px;
  background-image: radial-gradient(circle at 100% 0, transparent 10px, var(--wt-color-white) 10.5px);
}
.audience-switcher__tab {
  position: relative;
  z-index: 1;
  height: 36px;
  line-height: 36px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: var(--wt-color-white);
  font-family: var(--wt-font-body);
  font-size: var(--wt-font-size-sm);
  font-weight: 500;
  white-space: nowrap;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  appearance: none;
  transition: color var(--wt-switch-speed, 360ms) cubic-bezier(0.4, 0, 0.2, 1);
}
.audience-switcher__tab.is-active {
  color: var(--wt-color-text);
  font-weight: 700;
}

.topbar__utils {
  display: flex;
  align-items: center;
  gap: var(--wt-space-lg);
  align-self: center;
  font-family: var(--wt-font-body);
  font-size: var(--wt-font-size-sm);
}
.topbar__utils a {
  color: var(--wt-color-white);
  text-decoration: none;
}
.topbar__utils a:hover {
  text-decoration: underline;
}

.topbar__phone,
.topbar__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--wt-color-white);
  font: inherit;
  cursor: pointer;
}

.topbar__phone-ico {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.topbar__phone-ico svg {
  display: block;
  width: 100%;
  height: 100%;
}

.topbar__flag {
  display: inline-flex;
  width: 18px;
  height: 14px;
}
.topbar__flag svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
}

.topbar__caret {
  width: 12px;
  height: 12px;
}

/* ---------------------------------------------------------------------------
   Main header (white masthead)
   --------------------------------------------------------------------------- */
.masthead {
  background-color: var(--wt-color-white);
}
.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--wt-space-xl);
  min-height: var(--wt-header-height, 72px);
}

.site-header__logo {
  flex: 0 0 auto;
}
.site-header__logo img,
.site-header__logo .custom-logo {
  display: block;
  height: var(--wt-logo-height, 48px);
  width: auto;
}

.site-logo__fallback {
  font-family: var(--wt-font-display);
  font-weight: 700;
  font-size: var(--wt-font-size-2xl);
  color: var(--wt-color-text-strong);
  text-decoration: none;
}

.primary-nav {
  flex: 1 1 auto;
  align-self: stretch;
  display: flex;
  justify-content: center;
}
.primary-nav__list {
  display: flex;
  align-items: stretch;
  gap: var(--wt-space-xl);
  margin: 0;
  padding: 0;
  height: 100%;
  list-style: none;
}
.primary-nav__list > li {
  display: flex;
  align-items: center;
}
.primary-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  font-family: var(--wt-font-display);
  font-size: var(--wt-font-size-base);
  font-weight: 600;
  color: var(--wt-color-text-strong);
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav__list > li > a:hover,
.primary-nav__list > li.current-menu-item > a,
.primary-nav__list > li.current-menu-ancestor > a {
  color: var(--wt-color-accent);
}
.primary-nav__list .sub-menu {
  display: none;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: var(--wt-space-md);
}
.header-actions__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--wt-icon-size, 24px);
  height: var(--wt-icon-size, 24px);
  color: var(--wt-color-text-strong);
}
.header-actions__link svg {
  display: block;
  width: 100%;
  height: 100%;
}
.header-actions__link:hover {
  color: var(--wt-color-accent);
}

/* ---------------------------------------------------------------------------
   Responsive — lean for now; the full mobile nav lands with the mega menu.
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .primary-nav__list {
    gap: var(--wt-space-lg);
  }
}
@media (max-width: 860px) {
  .primary-nav,
  .topbar__contact {
    display: none;
  }
}
.has-mega-menu {
  position: static;
}

.wt-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 10px var(--wt-space-lg) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--wt-mega-timing, 200ms) ease, transform var(--wt-mega-timing, 200ms) ease, visibility var(--wt-mega-timing, 200ms);
}
.has-mega-menu:hover > .wt-mega, .has-mega-menu:focus-within > .wt-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.wt-mega__inner {
  max-width: var(--wt-content-size, 1440px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr) 380px;
  background-color: var(--wt-color-white);
  border-radius: var(--wt-mega-radius, 16px);
  box-shadow: var(--wt-mega-shadow, 0 12px 24px rgba(0, 0, 0, 0.12));
  overflow: hidden;
}
.wt-mega {
  /* ---------------- Left: category cards ---------------- */
}
.wt-mega__cats {
  list-style: none;
  margin: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: #f9f9f9;
}
.wt-mega__cat {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}
.wt-mega__cat.is-active {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.wt-mega__cat-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: #fff;
}
.wt-mega__cat-glyph {
  display: block;
  width: 32px;
  height: 32px;
  background-color: #374151;
  -webkit-mask: var(--wt-glyph) center/contain no-repeat;
  mask: var(--wt-glyph) center/contain no-repeat;
  transition: background-color 160ms ease;
}
.wt-mega__cat.is-active .wt-mega__cat-glyph {
  background-color: var(--wt-color-orange);
}
.wt-mega__cat-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.wt-mega__cat-name {
  font-family: var(--wt-font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #374151;
}
.wt-mega__cat-sub {
  font-family: var(--wt-font-body);
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wt-mega__cat-arrow {
  flex: 0 0 auto;
  margin-left: auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--wt-color-border);
}
.wt-mega__cat-arrow svg {
  width: 14px;
  height: 14px;
}
.wt-mega__cat.is-active .wt-mega__cat-arrow {
  background-color: var(--wt-color-orange);
  color: #fff;
}
.wt-mega {
  /* ---------------- Middle: feature ---------------- */
}
.wt-mega__features {
  position: relative;
  min-height: 440px;
  background-color: var(--wt-color-text-strong);
}
.wt-mega__feature {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.wt-mega__feature.is-active {
  opacity: 1;
  visibility: visible;
}
.wt-mega__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wt-mega__feature-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}
.wt-mega__feature-title {
  margin: 0 0 8px;
  font-family: var(--wt-font-display);
  font-weight: 700;
  font-size: var(--wt-font-size-3xl);
  color: #fff;
}
.wt-mega__feature-desc {
  margin: 0 0 16px;
  max-width: 44ch;
  font-family: var(--wt-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #fff;
}
.wt-mega {
  /* ---------------- Right: featured product ---------------- */
}
.wt-mega__products {
  position: relative;
  min-height: 440px;
  background-color: var(--wt-color-orange);
  color: #fff;
}
.wt-mega__product {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
}
.wt-mega__product.is-active {
  opacity: 1;
  visibility: visible;
}
.wt-mega__pill {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  font-family: var(--wt-font-body);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.wt-mega__pill-icon {
  display: inline-flex;
  color: #fff;
}
.wt-mega__pill-icon svg {
  width: 14px;
  height: 14px;
}
.wt-mega__product-title {
  margin: 0 0 8px;
  font-family: var(--wt-font-body);
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
}
.wt-mega__product-desc {
  margin: 0 0 16px;
  font-family: var(--wt-font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
}
.wt-mega__product-desc p {
  margin: 0;
}
.wt-mega__product-media {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 0 0 16px;
}
.wt-mega__product-media img {
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
}
.wt-mega__product-price {
  margin: 0 0 16px;
  font-family: var(--wt-font-body);
  font-weight: 700;
  font-size: 36px;
  line-height: 28px;
  color: #fff;
}
.wt-mega__product-price del {
  display: block;
  margin-bottom: 6px;
  font-family: var(--wt-font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}
.wt-mega__product-price ins {
  text-decoration: none;
}
.wt-mega__product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: var(--wt-color-text-strong);
  color: #fff;
  font-family: var(--wt-font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}
.wt-mega__cart-icon {
  width: 20px;
  height: 20px;
}

@media (max-width: 1200px) {
  .wt-mega__inner {
    grid-template-columns: 300px minmax(0, 1fr) 320px;
  }
}
@media (max-width: 860px) {
  .wt-mega {
    display: none;
  }
}
.wt-workhappy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: var(--wt-wh-height, 380px);
}
.wt-workhappy__left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem clamp(1.5rem, 6vw, 6rem);
  background-color: var(--wt-color-orange);
  color: #fff;
}
.wt-workhappy__title {
  margin: 0 0 0.5rem;
  font-family: var(--wt-font-display);
  font-weight: 800;
  font-size: 60px;
  line-height: 64px;
  color: #fff;
}
.wt-workhappy__subtitle {
  margin: 0;
  max-width: 22ch;
  font-family: var(--wt-font-display);
  font-weight: 300;
  font-size: 40px;
  line-height: 48px;
  color: #fff;
}
.wt-workhappy__right {
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  background-color: var(--wt-color-text-strong);
}
.wt-workhappy__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wt-workhappy__badge {
  grid-column: 1/-1;
  grid-row: 1;
  justify-self: center;
  align-self: end;
  transform: translateY(calc(var(--wt-wh-badge-offset, 0px) * -1));
  z-index: 2;
  width: clamp(110px, 11vw, 190px);
  color: var(--wt-color-business, #19a4ff);
}
.wt-workhappy__badge svg {
  display: block;
  width: 100%;
  height: auto;
}

body.zakelijk .wt-workhappy__badge {
  color: var(--wt-color-orange-base, #fc7a08);
}

@media (max-width: 1100px) {
  .wt-workhappy__title {
    font-size: 44px;
    line-height: 48px;
  }
  .wt-workhappy__subtitle {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 768px) {
  .wt-workhappy {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .wt-workhappy__left {
    grid-column: 1;
    grid-row: 1;
  }
  .wt-workhappy__right {
    grid-column: 1;
    grid-row: 2;
    min-height: 240px;
  }
  .wt-workhappy__badge {
    grid-column: 1;
    grid-row: 1/-1;
    align-self: center;
    transform: none;
  }
  .wt-workhappy__title {
    font-size: 34px;
    line-height: 38px;
  }
  .wt-workhappy__subtitle {
    font-size: 22px;
    line-height: 28px;
  }
}
.wt-media-text {
  background-color: var(--wt-mt-bg, #f9f9f9);
  color: var(--wt-mt-text, #2e2e2e);
}
.wt-media-text__inner {
  max-width: var(--wt-content-size, 1440px);
  margin-inline: auto;
  padding: var(--wt-space-3xl) var(--wt-space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wt-space-2xl);
  align-items: stretch;
}
.wt-media-text--media-right .wt-media-text__media {
  order: 2;
}
.wt-media-text--media-right .wt-media-text__body {
  order: 1;
}
.wt-media-text__media {
  overflow: hidden;
  border-radius: var(--wt-radius-lg, 16px);
  min-height: 320px;
}
.wt-media-text__image, .wt-media-text__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wt-media-text__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--wt-color-text-muted);
  font-family: var(--wt-font-body);
}
.wt-media-text__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--wt-space-lg);
}
.wt-media-text__title {
  margin: 0;
  font-family: var(--wt-font-display);
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--wt-mt-text, #2e2e2e);
}
.wt-media-text__content {
  font-family: var(--wt-font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--wt-mt-text, #2e2e2e);
}
.wt-media-text__content > :first-child {
  margin-top: 0;
}
.wt-media-text__content > :last-child {
  margin-bottom: 0;
}
.wt-media-text__content :is(h1, h2, h3, h4, h5, h6) {
  color: var(--wt-mt-text);
}
.wt-media-text__content a {
  color: var(--wt-color-accent);
}
.wt-media-text__content strong {
  font-weight: 700;
}
.wt-media-text__button {
  align-self: flex-start;
}

@media (max-width: 768px) {
  .wt-media-text__inner {
    grid-template-columns: 1fr;
    gap: var(--wt-space-xl);
  }
  .wt-media-text--media-right .wt-media-text__media,
  .wt-media-text--media-right .wt-media-text__body {
    order: 0;
  }
  .wt-media-text__media {
    min-height: 240px;
  }
}
.wt-product-slider {
  position: relative;
  background-color: var(--wt-slide-bg, #ffffff);
  transition: background-color 600ms ease;
}
.wt-product-slider *,
.wt-product-slider *::before,
.wt-product-slider *::after {
  box-sizing: border-box;
}
.wt-product-slider__viewport {
  overflow: hidden;
  padding-block: var(--wt-space-3xl);
}
.wt-product-slider__track {
  display: flex;
  transition: transform 400ms ease;
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}
.wt-product-slider__slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: var(--wt-space-xl);
}
.wt-product-slider__card {
  width: var(--wt-content-size, 1440px);
  max-width: 100%;
  height: var(--wt-ps-height, 420px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #ffffff;
  border-radius: var(--wt-radius-lg, 16px);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.wt-product-slider__card--no-image {
  grid-template-columns: 1fr;
}
.wt-product-slider__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--wt-space-lg);
  padding: var(--wt-space-3xl);
  overflow: hidden;
}
.wt-product-slider__title {
  margin: 0;
  font-family: var(--wt-font-display);
  font-weight: 700;
  font-size: var(--wt-font-size-4xl);
  line-height: 1.2;
  color: var(--wt-color-text-strong);
}
.wt-product-slider__desc {
  font-family: var(--wt-font-body);
  font-size: var(--wt-font-size-base);
  line-height: 1.6;
  color: var(--wt-color-text);
}
.wt-product-slider__desc p {
  margin: 0;
}
.wt-product-slider__button {
  align-self: flex-start;
}
.wt-product-slider__media {
  position: relative;
  overflow: hidden;
}
.wt-product-slider__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wt-product-slider__controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--wt-content-size, 1440px) + 2 * var(--wt-space-3xl));
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.wt-product-slider__arrow {
  pointer-events: auto;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background-color: #fff;
  color: var(--wt-color-text-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.wt-product-slider__arrow svg {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  .wt-product-slider,
  .wt-product-slider__track {
    transition: none;
  }
}
@media (max-width: 768px) {
  .wt-product-slider__card {
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
  }
  .wt-product-slider__media {
    order: -1;
  }
  .wt-product-slider__text {
    padding: var(--wt-space-xl);
  }
}
.wt-usp-row {
  padding-block: var(--wt-space-3xl);
}

.wt-usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--wt-space-md);
}
.wt-usp-item__circle {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: var(--wt-usp-circle, var(--wt-color-blue));
  display: flex;
  align-items: center;
  justify-content: center;
}
.wt-usp-item__icon {
  display: block;
  width: 50%;
  height: 50%;
  background-color: var(--wt-usp-icon-color, #fff);
  -webkit-mask: var(--wt-usp-icon) center/contain no-repeat;
  mask: var(--wt-usp-icon) center/contain no-repeat;
}
.wt-usp-item__label {
  margin: 0;
  max-width: 18ch;
  font-family: var(--wt-font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 33px;
  color: var(--wt-usp-text, var(--wt-color-text));
}
