.catalog-controls { display: grid; grid-template-columns: 2fr repeat(5, minmax(130px, 1fr)); gap: 12px; margin: 34px 0 44px; }
.catalog-category-card { min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; border-radius: var(--radius-md); background: var(--color-surface); border: 1px solid var(--color-border); transition: transform var(--transition), box-shadow var(--transition); }
.catalog-category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.catalog-category-card__index { color: var(--color-brass); font-size: 13px; letter-spacing: .1em; }
.catalog-category-card h3 { max-width: 220px; }
.catalog-category-card__count { color: var(--color-muted); font-size: 13px; }
.art-gallery { display: grid; grid-template-columns: .8fr 1.2fr .8fr; gap: 22px; align-items: end; }
.artwork-card { overflow: hidden; border-radius: var(--radius-lg); background: white; border: 1px solid var(--color-border); }
.artwork-card__image { aspect-ratio: 4/5; padding: 22px; background: #d7d0c3; }
.artwork-card__image img { width: 100%; height: 100%; object-fit: cover; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.artwork-card__body { padding: 20px; }
.artwork-card--featured .artwork-card__image { aspect-ratio: 4/4.6; }

/* Patch H2 — classic four-column Home product catalogue */
.catalog-page {
  padding: 32px 0 104px;
}

.catalog-page__header {
  display: grid;
  gap: 24px;
}

.catalog-page__header .breadcrumb {
  margin: 0;
}

.catalog-page__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 48px;
  align-items: end;
  padding: 22px 0 10px;
}

.catalog-page__title-row h1 {
  margin-top: 8px;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.055em;
}

.catalog-page__title-row p {
  max-width: 520px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
}

.catalog-category-rail {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-category-rail::-webkit-scrollbar {
  display: none;
}

.catalog-category-chip {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  color: var(--color-muted);
  font: inherit;
  font-size: 13px;
  font-weight: 620;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.catalog-category-chip:hover,
.catalog-category-chip.is-active {
  border-color: rgba(41,40,38,.24);
  background: var(--gradient-selected);
  color: var(--color-text);
}

.catalog-toolbar-shell {
  position: static;
  top: auto;
  z-index: auto;
  margin-bottom: 22px;
  border-block: 1px solid var(--color-border-subtle);
  background: rgba(248,246,242,.82);
  -webkit-backdrop-filter: blur(18px) saturate(105%);
  backdrop-filter: blur(18px) saturate(105%);
}

.catalog-toolbar {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.catalog-toolbar__primary,
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 14px;
}

.catalog-filter-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255,255,255,.58);
  color: var(--color-text);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.catalog-result-count,
.catalog-sort > span {
  color: var(--color-muted);
  font-size: 13px;
}

.catalog-sort select {
  min-height: 40px;
  padding: 0 34px 0 12px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.catalog-filter-panel {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(150px, .8fr)) auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 24px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--gradient-panel);
  box-shadow: var(--shadow-card);
}

.catalog-filter-panel[hidden] {
  display: none;
}

.catalog-filter-panel label {
  display: grid;
  gap: 7px;
}

.catalog-filter-panel label > span {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalog-filter-panel input,
.catalog-filter-panel select {
  min-height: 44px;
  padding: 0 13px;
  border-radius: 10px;
  font-size: 13px;
}

.catalog-filter-clear {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
}

.catalog-product-card {
  min-width: 0;
}

.catalog-product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(237,234,229,.74));
  box-shadow: 0 8px 24px rgba(41,40,38,.045);
}

.catalog-product-card__media-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.catalog-product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
  transition: transform 320ms ease;
}

.catalog-product-card:hover .catalog-product-card__media img {
  transform: scale(1.025);
}

.catalog-product-card__image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(41,40,38,.16);
  font-size: 62px;
  font-weight: 700;
}

.catalog-product-card__media.has-image-error img {
  display: none;
}

.catalog-product-card__wishlist {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(41,40,38,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.84);
  color: var(--color-text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.catalog-product-card__wishlist:hover,
.catalog-product-card__wishlist.is-active {
  background: #fff;
  border-color: rgba(41,40,38,.28);
}

.catalog-product-card__body {
  padding: 14px 3px 0;
}

.catalog-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.3;
}

.catalog-product-card__meta span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: right;
}

.catalog-product-card h2 {
  min-height: 2.55em;
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: -.018em;
}

.catalog-product-card h2 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-product-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.catalog-product-card__footer strong {
  font-size: 14px;
  font-weight: 720;
}

.catalog-product-card__footer span {
  color: var(--color-muted);
  font-size: 11px;
  text-align: right;
}

.catalog-load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}

.catalog-load-more[hidden] {
  display: none;
}

.catalog-empty {
  padding: 90px 24px;
  text-align: center;
}

.catalog-empty[hidden] {
  display: none;
}

.catalog-empty p {
  margin: 10px 0 22px;
}

.catalog-product-preview {
  padding-top: 36px;
}

.catalog-product-preview__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: start;
}

.catalog-product-preview__media {
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.94), rgba(237,234,229,.76));
}

.catalog-product-preview__media img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  padding: 28px;
  object-fit: contain;
}

.catalog-product-preview__media > span {
  color: rgba(41,40,38,.16);
  font-size: 92px;
  font-weight: 700;
}

.catalog-product-preview__content {
  position: sticky;
  top: 110px;
  padding-top: 22px;
}

.catalog-product-preview__content h1 {
  margin: 12px 0 18px;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: .98;
  letter-spacing: -.05em;
}

.catalog-product-preview__price {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 720;
}

.catalog-product-preview__content > p {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.65;
}

.catalog-product-preview__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.catalog-product-preview__facts div {
  padding: 14px;
  border: 1px solid var(--color-border-subtle);
  border-radius: 12px;
  background: rgba(255,255,255,.42);
}

.catalog-product-preview__facts dt {
  color: var(--color-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.catalog-product-preview__facts dd {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 650;
}

.catalog-product-preview__specs {
  margin-top: 24px;
}

.catalog-product-preview__actions {
  margin-top: 30px;
}

/* Patch H3.8 — compact catalog commerce view */
.catalog-commerce {
  min-height: 100vh;
  padding: 18px 0 96px;
  background: #fff;
}

.catalog-commerce__navigation {
  display: grid;
  gap: 14px;
}

.catalog-commerce__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 68px;
}

.catalog-commerce__header > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}

.catalog-commerce__header h1 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
}

.catalog-commerce__header > div > span {
  color: #747474;
  font-size: 13px;
  white-space: nowrap;
}

.catalog-category-rail,
.catalog-subcategory-rail {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.catalog-category-rail::-webkit-scrollbar,
.catalog-subcategory-rail::-webkit-scrollbar {
  display: none;
}

.catalog-category-rail {
  padding: 2px 0 12px;
  border-bottom: 1px solid #ececec;
}

.catalog-subcategory-rail {
  padding: 0 0 13px;
}

.catalog-category-link,
.catalog-subcategory-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.catalog-category-link {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid #dedede;
  background: #fff;
  color: #666;
  font-size: 13px;
  font-weight: 620;
}

.catalog-category-link:hover,
.catalog-category-link.is-active {
  border-color: #292826;
  background: #292826;
  color: #fff;
}

.catalog-subcategory-link {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid transparent;
  color: #666;
  font-size: 12px;
  font-weight: 600;
}

.catalog-subcategory-link:hover,
.catalog-subcategory-link.is-active {
  border-color: #d8d8d8;
  background: #f5f5f5;
  color: #111;
}

.catalog-subcategory-navigation {
  display: grid;
  gap: 0;
  padding: 4px 0 16px;
  border-bottom: 1px solid #ececec;
}
.catalog-subcategory-card__footer small {
  color: #777;
  font-size: 9px;
}

.catalog-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.catalog-subcategory-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #fff;
  color: #292826;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.catalog-subcategory-card:hover {
  border-color: rgba(41,40,38,.42);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.catalog-subcategory-card.is-active {
  border-color: #292826;
  box-shadow: inset 0 0 0 1px #292826;
}

.catalog-subcategory-card__media {
  display: grid;
  min-height: 72px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg,#fff 0%,#f4f4f4 100%);
}

.catalog-subcategory-card__media img {
  width: 100%;
  height: 72px;
  padding: 7px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 180ms ease;
}

.catalog-subcategory-card:hover .catalog-subcategory-card__media img {
  transform: scale(1.035);
}

.catalog-subcategory-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  align-items: center;
  padding: 8px 9px;
}

.catalog-subcategory-card__footer strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-subcategory-card__footer small {
  grid-column: 1;
}

.catalog-subcategory-card__footer b {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 13px;
  font-weight: 400;
}

@media (max-width: 900px) {
  .catalog-subcategory-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .catalog-subcategory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-subcategory-card__media,
  .catalog-subcategory-card__media img { height: 82px; min-height: 82px; }
}

.catalog-toolbar-shell {
  position: static;
  top: auto;
  z-index: auto;
  margin: 0 0 22px;
  border-bottom: 1px solid #e8e8e8;
  background: rgba(255,255,255,.92);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  backdrop-filter: blur(18px) saturate(120%);
}

.catalog-toolbar {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.catalog-toolbar__primary,
.catalog-sort {
  display: flex;
  align-items: center;
  gap: 12px;
}

.catalog-filter-toggle {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.catalog-filter-toggle:hover,
.catalog-filter-toggle[aria-expanded="true"] {
  border-color: #292826;
}

.catalog-filter-toggle svg {
  width: 17px;
  height: 17px;
}

.catalog-filter-toggle b {
  display: grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: #292826;
  color: #fff;
  font-size: 10px;
}

.catalog-filter-toggle b[hidden] {
  display: none;
}

.catalog-result-count,
.catalog-sort > span {
  color: #777;
  font-size: 12px;
}

.catalog-sort select {
  min-height: 38px;
  padding: 0 30px 0 10px;
  border: 0;
  background-color: transparent;
  color: #111;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.catalog-commerce__results {
  min-height: 360px;
}

.catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
}

.catalog-product-card {
  min-width: 0;
}

.catalog-product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  border: 1px solid #e4e4e4;
  border-radius: 16px;
  background: #fff;
}

.catalog-product-card__media-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.catalog-product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 16px;
  object-fit: contain;
  transition: transform 260ms ease;
}

.catalog-product-card:hover .catalog-product-card__media img {
  transform: scale(1.025);
}

.catalog-product-card__image-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #e4e4e4;
  font-size: 62px;
  font-weight: 700;
}

.catalog-product-card__media.has-image-error img {
  display: none;
}

.catalog-product-card__wishlist {
  position: absolute;
  z-index: 3;
  top: 11px;
  right: 11px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #222;
  font-size: 20px;
  cursor: pointer;
}

.catalog-product-card__wishlist:hover,
.catalog-product-card__wishlist.is-active {
  border-color: #292826;
  background: #fff;
}

.catalog-product-card__body {
  padding: 13px 2px 0;
}

.catalog-product-card__brand {
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
  color: #777;
  font-size: 11px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-product-card h2 {
  min-height: 2.55em;
  font-size: 16px;
  line-height: 1.28;
  letter-spacing: -.018em;
}

.catalog-product-card h2 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-product-card__classification {
  min-height: 1.3em;
  margin-top: 5px;
  color: #777;
  font-size: 11px;
}

.catalog-product-card__colors {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  margin-top: 8px;
}

.catalog-color-swatch {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.catalog-color-swatch:hover,
.catalog-color-swatch.is-active {
  border-color: #292826;
}

.catalog-color-swatch i {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(41, 40, 38, .16);
  border-radius: 50%;
  background: var(--swatch);
}

.catalog-product-card__colors > span {
  margin-left: 2px;
  color: #777;
  font-size: 10px;
}

.catalog-product-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 8px;
  color: #292826;
  font-size: 12px;
  font-weight: 650;
}

.catalog-product-card__rating small {
  color: #777;
  font-size: 11px;
  font-weight: 500;
}

.catalog-product-card__footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 11px;
}

.catalog-product-card__footer strong {
  font-size: 14px;
  font-weight: 720;
}

.catalog-product-card__footer span {
  color: #777;
  font-size: 11px;
  text-align: right;
}

.catalog-load-more-wrap {
  display: flex;
  justify-content: center;
  padding-top: 48px;
}

.catalog-load-more[hidden],
.catalog-empty[hidden] {
  display: none;
}

.catalog-empty {
  padding: 88px 24px;
  text-align: center;
}

.catalog-empty p {
  max-width: 520px;
  margin: 10px auto 22px;
}

.catalog-filter-backdrop {
  position: fixed;
  z-index: 219;
  inset: 0;
  background: rgba(17,17,17,.22);
  opacity: 0;
  transition: opacity 180ms ease;
}

.catalog-filter-backdrop.is-open {
  opacity: 1;
}

.catalog-filter-backdrop[hidden] {
  display: none;
}

.catalog-filter-drawer {
  position: fixed;
  z-index: 220;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 100vw);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #fff;
  box-shadow: -22px 0 70px rgba(0,0,0,.15);
  transform: translateX(104%);
  visibility: hidden;
  transition: transform 260ms cubic-bezier(.22,.8,.24,1), visibility 0s linear 260ms;
}

.catalog-filter-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.catalog-filter-drawer__header,
.catalog-filter-drawer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-color: #e8e8e8;
}

.catalog-filter-drawer__header {
  border-bottom: 1px solid #e8e8e8;
}

.catalog-filter-drawer__header > div {
  display: grid;
  gap: 3px;
}

.catalog-filter-drawer__header span {
  color: #777;
  font-size: 11px;
}

.catalog-filter-drawer__header strong {
  font-size: 20px;
}

.catalog-filter-drawer__header button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #dedede;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}

.catalog-filter-drawer__body {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 24px 22px;
  overflow-y: auto;
}

.catalog-filter-field {
  display: grid;
  gap: 8px;
}

.catalog-filter-field > span,
.catalog-filter-context > span {
  color: #666;
  font-size: 12px;
  font-weight: 650;
}

.catalog-filter-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 38px 0 13px;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  background-color: #fff;
  color: #111;
  font: inherit;
  font-size: 14px;
}

.catalog-filter-context {
  display: grid;
  gap: 7px;
  margin-top: 4px;
  padding: 18px;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
}

.catalog-filter-context strong {
  font-size: 16px;
}

.catalog-filter-context a {
  width: fit-content;
  margin-top: 5px;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-filter-drawer__footer {
  border-top: 1px solid #e8e8e8;
}

.catalog-filter-clear {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.catalog-filter-apply {
  min-width: 190px;
}

html.catalog-filter-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .catalog-commerce__header {
    align-items: stretch;
  }

  .catalog-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .catalog-commerce {
    padding-top: 8px;
  }

  .catalog-commerce__header {
    display: grid;
    gap: 14px;
  }

  .catalog-commerce__header > div {
    justify-content: space-between;
  }


  .catalog-toolbar-shell {
    top: auto;
  }

  .catalog-sort > span,
  .catalog-result-count {
    display: none;
  }

  .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .catalog-product-card__footer {
    display: grid;
    gap: 4px;
  }

  .catalog-product-card__footer span {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .catalog-commerce__header h1 {
    font-size: 34px;
  }

  .catalog-product-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .catalog-filter-drawer__footer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .catalog-filter-apply {
    min-width: 0;
  }
}

/* Patch H3.9 — compact 5 × 2 icon category grid */
.catalog-category-navigation {
  display: grid;
  gap: 10px;
  padding: 0 0 14px;
  border-bottom: 1px solid #ececec;
}

.catalog-category-navigation__topline {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.catalog-all-products-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #dedede;
  border-radius: 999px;
  background: #fff;
  color: #5f5f5f;
  font-size: 12px;
  font-weight: 650;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.catalog-all-products-link svg {
  width: 16px;
  height: 16px;
}

.catalog-all-products-link:hover,
.catalog-all-products-link.is-active {
  border-color: #292826;
  background: #292826;
  color: #fff;
}

.catalog-icon-rail {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.catalog-icon-grid {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 10px;
  padding: 8px 48px 12px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  scrollbar-width: thin;
}

.catalog-icon-rail__control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  box-shadow: 0 5px 18px rgba(0,0,0,.12);
  color: #292826;
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.catalog-icon-rail__control[hidden] {
  display: none;
}

.catalog-icon-rail__control--previous {
  left: 8px;
}

.catalog-icon-rail__control--next {
  right: 8px;
}

.catalog-icon-rail__control:hover,
.catalog-icon-rail__control:focus-visible {
  border-color: #292826;
  box-shadow: 0 7px 22px rgba(0,0,0,.16);
  transform: translateY(-50%) scale(1.04);
}

.catalog-icon-rail__control:focus-visible {
  outline: 2px solid rgba(41,40,38,.42);
  outline-offset: 3px;
}

.catalog-icon-category {
  min-width: 0;
  min-height: 164px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  background: #fff;
  color: #292826;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
  scroll-snap-align: start;
}

.catalog-icon-category:hover {
  border-color: rgba(41,40,38,.42);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.catalog-icon-category.is-active {
  border-color: #292826;
  background: #fff;
  box-shadow: inset 0 0 0 1px #292826;
}

.catalog-icon-category:focus-visible,
.catalog-all-products-link:focus-visible {
  outline: 2px solid rgba(41,40,38,.5);
  outline-offset: 3px;
}

.catalog-icon-category__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  align-self: start;
  overflow: visible;
  background: transparent;
}

.catalog-icon-category__icon img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.catalog-icon-category__footer {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.catalog-icon-category__footer strong {
  min-width: 0;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.2;
}

.catalog-icon-category__footer svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: #777;
  transition: transform 160ms ease, color 160ms ease;
}

.catalog-icon-category:hover .catalog-icon-category__footer svg,
.catalog-icon-category.is-active .catalog-icon-category__footer svg {
  color: #292826;
  transform: translateX(2px);
}

@media (max-width: 1100px) {
  .catalog-icon-grid {
    grid-auto-columns: 210px;
  }
}

@media (max-width: 760px) {
  .catalog-icon-grid {
    grid-auto-columns: 74vw;
  }

  .catalog-icon-category {
    min-height: 148px;
    padding: 13px;
  }

  .catalog-icon-rail__control {
    width: 36px;
    height: 36px;
  }

  .catalog-icon-grid {
    padding-inline: 42px;
  }
}

@media (max-width: 420px) {
  .catalog-icon-grid {
    grid-auto-columns: 78vw;
  }

  .catalog-icon-category {
    min-height: 136px;
  }

  .catalog-icon-category__icon {
    width: 64px;
    height: 64px;
  }

  .catalog-icon-category__icon img {
    width: 64px;
    height: 64px;
  }

  .catalog-icon-category__footer strong {
    font-size: 12px;
  }
}


/* Patch H3.10 — catalogue search moved into the global header */
.catalog-commerce__header {
  justify-content: flex-start;
  min-height: 58px;
}

/* ========================================================================== */
/* V2-01 — Product Worlds, Category Taxonomy & Smart Filters                  */
/* ========================================================================== */

.smart-catalog {
  --smart-filter-width: 296px;
  --smart-workspace-gap: 24px;
  background: #fff;
  color: var(--color-text, #292826);
}

.smart-catalog__navigation {
  padding-top: 34px;
  padding-bottom: 26px;
}

.catalog-world-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(41, 40, 38, .12);
  border-radius: 999px;
  background: rgba(247, 245, 241, .92);
}

.catalog-world-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  color: #625f59;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.catalog-world-tab:hover {
  color: #292826;
  background: rgba(255, 255, 255, .72);
}

.catalog-world-tab.is-active {
  color: #fff;
  background: #292826;
  box-shadow: 0 5px 16px rgba(41, 40, 38, .14);
}

.smart-catalog__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
}

.smart-catalog__header p {
  margin: 0 0 6px;
  color: #8a857d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.smart-catalog__header h1 {
  margin: 0;
  color: #292826;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 620;
  letter-spacing: -.045em;
  line-height: 1;
}

.smart-catalog__header > span {
  color: #77726a;
  font-size: 14px;
  white-space: nowrap;
}

.smart-category-navigation {
  margin-top: 30px;
}

.smart-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.smart-category-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(41, 40, 38, .11);
  border-radius: 16px;
  background: #fff;
  color: #292826;
  text-decoration: none;
  box-shadow: 0 7px 24px rgba(41, 40, 38, .035);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.smart-category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(41, 40, 38, .24);
  box-shadow: 0 11px 30px rgba(41, 40, 38, .07);
}

.smart-category-card.is-active {
  border-color: #292826;
  background: #f7f5f1;
}

.smart-category-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 13px;
  background: #f5f2ed;
}

.smart-category-card__icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.smart-category-card__icon b {
  font-size: 16px;
  font-weight: 650;
}

.smart-category-card__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.smart-category-card__copy strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.smart-category-card__copy small {
  color: #8a857d;
  font-size: 12px;
}

.smart-category-card > span:last-child {
  color: #8a857d;
  font-size: 16px;
}

.smart-subcategory-navigation {
  margin-top: 18px;
}

.smart-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.smart-subcategory-card {
  display: grid;
  gap: 5px;
  min-height: 60px;
  padding: 12px 13px;
  border: 1px solid rgba(41, 40, 38, .1);
  border-radius: 12px;
  background: #fff;
  color: #292826;
  text-decoration: none;
  transition: border-color .18s ease, background-color .18s ease;
}

.smart-subcategory-card:hover,
.smart-subcategory-card.is-active {
  border-color: #292826;
  background: #f8f6f2;
}

.smart-subcategory-card strong {
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.smart-subcategory-card span {
  color: #8a857d;
  font-size: 11px;
}

.smart-subcategory-card.is-coming span {
  color: #a39d94;
}

.smart-catalog .catalog-toolbar-shell {
  position: static;
  border-top: 1px solid rgba(41, 40, 38, .08);
  border-bottom: 1px solid rgba(41, 40, 38, .08);
  background: rgba(255, 255, 255, .96);
}

.smart-catalog .catalog-toolbar {
  min-height: 72px;
}

.smart-catalog .catalog-toolbar__primary {
  flex: 1;
  min-width: 0;
}

.smart-catalog .catalog-filter-toggle {
  flex: 0 0 auto;
  min-width: 134px;
}

.catalog-search {
  position: relative;
  flex: 0 1 360px;
  min-width: 200px;
}

.catalog-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(41, 40, 38, .14);
  border-radius: 12px;
  background: #fff;
  color: #292826;
  font: inherit;
}

.catalog-search input:focus {
  border-color: #292826;
  outline: none;
  box-shadow: 0 0 0 3px rgba(41, 40, 38, .08);
}

.catalog-search button {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #77726a;
  cursor: pointer;
}

.smart-catalog-workspace {
  display: grid;
  grid-template-columns: var(--smart-filter-width) minmax(0, 1fr);
  gap: var(--smart-workspace-gap);
  align-items: start;
  padding-top: 24px;
  padding-bottom: 64px;
  transition: grid-template-columns .2s ease, gap .2s ease;
}

.smart-catalog-workspace.is-filter-closed {
  grid-template-columns: 0 minmax(0, 1fr);
  gap: 0;
}

.smart-filter-rail {
  position: sticky;
  top: 18px;
  min-width: 0;
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border: 1px solid rgba(41, 40, 38, .11);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(41, 40, 38, .055);
  opacity: 1;
  visibility: visible;
  transition: opacity .16s ease, visibility .16s ease;
}

.smart-catalog-workspace.is-filter-closed .smart-filter-rail {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.smart-filter-rail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 15px;
  border-bottom: 1px solid rgba(41, 40, 38, .08);
}

.smart-filter-rail__header > div {
  display: grid;
  gap: 4px;
}

.smart-filter-rail__header span {
  color: #8a857d;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.smart-filter-rail__header strong {
  font-size: 15px;
  font-weight: 650;
}

.smart-filter-rail__header button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(41, 40, 38, .11);
  border-radius: 50%;
  background: #fff;
  color: #292826;
  font-size: 20px;
  cursor: pointer;
}

.smart-filter-rail__body {
  max-height: calc(100vh - 170px);
  overflow-y: auto;
  padding: 4px 18px 18px;
  overscroll-behavior: contain;
}

.smart-filter-field,
.smart-filter-group,
.smart-filter-boolean {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(41, 40, 38, .075);
}

.smart-filter-field > span,
.smart-filter-group legend,
.smart-filter-boolean > span {
  padding: 0;
  color: #292826;
  font-size: 13px;
  font-weight: 650;
}

.smart-filter-field select {
  width: 100%;
  min-height: 40px;
  padding: 0 34px 0 11px;
  border: 1px solid rgba(41, 40, 38, .13);
  border-radius: 10px;
  background: #fff;
  color: #292826;
  font: inherit;
  font-size: 13px;
}

.smart-filter-options {
  display: grid;
  gap: 7px;
}

.smart-filter-group--pills .smart-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.smart-filter-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #5f5a53;
  font-size: 12px;
  cursor: pointer;
}

.smart-filter-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #292826;
}

.smart-filter-group--pills .smart-filter-option {
  padding: 7px 10px;
  border: 1px solid rgba(41, 40, 38, .13);
  border-radius: 999px;
  background: #fff;
}

.smart-filter-group--pills .smart-filter-option.is-selected {
  border-color: #292826;
  background: #292826;
  color: #fff;
}

.smart-filter-group--pills .smart-filter-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.smart-filter-group--swatches .smart-filter-option i {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(41, 40, 38, .14);
  border-radius: 50%;
  background: var(--filter-swatch);
}

.smart-filter-boolean {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.smart-filter-boolean input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: #292826;
}

.smart-filter-field.is-disabled,
.smart-filter-group.is-disabled,
.smart-filter-boolean.is-disabled {
  opacity: .45;
}

.smart-filter-empty {
  margin: 0;
  color: #9a948b;
  font-size: 12px;
}

.smart-filter-rail__footer {
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(41, 40, 38, .08);
  background: #fbfaf8;
}

.smart-filter-rail__footer .catalog-filter-clear {
  width: 100%;
  min-height: 38px;
}

.smart-catalog-results {
  min-width: 0;
}

.smart-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.smart-filter-chips button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(41, 40, 38, .13);
  border-radius: 999px;
  background: #fff;
  color: #292826;
  font-size: 12px;
  cursor: pointer;
}

.smart-catalog .catalog-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 16px;
}

.smart-catalog .catalog-product-card {
  min-width: 0;
}

.smart-catalog .catalog-product-card__media {
  aspect-ratio: 1 / .9;
  min-height: 0;
}

.smart-catalog .catalog-product-card__body {
  padding: 13px 2px 3px;
}

.smart-catalog .catalog-product-card__body h2 {
  display: -webkit-box;
  min-height: 2.55em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 15px;
  line-height: 1.28;
}

.catalog-product-card__highlights {
  min-height: 1.4em;
  margin: 5px 0 0;
  overflow: hidden;
  color: #6f6a62;
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-catalog .catalog-product-card__footer {
  margin-top: 12px;
}

.smart-catalog .catalog-empty {
  min-height: 320px;
  padding: 70px 30px;
  border: 1px dashed rgba(41, 40, 38, .18);
  border-radius: 18px;
  background: #fbfaf8;
  text-align: center;
}

.catalog-empty__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #8a857d;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.smart-catalog .catalog-empty h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 620;
}

.smart-catalog .catalog-empty p {
  max-width: 520px;
  margin: 12px auto 0;
  color: #77726a;
}

.smart-catalog .catalog-empty .button {
  margin-top: 22px;
}

@media (max-width: 1260px) {
  .smart-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .smart-subcategory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .smart-catalog .catalog-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .smart-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .smart-catalog-workspace,
  .smart-catalog-workspace.is-filter-closed {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .smart-filter-rail {
    position: static;
    max-height: none;
  }

  .smart-filter-rail__body {
    max-height: none;
  }

  .smart-catalog-workspace.is-filter-closed .smart-filter-rail {
    display: none;
  }

  .smart-catalog .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .smart-catalog__navigation {
    padding-top: 22px;
  }

  .catalog-world-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .catalog-world-tab {
    min-width: 0;
    padding: 0 12px;
  }

  .smart-catalog__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .smart-category-grid,
  .smart-subcategory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .smart-category-card {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 72px;
    padding: 12px;
  }

  .smart-category-card > span:last-child {
    display: none;
  }

  .smart-category-card__icon {
    width: 40px;
    height: 40px;
  }

  .smart-catalog .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .smart-catalog .catalog-toolbar__primary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }

  .catalog-search {
    min-width: 0;
  }

  .smart-catalog .catalog-result-count {
    grid-column: 1 / -1;
  }

  .smart-catalog .catalog-sort {
    width: 100%;
  }

  .smart-catalog .catalog-sort select {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .smart-category-grid,
  .smart-subcategory-grid {
    grid-template-columns: 1fr;
  }

  .smart-catalog .catalog-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .smart-catalog .catalog-product-card__body h2 {
    font-size: 13px;
  }

  .smart-catalog .catalog-product-card__classification,
  .catalog-product-card__highlights,
  .smart-catalog .catalog-product-card__colors {
    display: none;
  }
}

.smart-category-card__copy em {
  overflow: hidden;
  color: #9a948b;
  font-size: 10px;
  font-style: normal;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* V2-02A.2 — Soojuskiirgurite Production Category Page */
.heater-category-page {
  --heater-filter-width: 304px;
  --heater-border: rgba(41, 40, 38, 0.12);
  --heater-muted: #746f67;
  padding-bottom: 88px;
  background: #fff;
}

.heater-category-page__navigation {
  padding-top: 28px;
  padding-bottom: 28px;
}

.heater-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  color: #8a857d;
  font-size: 12px;
}

.heater-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.heater-breadcrumbs a:hover {
  color: #292826;
}

.heater-breadcrumbs strong {
  color: #292826;
  font-weight: 600;
}

.heater-category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  padding: 38px 0 28px;
  border-bottom: 1px solid var(--heater-border);
}

.heater-category-hero p {
  margin: 0 0 8px;
  color: var(--heater-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heater-category-hero h1 {
  margin: 0;
  color: #292826;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.heater-category-hero > div:first-child > span {
  display: block;
  max-width: 680px;
  margin-top: 18px;
  color: #625e57;
  font-size: 17px;
  line-height: 1.55;
}

.heater-category-hero__count {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  min-width: 160px;
  padding-bottom: 5px;
}

.heater-category-hero__count strong {
  color: #292826;
  font-size: 17px;
  font-weight: 650;
}

.heater-category-hero__count span {
  color: var(--heater-muted);
  font-size: 13px;
}

.heater-quick-filters {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 20px 1px 2px;
  scrollbar-width: none;
}

.heater-quick-filters::-webkit-scrollbar {
  display: none;
}

.heater-quick-filter {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--heater-border);
  border-radius: 999px;
  background: #fff;
  color: #292826;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.heater-quick-filter small {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: #f1efeb;
  color: #716d65;
  font-size: 10px;
}

.heater-quick-filter:hover,
.heater-quick-filter.is-active {
  border-color: #292826;
  background: #292826;
  color: #fff;
}

.heater-quick-filter.is-active small,
.heater-quick-filter:hover small {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.heater-coverage-disclaimer {
  max-width: 860px;
  margin: 18px 0 0;
  color: #7f7a72;
  font-size: 12px;
  line-height: 1.5;
}

.heater-coverage-disclaimer strong {
  color: #504c46;
}

.heater-toolbar-shell {
  position: sticky;
  top: var(--header-height, 80px);
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.heater-toolbar {
  min-height: 72px;
}

.heater-category-workspace {
  display: grid;
  grid-template-columns: var(--heater-filter-width) minmax(0, 1fr);
  align-items: start;
  gap: 32px;
  padding-top: 28px;
  transition: grid-template-columns 180ms ease, gap 180ms ease;
}

.heater-category-workspace.is-filter-closed {
  grid-template-columns: 0 minmax(0, 1fr);
  gap: 0;
}

.heater-filter-rail {
  position: sticky;
  top: calc(var(--header-height, 80px) + 96px);
  width: var(--heater-filter-width);
  max-height: calc(100vh - var(--header-height, 80px) - 124px);
  overflow: hidden;
  border: 1px solid var(--heater-border);
  border-radius: 18px;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity 160ms ease, visibility 160ms ease, transform 180ms ease;
}

.heater-category-workspace.is-filter-closed .heater-filter-rail {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-12px);
}

.heater-filter-rail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid var(--heater-border);
}

.heater-filter-rail__header div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.heater-filter-rail__header span {
  color: #8a857d;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heater-filter-rail__header strong {
  color: #292826;
  font-size: 15px;
  font-weight: 650;
}

.heater-filter-rail__header button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #f3f1ed;
  color: #292826;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.heater-filter-rail__body {
  max-height: calc(100vh - var(--header-height, 80px) - 262px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 18px 18px;
}

.heater-filter-group {
  margin: 0;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--heater-border);
}

.heater-filter-group legend {
  width: 100%;
  margin-bottom: 12px;
  color: #292826;
  font-size: 13px;
  font-weight: 650;
}

.heater-filter-note {
  margin: -5px 0 12px;
  color: #8a857d;
  font-size: 10px;
  line-height: 1.45;
}

.heater-filter-options {
  display: grid;
  gap: 4px;
}

.heater-filter-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 4px 0;
  color: #4f4b45;
  cursor: pointer;
  font-size: 12px;
}

.heater-filter-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #292826;
}

.heater-filter-option small {
  color: #98938b;
  font-size: 10px;
}

.heater-filter-option.is-selected span {
  color: #292826;
  font-weight: 650;
}

.heater-filter-option.is-unavailable {
  cursor: default;
  opacity: 0.38;
}

.heater-price-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 8px;
}

.heater-price-inputs label {
  display: grid;
  gap: 5px;
}

.heater-price-inputs label span {
  color: #858078;
  font-size: 10px;
}

.heater-price-inputs input {
  width: 100%;
  height: 38px;
  padding: 0 9px;
  border: 1px solid var(--heater-border);
  border-radius: 9px;
  background: #fff;
  color: #292826;
  font: inherit;
  font-size: 12px;
}

.heater-price-sliders {
  position: relative;
  height: 24px;
  margin-top: 14px;
}

.heater-price-sliders input {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  pointer-events: none;
  appearance: none;
  background: transparent;
}

.heater-price-sliders input::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background: #dad6cf;
}

.heater-price-sliders input::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -6px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #292826;
  box-shadow: 0 0 0 1px rgba(41, 40, 38, 0.2);
  pointer-events: auto;
  appearance: none;
}

.heater-price-sliders input::-moz-range-track {
  height: 3px;
  border-radius: 999px;
  background: #dad6cf;
}

.heater-price-sliders input::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #292826;
  box-shadow: 0 0 0 1px rgba(41, 40, 38, 0.2);
  pointer-events: auto;
}

.heater-price-scale {
  display: flex;
  justify-content: space-between;
  color: #98938b;
  font-size: 9px;
}

.heater-advanced-filters {
  padding: 18px 0 0;
}

.heater-advanced-filters summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #292826;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.heater-advanced-filters summary::-webkit-details-marker {
  display: none;
}

.heater-advanced-filters summary span {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #f1efeb;
  color: #716d65;
  font-size: 10px;
}

.heater-filter-rail__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid var(--heater-border);
  background: #fff;
}

.heater-filter-apply {
  display: none;
}

.heater-filter-backdrop {
  display: none;
}

.heater-category-results {
  min-width: 0;
}

.heater-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.heater-filter-chips button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--heater-border);
  border-radius: 999px;
  background: #fff;
  color: #504c46;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
}

.heater-filter-chips button:hover {
  border-color: #292826;
}

.heater-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
}

.heater-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.heater-product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: linear-gradient(145deg, #f8f7f4 0%, #efede8 100%);
}

.heater-product-card__media > a {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.heater-product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 220ms ease;
}

.heater-product-card:hover .heater-product-card__media img {
  transform: scale(1.025);
}

.heater-product-card__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #c2bdb4;
  font-size: 42px;
  font-weight: 500;
}

.heater-product-card__media.has-image-error img {
  display: none;
}

.heater-product-card__ip {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid rgba(41, 40, 38, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #292826;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.heater-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 2px 0;
}

.heater-product-card__brand {
  color: #8a857d;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.heater-product-card h2 {
  margin: 7px 0 0;
  color: #292826;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.heater-product-card h2 a {
  color: inherit;
  text-decoration: none;
}

.heater-product-card__type {
  margin: 7px 0 0;
  color: #77726a;
  font-size: 11px;
}

.heater-product-card__facts {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
}

.heater-product-card__facts > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}

.heater-product-card__facts dt {
  color: #969188;
}

.heater-product-card__facts dd {
  margin: 0;
  color: #4b4741;
  font-weight: 550;
  text-align: right;
}

.heater-card-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 13px;
}

.heater-card-variant {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid var(--heater-border);
  border-radius: 8px;
  background: #fff;
  color: #5f5a53;
  cursor: pointer;
  font: inherit;
  font-size: 10px;
}

.heater-card-variant:hover,
.heater-card-variant.is-active {
  border-color: #292826;
  background: #292826;
  color: #fff;
}

.heater-product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}

.heater-product-card__footer strong {
  color: #292826;
  font-size: 15px;
  font-weight: 650;
}

.heater-product-card__footer span {
  color: #817c74;
  font-size: 10px;
  text-align: right;
}

.heater-product-card__footer span.is-instock {
  color: #50634d;
}

.heater-product-card__configurations {
  margin-top: 5px;
  color: #9a958d;
  font-size: 9px;
}

.heater-grid-footnote {
  margin: 24px 0 0;
  color: #918c84;
  font-size: 10px;
  line-height: 1.5;
}

.heater-category-empty {
  min-height: 380px;
}

@media (max-width: 1320px) {
  .heater-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .heater-category-page {
    --heater-filter-width: 272px;
  }

  .heater-category-workspace {
    gap: 22px;
  }

  .heater-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .heater-category-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .heater-category-hero__count {
    align-items: flex-start;
  }

  .heater-toolbar-shell {
    top: 0;
  }

  .heater-category-workspace,
  .heater-category-workspace.is-filter-closed {
    display: block;
  }

  .heater-filter-rail {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: min(390px, calc(100vw - 28px));
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0 18px 18px 0;
    box-shadow: 24px 0 60px rgba(25, 24, 22, 0.18);
    transform: translateX(0);
  }

  .heater-category-workspace.is-filter-closed .heater-filter-rail {
    transform: translateX(-104%);
  }

  .heater-filter-rail__body {
    max-height: calc(100dvh - 137px);
  }

  .heater-filter-rail__footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .heater-filter-apply {
    display: inline-flex;
  }

  .heater-filter-backdrop:not([hidden]) {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: block;
    background: rgba(21, 20, 18, 0.34);
    backdrop-filter: blur(2px);
  }
}

@media (max-width: 640px) {
  .heater-category-page__navigation {
    padding-top: 16px;
  }

  .heater-breadcrumbs {
    margin-top: 18px;
  }

  .heater-category-hero {
    padding-top: 26px;
  }

  .heater-category-hero h1 {
    font-size: 42px;
  }

  .heater-category-hero > div:first-child > span {
    font-size: 15px;
  }

  .heater-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .heater-toolbar .catalog-toolbar__primary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
  }

  .heater-toolbar .catalog-result-count {
    grid-column: 1 / -1;
  }

  .heater-toolbar .catalog-sort {
    width: 100%;
  }

  .heater-toolbar .catalog-sort select {
    flex: 1;
  }

  .heater-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 10px;
  }

  .heater-product-card__media {
    border-radius: 12px;
  }

  .heater-product-card__media img {
    padding: 10px;
  }

  .heater-product-card h2 {
    font-size: 13px;
  }

  .heater-product-card__facts {
    gap: 4px;
  }

  .heater-product-card__facts > div {
    display: block;
  }

  .heater-product-card__facts dt {
    display: none;
  }

  .heater-product-card__facts dd {
    text-align: left;
  }

  .heater-product-card__facts > div:nth-child(3) {
    display: none;
  }

  .heater-card-variants {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .heater-card-variant {
    flex: 0 0 auto;
  }

  .heater-product-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

/* ================================================================
   V2-03 — Catalogue Workspace UI
   Persistent world -> category -> subcategory -> Smart Filter shell
   ================================================================ */

body.has-catalogue-drawer {
  overflow: hidden;
}

.catalogue-workspace-v2 {
  min-height: 100vh;
  padding: 0 0 72px;
  background: #f8f7f4;
  color: var(--color-text, #292826);
}

.catalogue-workspace-v2 .page-container--wide {
  width: min(100% - 40px, 1540px);
  max-width: 1540px;
}

.catalogue-world-bar {
  position: sticky;
  top: 0;
  z-index: 35;
  border-bottom: 1px solid rgba(41, 40, 38, 0.10);
  background: rgba(252, 251, 249, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.catalogue-world-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 54px;
}

.catalogue-world-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(41, 40, 38, 0.66);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: 160ms ease;
}

.catalogue-world-tab:hover {
  color: #292826;
  background: rgba(41, 40, 38, 0.05);
}

.catalogue-world-tab.is-active {
  color: #fff;
  background: #292826;
  box-shadow: 0 7px 18px rgba(41, 40, 38, 0.16);
}

.catalogue-workspace-layout {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding-top: 18px;
}

.catalogue-category-sidebar {
  position: sticky;
  top: 72px;
  max-height: calc(100vh - 90px);
  overflow: auto;
  padding: 4px 10px 16px 0;
  scrollbar-width: thin;
}

.catalogue-category-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 10px 8px 12px;
  color: rgba(41, 40, 38, 0.47);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-category-sidebar__header button {
  display: none;
}

.catalogue-category-list {
  display: grid;
  gap: 3px;
}

.catalogue-category-link {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 8px 10px 8px 12px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: rgba(41, 40, 38, 0.72);
  text-decoration: none;
  transition: 150ms ease;
}

.catalogue-category-link span {
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}

.catalogue-category-link small {
  color: rgba(41, 40, 38, 0.40);
  font-size: 10px;
  white-space: nowrap;
}

.catalogue-category-link:hover {
  color: #292826;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(41, 40, 38, 0.07);
}

.catalogue-category-link.is-active {
  color: #292826;
  background: #fff;
  border-color: rgba(41, 40, 38, 0.10);
  box-shadow: 0 6px 20px rgba(41, 40, 38, 0.06);
}

.catalogue-category-link.is-active::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 22px;
  margin-left: -13px;
  border-radius: 999px;
  background: #292826;
}

.catalogue-category-link.is-coming small,
.catalogue-subcategory-pill.is-coming small {
  color: rgba(41, 40, 38, 0.30);
}

.catalogue-workspace-content {
  min-width: 0;
}

.catalogue-mobile-context {
  display: none;
}

.catalogue-content-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  min-height: 54px;
  padding: 2px 0 13px;
  border-bottom: 1px solid rgba(41, 40, 38, 0.08);
}

.catalogue-content-heading > div {
  min-width: 0;
}

.catalogue-content-heading span {
  display: block;
  margin-bottom: 3px;
  color: rgba(41, 40, 38, 0.44);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.catalogue-content-heading h1 {
  margin: 0;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.catalogue-content-heading > strong {
  color: rgba(41, 40, 38, 0.50);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.catalogue-section-label {
  margin-bottom: 7px;
  color: rgba(41, 40, 38, 0.43);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.catalogue-subcategory-section {
  padding: 12px 0 10px;
  border-bottom: 1px solid rgba(41, 40, 38, 0.07);
}

.catalogue-horizontal-control {
  position: relative;
  min-width: 0;
}

.catalogue-subcategory-rail {
  display: flex;
  gap: 7px;
  min-width: 0;
  overflow-x: auto;
  padding: 1px 2px 3px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.catalogue-subcategory-rail::-webkit-scrollbar {
  display: none;
}

.catalogue-subcategory-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  flex: 0 0 auto;
  padding: 0 12px;
  border: 1px solid rgba(41, 40, 38, 0.10);
  border-radius: 999px;
  color: rgba(41, 40, 38, 0.68);
  background: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 620;
  text-decoration: none;
  transition: 150ms ease;
}

.catalogue-subcategory-pill small {
  color: rgba(41, 40, 38, 0.40);
  font-size: 9px;
}

.catalogue-subcategory-pill:hover,
.catalogue-subcategory-pill.is-active {
  color: #292826;
  border-color: rgba(41, 40, 38, 0.22);
  background: #fff;
}

.catalogue-subcategory-pill.is-active {
  box-shadow: inset 0 0 0 1px rgba(41, 40, 38, 0.07);
}

.catalogue-scroll-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(41, 40, 38, 0.14);
  border-radius: 50%;
  color: #292826;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 16px rgba(41, 40, 38, 0.12);
  font-size: 21px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.catalogue-scroll-arrow[hidden] {
  display: none;
}

.catalogue-scroll-arrow--left {
  left: 2px;
}

.catalogue-scroll-arrow--right {
  right: 2px;
}

.catalogue-smart-filter-section {
  position: relative;
  z-index: 12;
  padding: 10px 0 9px;
  border-bottom: 1px solid rgba(41, 40, 38, 0.07);
}

.catalogue-smart-filter-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  overflow: visible;
}

.catalogue-filter-popover {
  position: relative;
  flex: 0 0 auto;
}

.catalogue-filter-popover > summary,
.catalogue-all-filters-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(41, 40, 38, 0.12);
  border-radius: 8px;
  color: rgba(41, 40, 38, 0.75);
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 640;
  white-space: nowrap;
  list-style: none;
  cursor: pointer;
  transition: 150ms ease;
}

.catalogue-filter-popover > summary::-webkit-details-marker {
  display: none;
}

.catalogue-filter-popover > summary::after {
  content: "⌄";
  margin-left: 2px;
  color: rgba(41, 40, 38, 0.45);
  font-size: 12px;
}

.catalogue-filter-popover[open] > summary,
.catalogue-filter-popover > summary:hover,
.catalogue-all-filters-button:hover {
  color: #292826;
  border-color: rgba(41, 40, 38, 0.25);
}

.catalogue-filter-popover summary small {
  max-width: 92px;
  overflow: hidden;
  color: rgba(41, 40, 38, 0.45);
  font-size: 9px;
  font-weight: 600;
  text-overflow: ellipsis;
}

.catalogue-filter-popover summary small:empty {
  display: none;
}

.catalogue-filter-popover__panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 45;
  width: min(310px, calc(100vw - 40px));
  max-height: 420px;
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(41, 40, 38, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(41, 40, 38, 0.16);
}

.catalogue-all-filters-button {
  color: #fff;
  border-color: #292826;
  background: #292826;
}

.catalogue-all-filters-button:hover {
  color: #fff;
  background: #1f1e1c;
}

.catalogue-all-filters-button b {
  display: grid;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  color: #292826;
  background: #fff;
  font-size: 9px;
}

.catalogue-all-filters-button b[hidden] {
  display: none;
}

.catalogue-filter-popover .smart-filter-field,
.catalogue-filter-popover .smart-filter-group,
.catalogue-filter-popover .smart-filter-boolean,
.catalogue-filter-popover .heater-filter-group {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.catalogue-filter-popover .smart-filter-field > span,
.catalogue-filter-popover .smart-filter-group legend,
.catalogue-filter-popover .smart-filter-boolean > span,
.catalogue-filter-popover .heater-filter-group legend {
  margin-bottom: 10px;
  color: #292826;
  font-size: 12px;
}

.catalogue-filter-popover .smart-filter-options,
.catalogue-filter-popover .heater-filter-options {
  max-height: 280px;
  overflow: auto;
}

.smart-filter-chips,
.heater-filter-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 8px 0 0;
  scrollbar-width: none;
}

.smart-filter-chips[hidden],
.heater-filter-chips[hidden] {
  display: none;
}

.catalogue-workspace-v2 .smart-filter-chips button,
.catalogue-workspace-v2 .heater-filter-chips button {
  min-height: 28px;
  flex: 0 0 auto;
  padding: 0 10px;
  border: 1px solid rgba(41, 40, 38, 0.11);
  border-radius: 999px;
  color: rgba(41, 40, 38, 0.72);
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  cursor: pointer;
}

.catalogue-workspace-search-row {
  width: 100%;
  padding: 8px 0 2px;
}

.catalogue-workspace-search-row .catalogue-results-search {
  width: 100%;
  min-width: 0;
  height: 42px;
  transition: filter 180ms ease, transform 180ms ease;
}

.catalogue-workspace-search-row .catalogue-results-search > img {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  opacity: .58;
  pointer-events: none;
}

.catalogue-workspace-search-row .catalogue-results-search input {
  height: 42px;
  padding: 0 42px 0 42px;
  border-color: rgba(41, 40, 38, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  font-size: 12px;
}

.catalogue-workspace-search-row.is-attention .catalogue-results-search {
  filter: drop-shadow(0 8px 18px rgba(41, 40, 38, .10));
  transform: translateY(-1px);
}

.catalogue-results-toolbar {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 6px 0;
}

.catalogue-results-toolbar__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.catalogue-results-toolbar__summary strong {
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.catalogue-results-toolbar__summary button {
  padding: 0;
  border: 0;
  color: rgba(41, 40, 38, 0.52);
  background: transparent;
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
}

.catalogue-results-toolbar__summary button[hidden] {
  display: none;
}

.catalogue-results-search {
  min-width: 0;
}

.catalogue-results-search input {
  width: 100%;
}

.catalogue-results-sort {
  min-height: 36px;
  gap: 7px;
}

.catalogue-results-sort > span {
  color: rgba(41, 40, 38, 0.48);
  font-size: 10px;
}

.catalogue-results-sort select {
  height: 36px;
  padding: 0 32px 0 11px;
  border: 1px solid rgba(41, 40, 38, 0.12);
  border-radius: 8px;
  background-color: #fff;
  font-size: 11px;
}

.catalogue-workspace-v2 .catalog-product-grid,
.catalogue-workspace-v2 .heater-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.catalogue-workspace-v2 .catalog-product-card,
.catalogue-workspace-v2 .heater-product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(41, 40, 38, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(41, 40, 38, 0.045);
}

.catalogue-workspace-v2 .catalog-product-card__media,
.catalogue-workspace-v2 .heater-product-card__media {
  aspect-ratio: 4 / 3;
  min-height: 0;
  max-height: 190px;
  background: #f1f0ed;
}

.catalogue-workspace-v2 .catalog-product-card__media img,
.catalogue-workspace-v2 .heater-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.catalogue-workspace-v2 .catalog-product-card__body,
.catalogue-workspace-v2 .heater-product-card__body {
  display: flex;
  flex-direction: column;
  min-height: 142px;
  padding: 11px 12px 12px;
}

.catalogue-workspace-v2 .catalog-product-card__brand,
.catalogue-workspace-v2 .heater-product-card__brand {
  margin-bottom: 3px;
  font-size: 9px;
}

.catalogue-workspace-v2 .catalog-product-card h2,
.catalogue-workspace-v2 .heater-product-card h2 {
  display: -webkit-box;
  min-height: 31px;
  margin: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.28;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalogue-workspace-v2 .catalog-product-card__classification,
.catalogue-workspace-v2 .heater-product-card__type {
  margin: 4px 0 0;
  overflow: hidden;
  color: rgba(41, 40, 38, 0.48);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogue-workspace-v2 .catalog-product-card__highlights {
  margin: 5px 0 0;
  overflow: hidden;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogue-workspace-v2 .catalog-product-card__colors {
  min-height: 19px;
  margin-top: 5px;
}

.catalogue-workspace-v2 .catalog-product-card__footer,
.catalogue-workspace-v2 .heater-product-card__footer {
  margin-top: auto;
  padding-top: 8px;
}

.catalogue-workspace-v2 .catalog-product-card__footer strong,
.catalogue-workspace-v2 .heater-product-card__footer strong {
  font-size: 12px;
}

.catalogue-workspace-v2 .catalog-product-card__footer span,
.catalogue-workspace-v2 .heater-product-card__footer span {
  font-size: 9px;
}

.catalogue-workspace-v2 .heater-product-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 8px;
  margin: 7px 0 0;
}

.catalogue-workspace-v2 .heater-product-card__facts > div:last-child {
  grid-column: 1 / -1;
}

.catalogue-workspace-v2 .heater-product-card__facts dt {
  font-size: 8px;
}

.catalogue-workspace-v2 .heater-product-card__facts dd {
  margin-top: 1px;
  font-size: 9px;
}

.catalogue-workspace-v2 .heater-card-variants {
  gap: 4px;
  margin-top: 7px;
}

.catalogue-workspace-v2 .heater-card-variant {
  min-height: 24px;
  padding: 0 7px;
  font-size: 8px;
}

.catalogue-workspace-v2 .heater-product-card__configurations {
  margin-top: 4px;
  font-size: 8px;
}

.catalogue-workspace-v2 .catalog-empty {
  margin-top: 14px;
  border-radius: 14px;
}

.catalogue-filter-backdrop,
.catalogue-category-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(21, 21, 19, 0.28);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.catalogue-filter-backdrop[hidden],
.catalogue-category-backdrop[hidden] {
  display: none;
}

.catalogue-filter-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(430px, 94vw);
  height: 100dvh;
  border-left: 1px solid rgba(41, 40, 38, 0.10);
  background: #fcfbf9;
  box-shadow: -20px 0 60px rgba(21, 21, 19, 0.16);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

.catalogue-workspace-v2.is-filter-drawer-open .catalogue-filter-drawer {
  transform: translateX(0);
}

.catalogue-filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(41, 40, 38, 0.08);
}

.catalogue-filter-drawer__header > div {
  display: grid;
  gap: 3px;
}

.catalogue-filter-drawer__header span {
  color: rgba(41, 40, 38, 0.42);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.catalogue-filter-drawer__header strong {
  font-size: 16px;
}

.catalogue-filter-drawer__header button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(41, 40, 38, 0.10);
  border-radius: 50%;
  background: #fff;
  font-size: 21px;
  cursor: pointer;
}

.catalogue-filter-drawer__body {
  overflow-y: auto;
  padding: 18px 20px 30px;
}

.catalogue-filter-drawer__body > .smart-filter-field,
.catalogue-filter-drawer__body > .smart-filter-group,
.catalogue-filter-drawer__body > .smart-filter-boolean,
.catalogue-filter-drawer__body > .heater-filter-group,
.catalogue-filter-drawer__body > .heater-advanced-filters {
  margin: 0 0 12px;
  padding: 15px;
  border: 1px solid rgba(41, 40, 38, 0.08);
  border-radius: 12px;
  background: #fff;
}

.catalogue-filter-drawer__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(41, 40, 38, 0.08);
  background: rgba(252, 251, 249, 0.96);
}

.catalogue-filter-drawer__footer button {
  min-height: 42px;
}

@media (max-width: 1260px) {
  .catalogue-workspace-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
  }

  .catalogue-workspace-v2 .catalog-product-grid,
  .catalogue-workspace-v2 .heater-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalogue-smart-filter-bar {
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
}

@media (max-width: 900px) {
  .catalogue-workspace-v2 .page-container--wide {
    width: min(100% - 28px, 1540px);
  }

  .catalogue-world-bar {
    top: 0;
  }

  .catalogue-world-tabs {
    min-height: 50px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalogue-workspace-layout {
    display: block;
    padding-top: 12px;
  }

  .catalogue-category-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 100;
    width: min(360px, 90vw);
    max-height: none;
    padding: 12px 14px 24px;
    border-right: 1px solid rgba(41, 40, 38, 0.10);
    background: #fcfbf9;
    box-shadow: 20px 0 60px rgba(21, 21, 19, 0.16);
    transform: translateX(-104%);
    transition: transform 220ms ease;
  }

  .catalogue-workspace-v2.is-category-drawer-open .catalogue-category-sidebar {
    transform: translateX(0);
  }

  .catalogue-category-sidebar__header {
    min-height: 54px;
    padding: 0 2px 10px;
  }

  .catalogue-category-sidebar__header button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(41, 40, 38, 0.10);
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
  }

  .catalogue-mobile-context {
    display: block;
    margin-bottom: 8px;
  }

  .catalogue-mobile-category-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid rgba(41, 40, 38, 0.10);
    border-radius: 10px;
    color: #292826;
    background: #fff;
  }

  .catalogue-mobile-category-button span {
    color: rgba(41, 40, 38, 0.45);
    font-size: 10px;
  }

  .catalogue-mobile-category-button strong {
    font-size: 12px;
  }

  .catalogue-content-heading {
    min-height: 48px;
  }

  .catalogue-results-toolbar {
    grid-template-columns: 1fr auto;
  }

  .catalogue-results-sort {
    grid-column: 2;
    grid-row: 1;
  }

  .catalogue-workspace-v2 .catalog-product-grid,
  .catalogue-workspace-v2 .heater-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalogue-workspace-v2 {
    padding-bottom: 46px;
  }

  .catalogue-world-tab {
    min-height: 34px;
    padding: 0 14px;
  }

  .catalogue-content-heading {
    align-items: start;
  }

  .catalogue-content-heading > strong {
    display: none;
  }

  .catalogue-smart-filter-bar {
    gap: 6px;
  }

  .catalogue-filter-popover > summary,
  .catalogue-all-filters-button {
    min-height: 33px;
    padding: 0 10px;
  }

  .catalogue-results-toolbar {
    gap: 8px;
  }

  .catalogue-results-sort > span {
    display: none;
  }

  .catalogue-workspace-v2 .catalog-product-card__media,
  .catalogue-workspace-v2 .heater-product-card__media {
    max-height: 160px;
  }

  .catalogue-workspace-v2 .catalog-product-card__body,
  .catalogue-workspace-v2 .heater-product-card__body {
    min-height: 136px;
    padding: 10px;
  }

  .catalogue-workspace-v2 .heater-product-card__facts > div:last-child {
    display: none;
  }
}

@media (max-width: 460px) {
  .catalogue-workspace-v2 .catalog-product-grid,
  .catalogue-workspace-v2 .heater-product-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-workspace-v2 .catalog-product-card__media,
  .catalogue-workspace-v2 .heater-product-card__media {
    max-height: 230px;
  }
}

/* V2-03 viewport density lock: keep two complete four-card rows visible on large desktop. */
@media (min-width: 1261px) {
  .catalogue-world-tabs {
    min-height: 48px;
  }

  .catalogue-world-tab {
    min-height: 34px;
  }

  .catalogue-workspace-layout {
    padding-top: 12px;
  }

  .catalogue-category-sidebar {
    top: 62px;
    max-height: calc(100vh - 74px);
  }

  .catalogue-content-heading {
    min-height: 48px;
    padding-bottom: 9px;
  }

  .catalogue-subcategory-section {
    padding: 8px 0 7px;
  }

  .catalogue-section-label {
    margin-bottom: 5px;
  }

  .catalogue-subcategory-pill,
  .catalogue-filter-popover > summary,
  .catalogue-all-filters-button {
    min-height: 31px;
  }

  .catalogue-smart-filter-section {
    padding: 7px 0 6px;
  }

  .catalogue-results-toolbar {
    min-height: 46px;
    padding: 6px 0;
  }

  .catalogue-workspace-search-row {
    padding-top: 6px;
  }

  .catalogue-workspace-search-row .catalogue-results-search,
  .catalogue-workspace-search-row .catalogue-results-search input {
    height: 38px;
    min-height: 38px;
  }

  .catalogue-results-sort,
  .catalogue-results-sort select {
    height: 34px;
    min-height: 34px;
  }

  .catalogue-workspace-v2 .catalog-product-card__media,
  .catalogue-workspace-v2 .heater-product-card__media {
    aspect-ratio: 3 / 2;
    max-height: 170px;
  }

  .catalogue-workspace-v2 .catalog-product-card__body,
  .catalogue-workspace-v2 .heater-product-card__body {
    min-height: 128px;
    padding: 9px 11px 10px;
  }

  .catalogue-workspace-v2 .heater-product-card__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin-top: 5px;
  }

  .catalogue-workspace-v2 .heater-product-card__facts > div:last-child {
    grid-column: auto;
  }

  .catalogue-workspace-v2 .heater-card-variants {
    margin-top: 5px;
  }

  .catalogue-workspace-v2 .heater-card-variant {
    min-height: 22px;
  }

  .catalogue-workspace-v2 .catalog-product-card__footer,
  .catalogue-workspace-v2 .heater-product-card__footer {
    padding-top: 6px;
  }
}

/* V2-03.4 — Catalogue Search Relocation */
@media (prefers-reduced-motion: reduce) {
  .catalogue-workspace-search-row .catalogue-results-search {
    transition: none;
  }
}

/* V2-04 — Category Competence Cards & Compare Core */
.catalogue-workspace-search-row {
  display: none !important;
}

.catalog-product-card__decision-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 8px;
  margin: 7px 0 0;
}

.catalog-product-card__decision-facts > div,
.catalogue-workspace-v2 .heater-product-card__facts > div {
  min-width: 0;
}

.catalog-product-card__decision-facts dt,
.catalogue-workspace-v2 .heater-product-card__facts dt {
  overflow: hidden;
  color: rgba(41, 40, 38, 0.48);
  font-size: 8px;
  font-weight: 550;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-product-card__decision-facts dd,
.catalogue-workspace-v2 .heater-product-card__facts dd {
  margin: 2px 0 0;
  overflow: hidden;
  color: #292826;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogue-workspace-v2 .heater-product-card__facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 8px;
  margin-top: 7px;
}

.catalogue-workspace-v2 .heater-product-card__facts > div:last-child {
  grid-column: auto;
}

.product-card-compare {
  position: absolute;
  left: 9px;
  bottom: 9px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(41, 40, 38, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 3px 10px rgba(41, 40, 38, 0.08);
  color: #292826;
  font: inherit;
  font-size: 9px;
  font-weight: 650;
  cursor: pointer;
}

.product-card-compare i {
  position: relative;
  width: 12px;
  height: 12px;
  border: 1.5px solid rgba(41, 40, 38, 0.48);
  border-radius: 4px;
}

.product-card-compare.is-active {
  border-color: #292826;
  background: #292826;
  color: #fff;
}

.product-card-compare.is-active i {
  border-color: #fff;
  background: #fff;
}

.product-card-compare.is-active i::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 3px;
  height: 6px;
  border: solid #292826;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.product-compare-tray {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 1080;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(1040px, calc(100vw - 32px));
  min-height: 66px;
  padding: 9px 12px 9px 16px;
  border: 1px solid rgba(41, 40, 38, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 44px rgba(41, 40, 38, 0.17);
  transform: translateX(-50%);
}

.product-compare-tray[hidden],
.product-compare-panel[hidden],
.product-compare-backdrop[hidden] {
  display: none !important;
}

.product-compare-tray.is-limit-warning {
  animation: product-compare-nudge 0.35s ease both;
}

@keyframes product-compare-nudge {
  0%, 100% { transform: translateX(-50%); }
  35% { transform: translateX(calc(-50% - 6px)); }
  70% { transform: translateX(calc(-50% + 6px)); }
}

.product-compare-tray__summary {
  display: grid;
  gap: 2px;
  min-width: 118px;
}

.product-compare-tray__summary strong {
  font-size: 11px;
}

.product-compare-tray__summary > span {
  color: rgba(41, 40, 38, 0.48);
  font-size: 9px;
}

.product-compare-tray__items {
  display: flex;
  gap: 7px;
  min-width: 0;
  overflow: hidden;
}

.product-compare-tray__items > button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 12px;
  gap: 7px;
  align-items: center;
  min-width: 0;
  width: min(190px, 24%);
  padding: 3px 5px 3px 3px;
  border: 0;
  border-radius: 9px;
  background: #f4f2ee;
  color: #292826;
  text-align: left;
  cursor: pointer;
}

.product-compare-tray__items > button > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}

.product-compare-tray__items img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-compare-tray__items small {
  overflow: hidden;
  font-size: 9px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-compare-tray__items b {
  color: rgba(41, 40, 38, 0.44);
  font-size: 12px;
}

.product-compare-tray__actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.product-compare-tray__actions .button {
  min-height: 40px;
  padding-inline: 18px;
}

.product-compare-tray__clear,
.product-compare-panel__controls button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(41, 40, 38, 0.58);
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
}

.has-product-compare-tray .catalogue-workspace-content {
  padding-bottom: 96px;
}

.product-compare-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1120;
  background: rgba(31, 30, 28, 0.28);
}

.product-compare-panel {
  position: fixed;
  inset: max(18px, env(safe-area-inset-top)) 24px max(18px, env(safe-area-inset-bottom));
  z-index: 1130;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(1260px, calc(100vw - 48px));
  max-height: calc(100vh - 36px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(41, 40, 38, 0.12);
  border-radius: 22px;
  background: #fcfbf9;
  box-shadow: 0 30px 90px rgba(41, 40, 38, 0.24);
}

.product-compare-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(41, 40, 38, 0.08);
}

.product-compare-panel__header span {
  color: rgba(41, 40, 38, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-compare-panel__header h2 {
  margin: 3px 0 0;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 620;
}

.product-compare-panel__close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(41, 40, 38, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #292826;
  font-size: 21px;
  cursor: pointer;
}

.product-compare-panel__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 46px;
  padding: 8px 22px;
  border-bottom: 1px solid rgba(41, 40, 38, 0.08);
  background: #fff;
  font-size: 11px;
}

.product-compare-panel__controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.product-compare-panel__body {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
}

.product-compare-table {
  min-width: calc(170px + (var(--compare-columns) * 210px));
}

.product-compare-products,
.product-compare-row {
  display: grid;
  grid-template-columns: 170px repeat(var(--compare-columns), minmax(210px, 1fr));
}

.product-compare-products {
  position: sticky;
  top: 0;
  z-index: 2;
  align-items: stretch;
  border-bottom: 1px solid rgba(41, 40, 38, 0.1);
  background: #fcfbf9;
}

.product-compare-product {
  position: relative;
  min-width: 0;
  padding: 14px;
  border-left: 1px solid rgba(41, 40, 38, 0.08);
}

.product-compare-product > button {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(41, 40, 38, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
}

.product-compare-product a {
  display: grid;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}

.product-compare-product__media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 92px;
  margin-bottom: 5px;
  overflow: hidden;
  border-radius: 10px;
  background: #f2f0ec;
}

.product-compare-product__media img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
}

.product-compare-product__media i {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
}

.product-compare-product small {
  color: rgba(41, 40, 38, 0.48);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-compare-product strong {
  display: -webkit-box;
  min-height: 34px;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-compare-product b {
  font-size: 12px;
}

.product-compare-row {
  min-height: 48px;
  border-bottom: 1px solid rgba(41, 40, 38, 0.07);
  background: #fff;
}

.product-compare-row > div {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 11px 14px;
  border-left: 1px solid rgba(41, 40, 38, 0.07);
  font-size: 11px;
  line-height: 1.4;
}

.product-compare-row__label {
  position: sticky;
  left: 0;
  z-index: 1;
  border-left: 0 !important;
  background: #f8f6f2;
  color: rgba(41, 40, 38, 0.62);
  font-size: 10px !important;
  font-weight: 650;
}

.product-compare-row.is-different > div:not(.product-compare-row__label) {
  background: #fffdf6;
  font-weight: 650;
}

.product-compare-empty-differences {
  padding: 34px 22px;
  color: rgba(41, 40, 38, 0.58);
  font-size: 12px;
  text-align: center;
}

.has-product-compare-panel {
  overflow: hidden;
}

@media (max-width: 900px) {
  .product-compare-tray {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-compare-tray__summary {
    display: none;
  }

  .product-compare-tray__items > button {
    width: min(170px, 31%);
  }

  .product-compare-panel {
    inset-inline: 12px;
    width: calc(100vw - 24px);
  }
}

@media (max-width: 640px) {
  .catalog-product-card__decision-facts,
  .catalogue-workspace-v2 .heater-product-card__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-compare {
    min-height: 26px;
    padding-inline: 8px;
  }

  .product-compare-tray {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100vw - 16px);
    min-height: 58px;
    padding: 7px 8px;
    border-radius: 15px;
  }

  .product-compare-tray__items {
    gap: 5px;
  }

  .product-compare-tray__items > button {
    grid-template-columns: 30px 12px;
    width: 48px;
  }

  .product-compare-tray__items small {
    display: none;
  }

  .product-compare-tray__actions .product-compare-tray__clear {
    display: none;
  }

  .product-compare-tray__actions .button {
    min-height: 38px;
    padding-inline: 14px;
  }

  .product-compare-panel {
    inset: max(6px, env(safe-area-inset-top)) 6px max(6px, env(safe-area-inset-bottom));
    width: calc(100vw - 12px);
    max-height: calc(100vh - 12px);
    border-radius: 16px;
  }

  .product-compare-panel__header {
    padding: 14px;
  }

  .product-compare-panel__controls {
    padding-inline: 14px;
  }

  .product-compare-table {
    min-width: calc(132px + (var(--compare-columns) * 170px));
  }

  .product-compare-products,
  .product-compare-row {
    grid-template-columns: 132px repeat(var(--compare-columns), minmax(170px, 1fr));
  }

  .product-compare-product {
    padding: 10px;
  }

  .product-compare-product__media {
    height: 76px;
  }

  .product-compare-row > div {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-compare-tray.is-limit-warning {
    animation: none;
  }
}


/* V2-05.3.3 — authoritative product-card media and footer correction. */
.catalogue-workspace-v2 .catalog-product-card,
.catalogue-workspace-v2 .heater-product-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.catalogue-workspace-v2 .catalog-product-card__media,
.catalogue-workspace-v2 .heater-product-card__media {
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  max-height: none;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #f7f6f3;
  box-shadow: none;
}

.catalogue-workspace-v2 .catalog-product-card__media-link,
.catalogue-workspace-v2 .heater-product-card__media > a {
  inset: 0;
  padding: 18px 20px 14px;
}

.catalogue-workspace-v2 .catalog-product-card__media img,
.catalogue-workspace-v2 .heater-product-card__media img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}

.catalogue-workspace-v2 .catalog-product-card__body,
.catalogue-workspace-v2 .heater-product-card__body {
  flex: 1 1 auto;
  border-top: 1px solid rgba(41, 40, 38, 0.065);
}

.catalogue-workspace-v2 .catalog-product-card__footer,
.catalogue-workspace-v2 .heater-product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  min-height: 34px;
}

.catalog-product-card__footer-copy,
.heater-product-card__footer-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.catalog-product-card__footer-copy > span,
.heater-product-card__footer-copy > span {
  overflow: hidden;
  text-align: left !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalogue-workspace-v2 .product-card-compare {
  position: static;
  inset: auto;
  z-index: auto;
  flex: 0 0 auto;
  min-height: 28px;
  margin: 0;
  padding: 0 9px;
  box-shadow: none;
}

.catalogue-workspace-v2 .product-card-compare span {
  color: inherit !important;
  font-size: inherit;
  text-align: inherit;
}


/* V2-05.4R.1 — full native media, no artificial scaling, pure white stage. */
.catalogue-workspace-v2 .catalog-product-card__media,
.catalogue-workspace-v2 .heater-product-card__media {
  aspect-ratio: 4 / 3;
  background: #fff;
}

.catalogue-workspace-v2 .catalog-product-card__media-link,
.catalogue-workspace-v2 .heater-product-card__media > a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.catalogue-workspace-v2 .catalog-product-card__media img,
.catalogue-workspace-v2 .heater-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center center;
  transform: none !important;
  background: #fff;
}

