.xdc-catalog-archive,
.xdc-model-single,
.xdc-mega-menu,
.xdc-category-nav,
.xdc-category-mobile,
.xdc-technique-archive,
.xdc-technique-page {
  --xdc-surface: #ffffff;
  --xdc-soft: rgba(248, 251, 255, 0.96);
  --xdc-border: rgba(14, 45, 83, 0.08);
  --xdc-shadow: 0 20px 44px rgba(17, 45, 78, 0.08);
  --xdc-text: #16324f;
  --xdc-muted: #5f768f;
  --xdc-accent: rgb(0, 106, 255);
  --xdc-accent-soft: rgba(0, 106, 255, 0.1);
  color: var(--xdc-text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
}

.xdc-mega-menu {
  background: var(--xdc-surface);
  border: 1px solid var(--xdc-border);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(17, 45, 78, 0.1);
  padding: 28px;
}

.xdc-mega-menu__header h2 {
  color: var(--xdc-text);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 20px;
}

.xdc-mega-menu__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.xdc-mega-menu__card {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.xdc-mega-menu__card:hover {
  border-color: rgba(0, 106, 255, 0.18);
  box-shadow: 0 20px 44px rgba(15, 49, 87, 0.14);
  transform: translateY(-3px);
}

.xdc-mega-menu__card-link {
  align-items: center;
  color: var(--xdc-text);
  display: flex;
  gap: 14px;
  padding: 18px 18px 14px;
  text-decoration: none;
}

.xdc-mega-menu__icon {
  align-items: center;
  background: var(--xdc-accent-soft);
  border-radius: 18px;
  color: var(--xdc-accent);
  display: inline-flex;
  flex: 0 0 56px;
  height: 56px;
  justify-content: center;
  overflow: hidden;
  width: 56px;
}

.xdc-mega-menu__icon img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.xdc-mega-menu__icon .dashicons {
  font-size: 24px;
  height: 24px;
  line-height: 1;
  width: 24px;
}

.xdc-mega-menu__label {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
}

.xdc-mega-menu__children {
  display: grid;
  gap: 8px;
  padding: 0 18px 18px;
}

.xdc-mega-menu__child-link {
  color: var(--xdc-muted);
  font-size: .95rem;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.xdc-mega-menu__child-link:hover {
  color: var(--xdc-accent);
  transform: translateX(2px);
}

.xdc-category-nav {
  --xdc-content-width: var(--wd-container-w, var(--container-w, min(1220px, calc(100vw - 40px))));
  --xdc-overlay-top: 0px;
  box-sizing: border-box;
  overflow: visible;
  position: relative;
  width: 100%;
  z-index: 40;
}

.xdc-category-nav ul,
.xdc-category-nav li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.xdc-category-nav__root {
  align-items: stretch;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none !important;
  margin: 0 !important;
  overflow: visible;
  padding: 0 !important;
  position: relative;
  z-index: 80;
}

.xdc-category-nav__item {
  display: block !important;
  position: relative;
}

.xdc-category-nav__link {
  align-items: center;
  border-radius: 14px;
  color: var(--xdc-text);
  display: inline-flex !important;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease;
  white-space: nowrap;
}

.xdc-category-nav__link:hover,
.xdc-category-nav__item:hover > .xdc-category-nav__link,
.xdc-category-nav__item:focus-within > .xdc-category-nav__link {
  background: var(--xdc-accent-soft);
  color: var(--xdc-accent);
}

.xdc-category-nav__icon,
.xdc-category-mobile__icon,
.xdc-woodmart-mobile-icon {
  align-items: center;
  display: inline-flex;
  flex: 0 0 18px;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.xdc-category-nav__icon img,
.xdc-category-nav__icon .dashicons,
.xdc-category-mobile__icon img,
.xdc-category-mobile__icon .dashicons,
.xdc-woodmart-mobile-icon img,
.xdc-woodmart-mobile-icon .dashicons {
  display: inline-block;
  height: 18px;
  line-height: 18px;
  max-width: 18px;
  object-fit: contain;
  width: 18px;
}

.xdc-category-nav__dropdown {
  background: #fff;
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
  border-left: 0;
  border-radius: 0;
  border-right: 0;
  border-top: 1px solid rgba(14, 45, 83, 0.08);
  box-shadow: 0 28px 70px rgba(17, 45, 78, 0.16);
  left: 0;
  max-width: none;
  min-width: 100vw;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: var(--xdc-overlay-top, 0px);
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
  visibility: hidden;
  width: auto;
  z-index: 90;
}

.xdc-category-nav__item:hover > .xdc-category-nav__dropdown,
.xdc-category-nav__item:focus-within > .xdc-category-nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.xdc-category-nav__dropdown-inner {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: calc(100vw - 40px);
  padding: 24px 18px;
  width: min(var(--xdc-content-width), calc(100vw - 40px));
}

.xdc-category-nav__columns {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.xdc-category-nav__column {
  align-items: flex-start;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.xdc-category-nav__column-title {
  color: var(--xdc-text);
  display: block;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.xdc-category-nav__sublink {
  color: var(--xdc-muted);
  display: block;
  font-size: .92rem;
  line-height: 1.35;
  margin: 0;
  padding: 2px 0;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.xdc-category-nav__column-title:hover,
.xdc-category-nav__sublink:hover {
  color: var(--xdc-accent);
}

.xdc-category-nav__sublink:hover {
  transform: translateX(2px);
}

.xdc-category-nav__overlay {
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: var(--xdc-overlay-top, 0px);
  transition: opacity .18s ease;
  z-index: 60;
}

.xdc-category-nav.has-open-dropdown .xdc-category-nav__overlay {
  opacity: 1;
}

.xdc-mobile-menu-open {
  overflow: hidden;
}

.xdc-category-mobile {
  display: none;
}

.xdc-category-mobile__tree,
.xdc-category-mobile__list {
  display: grid;
  gap: 0;
}

.xdc-category-mobile__item {
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
}

.xdc-category-mobile__row {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
}

.xdc-category-mobile__link {
  align-items: center;
  color: var(--xdc-text);
  display: flex;
  gap: 12px;
  min-height: 52px;
  padding: 0 16px;
  text-decoration: none;
}

.xdc-category-mobile__toggle {
  background: #fff;
  border: 0;
  border-left: 1px solid rgba(14, 45, 83, 0.08);
  color: var(--xdc-text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  padding: 0;
}

.xdc-category-mobile__children {
  display: none;
  padding-left: 14px;
}

.xdc-category-mobile__item.is-open > .xdc-category-mobile__children {
  display: grid;
}

.xdc-category-mobile__item.is-open > .xdc-category-mobile__row .xdc-category-mobile__toggle {
  color: var(--xdc-accent);
}

.xdc-category-mobile__trigger {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(14, 45, 83, 0.1);
  border-radius: 14px;
  color: var(--xdc-text);
  display: inline-flex;
  gap: 10px;
  min-height: 44px;
  padding: 0 14px;
}

.xdc-category-mobile__trigger-icon,
.xdc-category-mobile__trigger-icon::before,
.xdc-category-mobile__trigger-icon::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  width: 18px;
}

.xdc-category-mobile__trigger-icon {
  position: relative;
}

.xdc-category-mobile__trigger-icon::before {
  position: absolute;
  top: -5px;
}

.xdc-category-mobile__trigger-icon::after {
  position: absolute;
  top: 5px;
}

.xdc-category-mobile__overlay {
  background: rgba(0, 0, 0, 0.2);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .18s ease;
  z-index: 79;
}

.xdc-category-mobile__drawer {
  background: #fff;
  box-shadow: 0 20px 54px rgba(17, 45, 78, 0.18);
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100dvh;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform .22s ease;
  width: min(80vw, 380px);
  z-index: 80;
}

.xdc-category-mobile__header {
  align-items: center;
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 16px;
}

.xdc-category-mobile__close {
  background: none;
  border: 0;
  color: var(--xdc-text);
  cursor: pointer;
  font-size: 0;
  height: 28px;
  line-height: 1;
  padding: 0;
  position: relative;
  width: 28px;
}

.xdc-category-mobile__close::before,
.xdc-category-mobile__close::after {
  background: currentColor;
  content: "";
  height: 2px;
  left: 4px;
  position: absolute;
  top: 13px;
  width: 20px;
}

.xdc-category-mobile__close::before {
  transform: rotate(45deg);
}

.xdc-category-mobile__close::after {
  transform: rotate(-45deg);
}

.xdc-category-mobile__drawer .xdc-category-mobile__tree {
  overflow: auto;
  padding-bottom: 20px;
}

.xdc-category-mobile.is-open .xdc-category-mobile__overlay {
  opacity: 1;
  pointer-events: auto;
}

.xdc-category-mobile.is-open .xdc-category-mobile__drawer {
  transform: translateX(0);
}

.mobile-nav.xdc-has-api-categories .create-nav-msg {
  display: none !important;
}

.mobile-nav .xdc-woodmart-mobile-menu:not(.wd-active) {
  display: none;
}

.mobile-nav .xdc-woodmart-mobile-menu .nav-link-text {
  align-items: center;
  color: #33383f;
  display: flex;
  gap: 12px;
  min-width: 0;
  width: 100%;
}

.mobile-nav .xdc-woodmart-mobile-menu .woodmart-nav-link,
.mobile-nav .xdc-woodmart-mobile-menu .wd-sub-menu .woodmart-nav-link,
.mobile-nav .xdc-woodmart-mobile-menu .wd-sub-menu .nav-link-text,
.mobile-nav .xdc-woodmart-mobile-menu .wd-sub-menu .xdc-woodmart-mobile-label {
  color: #33383f !important;
  opacity: 1 !important;
}

.mobile-nav .xdc-woodmart-mobile-menu .xdc-woodmart-mobile-label {
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: anywhere;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-nav-opener {
  align-items: center;
  display: flex;
  justify-content: center;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-drilldown-back {
  align-items: center;
  display: flex;
  min-height: 52px;
  position: relative;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-drilldown-back .wd-nav-opener {
  flex: 0 0 44px;
  inset: auto !important;
  position: static !important;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-drilldown-back a {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  min-height: 52px;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-sub-menu {
  display: none;
}

.mobile-nav .xdc-woodmart-mobile-menu li.xdc-submenu-open > .wd-sub-menu {
  display: block;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-drilldown-back a {
  color: #33383f !important;
  font-weight: 600;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-drilldown-back .xdc-woodmart-mobile-back-icon {
  color: #33383f;
  font-size: 0;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-drilldown-back .xdc-woodmart-mobile-back-icon::before {
  content: "\2039";
  display: inline-flex;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.mobile-nav .xdc-woodmart-mobile-menu .wd-drilldown-back .xdc-woodmart-mobile-back-icon::after {
  display: none !important;
}

@media (max-width: 1100px) {
  .xdc-category-nav__columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .xdc-category-nav {
    display: none;
  }

  .xdc-category-mobile {
    display: block;
  }

  .xdc-category-nav__dropdown {
    display: none;
  }
}

@media (max-width: 768px) {
  .xdc-mega-menu {
    border-radius: 22px;
    padding: 18px;
  }

  .xdc-mega-menu__grid {
    grid-template-columns: 1fr;
  }

  .xdc-category-mobile__drawer {
    width: min(80vw, 360px);
  }
}

.xdc-catalog-archive {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.xdc-catalog-archive.is-ajax-loading {
  position: relative;
}

.xdc-catalog-archive.is-ajax-loading .xdc-catalog-archive__layout,
.xdc-catalog-archive.is-ajax-loading .xdc-catalog-archive__hero {
  opacity: 0.58;
  pointer-events: none;
  transition: opacity .16s ease;
}

.xdc-catalog-archive.is-ajax-loading::after {
  animation: xdc-archive-spin .75s linear infinite;
  background: #fff;
  border: 3px solid rgba(0, 106, 255, 0.14);
  border-top-color: var(--xdc-accent);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(17, 45, 78, 0.14);
  content: "";
  height: 30px;
  position: fixed;
  right: 22px;
  top: 22px;
  width: 30px;
  z-index: 1305;
}

@keyframes xdc-archive-spin {
  to {
    transform: rotate(360deg);
  }
}

.xdc-catalog-archive__hero,
.xdc-sidebar-card,
.xdc-model-single__summary,
.xdc-model-single__gallery,
.xdc-model-single__section,
.xdc-empty-state {
  background: var(--xdc-soft);
  border: 1px solid var(--xdc-border);
  border-radius: 28px;
  box-shadow: var(--xdc-shadow);
}

.xdc-catalog-archive__hero {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.xdc-catalog-archive__eyebrow,
.xdc-model-single__eyebrow {
  color: var(--xdc-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xdc-model-single__eyebrow {
  align-items: center;
  display: flex;
  gap: 12px;
  letter-spacing: 0;
  min-height: 38px;
  text-transform: none;
}

.xdc-catalog-archive__hero-top,
.xdc-sidebar-card__header,
.xdc-model-single__price-row,
.xdc-model-card__footer {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.xdc-catalog-archive__title,
.xdc-model-single h1 {
  color: var(--xdc-text);
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
}

.xdc-catalog-archive__results,
.xdc-catalog-archive__toolbar-copy span,
.xdc-model-card__meta,
.xdc-model-single__subline,
.xdc-model-single__stock-label {
  color: var(--xdc-muted);
  font-size: 0.95rem;
}

.xdc-catalog-archive__hero-badges,
.xdc-badge-list,
.xdc-pill-list,
.xdc-technique-row,
.xdc-model-single__techniques,
.xdc-model-card__colors,
.xdc-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xdc-chip,
.xdc-badge,
.xdc-pill,
.xdc-technique-pill,
.xdc-model-card__stock,
.xdc-page-link,
.xdc-toolbar-link {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  min-height: 34px;
  padding: 0 14px;
  text-decoration: none;
}

.xdc-chip,
.xdc-badge,
.xdc-technique-pill,
.xdc-model-card__stock,
.xdc-page-link {
  background: #fff;
  border: 1px solid var(--xdc-border);
  color: var(--xdc-text);
}

.xdc-badge--link:hover,
.xdc-badge--link:focus,
.xdc-badge--link:focus-visible {
  border-color: rgba(0, 106, 255, 0.28);
  color: var(--xdc-accent);
  outline: none;
  text-decoration: none;
}

.xdc-chip--accent,
.xdc-pill.is-active,
.xdc-page-link.is-active,
.xdc-model-card__stock.is-in-stock,
.xdc-model-single__stock-box.is-in-stock {
  background: linear-gradient(135deg, rgba(55, 120, 244, 0.12), rgba(55, 120, 244, 0.22));
  border-color: rgba(47, 103, 223, 0.14);
  color: #1c57b6;
}

.xdc-catalog-archive__description,
.xdc-catalog-archive__notice,
.xdc-model-card__body p,
.xdc-model-single__richtext,
.xdc-empty-state p {
  color: #425a72;
  line-height: 1.7;
}

.xdc-catalog-archive__notice {
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 22px;
  padding: 18px;
}

.xdc-catalog-archive__toolbar {
  padding: 16px 20px;
}

.xdc-catalog-archive__toolbar-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.xdc-catalog-archive__toolbar-form select,
.xdc-sidebar-card input[type="search"],
.xdc-sidebar-card button:not(.xdc-catalog-archive__facet-heading):not(.xdc-catalog-archive__facet-toggle):not(.xdc-catalog-archive__filters-close),
.xdc-sidebar-card__actions a {
  border: 1px solid rgba(14, 45, 83, 0.12);
  border-radius: 18px;
  box-sizing: border-box;
  min-height: 44px;
}

.xdc-catalog-archive__toolbar-form select,
.xdc-sidebar-card input[type="search"] {
  background: #fff;
  color: var(--xdc-text);
  min-width: 172px;
  padding: 0 14px;
}

.xdc-toolbar-link {
  background: rgba(0, 106, 255, 0.08);
  color: var(--xdc-accent);
}

.xdc-catalog-archive__layout {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
}

.xdc-catalog-archive--no-sidebar .xdc-catalog-archive__layout {
  grid-template-columns: minmax(0, 1fr);
}

.xdc-sidebar-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.xdc-sidebar-card__header h3,
.xdc-sidebar-card__section h4,
.xdc-model-single__section h2,
.xdc-model-single__variants h3 {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}

.xdc-sidebar-card__section {
  display: grid;
  gap: 10px;
}

.xdc-check-list {
  display: grid;
  gap: 8px;
}

.xdc-check {
  align-items: center;
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 16px;
  display: grid;
  gap: 8px;
  grid-template-columns: auto 1fr auto;
  padding: 10px 12px;
}

.xdc-pill {
  background: #fff;
  border: 1px solid var(--xdc-border);
  color: var(--xdc-text);
}

.xdc-pill small,
.xdc-check small {
  color: var(--xdc-muted);
}

.xdc-sidebar-card__actions {
  display: flex;
  gap: 10px;
}

.xdc-sidebar-card button:not(.xdc-catalog-archive__facet-heading):not(.xdc-catalog-archive__facet-toggle):not(.xdc-catalog-archive__filters-close),
.xdc-sidebar-card__actions a {
  align-items: center;
  background: #fff;
  color: var(--xdc-text);
  display: inline-flex;
  justify-content: center;
  padding: 0 16px;
}

.xdc-sidebar-card button:not(.xdc-catalog-archive__facet-heading):not(.xdc-catalog-archive__facet-toggle):not(.xdc-catalog-archive__filters-close) {
  background: linear-gradient(135deg, #1f6feb, rgb(0, 106, 255));
  border: 0;
  color: #fff;
  cursor: pointer;
}

.xdc-model-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(var(--xdc-grid-columns, 4), minmax(0, 1fr));
}

.xdc-model-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--xdc-border);
  border-radius: 24px;
  box-shadow: var(--xdc-shadow);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.xdc-model-card:hover {
  box-shadow: 0 24px 50px rgba(17, 45, 78, 0.12);
  transform: translateY(-3px);
}

.xdc-model-card__link {
  color: inherit;
  display: block;
  text-decoration: none;
}

.xdc-model-card__media {
  align-items: center;
  background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
  display: flex;
  height: 240px;
  justify-content: center;
  overflow: hidden;
}

.xdc-model-card__media img,
.xdc-model-single__hero-image img,
.xdc-model-single__thumb img,
.xdc-model-single__variant-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.xdc-model-card__placeholder {
  align-items: center;
  background: var(--xdc-accent-soft);
  border-radius: 999px;
  color: var(--xdc-accent);
  display: inline-flex;
  font-size: 2rem;
  font-weight: 700;
  height: 72px;
  justify-content: center;
  width: 72px;
}

.xdc-model-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.xdc-model-card__body h3 {
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
}

.xdc-model-card__price strong,
.xdc-model-single__price-box strong {
  font-size: 1.35rem;
  font-weight: 700;
}

.xdc-color-dot {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  display: inline-block;
  height: 14px;
  width: 14px;
}

.xdc-model-single {
  display: grid;
  gap: 20px;
  margin: 24px 0;
  min-width: 0;
}

.xdc-model-single__section--esg {
  scroll-margin-top: 96px;
}

.xdc-model-single__hero {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xdc-model-single__gallery,
.xdc-model-single__summary,
.xdc-model-single__section {
  min-width: 0;
}

.xdc-model-single__summary,
.xdc-model-single__section {
  padding: 22px;
}

.xdc-model-single__summary {
  padding-bottom: 14px;
}

.xdc-model-single__gallery {
  align-self: stretch;
  background: #fff;
  display: grid;
  gap: 8px;
  height: 100%;
  overflow: hidden;
  padding: 0;
}

.xdc-model-single__gallery-shell {
  display: grid;
  gap: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  height: 100%;
}

.xdc-model-single__gallery-breadcrumbs {
  margin: 0;
  padding: 10px 10px 0;
}

.xdc-model-single__breadcrumbs {
  margin: 0;
}

.xdc-model-single__breadcrumb-list {
  --li-mb: 0;
  align-items: center;
  background: rgba(244, 247, 251, 0.94);
  border: 1px solid rgba(14, 45, 83, 0.08);
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  list-style: none;
  margin: 0;
  min-height: 44px;
  padding: 5px 14px;
}

.xdc-model-single__breadcrumb-item {
  --li-mb: 0;
  align-items: center;
  color: #6f8398;
  display: flex;
  font-size: 0.9rem;
  gap: 8px;
  line-height: 1.2;
  margin: 0 !important;
}

.xdc-model-single__breadcrumb-link {
  align-items: center;
  color: #5f768f;
  display: inline-flex;
  line-height: 1.2;
  min-height: 0;
  padding: 0;
  text-decoration: none;
}

.xdc-model-single__breadcrumb-link:hover {
}

.xdc-model-single__breadcrumb-current {
  align-items: center;
  color: #006aff;
  display: inline-flex;
  font-weight: 700;
  line-height: 1.2;
  min-height: 0;
  padding: 0 !important;
}

.xdc-model-single__breadcrumb-sep {
  color: #7a8ea4;
}

.xdc-model-single__gallery-content,
.xdc-model-single__gallery-panel {
  height: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.xdc-model-single__gallery-panel[hidden] {
  display: none !important;
}

.xdc-model-single__gallery-main,
.xdc-model-single__gallery-video,
.xdc-model-single__gallery-video-wrap {
  align-items: center;
  background: #fff;
  border-radius: 0;
  display: flex;
  justify-content: center;
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.xdc-model-single__gallery-main {
  height: 100%;
  touch-action: pan-y;
}

.xdc-model-single__gallery-video,
.xdc-model-single__gallery-video-wrap,
.xdc-model-single__gallery-video-embed {
  width: 100%;
}

.xdc-model-single__gallery-main img {
  background: #fff;
  display: block;
  height: auto;
  margin: 0 auto;
  max-height: 520px;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  width: auto;
}

.xdc-model-single__gallery-image {
  max-height: 520px;
  width: auto;
}

.xdc-model-single__gallery-placeholder {
  align-items: center;
  background: rgba(0, 106, 255, 0.08);
  border-radius: 999px;
  color: #006aff;
  display: inline-flex;
  font-size: 2.4rem;
  font-weight: 800;
  height: 96px;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 96px;
}

.xdc-model-single__gallery-arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 45, 83, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 45, 78, 0.1);
  color: #16324f;
  cursor: pointer;
  display: inline-flex;
  font-size: 0;
  height: 46px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  width: 46px;
  z-index: 3;
}

.xdc-model-single__gallery-arrow:hover {
  background: #ffffff;
  border-color: rgba(0, 106, 255, 0.22);
  color: #006aff;
  transform: translateY(-50%) scale(1.03);
}

.xdc-model-single__gallery-arrow span {
  align-items: center;
  display: inline-flex;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.xdc-model-single__gallery-arrow--prev {
  left: 12px;
  right: auto;
}

.xdc-model-single__gallery-arrow--next {
  left: auto;
  right: 12px;
}

.xdc-model-single__gallery-arrow:disabled {
  cursor: default;
  opacity: 0.36;
  transform: translateY(-50%);
}

.xdc-model-single__gallery-video,
.xdc-model-single__gallery-video iframe,
.xdc-model-single__gallery-video .wp-video,
.xdc-model-single__gallery-video .mejs-container,
.xdc-model-single__gallery-video .mejs-embed,
.xdc-model-single__gallery-video .me-plugin,
.xdc-model-single__gallery-video-embed,
.xdc-model-single__gallery-video-embed > *,
.xdc-model-single__gallery-video-embed iframe,
.xdc-model-single__gallery-video-embed .wp-video,
.xdc-model-single__gallery-video-embed .mejs-container,
.xdc-model-single__gallery-video-embed .mejs-embed,
.xdc-model-single__gallery-video-embed .me-plugin,
.xdc-model-single__gallery-video-player,
.xdc-model-single__gallery-video-wrap > div {
  height: 100%;
  width: 100%;
}

.xdc-model-single__gallery-video iframe,
.xdc-model-single__gallery-video .wp-video,
.xdc-model-single__gallery-video .mejs-container,
.xdc-model-single__gallery-video .mejs-embed,
.xdc-model-single__gallery-video .me-plugin,
.xdc-model-single__gallery-video-embed,
.xdc-model-single__gallery-video-embed > *,
.xdc-model-single__gallery-video-embed iframe,
.xdc-model-single__gallery-video-embed .wp-video,
.xdc-model-single__gallery-video-embed .mejs-container,
.xdc-model-single__gallery-video-embed .mejs-embed,
.xdc-model-single__gallery-video-embed .me-plugin,
.xdc-model-single__gallery-video-player,
.xdc-model-single__gallery-video-wrap > div {
  flex: 1 1 auto;
  min-height: 440px;
}

.xdc-model-single__gallery-video-embed {
  display: flex;
  justify-content: stretch;
  max-width: none !important;
}

.xdc-model-single__gallery-video-embed > * {
  max-width: none !important;
  width: 100% !important;
}

.xdc-model-single__gallery-video-embed iframe,
.xdc-model-single__gallery-video-embed .wp-video,
.xdc-model-single__gallery-video-embed .mejs-container,
.xdc-model-single__gallery-video-embed .mejs-embed,
.xdc-model-single__gallery-video-embed .me-plugin {
  width: 100% !important;
}

.xdc-model-single__gallery-video iframe {
  border: 0;
  display: block;
}

.xdc-model-single__gallery-video-player {
  background: #000;
  display: block;
}

.xdc-model-single__gallery-thumbs {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  justify-content: stretch;
  padding: 0;
}

.xdc-model-single__thumb,
.xdc-model-single__variant,
.xdc-doc-card,
.xdc-branding-list__item {
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 18px;
}

.xdc-model-single__thumb {
  align-items: center;
  appearance: none;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  line-height: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  width: 100%;
}

.xdc-model-single__gallery-thumbs .xdc-model-single__thumb[type="button"] {
  min-height: 0;
  padding: 0;
}

.xdc-model-single__thumb:hover,
.xdc-model-single__thumb.is-active {
  box-shadow: inset 0 0 0 2px rgba(0, 106, 255, 0.24);
  transform: none;
}

.xdc-model-single__thumb img {
  aspect-ratio: 1 / 1;
  background: transparent;
  border-radius: 0;
  display: block;
  height: calc(100% + 12px);
  object-fit: cover;
  transform: scale(1.16);
  transform-origin: center;
  width: calc(100% + 12px);
}

.xdc-model-single__thumb--video {
  background: linear-gradient(145deg, #16324f 0%, #006aff 100%);
  color: #fff;
}

.xdc-model-single__thumb--video .xdc-model-single__thumb-video-preview {
  inset: -6px;
}

.xdc-model-single__thumb-video-preview {
  background-position: center;
  background-size: cover;
  inset: 0;
  opacity: 0.18;
  position: absolute;
}

.xdc-model-single__thumb-video-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: inline-flex;
  font-size: 1.1rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
  z-index: 1;
}

.xdc-model-single__summary {
  align-content: start;
  display: grid;
  gap: 14px;
}

.xdc-model-single__brand-link {
  align-items: center;
  color: var(--xdc-accent);
  display: inline-flex;
  gap: 12px;
  max-width: 100%;
  min-width: 0;
  text-decoration: none;
}

.xdc-model-single__brand-link:hover {
  color: #0f5fd6;
}

.xdc-model-single__brand-link--static {
  cursor: default;
}

.xdc-model-single__brand-logo {
  display: block;
  flex: 0 0 auto;
  height: auto;
  max-height: 44px;
  max-width: 200px;
  object-fit: contain;
  width: auto;
}

.xdc-model-single__brand-name {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.xdc-model-single__summary-primary,
.xdc-model-single__summary-secondary {
  display: grid;
  gap: 12px;
}

.xdc-model-single h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
  overflow-wrap: anywhere;
}

.xdc-model-single__eyebrow,
.xdc-model-single__subline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.xdc-model-single__summary-code {
  color: #006aff;
  font-size: 1.04rem;
  font-weight: 700;
}

.xdc-model-single__price-copy {
  color: #5f768f;
  font-size: 1rem;
  line-height: 1.45;
  margin: 0;
}

.xdc-model-single__price-box,
.xdc-model-single__stock-box {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.xdc-model-single__price-box {
  align-items: baseline;
  background: transparent;
  border: 0;
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  padding: 0;
}

.xdc-model-single__price-box strong,
.xdc-model-single__stock-box strong {
  line-height: 1.08;
}

.xdc-model-single__price-box strong {
  color: #16324f;
  font-size: clamp(2rem, 3.2vw, 3rem);
  letter-spacing: -0.03em;
}

.xdc-model-single__price-prefix {
  color: #5f768f;
  font-size: 0.42em;
  font-weight: 700;
  letter-spacing: 0;
}

.xdc-model-single__price-box strong small {
  font-size: 0.56em;
  font-weight: 700;
}

.xdc-model-single__price-tax {
  align-self: flex-start;
  color: #16324f;
  font-size: 1rem;
  font-weight: 700;
  padding-top: 8px;
}

.xdc-model-single__unit-price {
  color: #5f768f;
  font-size: 0.92rem;
  line-height: 1.45;
  margin: -2px 0 0;
}

.xdc-model-single__unit-price strong {
  color: #16324f;
  font-weight: 700;
}

.xdc-model-single__price-contact {
  background: var(--xdc-single-cta-bg, #fff4bf);
  border: var(--xdc-single-cta-border-width, 1px) var(--xdc-single-cta-border-style, dashed) var(--xdc-single-cta-border-color, #e4c652);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(163, 125, 22, 0.12);
  display: grid;
  gap: 10px;
  padding: 14px;
}

.xdc-model-single__price-contact p {
  color: #5f768f;
  display: grid;
  gap: 4px;
  line-height: 1.45;
  margin: 0;
}

.xdc-model-single__price-contact p strong {
  color: #16324f;
  font-size: 1rem;
}

.xdc-model-single__price-cta {
  align-items: center;
  background: #006aff;
  border: 1px solid rgba(0, 106, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 106, 255, 0.18);
  color: #fff;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  justify-self: start;
  line-height: 1.35;
  margin-top: 8px;
  max-width: 100%;
  padding: 11px 16px;
  text-align: left;
  text-decoration: none;
}

.xdc-model-single__price-cta:hover,
.xdc-model-single__price-cta:focus {
  background: #0057d6;
  color: #fff;
  text-decoration: none;
}

.xdc-model-single__price-cta-icon {
  flex: 0 0 auto;
  font-size: 1.25rem;
  line-height: 1;
}

.xdc-model-single__stock-box {
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 16px;
  padding: 14px 16px;
}

.xdc-model-single__stock-box.is-in-stock {
  background: linear-gradient(135deg, rgba(18, 152, 95, 0.08), rgba(18, 152, 95, 0.16));
  border-color: rgba(18, 152, 95, 0.22);
  color: #12985f;
}

.xdc-model-single__stock-box.is-incoming {
  background: linear-gradient(135deg, rgba(0, 106, 255, 0.08), rgba(0, 106, 255, 0.16));
  border-color: rgba(0, 106, 255, 0.22);
  color: #006aff;
}

.xdc-model-single__stock-box.is-out-of-stock {
  background: linear-gradient(135deg, rgba(209, 67, 67, 0.08), rgba(209, 67, 67, 0.16));
  border-color: rgba(209, 67, 67, 0.22);
  color: #d14343;
}

.xdc-model-single__summary-facts {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xdc-model-single__summary-facts-block {
  display: grid;
  gap: 8px;
}

.xdc-model-single__summary-facts-title {
  color: #16324f;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.xdc-model-single__badges-block {
  display: grid;
  gap: 8px;
}

.xdc-model-single__badges-title {
  color: #16324f;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.xdc-model-single__summary-fact {
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 14px;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
}

.xdc-model-single__summary-fact span {
  color: var(--xdc-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.xdc-model-single__summary-fact strong {
  font-size: 0.98rem;
}

.xdc-model-single__summary-fact--accent {
  background: rgba(0, 106, 255, 0.08);
  border-color: rgba(0, 106, 255, 0.18);
}

.xdc-model-single__variants,
.xdc-model-single__sections {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.xdc-model-single__intro-grid {
  align-items: stretch;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-width: 0;
}

.xdc-model-single__intro-grid > .xdc-model-single__section {
  align-content: start;
  height: 100%;
}

.xdc-model-single__intro-grid--single {
  grid-template-columns: 1fr;
}

.xdc-model-single__section--description,
.xdc-model-single__section--specs {
  align-content: start;
}

.xdc-model-single__variants--summary {
  gap: 10px;
}

.xdc-model-single__variants--summary h3 {
  margin: 0;
}

.xdc-model-single__sizes {
  display: grid;
  gap: 8px;
}

.xdc-model-single__selector-title {
  color: #16324f;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.xdc-model-single__size-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
}

.xdc-model-single__size-chip {
  align-items: center;
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 999px;
  color: var(--xdc-text);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 700;
  justify-content: center;
  min-height: 40px;
  padding: 0 12px;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.xdc-model-single__size-chip:hover {
  border-color: rgba(0, 106, 255, 0.24);
  color: #006aff;
}

.xdc-model-single__size-chip.is-active {
  background: rgba(0, 106, 255, 0.08);
  border-color: rgba(0, 106, 255, 0.24);
  box-shadow: inset 0 0 0 1px rgba(0, 106, 255, 0.08);
  color: #006aff;
}

.xdc-model-single__variant-grid,
.xdc-doc-grid,
.xdc-branding-groups {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.xdc-model-single__variant-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xdc-model-single__variant-grid--colors {
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xdc-model-single__variant {
  align-items: center;
  color: inherit;
  display: grid;
  gap: 10px;
  grid-template-columns: 54px minmax(0, 1fr);
  padding: 10px;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.xdc-model-single__variant:hover,
.xdc-doc-card:hover {
  border-color: rgba(0, 106, 255, 0.25);
  box-shadow: 0 14px 28px rgba(0, 106, 255, 0.14);
  transform: translateY(-1px);
}

.xdc-model-single__variant.is-active {
  border-color: rgba(0, 106, 255, 0.28);
  box-shadow: 0 10px 24px rgba(0, 106, 255, 0.12);
}

.xdc-model-single__variant-image {
  border-radius: 10px;
  height: 54px;
  overflow: hidden;
  width: 54px;
}

.xdc-model-single__variant-grid--colors .xdc-model-single__variant {
  align-items: start;
  gap: 8px;
  grid-template-columns: 40px minmax(0, 1fr);
  padding: 8px;
}

.xdc-model-single__variant-grid--colors .xdc-model-single__variant-image {
  border-radius: 8px;
  height: 40px;
  width: 40px;
}

.xdc-model-single__variant-image--color {
  align-items: center;
  background: var(--xdc-accent-soft);
  display: flex;
  justify-content: center;
}

.xdc-model-single__variant-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.xdc-model-single__variant-grid--colors .xdc-model-single__variant-copy {
  gap: 2px;
}

.xdc-model-single__variant-grid--colors .xdc-model-single__variant-copy strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.xdc-model-single__variant-grid--colors .xdc-model-single__variant-copy small {
  font-size: 0.72rem;
  line-height: 1.25;
}

.xdc-model-single__variant-grid--colors .xdc-model-single__variant-stock {
  font-size: calc(0.72rem + 1px);
}

.xdc-model-single__variant-copy small,
.xdc-branding-list__meta,
.xdc-doc-card span {
  color: var(--xdc-muted);
}

.xdc-model-single__variant-stock {
  font-weight: 700;
}

.xdc-model-single__variant-stock.is-in-stock {
  color: #12985f;
}

.xdc-model-single__variant-stock.is-incoming {
  color: #006aff;
}

.xdc-model-single__variant-stock.is-out-of-stock {
  color: #d14343;
}

.xdc-model-single__section {
  display: grid;
  gap: 16px;
}

.xdc-model-single__section--specs {
  gap: 8px;
  padding: 14px 18px;
}

.xdc-spec-list {
  display: grid;
  gap: 0;
  margin: 0;
  min-width: 0;
}

.xdc-spec-row {
  align-items: baseline;
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  min-width: 0;
  padding: 6px 0;
}

.xdc-spec-row:last-child {
  border-bottom: 0;
}

.xdc-spec-label {
  color: var(--xdc-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}

.xdc-spec-value {
  color: #16324f;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  min-width: 0;
  overflow-wrap: anywhere;
}

.xdc-model-single__section--price-tiers {
  gap: 8px;
  padding: 14px 18px;
}

.xdc-model-single__section--summary-price-tiers {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-top: 2px;
  padding: 4px 0 0;
}

.xdc-model-single__table-wrap {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.xdc-meta-list,
.xdc-price-table {
  border-collapse: collapse;
  width: 100%;
}

.xdc-meta-list td,
.xdc-price-table td,
.xdc-price-table th {
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
  overflow-wrap: anywhere;
  padding: 10px 8px;
  text-align: left;
  vertical-align: top;
}

.xdc-price-table th {
  color: var(--xdc-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.xdc-price-table--tiers {
  min-width: 100%;
  width: max-content;
}

.xdc-price-table--tiers th,
.xdc-price-table--tiers td {
  font-size: 0.94rem;
  line-height: 1.32;
  padding: 5px 8px;
  white-space: nowrap;
}

.xdc-price-table--tiers th {
  min-width: 96px;
}

.xdc-price-table--tiers td {
  text-align: right;
}

.xdc-price-table--tiers strong {
  color: var(--xdc-text);
  font-weight: 700;
}

.xdc-meta-list td:first-child {
  color: var(--xdc-muted);
  width: 34%;
}

.xdc-model-single__section--specs .xdc-model-single__table-wrap {
  margin-top: -2px;
}

.xdc-meta-list--compact td {
  font-size: 0.94rem;
  line-height: 1.32;
  padding: 5px 6px;
}

.xdc-meta-list--compact td:first-child {
  width: 33%;
}

.xdc-model-single__section--specs .xdc-meta-list--compact td:first-child {
  width: 60%;
}

.xdc-model-single__section--specs .xdc-meta-list--compact td:last-child {
  width: 40%;
}

.xdc-model-single__section--esg {
  gap: 18px;
}

.xdc-esg-header {
  display: grid;
  gap: 6px;
  max-width: 860px;
}

.xdc-esg-header p {
  color: var(--xdc-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.xdc-esg-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
}

.xdc-esg-subsection--compliance {
  grid-column: 1 / -1;
}

.xdc-esg-data,
.xdc-esg-subsection {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.xdc-esg-data {
  display: contents;
}

.xdc-esg-data > .xdc-esg-total,
.xdc-esg-data > .xdc-esg-subsection {
  grid-column: 1;
}

.xdc-esg-data > .xdc-esg-subsection:has(.xdc-esg-card-grid) {
  grid-column: 1 / -1;
}

.xdc-esg-guide {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.xdc-esg-total {
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
  display: grid;
  gap: 6px;
  padding-bottom: 16px;
}

.xdc-esg-total span,
.xdc-esg-subsection h3 {
  color: #16324f;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.xdc-esg-total strong {
  color: #0b7554;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.xdc-esg-total small {
  color: var(--xdc-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.xdc-esg-table {
  border-collapse: collapse;
  min-width: 480px;
  width: 100%;
}

.xdc-esg-table th,
.xdc-esg-table td {
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
  padding: 2px 8px;
  text-align: left;
  vertical-align: middle;
}

.xdc-esg-table th {
  color: var(--xdc-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.xdc-esg-table td {
  font-size: 0.92rem;
}

.xdc-esg-table tbody tr.is-dominant td {
  background: rgba(18, 152, 95, 0.06);
}

.xdc-esg-table tbody tr.is-dominant td:first-child {
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  color: #0b7554;
  font-weight: 800;
}

.xdc-esg-table tbody tr.is-dominant td:last-child {
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
}

.xdc-esg-table td:nth-child(2) {
  color: #16324f;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.xdc-esg-share {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(76px, 1fr) auto;
  min-width: 150px;
}

.xdc-esg-share__bar {
  background: rgba(18, 152, 95, 0.1);
  border-radius: 999px;
  display: block;
  height: 8px;
  overflow: hidden;
}

.xdc-esg-share__bar span {
  background: linear-gradient(90deg, #12985f 0%, #006aff 100%);
  border-radius: inherit;
  display: block;
  height: 100%;
  min-width: 2px;
}

.xdc-esg-share strong {
  color: #16324f;
  font-size: 0.84rem;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  white-space: nowrap;
}

.xdc-esg-compliance-table td:first-child {
  width: 42%;
}

.xdc-esg-compliance-table td {
  padding-bottom: 2px;
  padding-top: 2px;
}

.xdc-compliance-list {
  display: grid;
  gap: 8px 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.xdc-compliance-list li {
  color: #425a72;
  font-size: 0.9rem;
  line-height: 1.4;
  padding-left: 16px;
  position: relative;
}

.xdc-compliance-list li::before {
  background: #12985f;
  border-radius: 999px;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.62em;
  width: 6px;
}

.xdc-compliance-docs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xdc-compliance-docs-block {
  display: grid;
  gap: 8px;
}

.xdc-compliance-docs-title {
  color: var(--xdc-text);
  font-size: 0.96rem;
  font-weight: 800;
  margin: 0;
  text-transform: none;
}

.xdc-esg-card-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.xdc-esg-card {
  background: #fff;
  border: 1px solid rgba(14, 45, 83, 0.08);
  border-radius: 14px;
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 10px 12px;
}

.xdc-esg-card span {
  color: var(--xdc-muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.xdc-esg-card strong {
  align-items: center;
  color: #16324f;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.94rem;
  font-weight: 800;
  gap: 6px;
  line-height: 1.3;
  min-width: 0;
  overflow-wrap: anywhere;
}

.xdc-esg-card--ean_code strong {
  font-variant-numeric: tabular-nums;
}

.xdc-esg-pill {
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  padding: 6px 10px;
}

.xdc-esg-pill--yes {
  background: rgba(18, 152, 95, 0.1);
  color: #0b7554;
}

.xdc-esg-pill--no {
  background: rgba(209, 67, 67, 0.1);
  color: #b33333;
}

.xdc-esg-guide {
  border-left: 1px solid rgba(14, 45, 83, 0.08);
  display: grid;
  gap: 0;
  padding-left: 22px;
}

.xdc-esg-guide details {
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
}

.xdc-esg-guide details:first-child {
  border-top: 1px solid rgba(14, 45, 83, 0.08);
}

.xdc-esg-guide summary {
  align-items: center;
  color: #16324f;
  cursor: pointer;
  display: flex;
  font-size: 0.94rem;
  font-weight: 800;
  gap: 14px;
  justify-content: space-between;
  list-style: none;
  padding: 13px 0;
}

.xdc-esg-guide summary::-webkit-details-marker {
  display: none;
}

.xdc-esg-guide summary::after {
  align-items: center;
  background: rgba(0, 106, 255, 0.08);
  border-radius: 999px;
  color: #006aff;
  content: "+";
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 1rem;
  font-weight: 800;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.xdc-esg-guide details[open] summary::after {
  content: "-";
}

.xdc-esg-guide p {
  color: var(--xdc-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: -2px 0 14px;
}

.xdc-stock-table {
  border-collapse: collapse;
  width: 100%;
}

.xdc-stock-table th,
.xdc-stock-table td {
  border-bottom: 1px solid rgba(14, 45, 83, 0.08);
  overflow-wrap: anywhere;
  text-align: left;
  vertical-align: middle;
}

.xdc-stock-table th {
  padding: 6px 8px;
}

.xdc-stock-table td {
  padding: 2px 8px;
}

.xdc-stock-table th {
  color: var(--xdc-muted);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.xdc-stock-table td:not(:first-child),
.xdc-stock-table th:not(:first-child) {
  text-align: center;
}

.xdc-stock-table__color {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: 0;
}

.xdc-stock-table__color-thumb {
  background: #fff;
  border: 1px solid rgba(14, 45, 83, 0.08);
  border-radius: 10px;
  display: inline-flex;
  flex: 0 0 40px;
  height: 40px;
  overflow: hidden;
  width: 40px;
}

.xdc-stock-table__color-thumb img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.xdc-stock-table__color-dot {
  border: 1px solid rgba(14, 45, 83, 0.12);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 14px;
  height: 14px;
  width: 14px;
}

.xdc-stock-table__color-label {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.xdc-stock-table__color-label span {
  color: #16324f;
  font-weight: 700;
}

.xdc-stock-table__color-label small {
  color: #6e8398;
  font-size: 0.78rem;
  font-weight: 600;
}

.xdc-model-single__arrival-block {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.xdc-model-single__arrival-title {
  color: #16324f;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.xdc-model-single__arrival-groups {
  display: grid;
  gap: 10px;
}

.xdc-model-single__arrival-group {
  background: #f8fbff;
  border: 1px solid rgba(15, 45, 82, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.xdc-model-single__arrival-group summary::-webkit-details-marker {
  display: none;
}

.xdc-model-single__arrival-summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  list-style: none;
  padding: 12px 14px;
}

.xdc-model-single__arrival-summary-side {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  gap: 10px;
}

.xdc-model-single__arrival-summary-date {
  color: #70839a;
  font-size: 0.81rem;
  font-weight: 600;
  white-space: nowrap;
}

.xdc-model-single__arrival-toggle {
  background: #ffffff;
  border: 1px solid rgba(0, 106, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  height: 24px;
  position: relative;
  width: 24px;
}

.xdc-model-single__arrival-toggle::before,
.xdc-model-single__arrival-toggle::after {
  background: #006aff;
  border-radius: 999px;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.xdc-model-single__arrival-toggle::before {
  height: 2px;
  width: 10px;
}

.xdc-model-single__arrival-toggle::after {
  height: 10px;
  width: 2px;
}

.xdc-model-single__arrival-group[open] .xdc-model-single__arrival-toggle {
  background: rgba(0, 106, 255, 0.1);
  border-color: rgba(0, 106, 255, 0.24);
}

.xdc-model-single__arrival-group[open] .xdc-model-single__arrival-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.xdc-model-single__arrival-items {
  border-top: 1px solid rgba(15, 45, 82, 0.08);
  display: grid;
  gap: 8px;
  padding: 10px 14px 14px;
}

.xdc-model-single__arrival-item {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(15, 45, 82, 0.08);
  border-radius: 12px;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(58px, auto) minmax(0, 1fr) minmax(0, 1fr);
  padding: 10px 12px;
}

.xdc-model-single__arrival-item--head {
  background: transparent;
  border: 0;
  padding: 0 2px 2px;
}

.xdc-model-single__arrival-item-size {
  background: rgba(0, 106, 255, 0.08);
  border-radius: 999px;
  color: #17385d;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 700;
  justify-content: center;
  min-width: 42px;
  padding: 5px 10px;
}

.xdc-model-single__arrival-item-slot {
  color: #17385d;
  font-size: 0.84rem;
  font-weight: 600;
}

.xdc-model-single__arrival-item--head .xdc-model-single__arrival-item-size,
.xdc-model-single__arrival-item--head .xdc-model-single__arrival-item-slot {
  background: transparent;
  color: #70839a;
  font-size: 0.74rem;
  font-weight: 700;
  min-width: 0;
  padding: 0;
  text-transform: uppercase;
}

.xdc-document-link {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(14, 45, 83, 0.08);
  border-radius: 12px;
  color: inherit;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  min-height: 38px;
  padding: 4px 10px;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.xdc-document-link:hover {
  border-color: rgba(0, 106, 255, 0.22);
  box-shadow: 0 10px 24px rgba(0, 106, 255, 0.12);
  color: #006aff;
}

.xdc-document-link__icon {
  align-items: center;
  background: rgba(0, 106, 255, 0.1);
  border-radius: 10px;
  color: #006aff;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 30px;
  min-width: 42px;
  padding: 0 10px;
}

.xdc-document-link__label {
  min-width: 0;
  overflow-wrap: anywhere;
}

.xdc-document-link--compact {
  min-height: 32px;
  padding: 0;
}

.xdc-document-link--compact .xdc-document-link__icon {
  border-radius: 999px;
  min-height: 32px;
  min-width: 48px;
  padding: 0 12px;
}

.xdc-document-link--cert {
  border-radius: 999px;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 0 12px 0 0;
}

.xdc-document-link--cert .xdc-document-link__label {
  font-size: 0.84rem;
  font-weight: 700;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xdc-document-link--action {
  border-radius: 999px;
  min-height: 34px;
  padding: 0 12px;
}

.xdc-document-link--action .xdc-document-link__icon {
  background: transparent;
  font-size: 0.96rem;
  min-height: auto;
  min-width: auto;
  padding: 0;
}

.xdc-document-link--mail .xdc-document-link__label,
.xdc-document-link--link .xdc-document-link__label {
  font-size: 0.86rem;
  font-weight: 700;
}

.xdc-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.xdc-doc-grid {
  gap: 8px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.xdc-model-single__section--documents {
  display: grid;
  gap: 16px;
}

.xdc-doc-section {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.xdc-doc-section + .xdc-doc-section {
  border-top: 1px solid rgba(14, 45, 83, 0.08);
  padding-top: 16px;
}

.xdc-doc-section h3 {
  color: var(--xdc-text);
  font-size: 0.96rem;
  font-weight: 800;
  margin: 0;
}

.xdc-doc-section p {
  color: var(--xdc-muted);
  margin: 0;
}

.xdc-branding-list__item,
.xdc-doc-card {
  color: inherit;
  display: grid;
  gap: 8px;
  padding: 8px 10px;
  text-decoration: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.xdc-doc-card {
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 48px;
}

.xdc-doc-card__body {
  display: block;
  min-width: 0;
}

.xdc-doc-card .xdc-document-link__icon {
  border-radius: 8px;
  font-size: 0.66rem;
  min-height: 26px;
  min-width: 34px;
  padding: 0 7px;
}

.xdc-doc-card__body strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  .xdc-doc-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .xdc-doc-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .xdc-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-doc-card {
    gap: 6px;
    padding: 7px 8px;
  }

  .xdc-doc-card .xdc-document-link__icon {
    font-size: 0.62rem;
    min-height: 24px;
    min-width: 30px;
    padding: 0 6px;
  }

  .xdc-doc-card__body strong {
    font-size: 0.8rem;
  }
}

.xdc-model-single__section--related {
  gap: 14px;
}

.xdc-related-products__header {
  display: grid;
  gap: 4px;
}

.xdc-related-products__header p {
  color: var(--xdc-muted);
  font-size: 0.94rem;
  margin: 0;
}

.xdc-related-products__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 0;
}

.xdc-related-card {
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 10px;
  box-shadow: 0 18px 38px rgba(17, 45, 78, 0.08);
  min-width: 0;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.xdc-related-card:hover {
  border-color: rgba(0, 106, 255, 0.25);
  box-shadow: 0 20px 42px rgba(0, 106, 255, 0.12);
  transform: translateY(-1px);
}

.xdc-related-card__link {
  color: inherit;
  display: grid;
  height: 100%;
  text-decoration: none;
}

.xdc-related-card__media {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.xdc-related-card__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.xdc-related-card__body {
  display: grid;
  gap: 6px;
  padding: 12px;
}

.xdc-related-card__code {
  color: var(--xdc-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.xdc-related-card__body strong {
  color: var(--xdc-text);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.24;
}

.xdc-related-card__price {
  color: var(--xdc-text);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.3;
}

.xdc-branding-list__title {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-weight: 700;
}

.xdc-branding-tabs {
  display: grid;
  gap: 14px;
}

.xdc-branding-tabs__list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}

.xdc-branding-tab {
  align-items: center;
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 999px;
  color: var(--xdc-text);
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.xdc-branding-tab:hover,
.xdc-branding-tab:focus-visible {
  border-color: rgba(0, 106, 255, 0.28);
  color: var(--xdc-accent);
}

.xdc-branding-tab:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.14);
  outline: 0;
}

.xdc-branding-tab.is-active {
  background: var(--xdc-accent-soft);
  border-color: rgba(0, 106, 255, 0.3);
  color: var(--xdc-accent);
}

.xdc-branding-tabs__panels,
.xdc-branding-panel {
  display: grid;
  gap: 12px;
}

.xdc-branding-panel[hidden] {
  display: none;
}

.xdc-branding-group__positions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xdc-branding-position {
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 16px;
  display: grid;
  gap: 4px;
  min-width: 0;
  overflow: hidden;
  padding: 0;
}

.xdc-branding-position__media {
  aspect-ratio: 1 / 1;
  background: #f8fafc;
  overflow: hidden;
}

.xdc-branding-position__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.xdc-branding-position__body {
  display: grid;
  gap: 4px;
  padding: 9px 12px 11px;
}

.xdc-branding-position--no-image .xdc-branding-position__body {
  padding: 12px 14px;
}

.xdc-branding-position__label {
  color: var(--xdc-text);
  font-size: 0.92rem;
  line-height: 1.3;
}

.xdc-branding-position__meta {
  color: var(--xdc-muted);
  font-size: 0.82rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.xdc-branding-panel__links {
  border-top: 1px solid rgba(137, 151, 168, 0.22);
  color: var(--xdc-muted);
  display: grid;
  font-size: 0.92rem;
  gap: 6px;
  line-height: 1.45;
  padding-top: 4px;
}

.xdc-branding-panel__links p {
  margin: 0;
}

.xdc-branding-panel__links a {
  color: var(--xdc-accent);
  font-weight: 800;
  text-decoration: none;
}

.xdc-branding-panel__links a:hover,
.xdc-branding-panel__links a:focus-visible {
  color: #0b5597;
  text-decoration: underline;
}

.xdc-empty-state {
  padding: 28px;
}

.xdc-empty-state h3 {
  margin: 0 0 10px;
}

@media (max-width: 1100px) {
  .xdc-model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xdc-model-single__hero {
    grid-template-columns: 1fr;
  }

  .xdc-model-single__gallery,
  .xdc-model-single__gallery-shell,
  .xdc-model-single__gallery-content,
  .xdc-model-single__gallery-panel,
  .xdc-model-single__gallery-main {
    height: auto;
  }
}

@media (max-width: 920px) {
  .xdc-catalog-archive__layout {
    grid-template-columns: 1fr;
  }

  .xdc-esg-layout {
    grid-template-columns: 1fr;
  }

  .xdc-esg-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-esg-data > .xdc-esg-total,
  .xdc-esg-data > .xdc-esg-subsection,
  .xdc-esg-data > .xdc-esg-subsection:has(.xdc-esg-card-grid),
  .xdc-esg-guide {
    grid-column: auto;
    grid-row: auto;
  }

  .xdc-model-single__intro-grid {
    grid-template-columns: 1fr;
  }

  .xdc-esg-guide {
    border-left: 0;
    padding-left: 0;
  }

  .xdc-toolbar-link {
    width: 100%;
  }

  .xdc-catalog-archive__hero-top {
    align-items: stretch;
    flex-direction: column;
  }

  .xdc-model-single__price-row {
    grid-template-columns: 1fr;
  }

  .xdc-model-single__summary-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-model-single__variant-grid--colors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-branding-group__positions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-model-single__arrival-item {
    grid-template-columns: minmax(54px, auto) minmax(0, 1fr);
  }

  .xdc-model-single__arrival-item-slot:last-child {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .xdc-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-model-single {
    box-sizing: border-box;
    margin-left: calc(50% - 50vw + 5px);
    margin-right: calc(50% - 50vw + 5px);
    max-width: calc(100vw - 10px);
    width: calc(100vw - 10px);
  }

  .xdc-catalog-archive {
    box-sizing: border-box;
    margin-left: calc(50% - 50vw + 5px);
    margin-right: calc(50% - 50vw + 5px);
    max-width: calc(100vw - 10px);
    width: calc(100vw - 10px);
  }

  .xdc-model-single__variant-grid {
    grid-template-columns: 1fr;
  }

  .xdc-model-single__variant-grid--colors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-model-single__summary-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xdc-model-single__summary-fact {
    border-radius: 12px;
    padding: 9px 8px;
  }

  .xdc-model-single__summary-fact span {
    font-size: 0.72rem;
  }

  .xdc-model-single__summary-fact strong {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .xdc-compliance-list {
    grid-template-columns: 1fr;
  }

  .xdc-esg-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-model-single__gallery-thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xdc-model-single__gallery-main,
  .xdc-model-single__gallery-video-wrap,
  .xdc-model-single__gallery-video-embed,
  .xdc-model-single__gallery-video-embed > *,
  .xdc-model-single__gallery-video-embed iframe,
  .xdc-model-single__gallery-video-embed .wp-video,
  .xdc-model-single__gallery-video-embed .mejs-container,
  .xdc-model-single__gallery-video-embed .mejs-embed,
  .xdc-model-single__gallery-video-embed .me-plugin,
  .xdc-model-single__gallery-video iframe,
  .xdc-model-single__gallery-video .wp-video,
  .xdc-model-single__gallery-video .mejs-container,
  .xdc-model-single__gallery-video .mejs-embed,
  .xdc-model-single__gallery-video .me-plugin,
  .xdc-model-single__gallery-video-player,
  .xdc-model-single__gallery-video-wrap > div {
    min-height: 360px;
  }

  .xdc-model-single__gallery-thumbs {
    justify-content: flex-start;
  }

  .xdc-branding-group__positions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-stock-table th,
  .xdc-stock-table td {
    padding-left: 6px;
    padding-right: 6px;
  }

  .xdc-stock-table th {
    padding-bottom: 6px;
    padding-top: 6px;
  }

  .xdc-stock-table td {
    padding-bottom: 2px;
    padding-top: 2px;
  }

  .xdc-stock-table th:first-child,
  .xdc-stock-table td:first-child {
    min-width: 220px;
  }

  .xdc-stock-table__color-label span {
    white-space: nowrap;
  }

  .xdc-model-single__arrival-summary {
    align-items: flex-start;
  }

  .xdc-model-single__arrival-summary-side {
    flex-direction: column;
    gap: 6px;
  }

  .xdc-model-single__arrival-item {
    grid-template-columns: 1fr;
  }

  .xdc-model-single__arrival-item-slot:last-child {
    grid-column: auto;
  }

  .xdc-model-single__arrival-item--head {
    display: none;
  }

  .xdc-model-single__gallery-breadcrumbs {
    padding: 8px 8px 0;
  }

  .xdc-model-single__breadcrumb-list {
    gap: 5px 7px;
    min-height: 40px;
    padding: 5px 12px;
  }

  .xdc-model-single__breadcrumb-item {
    font-size: 0.84rem;
    gap: 7px;
  }

  .xdc-model-single__breadcrumb-current {
    min-height: 0;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .xdc-model-grid {
    grid-template-columns: 1fr;
  }

  .xdc-catalog-archive__hero,
  .xdc-sidebar-card,
  .xdc-model-single__summary,
  .xdc-model-single__section {
    padding: 16px;
  }

  .xdc-model-single__section--specs {
    gap: 8px;
    padding: 12px 14px;
  }

  .xdc-spec-row {
    padding: 5px 0;
  }

  .xdc-spec-label {
    font-size: 0.76rem;
  }

  .xdc-spec-value {
    font-size: 0.9rem;
  }

  .xdc-model-single__section--price-tiers {
    gap: 8px;
    padding: 12px 14px;
  }

  .xdc-model-single__section--summary-price-tiers {
    padding: 4px 0 0;
  }

  .xdc-price-table--tiers th,
  .xdc-price-table--tiers td {
    font-size: 0.9rem;
    padding: 4px 6px;
  }

  .xdc-esg-table {
    min-width: 460px;
  }

  .xdc-esg-total strong {
    font-size: 2rem;
  }

  .xdc-esg-guide summary {
    font-size: 0.9rem;
  }

  .xdc-meta-list--compact td {
    font-size: 0.9rem;
    padding: 4px 4px;
  }

  .xdc-model-single__section--specs .xdc-meta-list--compact {
    table-layout: fixed;
  }

  .xdc-model-single__section--specs .xdc-meta-list--compact td:first-child {
    width: 60%;
  }

  .xdc-model-single__section--specs .xdc-meta-list--compact td:last-child {
    width: 40%;
  }

  .xdc-model-single__gallery {
    padding: 0;
  }

  .xdc-model-single__gallery-main,
  .xdc-model-single__gallery-video-wrap,
  .xdc-model-single__gallery-video-embed,
  .xdc-model-single__gallery-video-embed > *,
  .xdc-model-single__gallery-video-embed iframe,
  .xdc-model-single__gallery-video-embed .wp-video,
  .xdc-model-single__gallery-video-embed .mejs-container,
  .xdc-model-single__gallery-video-embed .mejs-embed,
  .xdc-model-single__gallery-video-embed .me-plugin,
  .xdc-model-single__gallery-video iframe,
  .xdc-model-single__gallery-video .wp-video,
  .xdc-model-single__gallery-video .mejs-container,
  .xdc-model-single__gallery-video .mejs-embed,
  .xdc-model-single__gallery-video .me-plugin,
  .xdc-model-single__gallery-video-player,
  .xdc-model-single__gallery-video-wrap > div {
    min-height: 300px;
  }

  .xdc-model-single__gallery-arrow {
    height: 46px;
    width: 38px;
  }

  .xdc-model-single__gallery-arrow span {
    font-size: 24px;
  }

  .xdc-model-single__gallery-arrow--prev {
    left: 8px;
  }

  .xdc-model-single__gallery-arrow--next {
    right: 8px;
  }

  .xdc-model-single__gallery-arrow {
    display: none;
  }

  .xdc-model-single__gallery-thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xdc-model-single .xdc-branding-group__positions {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .xdc-model-single .xdc-branding-position {
    border-radius: 12px;
    padding: 0;
  }

  .xdc-model-single .xdc-branding-position__body {
    padding: 8px 10px 10px;
  }

  .xdc-model-single .xdc-branding-position--no-image .xdc-branding-position__body {
    padding: 10px;
  }

  .xdc-model-single__variant-grid--colors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-model-single__gallery-breadcrumbs {
    padding: 6px 6px 0;
  }

  .xdc-model-single__breadcrumb-list {
    border-radius: 16px;
    gap: 4px 6px;
    min-height: 38px;
    padding: 5px 10px;
  }

  .xdc-model-single__breadcrumb-item {
    font-size: 0.8rem;
    gap: 6px;
  }

  .xdc-model-single__breadcrumb-current {
    min-height: 0;
    padding: 0;
  }

  .xdc-model-single__summary-code {
    font-size: 0.96rem;
  }

  .xdc-model-single__price-box strong {
    font-size: 2.2rem;
  }
}

.xdc-catalog-archive {
  --xdc-soft: rgba(248, 251, 255, 0.96);
  --xdc-border: rgba(14, 45, 83, 0.08);
  --xdc-shadow: 0 14px 32px rgba(17, 45, 78, 0.04);
  --xdc-text: #16324f;
  --xdc-muted: #7a8ea4;
  --xdc-accent: rgb(0, 106, 255);
  display: grid;
  gap: 14px;
}

.xdc-catalog-archive__hero,
.xdc-catalog-archive__sidebar-card {
  background: var(--xdc-soft);
  border: 1px solid var(--xdc-border);
  border-radius: 28px;
  box-shadow: var(--xdc-shadow);
}

.xdc-catalog-archive__hero { padding: 24px 28px; gap: 18px; }
.xdc-catalog-archive__breadcrumbs { margin: 0; }
.xdc-catalog-archive__breadcrumb-list {
  --li-mb: 0;
  align-items: center;
  background: rgba(244, 247, 251, 0.94);
  border: 1px solid rgba(14, 45, 83, 0.08);
  border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  list-style: none;
  margin: 0;
  min-height: 44px;
  padding: 5px 14px;
}
.xdc-catalog-archive__breadcrumb-item {
  --li-mb: 0;
  align-items: center;
  color: #6f8398;
  display: flex;
  font-size: 0.9rem;
  gap: 8px;
  line-height: 1.2;
  margin: 0 !important;
}
.xdc-catalog-archive__breadcrumb-link {
  align-items: center;
  color: #5f768f;
  display: inline-flex;
  line-height: 1.2;
  min-height: 0;
  padding: 0;
  text-decoration: none;
}
.xdc-catalog-archive__breadcrumb-link:hover { color: #006aff; }
.xdc-catalog-archive__breadcrumb-current {
  align-items: center;
  color: #006aff;
  display: inline-flex;
  font-weight: 700;
  line-height: 1.2;
  min-height: 0;
  padding: 0 !important;
}
.xdc-catalog-archive__breadcrumb-sep { color: #7a8ea4; }
.xdc-catalog-archive__title { font-size: 2rem; margin: 0; }
.xdc-catalog-archive__description { max-width: none; width: 100%; }
.xdc-catalog-archive__category-block { display: grid; gap: 12px; }
.xdc-catalog-archive__category-heading { margin: 0; font-size: 1.55rem; letter-spacing: -.03em; }
.xdc-catalog-archive__category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.xdc-catalog-archive__category-chip {
  min-height: 92px; padding: 12px 14px; border-radius: 14px; background: #fff; border: 1px solid var(--xdc-border);
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; text-decoration: none; color: var(--xdc-text); font-weight: 700; text-align: center;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, color .18s ease;
}
.xdc-catalog-archive__category-chip:hover,
.xdc-catalog-archive__category-chip:focus,
.xdc-catalog-archive__category-chip:focus-visible {
  border-color: rgba(0, 106, 255, 0.22);
  box-shadow: 0 16px 34px rgba(0, 106, 255, 0.12);
  color: var(--xdc-accent);
  outline: none;
  transform: translateY(-2px);
}
.xdc-catalog-archive__category-chip.is-active { border-color: rgba(0, 106, 255, 0.24); color: var(--xdc-accent); box-shadow: 0 10px 24px rgba(0, 106, 255, 0.08); }
.xdc-catalog-archive__category-icon {
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 106, 255, 0.1), rgba(0, 106, 255, 0.18));
  border: 1px solid rgba(0, 106, 255, 0.16);
  border-radius: 999px;
  color: var(--xdc-accent);
  display: inline-flex;
  flex: 0 0 34px;
  height: 34px;
  justify-content: center;
  overflow: hidden;
  width: 34px;
}
.xdc-catalog-archive__category-icon img { height: 100%; object-fit: cover; width: 100%; }
.xdc-catalog-archive__category-icon .dashicons { font-size: 18px; height: 18px; width: 18px; }

.xdc-page-hero {
  gap: 14px;
  padding: 22px 28px;
}


.xdc-page-hero__main {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr);
}

.xdc-page-hero__copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.xdc-page-hero__title {
  color: #101828;
  font-size: 1.9rem;
  line-height: 1.16;
}

.xdc-page-hero__description {
  color: #52657a;
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
  max-width: 760px;
}

.xdc-delivery-alert__icon {
  align-items: center;
  background: rgba(0, 106, 255, 0.1);
  border: 1px solid rgba(0, 106, 255, 0.14);
  border-radius: 999px;
  color: #006aff;
  display: inline-flex;
  flex: 0 0 28px;
  font-size: 16px;
  height: 28px;
  justify-content: center;
  line-height: 1;
  width: 28px;
}

.xdc-delivery-alert {
  align-items: center;
  background: rgba(0, 106, 255, 0.05);
  border: 1px solid rgba(0, 106, 255, 0.18);
  border-radius: 10px;
  color: #0f2b4d;
  display: flex;
  gap: 12px;
  min-height: 44px;
  padding: 9px 12px;
  text-decoration: none;
}

.xdc-delivery-alert:hover,
.xdc-delivery-alert:focus,
.xdc-delivery-alert:focus-visible {
  border-color: rgba(0, 106, 255, 0.32);
  color: #005be0;
  outline: none;
}

.xdc-delivery-alert__copy {
  align-items: center;
  display: grid;
  flex: 1 1 auto;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 6px 18px;
  min-width: 0;
}

.xdc-delivery-alert__copy strong,
.xdc-delivery-alert__copy span {
  font-size: 0.86rem;
  line-height: 1.35;
}

.xdc-delivery-alert__copy span {
  color: #005be0;
  font-weight: 700;
  justify-self: end;
  text-align: right;
}

.xdc-delivery-alert__arrow {
  color: #006aff;
  font-weight: 700;
}

.xdc-category-pills-block {
  display: grid;
  gap: 8px;
}

.xdc-category-pills__title {
  color: var(--xdc-text);
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
  line-height: 1.22;
  margin: 0;
}

.xdc-category-pills {
  align-items: stretch;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(14, 45, 83, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(17, 45, 78, 0.06);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 10px;
}

.xdc-category-pills__link {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(14, 45, 83, 0.1);
  border-radius: 12px;
  color: #1f334a;
  display: grid;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 8px;
  grid-template-columns: auto minmax(0, 1fr);
  line-height: 1.2;
  min-height: 44px;
  padding: 8px 10px;
  text-decoration: none;
  white-space: normal;
}

.xdc-category-pills-block--no-icons .xdc-category-pills {
  grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
}

.xdc-category-pills-block--no-icons .xdc-category-pills__link {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
}

.xdc-category-pills__link:hover,
.xdc-category-pills__link:focus,
.xdc-category-pills__link:focus-visible {
  border-color: rgba(0, 106, 255, 0.28);
  color: #006aff;
  outline: none;
}

.xdc-category-pills__link.is-active {
  background: #006aff;
  border-color: #006aff;
  color: #fff;
}

.xdc-category-pills__link .xdc-catalog-archive__category-icon {
  flex-basis: 24px;
  height: 24px;
  width: 24px;
}

.xdc-category-pills__link > .dashicons {
  align-items: center;
  background: rgba(0, 106, 255, 0.1);
  border: 1px solid rgba(0, 106, 255, 0.14);
  border-radius: 999px;
  color: var(--xdc-accent);
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 16px;
  height: 24px;
  justify-content: center;
  line-height: 24px;
  width: 24px;
}

.xdc-category-pills__link.is-active .xdc-catalog-archive__category-icon {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.xdc-category-pills__link.is-active > .dashicons {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.xdc-category-pills__link--back {
  border-color: rgba(0, 106, 255, 0.18);
  color: var(--xdc-accent);
}

.xdc-catalog-archive__content { display: grid; gap: 14px; min-width: 0; align-content: start; }
.xdc-catalog-archive__toolbar {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.xdc-catalog-archive__toolbar-top {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-width: 0;
  width: 100%;
}
.xdc-catalog-archive__toolbar-meta { flex: 0 0 auto; min-width: 0; }
.xdc-catalog-archive__toolbar-meta strong { display: inline-flex; align-items: center; min-height: 38px; font-size: 1rem; }
.xdc-catalog-archive__toolbar-panels { display: flex; align-items: center; justify-content: flex-end; flex: 1 1 auto; gap: 8px; min-width: 0; padding: 0; width: 100%; }
.xdc-catalog-archive__toolbar-panel { display: grid; align-content: center; gap: 0; }
.xdc-catalog-archive__toolbar-panel--filters { display: none; }
.xdc-catalog-archive__toolbar-panel--sort { min-width: 0; padding-left: 0; position: static; }
.xdc-catalog-archive__toolbar-sort-shell { display: flex; justify-content: flex-end; flex: 1 1 auto; max-width: 100%; min-width: 0; width: 100%; }
.xdc-catalog-archive__toolbar-form { display: block; margin: 0 0 0 auto; max-width: 100%; min-width: 0; width: auto; }
.xdc-catalog-archive__toolbar-controls { display: flex; align-items: center; justify-content: flex-end; flex-wrap: nowrap; gap: 8px; margin-left: auto; max-width: 100%; min-width: 0; width: auto; }
.xdc-catalog-archive__toolbar-hint { display: none; }
.xdc-catalog-archive__select-control { position: relative; display: block; flex: 0 0 auto; min-width: 0; }
.xdc-catalog-archive__sort { min-width: 252px; flex: 0 0 auto; }
.xdc-catalog-archive__select-control--per-page { min-width: 188px; }
.xdc-catalog-archive__select-control--columns { min-width: 164px; }
.xdc-catalog-archive__select-control-prefix {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--xdc-muted); display: inline-flex; align-items: center; gap: 0; font-size: 0; font-weight: 700; pointer-events: none; white-space: nowrap;
}
.xdc-catalog-archive__select-control select,
.xdc-catalog-archive__filters-trigger {
  width: 100%; min-height: 38px; border-radius: 999px; border: 1px solid rgba(14, 45, 83, 0.1); box-shadow: none; color: var(--xdc-text); font-size: .9rem; font-weight: 700;
}
.xdc-catalog-archive__select-control select {
  -webkit-appearance: none; appearance: none; background-color: #eef1f4; background-image: linear-gradient(45deg, transparent 50%, #5f768f 50%), linear-gradient(135deg, #5f768f 50%, transparent 50%); background-position: calc(100% - 13px) calc(50% - 2px), calc(100% - 8px) calc(50% - 2px); background-repeat: no-repeat; background-size: 5px 5px; padding: 0 26px 0 40px; text-align: left; text-align-last: left;
}
.xdc-catalog-archive__sort select { padding-left: 40px; }
.xdc-catalog-archive__select-control--per-page select { padding-left: 40px; }
.xdc-catalog-archive__select-control--columns select { padding-left: 40px; }
.xdc-catalog-archive__filters-trigger { background: #fff; padding: 0 14px; white-space: nowrap; }

.xdc-catalog-archive__active-filters { display: flex; flex-wrap: wrap; gap: 6px 8px; align-items: center; }
.xdc-catalog-archive__active-filters-label { color: var(--xdc-muted); font-size: .84rem; }
.xdc-catalog-archive__clear-filters,
.xdc-catalog-archive__active-filter-chip {
  display: inline-flex; align-items: center; gap: 8px; min-height: 34px; padding: 0 12px; border-radius: 999px; text-decoration: none; background: #fff; border: 1px solid rgba(14, 45, 83, 0.1); color: var(--xdc-text);
}
.xdc-catalog-archive__clear-filters {
  background: rgba(224, 75, 75, 0.1);
  border-color: rgba(224, 75, 75, 0.14);
  color: #d84a4a;
  font-weight: 700;
}
.xdc-catalog-archive__clear-filters:hover,
.xdc-catalog-archive__clear-filters:focus,
.xdc-catalog-archive__clear-filters:focus-visible {
  background: rgba(224, 75, 75, 0.14);
  color: #c43d3d;
  outline: none;
}
.xdc-catalog-archive__active-filter-remove { font-size: 1rem; line-height: 1; }
.xdc-catalog-archive__active-filter-list { display: flex; flex-wrap: wrap; gap: 6px 8px; }

.xdc-catalog-archive__layout { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 14px; align-items: start; }
.xdc-catalog-archive--no-sidebar .xdc-catalog-archive__layout { grid-template-columns: minmax(0, 1fr); }
.xdc-catalog-archive__mobile-backdrop,
.xdc-catalog-archive__filters-close { display: none; }
.xdc-catalog-archive__sidebar-actions .xdc-catalog-archive__filters-close { display: none !important; }

.xdc-catalog-archive__sidebar-card { display: grid; gap: 14px; padding: 16px; }
.xdc-catalog-archive__sidebar-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.xdc-catalog-archive__sidebar-actions { display: flex; align-items: center; gap: 10px; }
.xdc-catalog-archive__sidebar-header h3 { margin: 0; font-size: 1.08rem; }
.xdc-catalog-archive__sidebar-note { margin: 4px 0 0; color: var(--xdc-muted); font-size: .9rem; }
.xdc-catalog-archive__sidebar-note + .xdc-catalog-archive__facet { border-top: 0; padding-top: 2px; }
.xdc-catalog-archive__facet { display: grid; gap: 10px; padding-top: 14px; border-top: 1px solid rgba(14, 45, 83, 0.08); }
.xdc-catalog-archive button.xdc-catalog-archive__facet-heading {
  all: unset;
  -webkit-appearance: none;
  appearance: none;
  align-items: center !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  box-sizing: border-box;
  color: var(--xdc-text);
  cursor: pointer;
  display: flex !important;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  gap: 8px;
  justify-content: space-between !important;
  justify-self: stretch;
  letter-spacing: 0;
  line-height: 1.35;
  min-height: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  text-transform: uppercase;
  width: 100% !important;
}
.xdc-catalog-archive button.xdc-catalog-archive__facet-heading:hover,
.xdc-catalog-archive button.xdc-catalog-archive__facet-heading:focus,
.xdc-catalog-archive button.xdc-catalog-archive__facet-heading:focus-visible { background: transparent !important; color: var(--xdc-text); outline: none; }
.xdc-catalog-archive button.xdc-catalog-archive__facet-heading > span:first-child { flex: 1 1 auto; text-align: left; }
.xdc-catalog-archive__facet-heading-label { display: grid; gap: 1px; min-width: 0; }
.xdc-catalog-archive__facet-heading-label small { color: var(--xdc-muted); font-size: .72rem; font-weight: 700; letter-spacing: 0; line-height: 1.25; text-transform: none; }
.xdc-catalog-archive .xdc-catalog-archive__facet-chevron { display: inline-block; flex: 0 0 8px; width: 8px; height: 8px; margin-left: auto; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); transition: transform .18s ease; }
.xdc-catalog-archive__facet.is-section-collapsed .xdc-catalog-archive__facet-chevron { transform: rotate(-45deg); }
.xdc-catalog-archive__facet.is-section-collapsed .xdc-catalog-archive__facet-options,
.xdc-catalog-archive__facet.is-section-collapsed .xdc-catalog-archive__price-form,
.xdc-catalog-archive__facet.is-section-collapsed .xdc-catalog-archive__facet-toggle { display: none; }
.xdc-catalog-archive__facet-options { display: grid; gap: 4px; }
.xdc-catalog-archive__facet-options.is-collapsed .xdc-catalog-archive__facet-link.is-extra { display: none; }
.xdc-catalog-archive__facet-link {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 8px; align-items: center; padding: 5px 8px; border-radius: 12px; text-decoration: none; color: var(--xdc-text); font-size: .94rem;
}
.xdc-catalog-archive__facet-link:hover,
.xdc-catalog-archive__facet-link.is-active { background: rgba(0, 106, 255, 0.08); color: var(--xdc-accent); }
.xdc-catalog-archive__facet-link--checkbox { grid-template-columns: 18px minmax(0, 1fr); }
.xdc-catalog-archive__facet-checkbox {
  align-items: center;
  background: #fff;
  border: 1.5px solid rgba(0, 106, 255, 0.32);
  border-radius: 5px;
  box-sizing: border-box;
  display: inline-flex;
  height: 16px;
  justify-content: center;
  width: 16px;
}
.xdc-catalog-archive__facet-link--checkbox.is-active .xdc-catalog-archive__facet-checkbox {
  background: var(--xdc-accent);
  border-color: var(--xdc-accent);
}
.xdc-catalog-archive__facet-link--checkbox.is-active .xdc-catalog-archive__facet-checkbox::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  height: 8px;
  transform: rotate(45deg) translate(-1px, -1px);
  width: 4px;
}
.xdc-catalog-archive__facet-label,
.xdc-catalog-archive__facet-count { line-height: 1.35; }
.xdc-catalog-archive__facet-count { color: var(--xdc-muted); font-size: .86em; }
.xdc-catalog-archive__facet-icon,
.xdc-catalog-archive__color-dot {
  width: 16px; height: 16px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 16px;
}
.xdc-catalog-archive__color-dot { border: 1px solid rgba(14, 45, 83, 0.12); }
.xdc-catalog-archive__facet-icon img,
.xdc-catalog-archive__facet-icon .dashicons { width: 16px; height: 16px; }
.xdc-catalog-archive__facet-toggle { justify-self: start; appearance: none; border: 0 !important; background: transparent !important; box-shadow: none !important; color: var(--xdc-accent); font-weight: 600; padding: 2px 0 0; cursor: pointer; font-size: .9rem; text-transform: none !important; }
.xdc-catalog-archive__facet-toggle:hover,
.xdc-catalog-archive__facet-toggle:focus,
.xdc-catalog-archive__facet-toggle:focus-visible { background: transparent !important; color: #1f5f9e; outline: none; }
.xdc-catalog-archive__facet-toggle:active { background: transparent !important; color: #0f4f87; }

.xdc-archive-grid { align-items: stretch; display: grid; grid-template-columns: repeat(var(--xdc-grid-columns, 4), minmax(0, 1fr)); gap: 8px; }
.xdc-archive-card { background: #fff; border: 1px solid var(--xdc-border); border-radius: 8px; box-shadow: 0 20px 44px rgba(17, 45, 78, 0.08); display: flex; min-height: 100%; min-width: 0; overflow: hidden; }
.xdc-archive-card__link { color: inherit; display: flex; flex: 1 1 auto; flex-direction: column; min-width: 0; text-decoration: none; }
.xdc-archive-card__media { position: relative; display: flex; align-items: center; justify-content: center; aspect-ratio: 1/1; background: #fff; overflow: hidden; }
.xdc-archive-card__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.22s ease, transform 0.22s ease; }
.xdc-archive-card__image--hover { opacity: 0; pointer-events: none; }
.xdc-archive-card:hover .xdc-archive-card__image--hover,
.xdc-archive-card:focus-within .xdc-archive-card__image--hover { opacity: 1; }
.xdc-archive-card:hover .xdc-archive-card__image:not(.xdc-archive-card__image--hover),
.xdc-archive-card:focus-within .xdc-archive-card__image:not(.xdc-archive-card__image--hover) { opacity: 0; }
.xdc-archive-card__body { display: flex; flex: 1 1 auto; flex-direction: column; gap: 6px; padding: 14px; }
.xdc-archive-card__meta-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--xdc-muted); font-size: .78rem; }
.xdc-archive-card__meta-label { color: var(--xdc-muted); }
.xdc-archive-card__code { color: var(--xdc-text); font-weight: 700; }
.xdc-archive-card__body h3 { margin: 0; font-size: 1.04rem; line-height: 1.25; font-weight: 700; }
.xdc-archive-card__swatches { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.xdc-archive-card__swatch,
.xdc-archive-card__swatch-more { width: 14px; height: 14px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.xdc-archive-card__swatch { border: 1px solid rgba(14, 45, 83, 0.14); }
.xdc-archive-card__swatch-more { width: auto; min-width: 16px; font-size: .74rem; color: var(--xdc-muted); }
.xdc-archive-card__stock { display: flex; align-items: center; gap: 6px; color: #12985f; font-size: .84rem; font-weight: 700; }
.xdc-archive-card__stock.is-in-stock { color: #12985f; }
.xdc-archive-card__stock.is-incoming { color: #006aff; }
.xdc-archive-card__stock.is-out-of-stock { color: #d14343; }
.xdc-archive-card__stock-dot { width: 8px; height: 8px; border-radius: 999px; background: currentColor; }
.xdc-archive-card__stock-meta { color: inherit; }
.xdc-archive-card__price-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; font-size: .86rem; margin-top: auto; padding-top: 8px; }
.xdc-archive-card__price-label { color: var(--xdc-muted); }
.xdc-archive-card__price { color: var(--xdc-text); font-size: clamp(1.28rem, 2vw, 1.58rem); font-weight: 800; line-height: 1.08; text-align: right; }

.xdc-samples { display: flex; flex-direction: column; gap: 30px; width: 100%; }
.xdc-samples__header h2 { color: var(--xdc-text); font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.1; margin: 0; }
.xdc-samples__section { display: flex; flex-direction: column; gap: 14px; }
.xdc-samples__section-header { align-items: baseline; border-bottom: 1px solid var(--xdc-border); display: flex; gap: 12px; justify-content: space-between; padding-bottom: 8px; }
.xdc-samples__section-header h3 { color: var(--xdc-text); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.18; margin: 0; }
.xdc-samples__section-header span { color: var(--xdc-muted); font-size: .92rem; white-space: nowrap; }
.xdc-samples__grid { width: 100%; }

.xdc-catalog-listing__pagination { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 16px; }
.xdc-catalog-listing__pagination a,
.xdc-catalog-listing__pagination-link {
  align-items: center; background: #fff; border: 1px solid rgba(14, 45, 83, 0.1); border-radius: 999px; color: var(--xdc-text); display: inline-flex; font-weight: 700; justify-content: center; min-height: 38px; min-width: 38px; padding: 0 13px; text-decoration: none; transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.xdc-catalog-listing__pagination a:hover,
.xdc-catalog-listing__pagination a:focus-visible,
.xdc-catalog-listing__pagination-link:hover,
.xdc-catalog-listing__pagination-link:focus-visible {
  border-color: rgba(0, 106, 255, 0.28); color: var(--xdc-accent); outline: none; transform: translateY(-1px);
}
.xdc-catalog-listing__pagination-link.is-current {
  background: var(--xdc-accent); border-color: var(--xdc-accent); color: #fff; pointer-events: none;
}
.xdc-catalog-listing__pagination-ellipsis {
  align-items: center; color: var(--xdc-muted); display: inline-flex; font-weight: 800; justify-content: center; min-height: 38px; min-width: 24px;
}

@media (max-width: 1024px) {
  .xdc-archive-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .xdc-catalog-archive {
    box-sizing: border-box;
    margin: 18px calc(50% - 50vw + 5px);
    max-width: calc(100vw - 10px);
    width: calc(100vw - 10px);
  }
  .xdc-catalog-archive__layout { grid-template-columns: 1fr; }
  .xdc-catalog-archive__mobile-backdrop { display: block; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.28); opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 1298; }
  .xdc-catalog-archive__sidebar { position: fixed; inset: 0; display: grid; align-items: stretch; justify-items: stretch; opacity: 0; pointer-events: none; z-index: 1299; }
  .xdc-catalog-archive__sidebar-card { height: 100dvh; max-height: 100dvh; overflow: auto; border-radius: 0; padding: calc(env(safe-area-inset-top, 0px) + 18px) 16px 28px; }
  .xdc-catalog-archive__sidebar-header { position: sticky; top: 0; z-index: 2; margin: -18px -16px 12px; padding: 18px 16px 14px; background: rgba(248, 251, 255, 0.96); border-bottom: 1px solid rgba(14, 45, 83, 0.08); backdrop-filter: blur(10px); }
  .xdc-catalog-archive__toolbar-panel--filters { display: grid; }
  .xdc-catalog-archive__sidebar-actions .xdc-catalog-archive__filters-close { display: inline-flex !important; }
  .xdc-catalog-archive__filters-close {
    align-items: center;
    display: inline-flex !important;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border: 1px solid rgba(217, 45, 32, 0.24) !important;
    background: rgba(217, 45, 32, 0.12) !important;
    border-radius: 999px;
    font-size: 2.4rem !important;
    font-weight: 900;
    line-height: 1;
    color: #d92d20 !important;
    padding: 0;
  }

  .xdc-catalog-archive__filters-close span {
    color: #d92d20 !important;
    display: block;
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-1px);
  }

  .xdc-catalog-archive__filters-close:hover,
  .xdc-catalog-archive__filters-close:focus,
  .xdc-catalog-archive__filters-close:focus-visible {
    background: rgba(217, 45, 32, 0.18) !important;
    color: #b42318 !important;
    outline: none;
  }
  .xdc-catalog-archive.is-filters-open .xdc-catalog-archive__mobile-backdrop { opacity: 1; pointer-events: auto; }
  .xdc-catalog-archive.is-filters-open .xdc-catalog-archive__sidebar { opacity: 1; pointer-events: auto; }
  .xdc-catalog-archive__toolbar { gap: 14px; }
  .xdc-catalog-archive__toolbar-top { display: block; }
  .xdc-catalog-archive__toolbar-panels {
    position: relative;
    display: grid;
    align-items: stretch;
    gap: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    padding: 14px 0;
    background: transparent;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .xdc-catalog-archive__toolbar-panels::before,
  .xdc-catalog-archive__toolbar-panels::after {
    content: "";
    position: absolute;
    pointer-events: none;
    background: rgba(14, 45, 83, 0.1);
  }
  .xdc-catalog-archive__toolbar-panels::before {
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
  }
  .xdc-catalog-archive__toolbar-panels::after {
    top: 14px;
    bottom: 0;
    left: 50%;
    width: 1px;
    transform: translateX(-0.5px);
  }
  .xdc-catalog-archive__toolbar-panel--filters,
  .xdc-catalog-archive__toolbar-panel--sort {
    box-sizing: border-box;
    display: grid;
    grid-template-rows: minmax(2.7em, auto) 42px;
    row-gap: 3px;
    width: 100%;
    min-width: 0;
    max-width: none;
  }
  .xdc-catalog-archive__toolbar-panel--filters { padding-right: 14px; }
  .xdc-catalog-archive__toolbar-sort-shell {
    box-sizing: border-box;
    display: block;
    margin-left: 0;
    max-width: none;
    min-width: 0;
    border-left: 0;
    padding-left: 14px;
    width: 100%;
  }
  .xdc-catalog-archive__toolbar-form,
  .xdc-catalog-archive__toolbar-panel--sort,
  .xdc-catalog-archive__toolbar-controls,
  .xdc-catalog-archive__sort { width: 100%; margin-left: 0; }
  .xdc-catalog-archive__toolbar-controls { display: block; }
  .xdc-catalog-archive__toolbar-panel--sort { padding-left: 0; border-left: 0; }
  .xdc-catalog-archive__toolbar-hint {
    align-items: flex-end;
    color: var(--xdc-muted);
    display: flex;
    font-size: .71rem;
    justify-content: center;
    line-height: 1.35;
    margin: 0;
    min-height: 2.7em;
    text-align: center;
  }
  .xdc-catalog-archive__select-control { width: 100%; min-width: 0; }
  .xdc-catalog-archive__select-control--per-page,
  .xdc-catalog-archive__select-control--columns { display: none; }
  .xdc-catalog-archive__select-control-prefix,
  .xdc-catalog-archive__select-control-prefix--desktop,
  .xdc-catalog-archive__select-control-prefix--mobile { display: none !important; }
  .xdc-catalog-archive__sort select,
  .xdc-catalog-archive__filters-trigger { box-sizing: border-box; font-size: .86rem; height: 42px; min-height: 42px; width: 100%; }
  .xdc-catalog-archive__sort::before,
  .xdc-catalog-archive__toolbar .xdc-catalog-archive__toolbar-panel--filters .xdc-catalog-archive__filters-trigger::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .xdc-catalog-archive__sort::before {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%235f768f' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 4v12'/%3E%3Cpath d='m3 7 3-3 3 3'/%3E%3Cpath d='M14 16V4'/%3E%3Cpath d='m11 13 3 3 3-3'/%3E%3C/svg%3E");
  }
  .xdc-catalog-archive__sort select {
    max-width: 100%;
    padding: 0 34px;
    text-align: center;
    text-align-last: center;
    background-color: #eef1f4;
    border-color: rgba(14, 45, 83, 0.1);
    border-radius: 999px;
    color: var(--xdc-text);
  }
  .xdc-catalog-archive__toolbar .xdc-catalog-archive__toolbar-panel--filters .xdc-catalog-archive__filters-trigger {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    background: var(--xdc-accent);
    border-color: var(--xdc-accent);
    color: #fff;
    border-radius: 999px;
    font-size: .92rem;
    text-transform: none;
  }
  .xdc-catalog-archive__toolbar .xdc-catalog-archive__toolbar-panel--filters .xdc-catalog-archive__filters-trigger::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23ffffff' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5h14'/%3E%3Ccircle cx='7' cy='5' r='1.7' fill='%23ffffff' stroke='none'/%3E%3Cpath d='M3 10h14'/%3E%3Ccircle cx='13' cy='10' r='1.7' fill='%23ffffff' stroke='none'/%3E%3Cpath d='M3 15h14'/%3E%3Ccircle cx='9' cy='15' r='1.7' fill='%23ffffff' stroke='none'/%3E%3C/svg%3E");
  }
  .xdc-catalog-archive__active-filters-label { display: none; }
  .xdc-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}

@media (max-width: 768px) {
  .xdc-catalog-archive__breadcrumb-list {
    gap: 5px 7px;
    min-height: 40px;
    padding: 5px 12px;
  }

  .xdc-catalog-archive__breadcrumb-item {
    font-size: 0.84rem;
    gap: 7px;
  }

  .xdc-model-single__summary-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xdc-page-hero {
    border-radius: 22px;
    gap: 14px;
    padding: 16px;
  }

  .xdc-page-hero__main {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .xdc-page-hero__title {
    font-size: 1.58rem;
    line-height: 1.18;
  }

  .xdc-page-hero__description {
    font-size: 0.94rem;
  }

  .xdc-category-pills::-webkit-scrollbar {
    display: none;
  }

  .xdc-delivery-alert {
    align-items: flex-start;
    border-radius: 12px;
    min-height: 0;
    padding: 12px;
  }

  .xdc-delivery-alert__copy {
    display: grid;
    gap: 4px;
    grid-template-columns: 1fr;
  }

  .xdc-delivery-alert__copy span {
    justify-self: start;
    text-align: left;
  }

  .xdc-delivery-alert__arrow {
    padding-top: 4px;
  }

  .xdc-category-pills {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 4px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    padding: 0;
  }

  .xdc-category-pills-block {
    gap: 6px;
  }

  .xdc-category-pills__title {
    font-size: 1.05rem;
    line-height: 1.18;
  }

  .xdc-category-pills__link {
    align-items: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    gap: 5px;
    justify-content: center;
    line-height: 1.12;
    min-height: 76px;
    padding: 7px 4px;
    text-align: center;
    white-space: normal;
  }

  .xdc-category-pills-block--no-icons .xdc-category-pills__link {
    min-height: 54px;
  }

  .xdc-category-pills__link > span:last-child {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .xdc-category-pills__link .xdc-catalog-archive__category-icon,
  .xdc-category-pills__link > .dashicons {
    flex: 0 0 28px;
    height: 28px;
    width: 28px;
  }

  .xdc-category-pills__link--back {
    flex-direction: row;
    grid-column: 1 / -1;
    justify-content: center;
    margin-left: 0;
    min-height: 42px;
  }
}

@media (max-width: 680px) {
  .xdc-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .xdc-catalog-archive__category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .xdc-category-pills,
  .xdc-category-pills-block--no-icons .xdc-category-pills {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .xdc-category-pills__link {
    font-size: 1rem;
    line-height: 1.16;
    min-height: 82px;
    padding: 8px 6px;
  }
  .xdc-category-pills-block--no-icons .xdc-category-pills__link {
    min-height: 62px;
  }
  .xdc-category-pills__link--back {
    font-size: 1rem;
    min-height: 50px;
    padding: 10px 12px;
  }
}

@media (max-width: 560px) {
  .xdc-catalog-archive__breadcrumb-list {
    border-radius: 16px;
    gap: 4px 6px;
    min-height: 38px;
    padding: 5px 10px;
  }

  .xdc-catalog-archive__breadcrumb-item {
    font-size: 0.8rem;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .xdc-catalog-archive__toolbar-panels { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 12px 0; }
  .xdc-catalog-archive__toolbar-panel--filters { padding-right: 10px; }
  .xdc-catalog-archive__toolbar-sort-shell { padding-left: 10px; }
  .xdc-catalog-archive__toolbar-panels::after { top: 12px; }
  .xdc-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}

.xdc-catalog-archive__price-form {
  display: grid;
  gap: 10px;
}

.xdc-catalog-archive__price-fields {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xdc-catalog-archive__price-field {
  display: block;
}

.xdc-catalog-archive__price-field > span:not(.xdc-catalog-archive__price-field-input):not(.screen-reader-text) {
  display: none;
}

.xdc-catalog-archive__price-field-input {
  position: relative;
  display: block;
}

.xdc-catalog-archive__price-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #5f768f;
  font-size: 0.8rem;
  font-weight: 700;
  pointer-events: none;
}

.xdc-catalog-archive__price-currency {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #5f768f;
  font-size: 0.78rem;
  font-weight: 700;
  pointer-events: none;
}

.xdc-catalog-archive__price-field-input input {
  width: 100%;
  padding: 0 52px 0 46px;
  background: #fff;
  border: 1px solid rgba(0, 106, 255, 0.14);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: #16324f;
  font-weight: 600;
  -moz-appearance: textfield;
  appearance: textfield;
}

.xdc-catalog-archive__price-field-input input[type="number"]::-webkit-inner-spin-button,
.xdc-catalog-archive__price-field-input input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.xdc-catalog-archive__price-sliders {
  position: relative;
  min-height: 18px;
  margin-top: 0;
  padding: 0 2px;
}

.xdc-catalog-archive__price-helper {
  color: var(--xdc-muted);
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  margin: -2px 0 0;
  text-align: center;
}

.xdc-catalog-archive__price-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 6px;
  background: linear-gradient(90deg, rgba(0, 106, 255, 0.1) 0%, rgba(0, 106, 255, 0.16) 100%);
  border-radius: 999px;
  transform: translateY(-50%);
}

.xdc-catalog-archive__price-track-fill {
  position: absolute;
  height: 100%;
  background: linear-gradient(90deg, #006aff 0%, #0056cf 100%);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(0, 106, 255, 0.08);
}

.xdc-catalog-archive__price-sliders input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0;
  height: 18px;
  background: none;
  pointer-events: none;
}

.xdc-catalog-archive__price-sliders input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.xdc-catalog-archive__price-sliders input[type="range"]::-moz-range-track {
  height: 6px;
  background: transparent;
}

.xdc-catalog-archive__price-sliders input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #006aff;
  box-shadow: 0 6px 16px rgba(0, 106, 255, 0.22);
  margin-top: -6px;
  pointer-events: auto;
  cursor: pointer;
}

.xdc-catalog-archive__price-sliders input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid #006aff;
  box-shadow: 0 6px 16px rgba(0, 106, 255, 0.22);
  pointer-events: auto;
  cursor: pointer;
}

.xdc-catalog-archive__facet-link {
  font-size: 0.94rem;
}

@media (max-width: 820px) {
  .xdc-catalog-archive__price-helper { display: block; }
}

html.xdc-search-overlay-open,
body.xdc-search-overlay-open {
  overflow: hidden;
}

.xdc-searchbox {
  position: relative;
}

.xdc-searchbox--theme-replaced .wd-search-results-wrapper,
.xdc-searchbox--theme-replaced .search-results-wrapper,
.xdc-searchbox--theme-replaced .autocomplete-suggestions {
  display: none !important;
}

.xdc-searchbox input[type="search"],
.xdc-searchbox input[name="s"],
.xdc-searchbox input[name="xdc_search"] {
  cursor: text;
}

.xdc-search-trigger {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(14, 45, 83, 0.12);
  border-radius: 8px;
  color: #14263b;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-start;
  min-height: 44px;
  min-width: min(100%, 260px);
  padding: 0 14px;
  text-align: left;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
}

.xdc-search-trigger:hover,
.xdc-search-trigger:focus-visible {
  border-color: rgba(0, 106, 255, 0.28);
  box-shadow: 0 12px 26px rgba(0, 106, 255, 0.1);
  color: #006aff;
  outline: none;
}

.xdc-search-trigger__icon {
  color: currentColor;
  flex: 0 0 auto;
  font-size: 18px;
  height: 18px;
  width: 18px;
}

.xdc-search-trigger__label {
  display: block;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xdc-search-overlay {
  --xdc-search-bg: rgba(7, 14, 24, 0.88);
  --xdc-search-panel: #ffffff;
  --xdc-search-border: rgba(14, 45, 83, 0.1);
  --xdc-search-text: #14263b;
  --xdc-search-muted: #66798d;
  --xdc-search-blue: #006aff;
  --xdc-search-red: #df2f2f;
  inset: 0;
  position: fixed;
  z-index: 2147483000;
}

.xdc-search-overlay[hidden] {
  display: none !important;
}

.xdc-search-overlay__backdrop {
  background: var(--xdc-search-bg);
  inset: 0;
  position: absolute;
}

.xdc-search-overlay__dialog {
  box-sizing: border-box;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100dvh;
  min-height: 100dvh;
  padding: 14px;
  position: relative;
  z-index: 1;
}

.xdc-search-overlay__header {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.xdc-search-overlay__form {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 0;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  min-height: 64px;
  overflow: hidden;
}

.xdc-search-overlay__search-icon {
  align-items: center;
  color: #718297;
  display: inline-flex;
  font-size: 21px;
  height: 100%;
  justify-content: center;
  width: 54px;
}

.xdc-search-overlay__input {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: var(--xdc-search-text);
  font-size: 1.02rem;
  font-weight: 650;
  min-height: 64px;
  min-width: 0;
  padding: 0 14px 0 0;
}

.xdc-search-overlay__input:focus {
  box-shadow: none;
  outline: none;
}

.xdc-search-overlay__submit,
.xdc-search-overlay__close {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 64px;
  transition: background-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.xdc-search-overlay__submit {
  background: var(--xdc-search-blue);
  color: #fff;
  gap: 8px;
  padding: 0 20px;
}

.xdc-search-overlay__submit:hover,
.xdc-search-overlay__submit:focus-visible {
  background: #0056cf;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  outline: none;
}

.xdc-search-overlay__submit .dashicons {
  font-size: 19px;
  height: 19px;
  width: 19px;
}

.xdc-search-overlay__close {
  background: var(--xdc-search-red);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(223, 47, 47, 0.28);
  color: #fff;
  gap: 10px;
  min-width: 172px;
  padding: 0 18px 0 12px;
}

.xdc-search-overlay__close:hover,
.xdc-search-overlay__close:focus-visible {
  background: #c92525;
  outline: none;
  transform: translateY(-1px);
}

.xdc-search-overlay__close-x {
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: inline-flex;
  font-size: 2rem;
  font-weight: 400;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.xdc-search-overlay__close-label,
.xdc-search-overlay__submit-label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.xdc-search-overlay__results {
  background: var(--xdc-search-panel);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  margin-top: 12px;
  min-height: 0;
  overflow: hidden;
}

.xdc-search-overlay__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  height: 100%;
  min-height: 0;
}

.xdc-search-overlay__products {
  border-right: 1px solid var(--xdc-search-border);
  display: grid;
  gap: 12px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 0;
  padding: 18px;
}

.xdc-search-overlay__sidebar {
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 0;
}

.xdc-search-overlay__side-section {
  display: grid;
  gap: 10px;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
  padding: 18px;
}

.xdc-search-overlay__side-section + .xdc-search-overlay__side-section {
  border-top: 1px solid var(--xdc-search-border);
}

.xdc-search-overlay__section-head {
  align-items: center;
  color: var(--xdc-search-text);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  min-height: 28px;
}

.xdc-search-overlay__section-title {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.xdc-search-overlay__section-count {
  align-items: center;
  background: rgba(0, 106, 255, 0.08);
  border-radius: 999px;
  color: var(--xdc-search-blue);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 900;
  justify-content: center;
  min-width: 28px;
  padding: 4px 8px;
}

.xdc-search-overlay__products-grid,
.xdc-search-overlay__side-scroll {
  min-height: 0;
  overflow: auto;
  scrollbar-color: rgba(20, 38, 59, 0.26) transparent;
  scrollbar-width: thin;
}

.xdc-search-overlay__products-grid {
  align-content: start;
  display: grid;
  gap: 12px;
  grid-auto-rows: min-content;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-right: 4px;
}

.xdc-search-overlay__products-grid--empty {
  display: block;
}

.xdc-search-overlay__product {
  align-items: start;
  background: #fff;
  border: 1px solid var(--xdc-search-border);
  border-radius: 8px;
  color: var(--xdc-search-text);
  display: grid;
  gap: 12px;
  grid-template-columns: 86px minmax(0, 1fr);
  min-height: 112px;
  min-width: 0;
  padding: 12px;
  text-decoration: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.xdc-search-overlay__product:hover,
.xdc-search-overlay__product:focus-visible {
  border-color: rgba(0, 106, 255, 0.24);
  box-shadow: 0 16px 34px rgba(0, 106, 255, 0.1);
  color: var(--xdc-search-text);
  outline: none;
  transform: translateY(-1px);
}

.xdc-search-overlay__product-media {
  align-items: center;
  aspect-ratio: 1 / 1;
  background: #f6f8fb;
  border: 1px solid rgba(14, 45, 83, 0.06);
  border-radius: 8px;
  display: flex;
  height: 86px;
  justify-content: center;
  overflow: hidden;
  width: 86px;
}

.xdc-search-overlay__product-media img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.xdc-search-overlay__product-placeholder {
  color: var(--xdc-search-blue);
  font-size: 0.92rem;
  font-weight: 900;
}

.xdc-search-overlay__product-body {
  align-content: start;
  display: grid;
  gap: 6px;
  min-width: 0;
}

.xdc-search-overlay__product-title {
  color: var(--xdc-search-text);
  display: -webkit-box;
  font-size: 0.98rem;
  font-weight: 850;
  line-height: 1.28;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.xdc-search-overlay__product-price {
  color: var(--xdc-search-blue);
  font-size: 0.94rem;
  font-weight: 900;
}

.xdc-search-overlay__product-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.xdc-search-overlay__product-meta {
  color: var(--xdc-search-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.xdc-search-overlay__list-item {
  align-items: center;
  border-top: 1px solid var(--xdc-search-border);
  color: var(--xdc-search-text);
  display: grid;
  gap: 10px;
  grid-template-columns: 42px minmax(0, 1fr);
  min-width: 0;
  padding: 11px 0;
  text-decoration: none;
}

.xdc-search-overlay__list-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.xdc-search-overlay__list-item:hover,
.xdc-search-overlay__list-item:focus-visible {
  color: var(--xdc-search-blue);
  outline: none;
}

.xdc-search-overlay__icon,
.xdc-search-overlay__idea-pill {
  align-items: center;
  background: rgba(0, 106, 255, 0.08);
  border-radius: 8px;
  color: var(--xdc-search-blue);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  width: 42px;
}

.xdc-search-overlay__icon img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.xdc-search-overlay__icon .dashicons {
  font-size: 19px;
  height: 19px;
  width: 19px;
}

.xdc-search-overlay__icon--fallback::before {
  content: "";
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 9px;
  transform: rotate(-45deg);
  width: 9px;
}

.xdc-search-overlay__list-body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.xdc-search-overlay__list-badge {
  color: var(--xdc-search-blue);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xdc-search-overlay__list-title {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.28;
}

.xdc-search-overlay__list-meta,
.xdc-search-overlay__empty {
  color: var(--xdc-search-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.xdc-search-overlay__empty {
  padding: 14px 0;
}

.xdc-search-overlay__footer {
  display: flex;
  justify-content: flex-start;
}

.xdc-search-overlay__all-results {
  align-items: center;
  background: rgba(0, 106, 255, 0.08);
  border-radius: 8px;
  color: var(--xdc-search-blue);
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 850;
  min-height: 42px;
  padding: 0 14px;
  text-decoration: none;
}

.xdc-search-overlay__all-results:hover,
.xdc-search-overlay__all-results:focus-visible {
  background: rgba(0, 106, 255, 0.12);
  color: #0056cf;
  outline: none;
}

.xdc-searchbox.is-loading input[type="search"],
.xdc-searchbox.is-loading input[name="s"],
.xdc-searchbox.is-loading input[name="xdc_search"] {
  background-image: linear-gradient(90deg, transparent, rgba(0, 106, 255, 0.08), transparent);
  background-size: 220% 100%;
  animation: xdcSearchLoading 1s linear infinite;
}

@keyframes xdcSearchLoading {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}

@media (max-width: 1120px) {
  .xdc-search-overlay__layout {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.9fr);
  }

  .xdc-search-overlay__products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .xdc-search-overlay__dialog {
    padding: 10px;
  }

  .xdc-search-overlay__header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .xdc-search-overlay__form {
    grid-template-columns: 46px minmax(0, 1fr) 48px;
    min-height: 56px;
  }

  .xdc-search-overlay__search-icon {
    width: 46px;
  }

  .xdc-search-overlay__input {
    font-size: 0.94rem;
    min-height: 56px;
  }

  .xdc-search-overlay__submit {
    min-height: 56px;
    padding: 0;
    width: 48px;
  }

  .xdc-search-overlay__submit-label {
    display: none;
  }

  .xdc-search-overlay__close {
    gap: 0;
    min-height: 56px;
    min-width: 56px;
    padding: 0;
    width: 56px;
  }

  .xdc-search-overlay__close-label {
    display: none;
  }

  .xdc-search-overlay__close-x {
    background: transparent;
    height: 56px;
    width: 56px;
  }

  .xdc-search-overlay__layout {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1.35fr) minmax(0, 0.95fr);
  }

  .xdc-search-overlay__products {
    border-bottom: 1px solid var(--xdc-search-border);
    border-right: 0;
    padding: 14px;
  }

  .xdc-search-overlay__sidebar {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  }

  .xdc-search-overlay__side-section {
    padding: 14px;
  }
}

@media (max-width: 520px) {
  .xdc-search-overlay__dialog {
    padding: 0;
  }

  .xdc-search-overlay__header {
    background: rgba(7, 14, 24, 0.94);
    gap: 8px;
    padding: 8px;
  }

  .xdc-search-overlay__results {
    border-radius: 0;
    margin-top: 0;
  }

  .xdc-search-overlay__form,
  .xdc-search-overlay__close {
    border-radius: 8px;
  }

  .xdc-search-overlay__product {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 96px;
    padding: 10px;
  }

  .xdc-search-overlay__product-media {
    height: 72px;
    width: 72px;
  }

  .xdc-search-overlay__product-title {
    font-size: 0.92rem;
  }

  .xdc-search-overlay__product-meta {
    font-size: 0.72rem;
  }
}

/* Dark transparent fullscreen search override */
.xdc-search-overlay {
  --xdc-search-bg: rgba(0, 0, 0, 0.9);
  --xdc-search-panel: transparent;
  --xdc-search-border: rgba(255, 255, 255, 0.16);
  --xdc-search-text: #ffffff;
  --xdc-search-muted: rgba(255, 255, 255, 0.72);
  --xdc-search-blue: #ffffff;
  color: #ffffff;
  pointer-events: auto;
}

.xdc-search-overlay__backdrop {
  background: var(--xdc-search-bg);
}

.xdc-search-overlay__dialog,
.xdc-search-overlay__results,
.xdc-search-overlay__products,
.xdc-search-overlay__side-section,
.xdc-search-overlay__sidebar {
  background: transparent;
}

.xdc-search-overlay__dialog {
  pointer-events: auto;
}

.xdc-search-overlay__results {
  border: 0;
  box-shadow: none;
}

.xdc-search-overlay__form {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  pointer-events: auto;
}

.xdc-search-overlay__form:focus-within {
  border-color: rgba(255, 255, 255, 0.42);
}

.xdc-search-overlay__search-icon,
.xdc-search-overlay__input,
.xdc-search-overlay__section-head,
.xdc-search-overlay__product-title,
.xdc-search-overlay__product-price,
.xdc-search-overlay__list-title {
  color: #ffffff;
}

.xdc-search-overlay__input {
  caret-color: #ffffff;
  pointer-events: auto;
}

.xdc-search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.xdc-search-overlay__submit {
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.xdc-search-overlay__submit:hover,
.xdc-search-overlay__submit:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.xdc-search-overlay__close {
  background: #ffffff;
  box-shadow: none;
  color: #111111;
}

.xdc-search-overlay__close:hover,
.xdc-search-overlay__close:focus-visible {
  background: #f1f3f5;
  color: #111111;
}

.xdc-search-overlay__close-x {
  background: rgba(0, 0, 0, 0.06);
  color: #d62f2f;
}

.xdc-search-overlay__products,
.xdc-search-overlay__side-section + .xdc-search-overlay__side-section {
  border-color: var(--xdc-search-border);
}

.xdc-search-overlay__section-count {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.84);
}

.xdc-search-overlay__product {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.xdc-search-overlay__product:hover,
.xdc-search-overlay__product:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
  color: #ffffff;
}

.xdc-search-overlay__product-media {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.xdc-search-overlay__product-placeholder,
.xdc-search-overlay__product-meta,
.xdc-search-overlay__list-meta,
.xdc-search-overlay__empty {
  color: var(--xdc-search-muted);
}

.xdc-search-overlay__list-item {
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.xdc-search-overlay__list-item:hover,
.xdc-search-overlay__list-item:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.xdc-search-overlay__icon,
.xdc-search-overlay__idea-pill {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.xdc-search-overlay__list-badge {
  color: rgba(255, 255, 255, 0.74);
}

.xdc-search-overlay__all-results {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.xdc-search-overlay__all-results:hover,
.xdc-search-overlay__all-results:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.xdc-search-overlay__products-grid,
.xdc-search-overlay__side-scroll {
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
}

body.xdc-technique-template .wd-page-content.main-page-wrapper,
body.xdc-technique-archive-template .wd-page-content.main-page-wrapper {
  padding-top: 0;
}

body.xdc-technique-template #main-content.content-layout-wrapper,
body.xdc-technique-template #main-content.container,
body.xdc-technique-template .wd-content-layout.container,
body.xdc-technique-archive-template #main-content.content-layout-wrapper,
body.xdc-technique-archive-template #main-content.container,
body.xdc-technique-archive-template .wd-content-layout.container {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.xdc-technique-archive {
  background: #f6f9fd;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: none;
  padding: 28px max(18px, calc((100vw - 1320px) / 2)) 54px;
  width: 100%;
}

.xdc-technique-archive__hero,
.xdc-technique-archive__grid,
.xdc-technique-archive__pagination,
.xdc-technique-archive__empty {
  margin-inline: auto;
  width: min(100%, 1320px);
}

.xdc-technique-archive__hero {
  display: grid;
  gap: 14px;
  padding: 18px 0 26px;
}

.xdc-technique-archive__breadcrumbs {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--xdc-border);
  border-radius: 16px;
  padding: 12px 16px;
}

.xdc-technique-archive__breadcrumb-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.xdc-technique-archive__breadcrumb-item {
  align-items: center;
  color: var(--xdc-muted);
  display: inline-flex;
  gap: 8px;
  margin: 0;
}

.xdc-technique-archive__breadcrumb-item a {
  color: var(--xdc-muted);
  text-decoration: none;
}

.xdc-technique-archive__breadcrumb-item a:hover {
  color: var(--xdc-accent);
}

.xdc-technique-archive__breadcrumb-item span[aria-current="page"] {
  color: var(--xdc-accent);
  font-weight: 700;
}

.xdc-technique-archive__eyebrow {
  color: var(--xdc-accent);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.xdc-technique-archive h1 {
  color: var(--xdc-text);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  margin: 0;
}

.xdc-technique-archive__intro {
  color: var(--xdc-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
  max-width: 860px;
}

.xdc-technique-archive__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.xdc-technique-archive-card {
  background: #ffffff;
  border: 1px solid var(--xdc-border);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 45, 78, 0.06);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.xdc-technique-archive-card:hover {
  border-color: rgba(0, 106, 255, 0.22);
  box-shadow: 0 18px 38px rgba(0, 106, 255, 0.1);
  transform: translateY(-2px);
}

.xdc-technique-archive-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(0, 106, 255, 0.08), rgba(22, 50, 79, 0.08));
  display: block;
  overflow: hidden;
  width: 100%;
}

.xdc-technique-archive-card__media-link,
.xdc-technique-archive-card__placeholder,
.xdc-technique-archive-card__media img,
.xdc-technique-archive-card__media iframe,
.xdc-technique-archive-card__media video {
  display: block;
  height: 100%;
  width: 100%;
}

.xdc-technique-archive-card__media img,
.xdc-technique-archive-card__media video {
  object-fit: cover;
}

.xdc-technique-archive-card__media iframe {
  border: 0;
}

.xdc-technique-archive-card__placeholder {
  align-items: center;
  color: var(--xdc-accent);
  display: flex;
  font-size: 3rem;
  font-weight: 800;
  justify-content: center;
  text-decoration: none;
}

.xdc-technique-archive-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.xdc-technique-archive-card__title {
  color: var(--xdc-text);
  font-size: 1.08rem;
  line-height: 1.22;
  margin: 0;
}

.xdc-technique-archive-card__title a {
  color: inherit;
  text-decoration: none;
}

.xdc-technique-archive-card__title a:hover {
  color: var(--xdc-accent);
}

.xdc-technique-archive-card__excerpt {
  color: var(--xdc-muted);
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

.xdc-technique-archive-card__cta {
  align-items: center;
  color: var(--xdc-accent);
  display: inline-flex;
  font-size: .92rem;
  font-weight: 800;
  margin-top: auto;
  min-height: 34px;
  text-decoration: none;
}

.xdc-technique-archive-card__cta:hover {
  color: rgb(0, 91, 224);
}

.xdc-technique-archive__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 28px;
}

.xdc-technique-archive__pagination .page-numbers {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--xdc-border);
  border-radius: 8px;
  color: var(--xdc-text);
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0 12px;
  text-decoration: none;
}

.xdc-technique-archive__pagination .page-numbers.current {
  background: var(--xdc-accent);
  border-color: var(--xdc-accent);
  color: #ffffff;
}

.xdc-technique-archive__pagination a.page-numbers:hover {
  border-color: rgba(0, 106, 255, 0.24);
  color: var(--xdc-accent);
}

.xdc-technique-archive__empty {
  background: #ffffff;
  border: 1px solid var(--xdc-border);
  border-radius: 8px;
  padding: 22px;
}

.xdc-technique-page {
  background: #f6f9fd;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: none;
  padding: 28px max(18px, calc((100vw - 1320px) / 2)) 54px;
  width: 100%;
}

.xdc-technique-page__hero,
.xdc-technique-page__content,
.xdc-technique-page__nav,
.xdc-technique-page__cta {
  margin-inline: auto;
  width: min(100%, 1320px);
}

.xdc-technique-page__hero {
  display: grid;
  gap: 14px;
  padding: 18px 0 26px;
}

.xdc-technique-page__breadcrumbs {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--xdc-border);
  border-radius: 16px;
  padding: 12px 16px;
}

.xdc-technique-page__breadcrumb-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.xdc-technique-page__breadcrumb-item {
  align-items: center;
  color: var(--xdc-muted);
  display: inline-flex;
  gap: 8px;
  margin: 0;
}

.xdc-technique-page__breadcrumb-item a {
  color: var(--xdc-muted);
  text-decoration: none;
}

.xdc-technique-page__breadcrumb-item a:hover {
  color: var(--xdc-accent);
}

.xdc-technique-page__breadcrumb-item span[aria-current="page"] {
  color: var(--xdc-accent);
  font-weight: 700;
}

.xdc-technique-page__eyebrow {
  color: var(--xdc-accent);
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.xdc-technique-page h1 {
  color: var(--xdc-text);
  font-size: 3.4rem;
  line-height: 1;
  margin: 0;
}

.xdc-technique-page__intro {
  color: var(--xdc-muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
  max-width: 860px;
}

.xdc-technique-page__content {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 26px;
  padding: 0;
}

.xdc-technique-page__content > * {
  max-width: none;
}

.xdc-technique-page__content > p {
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 8px;
  margin: 0 0 18px;
  padding: clamp(16px, 2vw, 24px);
}

.xdc-technique-page__section-head {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
}

.xdc-technique-page__section-head h2 {
  color: var(--xdc-text);
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 0;
}

.xdc-technique-page__section-head p {
  color: var(--xdc-muted);
  margin: 0;
}

.xdc-technique-page__nav {
  margin-top: 22px;
}

.xdc-technique-page__nav-inner {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--xdc-border);
  border-radius: 8px;
  padding: clamp(18px, 2.4vw, 28px);
}

.xdc-technique-page__technique-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.xdc-technique-page__technique-link {
  align-items: center;
  background: #fff;
  border: 1px solid var(--xdc-border);
  border-radius: 999px;
  color: var(--xdc-text);
  display: inline-flex;
  font-weight: 700;
  min-height: 42px;
  padding: 0 15px;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.xdc-technique-page__technique-link:hover {
  background: var(--xdc-accent-soft);
  border-color: rgba(0, 106, 255, 0.24);
  color: var(--xdc-accent);
}

.xdc-technique-page__cta {
  margin-top: 34px;
}

.xdc-technique-page__cta-inner {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--xdc-border);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  justify-items: start;
  padding: clamp(20px, 3vw, 34px);
}

.xdc-technique-page__cta h2 {
  color: var(--xdc-text);
  font-size: clamp(1.32rem, 2vw, 1.8rem);
  line-height: 1.28;
  margin: 0;
  max-width: 920px;
}

.xdc-technique-page__cta-button {
  align-items: center;
  background: var(--xdc-accent);
  border: 1px solid var(--xdc-accent);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1.2;
  min-height: 46px;
  padding: 12px 18px;
  text-align: center;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.xdc-technique-page__cta-button:hover,
.xdc-technique-page__cta-button:focus-visible {
  background: rgb(0, 91, 224);
  border-color: rgb(0, 91, 224);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .xdc-technique-archive__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .xdc-technique-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body.xdc-technique-template #main-content.content-layout-wrapper,
  body.xdc-technique-template #main-content.container,
  body.xdc-technique-template .wd-content-layout.container,
  body.xdc-technique-archive-template #main-content.content-layout-wrapper,
  body.xdc-technique-archive-template #main-content.container,
  body.xdc-technique-archive-template .wd-content-layout.container {
    padding-left: 0;
    padding-right: 0;
  }

  .xdc-technique-archive {
    padding: 18px 5px 38px;
  }

  .xdc-technique-archive__hero {
    padding-bottom: 18px;
  }

  .xdc-technique-archive__breadcrumbs {
    border-radius: 8px;
    padding: 10px 12px;
  }

  .xdc-technique-archive h1 {
    font-size: 2.2rem;
  }

  .xdc-technique-archive__intro {
    font-size: .98rem;
  }

  .xdc-technique-archive__grid {
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-technique-archive-card__media {
    aspect-ratio: 4 / 3;
  }

  .xdc-technique-archive-card__body {
    gap: 8px;
    padding: 10px;
  }

  .xdc-technique-archive-card__title {
    font-size: .92rem;
    line-height: 1.25;
  }

  .xdc-technique-archive-card__excerpt {
    display: none;
  }

  .xdc-technique-archive-card__cta {
    font-size: .82rem;
    min-height: 28px;
  }

  .xdc-technique-archive__pagination {
    gap: 6px;
    margin-top: 20px;
  }

  .xdc-technique-archive__pagination .page-numbers {
    min-height: 36px;
    min-width: 36px;
    padding: 0 10px;
  }

  .xdc-technique-page {
    padding: 18px 5px 38px;
  }

  .xdc-technique-page h1 {
    font-size: 2.2rem;
  }

  .xdc-technique-page__nav {
    margin-top: 14px;
  }

  .xdc-technique-page__nav-inner {
    padding: 12px;
  }

  .xdc-technique-page__nav .xdc-technique-page__section-head {
    margin-bottom: 10px;
  }

  .xdc-technique-page__nav .xdc-technique-page__section-head h2 {
    font-size: 1.18rem;
  }

  .xdc-technique-page__technique-list {
    gap: 6px;
  }

  .xdc-technique-page__technique-link {
    font-size: 0.82rem;
    min-height: 34px;
    padding: 0 10px;
  }

  .xdc-technique-page__cta-button {
    width: 100%;
  }
}

.xdc-cat-switcher {
  --xdc-cat-blue: #0866ff;
  --xdc-cat-blue-soft: #eef5ff;
  --xdc-cat-blue-border: #8bb8ff;
  --xdc-cat-green: #08a863;
  --xdc-cat-green-soft: #f0fff7;
  --xdc-cat-green-border: #9be7c2;
  --xdc-cat-text: #172033;
  --xdc-cat-muted: #667085;
  --xdc-cat-border: #e4e7ec;
  --xdc-cat-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
  display: inline-block;
  font-family: inherit;
  line-height: 1.2;
  position: relative;
  text-align: left;
  z-index: 70;
}

.xdc-cat-switcher--xd {
  --xdc-cat-current: var(--xdc-cat-blue);
  --xdc-cat-current-soft: var(--xdc-cat-blue-soft);
  --xdc-cat-current-border: var(--xdc-cat-blue-border);
}

.xdc-cat-switcher--promobox {
  --xdc-cat-current: var(--xdc-cat-green);
  --xdc-cat-current-soft: var(--xdc-cat-green-soft);
  --xdc-cat-current-border: var(--xdc-cat-green-border);
}

.xdc-cat-trigger {
  align-items: center;
  background: var(--xdc-cat-current-soft);
  border: 1px solid var(--xdc-cat-current-border);
  border-radius: 999px;
  color: var(--xdc-cat-text);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 700;
  gap: 9px;
  min-height: 42px;
  max-width: 100%;
  padding: 6px 12px 6px 7px;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.xdc-cat-trigger:hover,
.xdc-cat-trigger:focus-visible,
.xdc-cat-switcher.is-open .xdc-cat-trigger {
  border-color: var(--xdc-cat-current);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  outline: 0;
}

.xdc-cat-trigger-logo,
.xdc-cat-logo {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  overflow: hidden;
}

.xdc-cat-trigger-logo {
  height: 30px;
  width: 30px;
}

.xdc-cat-trigger-logo img,
.xdc-cat-logo img {
  display: block;
  height: 78%;
  max-height: 78%;
  max-width: 78%;
  object-fit: contain;
  width: 78%;
}

.xdc-cat-logo-fallback {
  color: var(--xdc-cat-current);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.xdc-cat-trigger-text {
  align-items: center;
  display: inline-flex;
  gap: 5px;
  min-width: 0;
}

.xdc-cat-trigger-current,
.xdc-cat-trigger-short,
.xdc-cat-trigger-meta {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.xdc-cat-trigger-short {
  display: none;
}

.xdc-cat-trigger-mobile {
  display: none;
}

.xdc-cat-trigger-meta {
  color: var(--xdc-cat-muted);
  font-size: .88em;
}

.xdc-cat-trigger-chevron {
  border-bottom: 2px solid var(--xdc-cat-current);
  border-right: 2px solid var(--xdc-cat-current);
  display: inline-block;
  flex: 0 0 auto;
  height: 7px;
  margin-left: 1px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
  width: 7px;
}

.xdc-cat-switcher.is-open .xdc-cat-trigger-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.xdc-cat-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(94vw, 980px);
  z-index: 9999;
}

.xdc-cat-dropdown-inner {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: var(--xdc-cat-shadow);
  padding: 18px;
}

.xdc-cat-desktop-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 2fr);
}

.xdc-cat-mobile-grid {
  display: none;
}

.xdc-cat-card {
  border: 1px solid var(--xdc-cat-border);
  border-radius: 16px;
  box-sizing: border-box;
  color: var(--xdc-cat-text);
  display: grid;
  gap: 16px;
  min-height: 216px;
  padding: 18px;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

a.xdc-cat-card:hover,
a.xdc-cat-card:focus-visible {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  color: var(--xdc-cat-text);
  outline: 0;
  transform: translateY(-1px);
}

.xdc-cat-card--xd {
  background: var(--xdc-cat-blue-soft);
  border-color: var(--xdc-cat-blue-border);
}

.xdc-cat-card--promobox {
  background: var(--xdc-cat-green-soft);
  border-color: var(--xdc-cat-green-border);
}

.xdc-cat-card--active {
  border-width: 3px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.xdc-cat-card--active.xdc-cat-card--xd,
.xdc-cat-mobile-card--active.xdc-cat-mobile-card--xd {
  border-color: var(--xdc-cat-blue);
}

.xdc-cat-card--active.xdc-cat-card--promobox,
.xdc-cat-mobile-card--active.xdc-cat-mobile-card--promobox {
  border-color: var(--xdc-cat-green);
}

.xdc-cat-card-head {
  align-items: flex-start;
  display: grid;
  gap: 12px;
  grid-template-columns: 48px minmax(0, 1fr) auto;
}

.xdc-cat-logo {
  height: 48px;
  width: 48px;
}

.xdc-cat-card-copy,
.xdc-cat-mobile-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.xdc-cat-label {
  color: var(--xdc-cat-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.xdc-cat-title {
  color: var(--xdc-cat-text);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.18;
}

.xdc-cat-meta {
  color: var(--xdc-cat-muted);
  font-size: 13px;
  font-weight: 700;
}

.xdc-cat-check {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: var(--xdc-cat-current);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.xdc-cat-card--xd .xdc-cat-check,
.xdc-cat-mobile-card--xd .xdc-cat-check {
  color: var(--xdc-cat-blue);
}

.xdc-cat-card--promobox .xdc-cat-check,
.xdc-cat-mobile-card--promobox .xdc-cat-check {
  color: var(--xdc-cat-green);
}

.xdc-cat-benefits {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.xdc-cat-benefits li {
  align-items: center;
  color: #263345;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.28;
}

.xdc-cat-card--xd .xdc-cat-benefits span {
  color: var(--xdc-cat-blue);
}

.xdc-cat-card--promobox .xdc-cat-benefits span {
  color: var(--xdc-cat-green);
}

.xdc-cat-button {
  align-items: center;
  align-self: end;
  border-radius: 10px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  text-align: center;
}

.xdc-cat-card--xd .xdc-cat-button {
  background: var(--xdc-cat-blue);
}

.xdc-cat-card--promobox .xdc-cat-button {
  background: var(--xdc-cat-green);
}

@media (max-width: 820px) {
  .xdc-cat-trigger-current {
    max-width: 220px;
  }
}

@media (max-width: 640px) {
  .xdc-cat-switcher {
    display: inline-block;
    max-width: 100%;
    width: 100%;
  }

  .xdc-cat-switcher .xdc-cat-trigger {
    box-sizing: border-box;
    gap: 2px;
    justify-content: flex-start;
    min-height: 34px;
    max-width: 100%;
    padding-block: 2px !important;
    padding-inline: 3px !important;
    width: 100%;
  }

  .xdc-cat-trigger-logo {
    display: none;
  }

  .xdc-cat-trigger-text {
    flex: 1 1 auto;
  }

  .xdc-cat-trigger-current,
  .xdc-cat-trigger-short,
  .xdc-cat-trigger-sep,
  .xdc-cat-trigger-meta {
    display: none;
  }

  .xdc-cat-trigger-mobile {
    color: var(--xdc-cat-text);
    display: grid;
    font-size: 9.5px;
    font-weight: 800;
    gap: 1px;
    justify-items: start;
    line-height: 1.05;
    min-width: 0;
    text-align: left;
    text-transform: none;
  }

  .xdc-cat-trigger-mobile span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .xdc-cat-trigger-chevron {
    border-bottom-width: 1.5px;
    border-right-width: 1.5px;
    height: 5px;
    margin-left: 0;
    width: 5px;
  }

  .xdc-cat-dropdown {
    box-sizing: border-box;
    left: calc(8px - var(--xdc-cat-mobile-root-left, 0px));
    max-width: none;
    position: absolute;
    right: auto;
    top: calc(100% + 8px);
    width: calc(100vw - 16px);
  }

  .xdc-cat-dropdown-inner {
    border-radius: 14px;
    padding: 8px;
  }

  .xdc-cat-desktop-grid {
    display: none;
  }

  .xdc-cat-mobile-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xdc-cat-mobile-card {
    border: 1px solid var(--xdc-cat-border);
    border-radius: 14px;
    box-sizing: border-box;
    color: var(--xdc-cat-text);
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
    min-height: 118px;
    padding: 8px 9px;
    position: relative;
    text-decoration: none;
  }

  .xdc-cat-mobile-card--active {
    border-width: 3px;
    padding: 6px 7px;
  }

  .xdc-cat-mobile-copy {
    gap: 2px;
  }

  .xdc-cat-mobile-card--xd {
    background: var(--xdc-cat-blue-soft);
    border-color: var(--xdc-cat-blue-border);
  }

  .xdc-cat-mobile-card--promobox {
    background: var(--xdc-cat-green-soft);
    border-color: var(--xdc-cat-green-border);
  }

  .xdc-cat-mobile-card .xdc-cat-logo {
    display: none;
  }

  .xdc-cat-mobile-card .xdc-cat-label {
    font-size: 10px;
    line-height: 1.05;
    text-transform: none;
  }

  .xdc-cat-mobile-card .xdc-cat-title {
    font-size: 14px;
    line-height: 1.1;
  }

  .xdc-cat-mobile-card .xdc-cat-meta,
  .xdc-cat-mobile-benefit {
    color: var(--xdc-cat-muted);
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.12;
  }

  .xdc-cat-mobile-benefit {
    color: var(--xdc-cat-text);
  }

  .xdc-cat-mobile-card--promobox .xdc-cat-mobile-benefit {
    color: var(--xdc-cat-green);
    font-weight: 800;
  }

  .xdc-cat-mobile-card--xd .xdc-cat-mobile-benefit {
    color: var(--xdc-cat-blue);
    font-weight: 800;
  }

  .xdc-cat-mobile-card .xdc-cat-check {
    display: none;
  }
}

@media (max-width: 340px) {
  .xdc-cat-mobile-grid {
    grid-template-columns: 1fr;
  }
}
