/* Generated by build-assets.sh. Do not edit directly. */

/* ===== css2/variables.css ===== */
:root {
  --ui-font: Arial, Helvetica, sans-serif;
  --ui-text: #20242a;
  --ui-muted: #68717d;
  --ui-border: #dfe3e8;
  --ui-surface: #ffffff;
  --ui-surface-soft: #f5f7f9;
  --ui-accent: #d71920;
  --ui-accent-hover: #b9151b;
  --ui-radius-sm: 4px;
  --ui-radius-md: 8px;
  --ui-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  --ui-container: 1440px;
}


/* ===== css2/reset.css ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-family: var(--ui-font);
  color: var(--ui-text);
}

body {
  margin: 0;
  background: var(--ui-surface);
}

img {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}


/* ===== css2/base.css ===== */
.ui-container {
  width: min(100% - 32px, var(--ui-container));
  margin-inline: auto;
}

.ui-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 0;
  border-radius: var(--ui-radius-sm);
  cursor: pointer;
  text-decoration: none;
}

.ui-button--primary {
  color: #fff;
  background: var(--ui-accent);
}

.ui-button--primary:hover {
  background: var(--ui-accent-hover);
}

.ui-button--cart-add {
  --ui-cart-action-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2M1 2v2h2l3.6 7.6-1.35 2.44A2 2 0 0 0 7 17h12v-2H7.42a.25.25 0 0 1-.22-.37L8.1 13h7.45a2 2 0 0 0 1.75-1.03L20.88 5H5.21l-.94-2H1m16 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2'/%3E%3C/svg%3E");
  gap: 6px;
  border: 1px solid #b8dec2;
  background: #edf8f0;
  color: #2f7d4a;
}

.ui-button--cart-add:hover {
  border-color: #89c99b;
  background: #e0f2e5;
  color: #20663a;
}

.ui-button--cart-add::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--ui-cart-action-icon) center / contain no-repeat;
  mask: var(--ui-cart-action-icon) center / contain no-repeat;
}

.ui-price {
  font-weight: 700;
}

[linkto]:not([disabled]):not([aria-disabled="true"]) {
  cursor: pointer;
}


/* ===== css2/layout.css ===== */
.site-main {
  min-height: 55vh;
  padding-block: 24px 48px;
}

.content-with-sidebar {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

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


/* ===== css2/header.css ===== */
.site-header {
  position: relative;
  z-index: 80;
  background: var(--ui-surface);
}

.site-header__fixed {
  background: #fff;
  border-bottom: 1px solid var(--ui-border);
}

.site-header__utility {
  background: #fff;
  border-bottom: 1px solid var(--ui-border);
}

.site-header__utility-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 48px;
}

.site-header__service {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-header__service a {
  color: var(--ui-text);
  text-decoration: none;
}

.site-header__main-row {
  background: #fff;
}

.site-header__main {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) auto;
  grid-template-areas: "logo search actions"
    "catalog search actions";
  align-items: center;
  column-gap: 28px;
  row-gap: 15px;
  min-height: 116px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.site-logo {
  grid-area: logo;
  align-self: end;
  color: #f55256;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__catalog {
  grid-area: catalog;
  align-self: start;
  width: 260px;
  min-width: 0;
}

.site-header__catalog .catalog-nav__trigger {
  width: 100%;
  background: #f55256;
}

.site-header__catalog .catalog-nav__trigger:hover,
.site-header__catalog .catalog-nav__trigger:focus-visible {
  background: #df484d;
}

.site-header__search-wrap {
  grid-area: search;
  width: 100%;
  min-width: 0;
  max-width: none;
}

.site-header__hours {
  margin-bottom: 7px;
  color: #aaa;
  font-size: 12px;
  text-align: center;
}

.site-header__actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.site-search {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
}

.site-search input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 50px 0 14px;
  border: 1px solid #d4d8dc;
  border-radius: 3px;
  font-size: 15px;
}

.site-search input:focus {
  outline: 0;
  border-color: #f6b800;
  box-shadow: 0 0 0 1px #f6b800;
}

.site-search__submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #f0b400;
  font-size: 28px;
  cursor: pointer;
}

.header-action,
.language-switcher {
  position: relative;
}

.header-action__trigger {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 52px;
  height: 58px;
  border: 0;
  background: #fff;
  color: #f55256;
  cursor: pointer;
}

.header-action__icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eef3f7;
  font-size: 16px;
  line-height: 1;
}

.header-action__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.header-action__badge {
  position: absolute;
  top: 2px;
  right: 1px;
  display: grid;
  place-items: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 12px;
  background: #f55256;
  color: #fff;
  font-size: 11px;
}

.language-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--ui-border);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}

.ui-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 1px solid #cfd7de;
  border-radius: var(--ui-radius-sm);
  background: #fff;
  color: #46515b;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.ui-link-button:hover,
.ui-link-button:focus-visible {
  border-color: #aeb9c2;
  background: #f3f6f8;
}

.utility-popover-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 47px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ui-text);
  font: inherit;
  cursor: pointer;
}

.utility-popover-trigger strong {
  font-size: 17px;
}

.header-action--utility {
  position: static;
}

.header-popover {
  width: min(560px, calc(100vw - 24px));
  padding: 26px 30px;
  background: #fff;
  box-shadow: var(--ui-shadow);
}

.header-popover::before {
  position: absolute;
  top: -9px;
  border: 9px solid transparent;
  border-top: 0;
  border-bottom-color: #fff;
  content: "";
}

.header-popover h2 {
  margin: 0 0 16px;
  font-size: 18px;
}

.header-popover__items {
  min-width: 0;
}

.header-popover--contacts,
.header-popover--callback {
  width: min(700px, calc(100vw - 32px));
  border-top: 2px solid #f0b400;
}

.header-popover--callback {
  width: 355px;
}

.header-popover--language {
  min-width: 190px;
}

.language-option {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  text-align: left;
}

.language-option:hover {
  background: #f3f6f8;
}

.contact-popover__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-popover__grid > div {
  display: grid;
  gap: 7px;
}

.contact-popover__grid a,
.contact-popover__grid span {
  display: block;
}

.header-popover__note {
  margin: 18px 0 0;
  color: var(--ui-muted);
  font-size: 13px;
}

.header-popover--callback form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 14px;
}

.header-popover--callback label {
  display: grid;
  gap: 8px;
  color: var(--ui-muted);
  font-size: 12px;
}

.header-popover--callback input,
.account-form input {
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--ui-border);
  font: inherit;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: #27863f;
  font-size: 13px;
}

.header-popover--account {
  width: 330px;
}

.account-form {
  display: grid;
  gap: 11px;
}

.account-form__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.account-form__actions > div {
  display: grid;
  gap: 5px;
  font-size: 13px;
}

.mini-product {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) max-content 28px;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

.mini-product img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.mini-product a {
  min-width: 0;
  line-height: 1.35;
}

.mini-product strong {
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

.mini-product__remove {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ui-muted);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.mini-product__remove:hover,
.mini-product__remove:focus-visible {
  color: var(--ui-accent);
  background: #f6f6f6;
}

.header-popover__footer,
.header-popover__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.header-popover__summary {
  padding-top: 14px;
  border-top: 1px solid var(--ui-border);
}

.header-popover__footer .ui-button {
  border: 1px solid var(--ui-accent);
  font-weight: 700;
}

@media (hover: hover) and (min-width: 901px) {
  .header-action[data-popover-host]::after,
  .language-switcher[data-popover-host]::after {
    position: absolute;
    top: 100%;
    right: -8px;
    left: -8px;
    height: 12px;
    content: "";
  }
}

.is-header-compact .site-header__fixed {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  box-shadow: 0 7px 24px rgba(0, 0, 0, .11);
}

.is-header-compact .site-header__utility,
.is-header-compact .site-alert,
.is-header-compact .site-header__hours {
  display: none;
}

.is-header-compact .site-header__main {
  grid-template-columns: 190px auto minmax(0, 1fr) auto;
  grid-template-areas: "catalog logo search actions";
  gap: 14px;
  min-height: 70px;
  padding: 9px 0;
}

.is-header-compact .site-header__catalog {
  align-self: center;
  width: 190px;
}

.is-header-compact .site-header__catalog .catalog-nav__trigger {
  min-height: 44px;
  border-radius: 8px;
}

.is-header-compact .site-logo {
  display: block;
  align-self: center;
  font-size: 27px;
}

@media (max-width: 1180px) {
  .site-header__utility-inner {
    gap: 14px;
  }

  .site-header__service {
    gap: 10px;
  }

  .site-header__main {
    grid-template-columns: 230px minmax(0, 1fr) auto;
    column-gap: 18px;
    min-height: 112px;
  }

  .site-header__catalog {
    width: 230px;
  }

  .site-logo {
    font-size: 32px;
  }

  .is-header-compact .site-header__main {
    grid-template-columns: 170px auto minmax(0, 1fr) auto;
  }

  .is-header-compact .site-header__catalog {
    width: 170px;
  }

}

@media (max-width: 980px) and (min-width: 901px) {
  .site-header__main {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    grid-template-areas: "logo search actions"
      "catalog search actions";
    column-gap: 14px;
  }

  .site-header__catalog {
    width: 220px;
  }

  .site-logo {
    font-size: 30px;
  }

  .site-header__actions {
    gap: 2px;
  }

  .header-action__trigger {
    min-width: 44px;
  }

  .language-switcher__trigger {
    padding: 0 9px;
  }

  .is-header-compact .site-header__main {
    grid-template-columns: 155px auto minmax(0, 1fr) auto;
    gap: 10px;
  }

  .is-header-compact .site-header__catalog {
    width: 155px;
  }

  .is-header-compact .site-logo {
    font-size: 24px;
  }
}

@media (min-width: 901px) {
  .header-popover[data-popover] {
    position: fixed;
    top: var(--header-desktop-popover-top, 60px);
    right: auto;
    left: var(--header-desktop-popover-left, 12px);
    max-width: calc(100vw - 24px);
    z-index: 170;
  }

  .header-popover--compare,
  .header-popover--cart {
    max-height: calc(100dvh - var(--header-desktop-popover-top, 60px) - 12px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  .header-popover[data-popover]::before {
    right: auto;
    left: var(--header-desktop-popover-arrow-x, 50%);
    transform: translateX(-50%);
  }

  .header-popover--contacts::before,
  .header-popover--callback::before {
    display: block;
  }
}

.account-form__text-action {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ui-link, #315d7d);
  font: inherit;
  text-align: left;
  text-decoration: underline;
  cursor: pointer;
}

.account-info-modal[hidden] {
  display: none;
}

.account-info-modal {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: grid;
  place-items: center;
  padding: 20px;
}

.account-info-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 35, 45, .48);
}

.account-info-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(470px, calc(100vw - 32px));
  padding: 28px 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(20, 30, 40, .3);
}

.account-info-modal__dialog h2 {
  margin: 0 38px 14px 0;
  font-size: 22px;
}

.account-info-modal__dialog p {
  margin: 0;
  line-height: 1.55;
}

.account-info-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

body.has-account-info-modal {
  overflow: hidden;
}

@media (max-width: 900px) {
  .site-header__utility {
    display: none;
  }

  .site-header__main,
  .is-header-compact .site-header__main {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas: "logo actions"
      "search search"
      "catalog catalog";
    align-items: center;
    gap: 9px 10px;
    min-height: auto;
    padding: 7px 0;
  }

  .site-logo,
  .is-header-compact .site-logo {
    align-self: center;
    justify-self: start;
    font-size: 24px;
    line-height: 40px;
  }

  .site-header__actions,
  .is-header-compact .site-header__actions {
    justify-self: end;
  }

  .site-header__catalog,
  .is-header-compact .site-header__catalog {
    width: 100%;
  }

  .site-header__catalog .catalog-nav__trigger,
  .is-header-compact .site-header__catalog .catalog-nav__trigger {
    width: 100%;
    min-height: 44px;
  }

  .site-header__hours {
    display: none;
  }

  .header-popover,
  .header-popover--contacts,
  .header-popover--callback {
    position: fixed;
    top: var(--header-mobile-popover-top, 60px);
    right: 8px;
    left: 8px;
    width: auto;
    max-width: calc(100vw - 16px);
    max-height: calc(100dvh - var(--header-mobile-popover-top, 60px) - 8px);
    overflow: auto;
    overscroll-behavior: contain;
    z-index: 170;
    border: 1px solid var(--ui-border);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(25, 35, 45, .22);
  }

  .header-popover::before {
    display: block;
    right: auto;
    left: calc(var(--header-mobile-popover-arrow-x, 50vw) - 8px);
    transform: translateX(-50%);
  }

  .contact-popover__grid,
  .header-popover--callback form {
    grid-template-columns: 1fr;
  }

  .mini-product {
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: start;
  }

  .mini-product strong {
    grid-column: 2;
    text-align: left;
  }

  .header-popover__footer,
  .header-popover__summary {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header__main,
  .is-header-compact .site-header__main {
    padding-right: 0;
    padding-left: 0;
  }

  .header-action__trigger {
    width: 40px;
    min-width: 40px;
  }

  .language-switcher__trigger {
    min-height: 38px;
    padding: 0 9px;
  }

  .header-popover {
    padding: 20px 16px;
  }
}

@media (max-width: 420px) {
  .site-header__main,
  .is-header-compact .site-header__main {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 6px;
  }

  .site-logo,
  .is-header-compact .site-logo {
    font-size: 22px;
  }

  .site-header__actions {
    gap: 2px;
  }

  .header-action__trigger {
    width: 39px;
    min-width: 39px;
    height: 44px;
  }

  .header-action__icon {
    width: 26px;
    height: 26px;
  }
}

.header-popover__footer .ui-button {
  background: #2f7d4a;
  border-color: #2f7d4a;
  color: #fff;
  box-shadow: 0 6px 16px rgba(47, 125, 74, .18);
}

.header-popover__footer .ui-button:hover,
.header-popover__footer .ui-button:focus-visible {
  background: #286b40;
  border-color: #286b40;
  color: #fff;
}

.header-popover__footer .ui-link-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border: 1px solid var(--ui-border-strong, #aeb7c2);
  border-radius: var(--ui-radius-sm, 6px);
  background: #fff;
  color: var(--ui-text, #20262d);
  font-weight: 700;
  text-decoration: none;
}

.header-popover__footer .ui-link-button:hover,
.header-popover__footer .ui-link-button:focus-visible {
  border-color: #73808e;
  background: #f4f6f8;
}

/* Personal AJAX fragment */
.form-status:empty { display: none; }
.form-status--error { color: #b13c3c; }
.account-session {
  display: grid;
  gap: 14px;
  padding: 2px 0 4px;
}

.account-session__note {
  margin: 0;
  color: var(--ui-muted);
  font-size: 13px;
  line-height: 1.5;
}

.account-session__orders {
  width: 100%;
  justify-content: center;
  min-height: 42px;
}

.account-session__logout {
  justify-self: end;
  padding: 4px 0 0;
  color: #4e6478;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.account-session__logout:hover,
.account-session__logout:focus-visible {
  color: var(--ui-text);
}


/* ===== css2/callback.css ===== */
.callback-modal[hidden] {
  display: none;
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 270;
  display: grid;
  place-items: center;
  padding: 20px;
}

.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 42, .52);
}

.callback-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  padding: 24px;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(20, 30, 40, .22);
}

.callback-modal__dialog h2 {
  margin: 0 42px 18px 0;
  font-size: 22px;
}

.callback-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f1f3f5;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.callback-form {
  display: grid;
  gap: 14px;
}

.callback-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
}

.callback-form input,
.callback-form textarea {
  width: 100%;
  border: 1px solid var(--ui-border);
  border-radius: 7px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
}

.callback-form textarea {
  min-height: 110px;
  resize: vertical;
}

[data-callback-status][hidden] {
  display: none !important;
}

[data-callback-status] {
  display: block;
  color: #27863f;
  font-size: 13px;
  line-height: 1.45;
}

[data-callback-status][data-state="success"] {
  justify-self: start;
  padding: 9px 12px;
  border: 1px solid #c7dfcd;
  border-radius: 7px;
  background: #f3faf5;
}

[data-callback-status][data-state="error"] {
  color: #b13c3c;
}

[data-callback-status] > :first-child {
  margin-top: 0;
}

[data-callback-status] > :last-child {
  margin-bottom: 0;
}

html.is-callback-modal-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .callback-modal {
    padding: 10px;
  }

  .callback-modal__dialog {
    padding: 20px 16px;
  }
}


/* ===== css2/menu.css ===== */
.catalog-nav {
  position: relative;
  width: 100%;
  font-size: 14px;
}

.catalog-nav__trigger {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  width: 260px;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: var(--ui-accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.catalog-nav__trigger:hover {
  background: var(--ui-accent-hover);
}

.catalog-nav__trigger span {
  display: inline-block;
  color: #fff;
}

.catalog-nav__trigger-icon {
  font-size: 20px;
  line-height: 1;
}

.catalog-nav__trigger-arrow {
  margin-left: auto;
}

.catalog-nav__panel {
  position: relative;
  z-index: 60;
}

.catalog-nav__desktop {
  width: min(1240px,calc(100vw - 32px));
  height: min(690px,calc(100vh - 150px));
  min-height: 520px;
  display: grid;
  grid-template-columns: 290px minmax(0,1fr);
  background: var(--ui-surface);
  border: 1px solid var(--ui-border);
  border-radius: 0 12px 12px 12px;
  box-shadow: var(--ui-shadow);
  overflow: hidden;
}

.catalog-nav__level1 {
  margin: 0;
  padding: 8px 0;
  list-style: none;
  border-right: 1px solid var(--ui-border);
  background: var(--ui-surface-soft);
  overflow: auto;
}

.catalog-nav__level1-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 43px;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  text-align: left;
  line-height: 1.25;
  cursor: pointer;
}

.catalog-nav__level1-button:hover,.catalog-nav__level1-button:focus-visible,.catalog-nav__level1-button[aria-expanded=true] {
  background: var(--ui-surface);
  font-weight: 700;
}

.catalog-nav__mega {
  min-width: 0;
  padding: 0;
  overflow: auto;
}

.catalog-nav__panel-content {
  padding: 20px 24px 28px;
}

.catalog-nav__panel-heading {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -20px -24px 18px;
  padding: 18px 24px 14px;
  background: var(--ui-surface);
  border-bottom: 1px solid var(--ui-border);
}

.catalog-nav__panel-heading h2 {
  margin: 0;
  font-size: 21px;
}

.catalog-nav__panel-heading a {
  white-space: nowrap;
  font-size: 13px;
}

.catalog-nav__columns {
  column-width: 220px;
  column-gap: 28px;
}

.catalog-nav__group {
  display: inline-block;
  width: 100%;
  margin: 0 0 20px;
  break-inside: avoid;
}

.catalog-nav__group-title {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--ui-text);
  font-weight: 700;
  line-height: 1.3;
}

.catalog-nav__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.catalog-nav__links li+li {
  margin-top: 5px;
}

.catalog-nav__links a {
  color: var(--ui-muted);
  line-height: 1.3;
  text-decoration: none;
}

.catalog-nav__links a:hover,.catalog-nav__group-title:hover {
  text-decoration: underline;
}

.catalog-nav__empty {
  color: var(--ui-muted);
}

.mobile-nav {
  display: none;
}

body[data-menu-mode=home] .catalog-nav__trigger {
  display: flex;
}

body[data-menu-mode=home] .catalog-nav__panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  display: none;
}

body[data-menu-mode=home] .catalog-nav.is-open .catalog-nav__panel {
  display: block;
}

body[data-menu-mode=home] .catalog-nav__desktop {
  position: relative;
  width: min(1240px,calc(100vw - 32px));
  height: min(690px,calc(100vh - 150px));
  border-radius: 0 12px 12px 12px;
}

body[data-menu-mode=internal] .catalog-nav__panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  display: none;
}

body[data-menu-mode=internal] .catalog-nav.is-open .catalog-nav__panel {
  display: block;
}

.mobile-nav__panel {
  padding: 14px;
  max-height: calc(100vh - 90px);
  overflow: auto;
}

.mobile-nav__panel>* {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin: 0 0 7px;
  padding: 12px;
  border: 0;
  border-radius: 8px;
  background: var(--ui-surface-soft);
  color: inherit;
  text-align: left;
  text-decoration: none;
}

.mobile-nav__panel .mobile-nav__heading {
  display: block;
  background: transparent;
  padding: 4px 4px 10px;
}

.mobile-nav__heading h2 {
  margin: 0 0 5px;
}

.mobile-nav__heading a {
  font-size: 13px;
}

.mobile-nav__panel .mobile-nav__back {
  justify-content: flex-start;
  background: transparent;
  padding-left: 4px;
}

.demo-note {
  margin: 0 0 20px;
  padding: 12px 16px;
  border: 1px solid var(--ui-border);
  border-radius: 10px;
  background: var(--ui-surface-soft);
}

/* hidden mobile levels must never participate in layout. */

.mobile-nav [data-mobile-panel][hidden] {
  display: none !important;
}

.mobile-nav [data-mobile-panel]:not([hidden]) {
  display: block;
}


/* ===== css2/catalog.css ===== */
.filter-panel {
  border: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-md);
  background: var(--ui-surface);
}

.catalog-layout--filtered {
  display: grid;
  grid-template-columns: minmax(220px,250px) minmax(0,1fr);
  gap: 18px;
  align-items: start;
}

.filter-panel {
  position: static;
  max-height: none;
  overflow: visible;
}

.filter-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-bottom: 1px solid var(--ui-border);
  background: var(--ui-surface);
}

.filter-panel__head h2 {
  margin: 0;
  font-size: 18px;
}

.filter-panel__close,.category-filter-toggle {
  display: none;
}

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

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.filter-group__toggle:hover,.filter-group__toggle:focus-visible {
  background: #f5f7f8;
}

.filter-group__chevron {
  flex: 0 0 auto;
  transition: transform .16s ease;
}

.filter-group.is-collapsed .filter-group__chevron {
  transform: rotate(-90deg);
}

.filter-group__options {
  display: grid;
  gap: 3px;
  padding: 0 8px 8px;
}

.filter-option {
  display: grid;
  grid-template-columns: 16px minmax(0,1fr) auto;
  align-items: start;
  gap: 7px;
  min-width: 0;
  padding: 5px 7px;
  border-radius: 6px;
  color: inherit;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.filter-option:hover,.filter-option:focus-visible {
  background: #f1f4f6;
  outline: none;
}

.filter-option.is-selected {
  background: #eaf5ee;
  color: #24653a;
  font-weight: 700;
}

.filter-option__checkbox {
  margin: 1px 0 0;
  pointer-events: none;
}

.filter-option__qty {
  align-self: start;
  min-width: 28px;
  padding: 1px 6px;
  border-radius: 999px;
  background: #eef1f3;
  color: var(--ui-muted);
  font-size: 11px;
  text-align: center;
}

.filter-option__name {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.filter-group__toggle>span:first-child {
  display: flex;
  min-width: 0;
  flex: 1;
  justify-content: space-between;
  gap: 8px;
}

.filter-group__unit {
  color: var(--ui-muted);
  font-weight: 600;
  white-space: nowrap;
}

.selected-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.selected-filter {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid var(--ui-border);
  border-radius: 999px;
  background: #f4f6f8;
  color: inherit;
  font-size: 12px;
  text-decoration: none;
}

.selected-filters__clear {
  margin-left: auto;
}

.category-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding: 9px 12px;
  border: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-md);
  background: var(--ui-surface);
}

.category-toolbar select {
  min-height: 34px;
}

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

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-md);
  background: var(--ui-surface);
}

.product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
}

.product-card__image {
  max-height: 165px;
  aspect-ratio: 1/1;
  object-fit: contain;
}

.product-card__title {
  display: -webkit-box;
  min-height: 2.8em;
  max-height: 2.8em;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__status-zone {
  position: relative;
  min-height: 34px;
  display: flex;
  align-items: center;
}

.product-card__status {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  transition: opacity .14s ease;
}

.product-card__meta,.product-card__availability {
  white-space: nowrap;
  font-size: 11px;
}

.product-card__meta {
  color: var(--ui-muted);
}

.product-card__availability {
  color: #2f7d4a;
  font-weight: 700;
  text-align: right;
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.product-card__prices s {
  color: var(--ui-muted);
}

.product-card__prices strong {
  font-size: 20px;
}

.product-card__actions {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .14s ease,transform .14s ease,visibility .14s;
}

.product-card__actions .ui-button {
  flex: 1 1 0;
  min-width: 0;
  min-height: 34px;
  padding: 6px 8px;
  font-size: 12px;
  white-space: nowrap;
}

.product-card__actions .ui-button--cart-add {
  flex: 0 0 34px;
  width: 34px;
  min-width: 34px;
  padding-inline: 0;
}

.product-card__actions .ui-button--purchase {
  border-color: #1d9b4f;
  background: #1d9b4f;
  color: #fff;
}

.product-card__actions .ui-button--purchase:hover {
  background: #178342;
}

@media (hover:hover) and (pointer:fine) {
  .product-card:hover .product-card__status,.product-card:focus-within .product-card__status {
    opacity: 0;
  }

  .product-card:hover .product-card__actions,.product-card:focus-within .product-card__actions {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

@media (hover:none),(pointer:coarse) {
  .product-card__status-zone {
    display: block;
    min-height: 0;
  }

  .product-card__actions {
    position: static;
    margin-top: 7px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin: 24px 0;
}

.pagination__item {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--ui-border);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.pagination__item:hover,.pagination__item:focus-visible {
  border-color: #8aa2b5;
  background: #eef4f7;
}

.pagination__item.is-current {
  border-color: #486a7d;
  background: #486a7d;
  color: #fff;
}

.pagination__item.is-disabled {
  opacity: .45;
}

.category-seo-copy {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--ui-border);
}

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

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

@media (max-width:900px) {
  .catalog-layout--filtered {
    display: block;
  }

  .filter-panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(420px,92vw);
    max-height: none;
    z-index: 260;
    overflow: auto;
    transform: translateX(105%);
    transition: transform .2s ease;
    box-shadow: var(--ui-shadow);
  }

  .filter-panel.is-open {
    transform: none;
  }

  .filter-panel__close,.category-filter-toggle {
    display: inline-flex;
  }

  .category-filter-toggle {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
    min-height: 46px;
    border-color: #8aa2b5;
    background: #eef4f7;
    color: #304b5b;
    font-weight: 800;
  }

  .category-filter-toggle:hover,.category-filter-toggle:focus-visible {
    border-color: #6f8da2;
    background: #e1ebf0;
  }

  .category-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .selected-filters__clear {
    margin-left: 0;
  }

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

@media (min-width:520px) and (max-width:900px) {
  .filter-panel .filter-group__options {
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-auto-flow: row;
  }

  .filter-panel .filter-option {
    break-inside: avoid;
  }
}

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

  .product-card__media {
    min-height: 180px;
  }
}

/* compact exact price range filter; action remains on its own row. */

.filter-price {
  display: grid;
  gap: 5px;
  padding: 7px 8px 8px;
  border-bottom: 1px solid var(--ui-border);
  background: #fbfcfd;
}

.filter-price__title {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.filter-price__fields {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 5px;
}

.filter-price__field {
  display: block;
  min-width: 0;
}

.filter-price__field input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 32px;
  padding: 5px 8px;
  border: 1px solid var(--ui-border);
  border-radius: 5px;
  background: #fff;
  color: var(--ui-text);
  font: inherit;
  font-size: 12px;
  line-height: 1;
}

.filter-price__field input:focus {
  border-color: #168bc6;
  outline: 2px solid rgba(22,139,198,.16);
  outline-offset: 0;
}

.filter-price__field input::placeholder {
  color: #9aa1a8;
  opacity: 1;
}

.filter-price__submit {
  grid-column: 1/-1;
  width: 100%;
  min-width: 0;
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--ui-border);
  background: #eef1f4;
  color: var(--ui-text);
  font-size: 12px;
  font-weight: 700;
  box-shadow: none;
}

.filter-price__submit:hover,.filter-price__submit:focus-visible {
  border-color: #b8c2cc;
  background: #e2e7eb;
  color: var(--ui-text);
}

.filter-price__submit:active {
  transform: translateY(1px);
}

/* Intermediate/parent category uses the same category layout; only this compact child list is additional. */
.child-category-section {
  margin: 0 0 18px;
  padding: 14px;
  border: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-md);
  background: var(--ui-surface);
}

.child-category-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.child-category-section__head h2 {
  margin: 0;
  font-size: 18px;
}

.child-category-section__head p {
  margin: 0;
  color: var(--ui-muted);
  font-size: 12px;
}

.child-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
  gap: 6px;
}

.child-category-card {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 38px;
  padding: 7px 9px;
  border: 1px solid #e4e8eb;
  border-radius: 7px;
  background: #fbfcfd;
  color: var(--ui-text);
  text-decoration: none;
}

.child-category-card strong {
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.child-category-card span {
  color: #7d8c96;
  font-size: 16px;
  line-height: 1;
}

.child-category-card:hover,.child-category-card:focus-visible {
  border-color: #9eb2c0;
  background: #f0f5f8;
  outline: none;
}

@media (max-width:900px) {
  .child-category-section {
    padding: 12px;
  }

  .child-category-section__head {
    display: block;
  }

  .child-category-section__head p {
    margin-top: 4px;
  }

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

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


/* ===== css2/product.css ===== */
.product-page {
  padding-block: 22px 48px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 13px;
}

.product-page__heading {
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.product-page__heading h1 {
  max-width: 1000px;
  margin: 0 0 7px;
  font-size: clamp(24px,3vw,38px);
  line-height: 1.15;
}

.product-page__heading p {
  margin: 0;
  color: var(--ui-muted);
}

.product-layout {
  display: grid;
}

.product-gallery {
  grid-template-columns: 82px minmax(0,1fr);
  min-width: 0;
}

.product-gallery__thumbs {
  overflow: auto;
  overscroll-behavior: contain;
}

.product-gallery__thumb,.product-gallery__scroll {
  border: 1px solid var(--ui-border);
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.product-gallery__thumb {
  padding: 3px;
}

.product-gallery__thumb span,.product-gallery__main,.gallery-lightbox__frame {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery__thumb span {
  width: 60px;
  height: 60px;
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-gallery__thumb.is-active {
  border-color: var(--ui-accent);
  box-shadow: 0 0 0 1px var(--ui-accent);
}

.product-gallery__stage {
  position: relative;
  min-width: 0;
}

.product-gallery__main {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: #fff;
  cursor: zoom-in;
}

.product-gallery__main img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.product-gallery__counter {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 13px;
}

.product-summary {
  top: 95px;
  padding: 24px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--ui-shadow);
}

.product-summary__availability {
  color: #16843d;
  font-weight: 700;
}

.product-summary__buy {
  font-size: 18px;
}

.product-summary ul {
  padding-left: 20px;
}

.product-tabs-nav {
  top: 72px;
  display: flex;
  gap: 8px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--ui-border);
  border-radius: 10px;
}

.product-tabs-nav a {
  padding: 8px 12px;
}

.product-details article {
  scroll-margin-top: 130px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ui-border);
}

.product-specs table {
  border-collapse: collapse;
}

.product-specs th,.product-specs td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ui-border);
  text-align: left;
  vertical-align: top;
}

.product-specs th {
  width: 38%;
  background: var(--ui-surface-soft);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  grid-template-columns: 64px minmax(0,1fr) 64px;
  align-items: center;
  background: rgba(0,0,0,.9);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__frame {
  height: 100vh;
  padding: 30px;
}

.gallery-lightbox__frame img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-lightbox__close {
  position: absolute;
  right: 18px;
  top: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  font-size: 30px;
}

.gallery-lightbox__nav {
  height: 72px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 54px;
  cursor: pointer;
}

@media (max-width:900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .product-gallery__main {
    height: min(65vw,500px);
  }
}

@media (max-width:620px) {
  .product-page__heading {
    display: block;
  }

  .product-page__heading>.ui-button {
    margin-top: 12px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .product-gallery__rail {
    order: 2;
    display: block;
  }

  .product-gallery__thumbs {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-gallery__scroll {
    display: none;
  }

  .product-gallery__main {
    height: 72vw;
    min-height: 260px;
  }

  .product-summary__actions {
    grid-template-columns: 1fr;
  }

  .product-tabs-nav {
    overflow-x: auto;
  }

  .gallery-lightbox {
    grid-template-columns: 42px minmax(0,1fr) 42px;
  }

  .gallery-lightbox__frame {
    padding: 10px;
  }

  .product-specs th {
    width: 44%;
  }
}

.product-gallery,.product-gallery__stage,.product-layout>* {
  min-width: 0;
}

.product-gallery__main {
  overflow: hidden;
}

.product-gallery__main img {
  margin: auto;
}

.product-short-specs {
  line-height: 1.65;
}

.product-description {
  line-height: 1.75;
}

.product-description p {
  margin: 0 0 1em;
}

.product-specs .tbl-head td {
  font-weight: 800;
  background: #eef2f5;
  color: var(--ui-text);
}

@media (max-width:620px) {
  .product-page {
    overflow: hidden;
  }

  .product-layout {
    display: block;
  }

  .product-gallery {
    width: 100%;
    max-width: 100%;
  }

  .product-gallery__stage {
    width: 100%;
  }

  .product-gallery__main {
    width: 100%;
    height: min(76vw,390px);
    min-height: 260px;
    padding: 12px;
  }

  .product-gallery__thumbs {
    width: 100%;
    max-width: 100%;
    padding-bottom: 4px;
  }

  .product-gallery__thumb {
    flex: 0 0 68px;
  }

  .product-summary {
    margin-top: 18px;
    padding: 20px;
  }

  .product-details {
    margin-top: 30px;
  }

  .product-specs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .product-specs table {
    min-width: 560px;
  }
}

.product-media-info {
  grid-template-columns: minmax(360px,1.08fr) minmax(310px,.92fr);
  min-width: 0;
  align-items: start;
}

.product-media-info .product-gallery {
  min-width: 0;
}

.product-media-info .product-short-specs {
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: #fff;
}

.product-short-specs h2 {
  margin-top: 0;
}

.product-short-specs .short-tech {
  margin-bottom: 0;
  line-height: 1.58;
}

.ui-button--purchase {
  border-color: #1d9b4f;
  background: #1d9b4f;
  color: #fff;
}

.ui-button--purchase:hover {
  background: #178342;
}

.product-summary__availability[data-availability="clarify"] {
  color: #a56a00;
}

.product-summary__availability[data-availability="out-of-stock"] {
  color: #7b8189;
}

.product-notes {
  margin-top: 24px;
  line-height: 1.55;
}

.product-notes p {
  margin: 0 0 8px;
}

.product-notes p:last-child {
  margin-bottom: 0;
}

.product-recommendations {
  margin-top: 34px;
}

.product-recommendations__header {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-recommendations__controls {
  display: flex;
  gap: 8px;
}

.product-recommendations__controls button {
  border: 1px solid var(--ui-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.product-recommendations__track {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 4px 2px 12px;
  overscroll-behavior-inline: contain;
}

@media (max-width:1180px) {
  .product-layout {
    grid-template-columns: minmax(0,1fr) minmax(285px,.48fr);
  }

  .product-media-info {
    grid-template-columns: minmax(330px,1fr) minmax(280px,.9fr);
  }

  .product-gallery__main {
    height: 450px;
  }
}

@media (max-width:1000px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .product-media-info {
    grid-template-columns: minmax(320px,1.05fr) minmax(300px,.95fr);
  }
}

@media (max-width:760px) {
  .product-media-info {
    grid-template-columns: 1fr;
  }

  .product-gallery__main {
    height: min(68vw,460px);
  }

  .product-short-specs {
    order: 2;
  }

  .product-summary {
    margin-top: 18px;
  }
}

@media (max-width:620px) {
  .product-page {
    overflow: visible;
  }

  .product-gallery__main {
    height: min(72vw,360px);
    min-height: 240px;
  }

  .product-recommendations__track {
    grid-auto-columns: minmax(160px,72vw);
  }
}

.product-page__heading {
  display: block;
}

.product-code {
  margin-top: 8px !important;
  color: var(--ui-muted);
}

.product-code strong {
  color: var(--ui-text);
  font-size: 1.08em;
}

.product-layout {
  gap: 28px;
}

.product-gallery {
  display: flex;
  flex-direction: column;
}

.product-gallery__rail {
  display: grid;
  grid-template-columns: 42px minmax(0,1fr) 42px;
  gap: 8px;
  align-items: center;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: row;
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.product-gallery__scroll {
  height: 68px;
}

.product-gallery__thumb {
  flex: 0 0 68px;
}

.product-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-rating {
  position: relative;
  display: inline-block;
  letter-spacing: 2px;
  color: #d3d5d8;
  font-size: 22px;
  line-height: 1;
}

.product-rating::after {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: calc(var(--rating,0) / 5 * 100%);
  overflow: hidden;
  color: #f2be22;
}

.product-price-block {
  gap: 4px;
}

.product-price-block__old {
  min-height: 20px;
  color: #8a8f96;
  text-decoration: line-through;
  font-size: 14px;
}

.product-price-block__current {
  font-size: 36px;
  font-weight: 800;
}

.product-price-block__current small {
  font-size: 16px;
}

.product-price-block__return {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: 4px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #eaf7ee;
  color: #147c3c;
}

.product-price-block__usd {
  margin-left: 10px;
  color: #8a8f96;
  font-size: 13px;
}

.product-summary__delivery {
  padding-top: 14px;
  border-top: 1px solid var(--ui-border);
}

.product-summary__delivery h2 {
  margin: 0 0 8px;
}

.product-short-specs {
  border-top: 1px solid var(--ui-border);
}

.product-short-specs h2 {
  font-size: 22px;
}

.product-summary__actions .ui-button {
  padding-inline: 8px;
}

.product-recommendations__track {
  grid-auto-columns: minmax(210px,1fr);
}

.product-tile {
  scroll-snap-align: start;
  display: grid;
  gap: 9px;
  min-width: 0;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: #fff;
}

.product-tile__image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-tile__image img {
  display: block;
  max-width: 100%;
  max-height: 170px;
  width: auto;
  height: auto;
}

.product-tile__label {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 4px 7px;
  background: #ffe12e;
  font-weight: 700;
  font-size: 12px;
}

.product-tile__return {
  position: absolute;
  right: 5px;
  bottom: 5px;
  max-width: 78%;
  padding: 6px 8px;
  border-radius: 12px;
  background: #168fe0;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
}

.product-tile__title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.35;
}

.product-tile__prices {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 25px;
}

.product-tile__old-price {
  color: #999;
  text-decoration: line-through;
  font-size: 12px;
}

.product-tile__price {
  margin-left: auto;
  text-align: right;
}

.product-tile:hover .product-tile__hover-actions,.product-tile:focus-within .product-tile__hover-actions {
  transform: translate(-50%,0);
  opacity: 1;
}

.product-tile__mobile-actions {
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.product-tile__mobile-actions .ui-button {
  padding: 8px 5px;
  font-size: 12px;
}

@media (max-width:1080px) {
  .product-layout {
    grid-template-columns: minmax(0,1.55fr) minmax(320px,1fr);
  }

  .product-gallery__main {
    height: 430px;
  }

  .product-summary__actions {
    grid-template-columns: 1fr 1fr;
  }

  .product-action-compare {
    grid-column: 1/-1;
  }
}

@media (max-width:820px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

  .product-gallery__main {
    height: min(68vw,500px);
  }
}

@media (hover:none),(pointer:coarse) {
  .product-tile__hover-actions {
    display: none;
  }

  .product-tile__mobile-actions {
    display: grid;
  }
}

@media (max-width:620px) {
  .product-gallery__rail {
    grid-template-columns: 34px minmax(0,1fr) 34px;
  }

  .product-gallery__scroll {
    display: block;
    height: 66px;
  }

  .product-summary {
    padding: 18px;
  }

  .product-price-block__current {
    font-size: 31px;
  }

  .product-summary__actions {
    grid-template-columns: 1fr;
  }

  .product-action-compare {
    grid-column: auto;
  }

  .product-recommendations__track {
    grid-auto-columns: minmax(180px,76vw);
  }

  .product-tile {
    grid-template-rows: 155px 2.75em auto auto;
  }

  .product-tile__image img {
    max-height: 145px;
  }
}

.product-gallery__stage {
  isolation: isolate;
  display: block;
  flex: 0 0 auto;
}

.product-gallery__rail {
  position: relative;
  flex: 0 0 auto;
  background: var(--ui-surface);
}

.product-commercial-signal,.product-tile__signal {
  position: absolute;
  z-index: 4;
  right: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

.product-commercial-signal--cashback,.product-tile__signal--cashback {
  background: #168bd2;
  color: #fff;
}

.product-commercial-signal--top,.product-tile__signal--top {
  background: #ffd92f;
  color: #272a2e;
}

.product-commercial-signal--custom,.product-tile__signal--custom {
  background: #30353b;
  color: #fff;
}

.product-rating-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.product-rating-stack {
  display: grid;
  justify-items: start;
  min-width: 0;
}

.product-rating__reviews {
  color: #656b73;
  text-decoration: none;
  font-size: 13px;
}

.product-rating__reviews:hover {
  text-decoration: underline;
}

.product-summary__availability {
  margin: 2px 0 0;
  text-align: right;
  white-space: nowrap;
}

.product-purchase-actions {
  display: grid;
  gap: 8px;
}

.product-summary__actions {
  margin: 0;
}

.product-action-compare {
  grid-column: 1/-1;
}

.product-tile {
  position: relative;
  grid-template-rows: 170px minmax(2.7em,auto) auto;
}

.product-tile__image {
  position: relative;
  overflow: visible;
}

.product-tile__signal {
  font-size: 12px;
}

.product-tile__hover-actions {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 5;
  display: flex;
  gap: 4px;
  transform: translate(-50%,8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .16s ease,transform .16s ease,visibility .16s;
}

.product-tile__hover-actions .ui-button {
  min-height: 34px;
  padding: 6px 11px;
  font-size: 12px;
  white-space: nowrap;
}

.product-tile__hover-actions .ui-button--cart-add {
  flex: 0 0 34px;
  width: 34px;
  min-width: 34px;
  padding-inline: 0;
}

.product-tile__mobile-actions {
  display: none;
}

@media (hover:hover) and (pointer:fine) {
  .product-tile:hover .product-tile__hover-actions,.product-tile:focus-within .product-tile__hover-actions {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,0);
  }
}

@media (hover:none),(pointer:coarse) {
  .product-tile {
    grid-template-rows: 155px minmax(2.7em,auto) auto auto;
  }

  .product-tile__hover-actions {
    display: none;
  }

  .product-tile__mobile-actions {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) 36px;
    gap: 6px;
  }

  .product-tile__mobile-actions .ui-button {
    min-width: 0;
    padding-inline: 8px;
  }

}

@media (max-width:620px) {
  .product-commercial-signal {
    right: 8px;
    top: 8px;
    font-size: 12px;
  }

  .product-rating-row {
    gap: 10px;
  }

  .product-summary__availability {
    white-space: normal;
    max-width: 48%;
    font-size: 14px;
  }

  .product-purchase-row {
    grid-template-columns: 1fr;
  }

  .product-summary__actions {
    grid-template-columns: 1fr;
  }

  .product-action-compare {
    grid-column: auto;
  }
}

.product-media-info,.product-summary {
  min-width: 0;
}

.product-gallery {
  gap: 16px;
}

.product-gallery__stage {
  z-index: 1;
}

.product-gallery__rail {
  z-index: 0;
  padding-top: 2px;
}

.product-gallery__scroll {
  display: grid;
  place-items: center;
  min-width: 42px;
  border-width: 1px;
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
  color: #343a40;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.product-gallery__scroll:hover {
  border-color: #8f979f;
  background: #f5f7f8;
}

.product-gallery__scroll:disabled {
  opacity: .35;
  cursor: default;
}

.product-commercial-signal,.product-tile__signal {
  display: grid;
  gap: 1px;
  white-space: normal;
}

.product-commercial-signal strong,.product-tile__signal strong {
  font-size: 1.08em;
}

.product-summary {
  position: static;
}

.product-layout__sticky {
  position: sticky;
  top: 92px;
}

.product-short-specs {
  padding-top: 12px;
}

.product-short-specs .short-tech {
  margin: 0;
}

.product-short-specs__more {
  margin-left: 3px;
  white-space: nowrap;
}

.product-rating-stack {
  position: relative;
  gap: 0;
}

.product-rating {
  cursor: default;
  text-decoration: none;
}

a.product-rating {
  cursor: pointer;
}

.product-rating__tooltip {
  position: absolute;
  left: 0;
  top: calc(100% + 7px);
  z-index: 8;
  width: max-content;
  max-width: 180px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #34383d;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2px);
  transition: .15s;
  pointer-events: none;
}

@media (hover:hover) and (pointer:fine) {
  .product-rating:hover .product-rating__tooltip,.product-rating:focus-visible .product-rating__tooltip {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.product-recommendations__controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 40px;
  border-color: #aab0b6;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #2f3439;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.product-recommendations__controls button:hover {
  background: #f2f4f5;
  border-color: #737b83;
}

.product-recommendations__track {
  scroll-behavior: smooth;
  cursor: grab;
}

.product-recommendations__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.product-tile__signal {
  min-width: 0;
  max-width: min(112px,calc(100% - 12px));
}

.product-tile__hover-actions,.product-tile__mobile-actions {
  align-items: center;
}

.product-tile__buy {
  cursor: pointer;
  text-decoration: none;
}

.product-tile__old-price:empty {
  display: none;
}

.product-tile__prices {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.product-tile__old-price {
  margin-right: auto;
}

.product-notes {
  border-left: 0;
  background: #f6f7f8;
  color: #616870;
  font-size: 13px;
  padding: 13px 16px;
}

.product-notes__market {
  color: #777e85;
  font-size: 12px;
}

.product-tabs-nav {
  position: static;
  z-index: auto;
}

.product-specs {
  max-width: 100%;
  overflow: visible;
}

.product-specs table {
  width: 100%;
  min-width: 0 !important;
  table-layout: fixed;
}

.product-specs th,.product-specs td {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.product-specs tr:not(.tbl-head) td:first-child {
  width: 42%;
}

.product-specs .tbl-head td {
  width: auto;
}

@media (hover:none),(pointer:coarse) {
  .product-tile {
    grid-template-rows: 150px minmax(2.7em,auto) auto auto;
  }

  .product-tile__mobile-actions {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) 36px;
    justify-content: stretch;
    gap: 5px;
  }

  .product-tile__mobile-actions .ui-button {
    width: 100%;
    min-width: 0;
    min-height: 31px;
    padding: 5px 9px;
    border-radius: 5px;
    font-size: 11px !important;
    font-weight: 500;
  }

  .product-tile__mobile-actions .ui-button--cart-add {
    width: 36px;
    padding-inline: 0;
  }

  .product-tile__mobile-actions .ui-button--purchase {
    background: #4aa56a;
    border-color: #4aa56a;
  }

}

@media (max-width:820px) {
  .product-layout {
    display: block;
  }

  .product-layout__sticky {
    position: static !important;
  }

  .product-summary {
    margin-top: 14px;
  }

  .product-tabs-nav {
    position: static;
  }
}

@media (max-width:620px) {
  .product-page {
    overflow: visible;
  }

  .product-gallery {
    gap: 10px;
  }

  .product-gallery__main {
    height: min(74vw,340px);
    min-height: 220px;
  }

  .product-gallery__rail {
    margin-top: 6px;
  }

  .product-gallery__scroll {
    min-width: 34px;
    font-size: 27px;
  }

  .product-summary {
    margin-top: 10px;
    padding: 16px;
  }

  .product-short-specs {
    display: none;
  }

  .product-purchase-row {
    grid-template-columns: 1fr !important;
  }

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

  .product-summary__actions .ui-button {
    min-height: 40px;
    font-size: 13px;
    white-space: normal;
  }

  .product-details {
    margin-top: 22px;
  }

  .product-tabs-nav {
    position: static;
    display: flex;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-specs th,.product-specs td {
    padding: 10px 8px;
    font-size: 14px;
  }

  .product-specs tr:not(.tbl-head) td:first-child {
    width: 48%;
  }
}

@media (max-width:390px) {
  .product-summary__actions {
    grid-template-columns: 1fr 1fr;
  }

  .product-summary__actions .ui-button:last-child {
    grid-column: auto;
  }

  .product-specs th,.product-specs td {
    font-size: 13px;
  }
}

.product-media-info,.product-summary,.product-layout__sticky {
  position: static !important;
  top: auto !important;
}

.product-purchase-actions {
  min-width: 0;
}

.product-summary__buy {
  width: 100%;
  min-height: 48px;
}

.product-summary__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 0;
}

.product-summary__actions .ui-button {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 7px 10px;
  line-height: 1.2;
  white-space: nowrap;
}

.product-summary__actions .ui-button:last-child {
  grid-column: auto;
  white-space: normal;
}

.product-short-specs__more {
  display: inline-block;
  margin: 3px 0 0;
  font-weight: 700;
}

.product-reviews__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.product-reviews__header h2 {
  margin-bottom: 4px;
}

.product-reviews__summary {
  margin: 0;
  color: var(--ui-muted);
  font-size: 14px;
}

.product-reviews-list {
  border-top: 1px solid var(--ui-border);
}

.product-review {
  padding: 18px 0;
  border-bottom: 1px solid var(--ui-border);
}

.product-review__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.product-review__rating {
  position: relative;
  display: inline-block;
  color: #d3d5d8;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.product-review__rating::before {
  content: "★★★★★";
}

.product-review__rating::after {
  content: "★★★★★";
  position: absolute;
  inset: 0;
  width: calc(var(--rating,0) / 5 * 100%);
  overflow: hidden;
  color: #f2be22;
}

.product-review__meta time {
  color: var(--ui-muted);
  font-size: 13px;
  white-space: nowrap;
}

.product-review__text {
  margin: 0 0 7px;
  line-height: 1.55;
}

.product-review__detail {
  margin: 3px 0 0;
  line-height: 1.5;
}

.product-review__detail strong {
  font-weight: 700;
}

.product-review-form {
  display: none;
  margin-top: 18px;
  padding: 20px;
  scroll-margin-top: 96px;
  border: 1px solid var(--ui-border);
  border-radius: 10px;
  background: var(--ui-surface-soft);
}

.product-review-form.is-open:not([hidden]) {
  display: block;
}

.product-review-form[hidden] {
  display: none;
}

.product-review-form h3 {
  margin: 0 0 16px;
}

.new-comment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.new-comment label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.new-comment label:nth-of-type(1),.new-comment label:nth-of-type(2) {
  grid-column: 1/-1;
}

.new-comment input,.new-comment textarea {
  width: 100%;
  border: 1px solid var(--ui-border);
  border-radius: 7px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
  resize: vertical;
}

.new-comment small {
  font-weight: 400;
  color: var(--ui-muted);
}

.review-rating-field {
  grid-column: 1/-1;
  margin: 0;
  padding: 0;
  border: 0;
}

.review-rating-field legend {
  margin-bottom: 7px;
  font-weight: 700;
}

.review-rating-input {
  display: flex;
  gap: 3px;
}

.review-rating-input button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #cfd3d7;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.review-rating-input button.is-selected {
  color: #f2be22;
}

.new-comment>.ui-button {
  justify-self: start;
  min-width: 190px;
}

.new-comment>.form-status {
  align-self: center;
  justify-self: start;
  margin: 0;
}

.new-comment>.form-status:empty {
  display: none;
}

.new-comment>.form-status[data-state="success"] {
  max-width: 460px;
  padding: 10px 12px;
  border: 1px solid #bddfc6;
  border-radius: 7px;
  background: #eef8f1;
  color: #2f6f43;
  line-height: 1.4;
}

.new-comment>.form-status[data-state="success"] p {
  margin: 0;
}

.new-comment>.form-status[data-state="error"] {
  max-width: 460px;
  color: #9d3333;
  line-height: 1.4;
}

@media (max-width:620px) {
  .product-reviews__header {
    align-items: stretch;
    flex-direction: column;
  }

  .product-reviews__header > .ui-button {
    width: 100%;
  }

  .product-review__meta {
    align-items: flex-start;
  }

  .product-purchase-row {
    grid-template-columns: 1fr !important;
  }

  .product-summary__actions {
    grid-template-columns: 1fr 1fr;
  }

  .product-summary__actions .ui-button:last-child {
    grid-column: auto;
  }

  .new-comment {
    grid-template-columns: 1fr;
  }

  .new-comment label {
    grid-column: 1 !important;
  }
}

.product-layout,.product-media-info,.product-gallery,.product-summary {
  height: auto !important;
  min-height: 0 !important;
}

.product-media-info,.product-summary {
  align-self: start;
}

.product-guarantee {
  font-weight: 700;
  line-height: 1.35;
}

.product-purchase-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  min-width: 0;
}

.product-purchase-actions,.product-summary__actions {
  justify-items: stretch;
}

.product-summary__buy,.product-summary__actions .ui-button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-commercial-signal {
  padding: 3px 5px;
}

.product-tile__signal {
  padding: 3px 4px;
}

@media (max-width:1280px) {
  .product-short-specs {
    display: none;
  }

  .product-purchase-row {
    grid-template-columns: 1fr;
  }

  .product-purchase-actions {
    width: 100%;
  }
}

@media (max-width:820px) {
  .product-layout {
    display: block;
    height: auto !important;
    min-height: 0 !important;
  }

  .product-media-info,.product-gallery,.product-summary {
    height: auto !important;
    min-height: 0 !important;
  }

  .product-summary {
    margin-top: 12px;
  }
}

/* Carousel controls: center the visible glyph independently of font metrics. */

.product-recommendations__controls button,
.product-gallery__scroll {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  text-indent: -9999px;
  overflow: hidden;
}

.product-recommendations__controls button::before,
.product-gallery__scroll::before {
  display: block;
  text-indent: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

.product-recommendations__controls [data-carousel-prev]::before,
.product-gallery__scroll[data-gallery-prev]::before {
  content: "←";
}

.product-recommendations__controls [data-carousel-next]::before,
.product-gallery__scroll[data-gallery-next]::before {
  content: "→";
}

/* One compact server-selected signal. */

.product-commercial-signal,
.product-tile__signal {
  gap: 0;
  padding: 2px 4px !important;
  border-radius: 5px;
  line-height: 1.05;
}

.product-commercial-signal {
  right: 5px;
  top: 5px;
}

.product-tile__signal {
  right: 3px;
  top: 3px;
}

/* Remove the oversized reserved gallery height. The row now follows the practical image area. */

.product-gallery__main {
  height: clamp(310px,28vw,390px) !important;
  min-height: 0 !important;
}

.product-gallery__rail {
  margin-top: 10px;
}

.product-layout {
  margin-bottom: 0;
}

.product-details {
  margin-top: 26px;
}

@media (max-width:820px) {
  .product-gallery__main {
    height: min(68vw,390px) !important;
  }

  .product-details {
    margin-top: 22px;
  }
}

@media (max-width:620px) {
  .product-gallery__main {
    height: min(72vw,330px) !important;
    min-height: 220px !important;
  }

  .product-specs tr:not(.tbl-head) td:first-child {
    width: 40%;
  }

  .product-specs tr:not(.tbl-head) td:last-child {
    width: 60%;
  }
}

.product-media-info {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
  height: max-content !important;
  min-height: 0 !important;
  align-self: start !important;
}

.product-media-info .product-page__heading {
  margin: 0;
}

.product-media-info .product-page__heading h1 {
  margin-bottom: 7px;
}

.product-gallery,
.product-gallery__stage,
.product-gallery__rail,
.product-gallery__thumbs {
  width: 100%;
  max-width: 100%;
  min-height: 0 !important;
  height: auto !important;
}

.product-gallery__rail {
  grid-template-rows: none !important;
  grid-auto-rows: auto !important;
  align-self: start;
}

.product-layout {
  align-items: start !important;
  grid-auto-rows: max-content !important;
}

.product-layout>* {
  align-self: start !important;
}

.product-specs table col.tech-table__name {
  width: 30% !important;
}

.product-specs table col.tech-table__value {
  width: 70% !important;
}

.product-specs tr:not(.tbl-head)>td:first-child,
.product-specs tr:not(.tbl-head)>th:first-child {
  width: auto !important;
}

.product-specs tr:not(.tbl-head)>td:last-child,
.product-specs tr:not(.tbl-head)>th:last-child {
  width: auto !important;
}

.product-tile {
  padding: 8px !important;
}

.product-recommendations {
  position: relative;
}

.product-recommendations__header {
  display: block;
}

.product-recommendations__shell {
  display: grid;
  grid-template-columns: 44px minmax(0,1fr) 44px;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.product-recommendations__shell>[data-carousel-prev],
.product-recommendations__shell>[data-carousel-next] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 68px;
  padding: 0;
  border: 1px solid #aab0b6;
  border-radius: 8px;
  background: #fff;
  color: #2f3439;
  font-size: 0;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}

.product-recommendations__shell>[data-carousel-prev]::before,
.product-recommendations__shell>[data-carousel-next]::before {
  font-size: 24px;
  line-height: 1;
}

.product-recommendations__shell>[data-carousel-prev]::before {
  content: "‹";
}

.product-recommendations__shell>[data-carousel-next]::before {
  content: "›";
}

.product-recommendations__shell>[data-carousel-prev]:hover,
.product-recommendations__shell>[data-carousel-next]:hover {
  background: #f2f4f5;
  border-color: #737b83;
}

.product-recommendations__track {
  min-width: 0;
  padding-inline: 0;
}

.product-summary__actions .product-action-compare {
  grid-column: auto !important;
}

.product-summary__buy,
.product-summary__actions .ui-button,
.product-tile__mobile-actions .ui-button,
.product-tile__hover-actions .ui-button {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

@media (hover:none),(pointer:coarse) {
  .product-tile__mobile-actions {
    justify-content: stretch !important;
  }
}

@media (max-width:620px) {
  .product-media-info {
    gap: 12px;
  }

  .product-recommendations__shell {
    grid-template-columns: 36px minmax(0,1fr) 36px;
    gap: 6px;
  }

  .product-recommendations__shell>[data-carousel-prev],
 .product-recommendations__shell>[data-carousel-next] {
    width: 36px;
    height: 64px;
  }

  .product-specs table col.tech-table__name {
    width: 40% !important;
  }

  .product-specs table col.tech-table__value {
    width: 60% !important;
  }

  .product-summary__actions {
    grid-template-columns: 1fr 1fr !important;
  }

  .product-summary__actions .product-action-compare {
    grid-column: auto !important;
  }

  .product-summary__actions .ui-button:last-child {
    grid-column: auto !important;
  }
}

.product-guarantee,
.product-price-block {
  text-align: right;
}

.product-price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.product-price-block__return {
  align-self: flex-end;
}

/* deterministic Safari-safe product sizing. */

.product-layout {
  grid-template-columns: minmax(0,3fr) minmax(340px,2fr);
}

.product-layout>.product-media-info,.product-layout>.product-summary {
  width: auto;
  max-width: 100%;
  min-width: 0;
}

.product-summary {
  overflow: visible;
}

.product-purchase-row,.product-price-block,.product-purchase-actions {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.product-price-block__old,.product-price-block__current,.product-price-block__return,.product-price-block__usd {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

.product-price-block__current {
  line-height: 1.1;
}

@media (max-width:1080px) {
  .product-layout {
    grid-template-columns: minmax(0,1.55fr) minmax(320px,1fr);
  }
}

@media (max-width:820px) {
  .product-layout {
    display: block;
  }

  .product-summary {
    width: 100%;
  }
}

/* v079: keep the gallery counter clear of thumbnail navigation even if server markup
   places it at gallery/rail level instead of inside the canonical stage wrapper. */
.product-gallery {
  position: relative;
}

.product-gallery__stage > .product-gallery__counter {
  right: 14px;
  bottom: 14px;
}

.product-gallery > .product-gallery__counter {
  right: 14px;
  bottom: 108px;
}

.product-gallery__rail > .product-gallery__counter {
  right: 14px;
  bottom: calc(100% + 14px);
}

@media (max-width: 620px) {
  .product-gallery > .product-gallery__counter {
    bottom: 96px;
  }
}

.new-comment > .form-status > p {
  margin: 0;
}


/* ===== css2/service.css ===== */
.service-page {
  padding-top: 18px;
  padding-bottom: 44px;
}

.service-layout {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr);
  gap: 28px;
  align-items: start;
}

.service-nav {
  display: grid;
  border: 1px solid var(--ui-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.service-nav a {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ui-border);
  color: var(--ui-text);
  text-decoration: none;
  font-weight: 700;
}

.service-nav a:last-child {
  border-bottom: 0;
}

.service-nav a:hover,.service-nav a:focus-visible {
  background: #f2f5f7;
}

.service-nav a.is-active {
  background: #e9eef2;
  color: #243742;
}

.service-content {
  min-width: 0;
  max-width: 960px;
}

.service-content>h1 {
  margin: 0 0 20px;
}

.simple-text {
  font-size: 15px;
  line-height: 1.58;
}

.simple-text h4 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.simple-text h6 {
  margin: 20px 0 7px;
  font-size: 16px;
}

.simple-text p {
  margin: 0 0 13px;
}

.simple-text ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.simple-text li {
  margin: 5px 0;
}

.simple-text strong {
  font-weight: 800;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.contact-card {
  padding: 16px;
  border: 1px solid var(--ui-border);
  border-radius: 10px;
  background: #fff;
}

.contact-card h2 {
  margin: 0 0 8px;
  font-size: 16px;
}

.contact-card p {
  margin: 0;
  line-height: 1.55;
}

.contact-card a {
  color: inherit;
}

.contact-map {
  margin: 0 0 24px;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.contact-map__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--ui-border);
}

.contact-map__head h2 {
  margin: 0;
  font-size: 18px;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.contact-feedback {
  display: grid;
  grid-template-columns: minmax(0,.8fr) minmax(360px,1.2fr);
  gap: 28px;
  align-items: start;
}

.contact-feedback h2 {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,.contact-form textarea {
  width: 100%;
  border: 1px solid var(--ui-border);
  border-radius: 7px;
  background: #fff;
  padding: 10px 12px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form .ui-button {
  justify-self: start;
}

@media (max-width:900px) {
  .service-page {
    padding-top: 12px;
  }

  .service-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .service-nav a {
    border-bottom: 0;
    border-right: 1px solid var(--ui-border);
    text-align: center;
    padding: 10px 8px;
    font-size: 13px;
  }

  .service-nav a:last-child {
    border-right: 0;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-feedback {
    grid-template-columns: 1fr;
  }

  .contact-map iframe {
    height: 340px;
  }
}

@media (max-width:520px) {
  .service-nav {
    grid-template-columns: 1fr;
  }

  .service-nav a {
    border-right: 0;
    border-bottom: 1px solid var(--ui-border);
    text-align: left;
  }

  .service-nav a:last-child {
    border-bottom: 0;
  }

  .contact-map__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* Order success page */
.order-success-main {
  padding-top: 34px;
  padding-bottom: 54px;
}

.order-success-page__inner {
  display: flex;
  justify-content: center;
}

.order-success-card {
  width: min(100%, 900px);
  padding: 34px 38px 36px;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: var(--ui-surface);
}

.order-success__status {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: #2a9d3d;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}

.order-success__status::after {
  content: "";
  width: 10px;
  height: 18px;
  flex: 0 0 auto;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.order-success__number {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.45;
}

.order-success__copy {
  max-width: 780px;
  font-size: 15px;
  line-height: 1.62;
}

.order-success__copy p {
  margin: 0 0 14px;
}

.order-success__notice {
  font-weight: 700;
}

.order-success__actions {
  margin-top: 28px;
}

.order-success__return {
  border: 1px solid #b9c5cf;
  background: #fff;
  color: #243742;
}

.order-success__return:hover,
.order-success__return:focus-visible {
  border-color: #8fa0ad;
  background: #f2f5f7;
}

@media (max-width: 700px) {
  .order-success-main {
    padding-top: 20px;
    padding-bottom: 36px;
  }

  .order-success-card {
    padding: 24px 20px 26px;
  }

  .order-success__status {
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 20px;
  }

  .order-success__number {
    margin-bottom: 20px;
    font-size: 17px;
  }

  .order-success__return {
    width: 100%;
  }
}


/* ===== css2/error.css ===== */
/* 404 page */
.error-page {
  --error-accent: #f55256;
  --error-accent-hover: #df484d;
  padding-top: 34px;
  padding-bottom: 64px;
}

.error-page__inner {
  display: flex;
  justify-content: center;
}

.error-card {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 44px;
  padding: 48px 54px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: var(--ui-surface);
  box-shadow: 0 18px 44px rgba(28, 39, 49, .08);
}

.error-card__code {
  position: relative;
  color: var(--error-accent);
  font-size: clamp(112px, 13vw, 184px);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.07em;
  white-space: nowrap;
}

.error-card__code::after {
  content: "";
  display: block;
  width: 74px;
  height: 5px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--error-accent);
  opacity: .22;
}

.error-card__eyebrow {
  margin: 0 0 8px;
  color: var(--error-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.error-card h1 {
  margin: 0 0 14px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
}

.error-card__text {
  max-width: 620px;
  margin: 0;
  color: var(--ui-muted);
  font-size: 16px;
  line-height: 1.58;
}

.error-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.error-card__home {
  min-width: 154px;
}

.error-page .ui-button--primary {
  background: var(--error-accent);
}

.error-page .ui-button--primary:hover,
.error-page .ui-button--primary:focus-visible {
  background: var(--error-accent-hover);
}

.error-search {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--ui-border);
}

.error-search label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}

.error-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.error-search input {
  width: 100%;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--ui-border);
  border-radius: var(--ui-radius-sm);
  background: #fff;
  color: var(--ui-text);
  font: inherit;
}

.error-search input:focus {
  outline: 2px solid rgba(245, 82, 86, .16);
  outline-offset: 1px;
  border-color: rgba(245, 82, 86, .55);
}

.error-search .ui-button {
  min-width: 104px;
}

@media (max-width: 760px) {
  .error-page {
    padding-top: 18px;
    padding-bottom: 42px;
  }

  .error-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 28px;
  }

  .error-card__code {
    font-size: clamp(92px, 27vw, 138px);
  }

  .error-card__code::after {
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .error-card {
    padding: 28px 20px;
    border-radius: 10px;
  }

  .error-search__row {
    grid-template-columns: 1fr;
  }

  .error-search .ui-button,
  .error-card__home {
    width: 100%;
  }
}


/* ===== css2/personal.css ===== */
.personal-page {
  padding-top: 18px;
  padding-bottom: 48px;
}
.personal-page__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ui-border);
}
.personal-page__header h1 {
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}
.personal-page__header p {
  margin: 6px 0 0;
  color: var(--ui-muted);
}
.personal-page__back { flex: 0 0 auto; }
.personal-panel {
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: var(--ui-surface);
  overflow: hidden;
}
.personal-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--ui-border);
}
.personal-panel__head h2 { margin: 0; font-size: 20px; }
.personal-panel__head p { margin: 4px 0 0; color: var(--ui-muted); font-size: 14px; }
.personal-orders-table-wrap,
.personal-order-table-wrap { width: 100%; overflow-x: auto; }
.personal-orders-table,
.personal-order-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.personal-orders-table th,
.personal-orders-table td,
.personal-order-table th,
.personal-order-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #edf0f2;
  text-align: left;
  vertical-align: middle;
}
.personal-orders-table th,
.personal-order-table th {
  background: #f7f9fa;
  color: #53616c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}
.personal-orders-table tbody tr:last-child td,
.personal-order-table tbody tr:last-child td { border-bottom: 0; }
.personal-orders-table tbody tr:hover { background: #fafcfd; }
.personal-orders-table__number { font-weight: 800; white-space: nowrap; }
.personal-orders-table__sum,
.personal-orders-table__date { white-space: nowrap; }
.personal-orders-table__detail a { font-weight: 700; }
.order-status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #edf7f0;
  color: #287840;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}
.order-status--cancelled { background: #f1f3f5; color: #6d7881; }
.personal-order-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  color: var(--ui-muted);
  font-size: 14px;
}
.personal-order-meta strong { color: var(--ui-text); }
.personal-order-table { table-layout: fixed; }
.personal-order-table col:first-child { width: auto; }
.personal-order-table col:nth-child(2) { width: 150px; }
.personal-order-table col:nth-child(3) { width: 90px; }
.personal-order-table__description { line-height: 1.5; overflow-wrap: anywhere; }
.personal-order-table__price,
.personal-order-table__qty { white-space: nowrap; }
.personal-order-table__qty { text-align: center !important; }
.personal-order-summary {
  display: grid;
  justify-content: end;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--ui-border);
  background: #fbfcfd;
}
.personal-order-summary__rows { width: min(100%, 430px); min-width: 360px; }
.personal-order-summary__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 24px;
  padding: 8px 0;
  color: #53616c;
}
.personal-order-summary__row strong { color: var(--ui-text); white-space: nowrap; }
.personal-order-summary__row--total {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--ui-border);
  color: var(--ui-text);
  font-size: 18px;
}
.personal-order-summary__row--total strong { font-size: 22px; }
@media (max-width: 760px) {
  .personal-page { padding-top: 12px; padding-bottom: 34px; }
  .personal-page__header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
  .personal-page__back { width: 100%; }
  .personal-panel__head { align-items: flex-start; flex-direction: column; padding: 17px 16px; }
  .personal-orders-table thead,
  .personal-order-table thead { display: none; }
  .personal-orders-table,
  .personal-orders-table tbody,
  .personal-orders-table tr,
  .personal-orders-table td,
  .personal-order-table,
  .personal-order-table tbody,
  .personal-order-table tr,
  .personal-order-table td { display: block; width: 100%; }
  .personal-orders-table tbody,
  .personal-order-table tbody { display: grid; gap: 10px; padding: 12px; }
  .personal-orders-table tr,
  .personal-order-table tr {
    padding: 13px 14px;
    border: 1px solid var(--ui-border);
    border-radius: 10px;
    background: #fff;
  }
  .personal-orders-table td,
  .personal-order-table td {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    padding: 6px 0;
    border: 0;
  }
  .personal-orders-table td::before,
  .personal-order-table td::before {
    content: attr(data-label);
    color: var(--ui-muted);
    font-size: 12px;
    font-weight: 700;
  }
  .personal-orders-table__detail a { justify-self: start; }
  .personal-order-table { table-layout: auto; }
  .personal-order-table__description {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #edf0f2 !important;
  }
  .personal-order-table__description::before { margin-bottom: 2px; }
  .personal-order-table__qty { text-align: left !important; }
  .personal-order-summary { justify-content: stretch; padding: 14px 16px 18px; }
  .personal-order-summary__rows { width: 100%; min-width: 0; }
}
@media (max-width: 430px) {
  .personal-orders-table td,
  .personal-order-table td { grid-template-columns: 96px minmax(0, 1fr); }
  .personal-order-summary__row { gap: 16px; }
}


/* ===== css2/cart.css ===== */
.cart-page-main {
  padding: 24px 0 52px;
}

.cart-page__inner {
  display: grid;
  gap: 22px;
}

.cart-page-fragment {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.cart-page__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.cart-page__heading h1 {
  margin: 0 0 6px;
}

.cart-page__heading p {
  margin: 0;
  color: var(--ui-muted);
}

.cart-continue {
  flex: 0 0 auto;
  border-color: #b7c6cf;
  background: #f3f7f9;
  color: #304b5b;
  text-decoration: none;
}

.cart-continue:hover,.cart-continue:focus-visible {
  border-color: #8aa2b5;
  background: #eaf1f5;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,380px);
  gap: 24px;
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(200px,1fr) 120px 108px 108px 34px;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: #fff;
}

.cart-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 92px;
  min-width: 0;
  overflow: hidden;
}

.cart-item__image img {
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
}

.cart-item__body {
  min-width: 0;
}

.cart-item__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--ui-text);
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.cart-item__quantity,.cart-item__price,.cart-item__sum {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.cart-item__quantity>span,.cart-item__price>span,.cart-item__sum>span {
  color: var(--ui-muted);
  font-size: 12px;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 34px 46px 34px;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--ui-border);
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
}

.quantity-control button {
  display: grid;
  place-items: center;
  width: 34px;
  min-width: 0;
  height: 32px;
  padding: 0;
  border: 0;
  background: #f2f6f8;
  color: #304b5b;
  font-size: 20px;
  line-height: 1;
}

.quantity-control input {
  width: 46px;
  min-width: 0;
  height: 32px;
  padding: 0;
  border: 0;
  border-right: 1px solid var(--ui-border);
  border-left: 1px solid var(--ui-border);
  background: #fff;
  text-align: center;
  -moz-appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button {
  appearance: none;
}

.cart-item__price strong,.cart-item__sum strong {
  white-space: nowrap;
}

.cart-item__sum strong {
  color: #304b5b;
}

.cart-item__remove {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid #d8e1e6;
  border-radius: 50%;
  background: #fff;
  color: #6b7780;
  font-size: 22px;
  line-height: 1;
}

.cart-item__remove:hover,.cart-item__remove:focus-visible {
  border-color: #9eafb9;
  background: #f2f6f8;
  color: #304b5b;
}

.cart-delivery-note {
  margin: 2px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f7fafb;
  color: #5d6971;
  font-size: 13px;
}

.cart-checkout {
  display: grid;
  gap: 14px;
  min-width: 0;
}

[data-cart-checkout-slot] {
  min-width: 0;
}

.cart-summary,.checkout-form {
  padding: 20px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: #fff;
}

.cart-summary {
  position: static;
}

.cart-summary h2,.checkout-form h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: #5d6971;
  font-size: 14px;
}

.cart-summary__row span:last-child {
  text-align: right;
}

.cart-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--ui-border);
  font-size: 18px;
}

.cart-summary__total strong {
  color: #304b5b;
  font-size: 24px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-field {
  display: grid;
  gap: 7px;
}

.checkout-field>span {
  font-size: 14px;
  font-weight: 600;
}

.checkout-field b {
  color: #8c3b3b;
}

.checkout-field input,.checkout-field select,.checkout-field textarea {
  width: 100%;
  border: 1px solid var(--ui-border);
  border-radius: 9px;
  background: #fff;
  padding: 11px 12px;
}

.checkout-field textarea {
  resize: vertical;
}

.checkout-submit {
  width: 100%;
  min-height: 46px;
}

.checkout-form__note {
  margin: 0;
  color: var(--ui-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width:1320px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-checkout {
    grid-template-columns: minmax(280px,.8fr) minmax(360px,1.2fr);
  }

  .cart-item {
    grid-template-columns: 96px minmax(200px,1fr) 120px 108px 108px 34px;
  }

  .cart-item__image {
    width: 96px;
    height: 86px;
  }
}

@media (max-width:900px) {
  .cart-checkout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 88px minmax(180px,1fr) 116px 108px 34px;
  }

  .cart-item__image {
    width: 88px;
    height: 82px;
  }

  .cart-item__price {
    display: none;
  }
}

@media (max-width:720px) {
  .cart-page__heading {
    align-items: stretch;
    flex-direction: column;
  }

  .cart-continue {
    width: 100%;
    min-height: 44px;
    text-align: center;
  }

  .cart-item {
    grid-template-columns: 78px minmax(0,1fr) 32px;
    grid-template-rows: auto auto;
    gap: 10px 12px;
    padding: 13px;
    align-items: center;
  }

  .cart-item__image {
    grid-column: 1;
    grid-row: 1/3;
    width: 78px;
    height: 88px;
    align-self: center;
  }

  .cart-item__body {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }

  .cart-item__remove {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }

  .cart-item__quantity {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
  }

  .cart-item__sum {
    grid-column: 2/4;
    grid-row: 2;
    align-self: end;
    justify-self: end;
    justify-items: end;
    text-align: right;
  }

  .cart-item__sum>span {
    display: none;
  }

  .cart-item__sum strong {
    font-size: 14px;
  }

  .quantity-control {
    grid-template-columns: 32px 42px 32px;
  }

  .quantity-control button {
    width: 32px;
    height: 32px;
  }

  .quantity-control input {
    width: 42px;
    height: 32px;
  }
}

@media (max-width:430px) {
  .cart-page-main {
    padding-top: 16px;
  }

  .cart-item {
    grid-template-columns: 74px minmax(0,1fr) 32px;
    gap: 9px 10px;
    padding: 12px;
  }

  .cart-item__image {
    width: 74px;
    height: 84px;
  }

  .cart-item__title {
    font-size: 15px;
  }

  .cart-item__sum strong {
    font-size: 13px;
  }

  .cart-summary__total strong {
    font-size: 21px;
  }
}

@media (max-width:360px) {
  .cart-item {
    grid-template-columns: 66px minmax(0,1fr) 30px;
    gap: 8px;
    padding: 10px;
  }

  .cart-item__image {
    width: 66px;
    height: 78px;
  }

  .quantity-control {
    grid-template-columns: 30px 38px 30px;
  }

  .quantity-control button {
    width: 30px;
    height: 30px;
  }

  .quantity-control input {
    width: 38px;
    height: 30px;
  }
}


/* ===== css2/site-alert.css ===== */
.site-alert {
  background: #fff5cf;
  border-top: 1px solid #f0d774;
  border-bottom: 1px solid #f0d774;
  color: #5a4a13;
}

.site-alert__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 11px;
  padding-bottom: 11px;
}

.site-alert__icon {
  flex: 0 0 23px;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #e0a900;
  color: #fff;
  font-weight: 700;
}

.site-alert a {
  color: inherit;
}

.site-alert button {
  margin-left: auto;
  border: 0;
  background: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}


/* ===== css2/search.css ===== */
.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  box-sizing: border-box;
  width: 100%;
  max-width: min(760px, calc(100vw - 24px));
  max-height: var(--search-suggest-max-height, calc(100dvh - 120px));
  padding: 10px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  background: #fff;
  box-shadow: var(--ui-shadow);
  z-index: 171;
}

.search-suggest::before {
  content: "";
  position: absolute;
  left: 45px;
  top: -8px;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  border-top: 0;
}

.search-suggest__status {
  padding: 14px;
  color: var(--ui-muted);
}

.search-suggest__results {
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-suggest__results li {
  min-width: 0;
}

.search-suggest__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 110px;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 7px 0;
  border-bottom: 1px solid #eee;
}

.search-suggest__item img {
  width: 52px;
  height: 44px;
  object-fit: contain;
}

.search-suggest__item strong {
  text-align: right;
  font-size: 13px;
  white-space: nowrap;
}

.search-suggest__item > * {
  min-width: 0;
}

.search-suggest__item span {
  overflow-wrap: anywhere;
}

.search-suggest__results .is-search-active {
  background: #f4f8fb;
}

.search-suggest__all {
  display: block;
  padding: 13px 0;
  text-align: center;
}

.search-suggest__facets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 16px 20px;
  border-top: 1px solid var(--ui-border);
}

.search-suggest__section {
  display: grid;
  align-content: start;
  gap: 7px;
}

.search-suggest__section h3 {
  margin: 0 0 5px;
  font-size: 13px;
  color: var(--ui-muted);
  text-transform: uppercase;
}

.search-suggest__section a {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.search-suggest__section a span {
  font-size: 12px;
  color: var(--ui-muted);
}

@media (max-width: 900px) {
  .search-suggest {
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    width: 100%;
    max-width: none;
    padding: 8px 12px;
    border: 1px solid var(--ui-border);
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(25, 35, 45, .22);
  }

  .search-suggest::before {
    display: none;
  }

  .search-suggest__item {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 9px;
  }

  .search-suggest__facets {
    padding: 12px 0;
  }
}


/* ===== css2/home.css ===== */
.home-page {
  padding: 24px 0 48px;
}

.home-page__inner {
  display: grid;
  gap: 34px;
}

.home-hero {
  overflow: hidden;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: #fff;
}

.home-hero__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-hero__track::-webkit-scrollbar {
  display: none;
}

.home-hero__slide {
  display: block;
  scroll-snap-align: start;
}

.home-hero__slide img {
  display: block;
  width: 100%;
  height: auto;
}

.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.home-section-heading h1,.home-section-heading h2 {
  margin: 0;
}

.home-section-heading a {
  font-size: 14px;
}

.home-categories__grid {
  display: grid;
  grid-template-columns: repeat(5,minmax(0,1fr));
  gap: 12px;
}

.home-category {
  display: grid;
  grid-template-rows: 112px auto;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: border-color .16s ease,box-shadow .16s ease,transform .16s ease;
}

.home-category:hover,.home-category:focus-visible {
  border-color: #9db1bf;
  box-shadow: 0 8px 22px rgba(42,62,75,.09);
  transform: translateY(-2px);
}

.home-category__image {
  display: grid;
  place-items: center;
  min-width: 0;
}

.home-category img {
  max-width: 100%;
  max-height: 108px;
  object-fit: contain;
}

.home-products {
  margin: 0;
}

.home-products .product-recommendations__header h2 {
  margin: 0;
}

.home-seo {
  padding: 24px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: #fff;
  color: #3f464c;
  line-height: 1.65;
}

.home-seo h1 {
  margin-top: 0;
  font-size: 26px;
  color: var(--ui-text);
}

.home-seo p:last-child {
  margin-bottom: 0;
}

.home-seo a {
  color: inherit;
  text-decoration: underline;
}

.home-page .product-tile__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2.7em;
}

@media (max-width:1100px) {
  .home-categories__grid {
    grid-template-columns: repeat(4,minmax(0,1fr));
  }
}

@media (max-width:760px) {
  .home-page {
    padding-top: 18px;
  }

  .home-page__inner {
    gap: 28px;
  }

  .home-categories__grid {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 9px;
  }

  .home-category {
    grid-template-rows: 88px auto;
    padding: 10px;
    font-size: 13px;
  }

  .home-category img {
    max-height: 84px;
  }


  .home-seo {
    padding: 18px;
  }

  .home-seo h1 {
    font-size: 22px;
  }
}

@media (max-width:430px) {
  .home-categories__grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .home-section-heading {
    align-items: center;
  }

  .home-section-heading h1 {
    font-size: 25px;
  }


  .home-seo {
    padding: 15px;
  }
}

/* functional hero and catalog entry point. */

.home-hero {
  position: relative;
}

.home-hero__controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.home-hero__arrow,.home-hero__dots {
  pointer-events: auto;
}

.home-hero__arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(48,75,91,.42);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #304b5b;
  font-size: 26px;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(24,44,57,.14);
}

.home-hero__arrow:hover,.home-hero__arrow:focus-visible {
  background: #eef4f7;
  border-color: #6f8b9c;
}

.home-hero__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 3px 12px rgba(24,44,57,.11);
}

.home-hero__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #aebdc6;
}

.home-hero__dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: #486a7d;
}

.home-catalog-button {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #8aa2b5;
  border-radius: 9px;
  background: #eef4f7;
  color: #304b5b;
  font-weight: 700;
}

.home-catalog-button:hover,.home-catalog-button:focus-visible {
  border-color: #6f8b9c;
  background: #e3edf2;
}

@media (max-width:600px) {
  .home-hero__controls {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .home-hero__arrow {
    width: 34px;
    height: 34px;
  }

  .home-hero__dots {
    gap: 6px;
    padding: 6px 8px;
  }

  .home-catalog-button {
    width: 100%;
  }

  .home-categories .home-section-heading {
    align-items: stretch;
    flex-direction: column;
  }
}

/* make product selections distinct without competing with product imagery. */

.home-products {
  padding: 20px 18px 22px;
  border: 1px solid #dce5ea;
  border-radius: 14px;
  background: #f7fafb;
}

.home-products .product-recommendations__header {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d7e1e7;
}

.home-products .product-recommendations__header h2 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 24px;
  color: #304b5b;
}

.home-products .product-recommendations__header h2::before {
  content: "";
  width: 7px;
  height: 24px;
  border-radius: 999px;
  background: #8aa2b5;
}

@media (max-width:600px) {
  .home-products {
    padding: 16px 10px 18px;
  }

  .home-products .product-recommendations__header h2 {
    font-size: 22px;
  }
}


/* ===== css2/search-page.css ===== */
.search-results-page {
  padding-bottom: 48px;
}

.search-category-results__heading {
  margin: 18px 0 20px;
}

.search-category-results__heading h1 {
  margin: 0;
  font-size: clamp(24px,3vw,34px);
  line-height: 1.2;
}

.search-groups {
  columns: 2;
  column-gap: 18px;
}

.search-group {
  display: inline-block;
  width: 100%;
  min-width: 0;
  margin: 0 0 18px;
  border: 1px solid var(--ui-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(32,47,61,.05);
  overflow: hidden;
  break-inside: avoid;
  page-break-inside: avoid;
  vertical-align: top;
}

.search-group__title {
  margin: 0;
  font-size: 18px;
}

.search-group__title a {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 15px 18px;
  background: #f2f6f8;
  color: var(--ui-text);
  text-decoration: none;
}

.search-group__title a:hover,.search-group__title a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-group__title strong,.search-tree__link strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e5edf2;
  color: #334b5b;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
}

.search-tree,.search-tree__children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-tree {
  padding: 8px 0 10px;
}

.search-tree__children {
  padding-left: 20px;
}

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

.search-tree__link {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 7px 18px;
  color: var(--ui-text);
  text-decoration: none;
  line-height: 1.35;
}

.search-tree__link:hover,.search-tree__link:focus-visible {
  background: #f7fafb;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.search-tree__children .search-tree__link {
  font-size: 14px;
}

.search-tree__children .search-tree__children .search-tree__link {
  font-size: 13px;
  color: #4d5b65;
}

@media (max-width:900px) {
  .search-groups {
    columns: 1;
  }
}

@media (max-width:560px) {
  .search-results-page {
    padding-bottom: 32px;
  }

  .search-category-results__heading {
    margin: 12px 0 16px;
  }

  .search-category-results__heading h1 {
    font-size: 25px;
  }

  .search-group {
    margin-bottom: 14px;
    border-radius: 11px;
  }

  .search-group__title a {
    padding: 13px 14px;
  }

  .search-tree__link {
    padding-right: 14px;
    padding-left: 14px;
  }

  .search-tree__children {
    padding-left: 16px;
  }
}


/* ===== css2/compare.css ===== */
/* Comparison page: the server marks rows with differing values using .compare-row--different. */

.compare-page {
  padding-block: 20px 48px;
}

.compare-page__header {
  margin: 18px 0;
}

.compare-page__header h1 {
  margin: 0;
}

.compare-table-wrap {
  width: fit-content;
  max-width: 100%;
  overflow: auto;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
}

.compare-table {
  width: auto;
  min-width: 0;
  border-collapse: collapse;
  table-layout: auto;
}

.compare-table th,.compare-table td {
  padding: 12px 14px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  text-align: left;
  overflow-wrap: anywhere;
}

.compare-table tr>*:last-child {
  border-right: 0;
}

.compare-table tbody tr:last-child>* {
  border-bottom: 0;
}

.compare-table__feature,
.compare-table tbody tr:not(.compare-section-row)>th {
  width: 210px;
  min-width: 210px;
  max-width: 210px;
  background: #f7f8fa;
}

.compare-table thead th:not(.compare-table__feature),
.compare-table tbody td {
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}

.compare-table tbody tr:not(.compare-section-row)>th {
  font-size: 14px;
  font-weight: 400;
  color: #596270;
}

.compare-table__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.compare-table__actions .ui-button {
  width: 100%;
  justify-content: center;
}

.compare-table__add {
  min-height: 36px;
  font-weight: 600;
}

.compare-table__clear {
  align-self: center;
  padding: 2px 4px;
  border: 0;
  background: transparent;
  color: var(--color-link);
  font: inherit;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.compare-table__clear:hover,
.compare-table__clear:focus-visible {
  color: var(--color-accent);
}

.compare-section-row th {
  background: #e9eef2;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
}

.compare-row--different th,.compare-row--different td {
  background: #fff8dc;
}

.compare-row--different th {
  background: #f7edc9;
}

.compare-table tbody tr:not(.compare-section-row):hover th,.compare-table tbody tr:not(.compare-section-row):hover td {
  background: #eef5fb;
}

.compare-table tbody tr.compare-row--different:hover th,.compare-table tbody tr.compare-row--different:hover td {
  background: #f7edc9;
}

.compare-product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 250px;
}

.compare-product img {
  width: 150px;
  height: 130px;
  object-fit: contain;
  align-self: center;
}

.compare-product a {
  display: -webkit-box;
  min-height: 2.5em;
  max-height: 2.5em;
  overflow: hidden;
  font-weight: 600;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.compare-product strong {
  align-self: stretch;
  font-size: 18px;
  text-align: right;
}

.compare-product span {
  align-self: stretch;
  color: #238636;
  font-size: 14px;
  text-align: right;
}

.compare-product__remove {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #f0f1f3;
  font-size: 20px;
  cursor: pointer;
}

.compare-popover-group+.compare-popover-group {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

@media (max-width:900px) {
  .compare-page {
    padding-top: 12px;
  }

  .compare-table {
    min-width: 0;
  }

  .compare-table th,.compare-table td {
    padding: 10px;
  }

  .compare-table__feature,
  .compare-table tbody tr:not(.compare-section-row)>th {
    width: 170px;
    min-width: 170px;
    max-width: 170px;
  }

  .compare-table thead th:not(.compare-table__feature),
  .compare-table tbody td {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
  }

  .compare-product {
    min-height: 220px;
  }

  .compare-product img {
    width: 120px;
    height: 105px;
  }
}


/* ===== css2/responsive.css ===== */
@media (max-width: 1100px) {
  .utility-popover-trigger__label {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .catalog-nav {
    position: relative;
    z-index: 160;
  }

  .catalog-nav__trigger {
    position: relative !important;
    inset: auto !important;
    display: flex !important;
    width: 100% !important;
    min-height: 44px;
    z-index: 162;
  }

  .catalog-nav__panel {
    position: fixed !important;
    top: var(--catalog-mobile-top, 0px) !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: none !important;
    padding: 0;
    background: var(--ui-surface);
    z-index: 161;
  }

  .catalog-nav.is-open .catalog-nav__panel {
    display: block !important;
  }

  .catalog-nav__desktop {
    display: none;
  }

  .mobile-nav {
    display: block !important;
    height: 100%;
    padding: 0;
    overflow: auto;
    overscroll-behavior: contain;
  }

  .mobile-nav__panel {
    min-height: 100%;
    max-height: none;
    padding: 14px;
  }

  .mobile-nav__panel .mobile-nav__back {
    margin-bottom: 4px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .mobile-nav__panel .mobile-nav__heading {
    margin-bottom: 7px;
    padding-top: 0;
  }

  .catalog-nav__columns {
    grid-template-columns: 1fr;
  }

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

  .catalog-layout,
  .product-layout,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .site-alert__inner {
    font-size: 13px;
  }

  .search-suggest__facets {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ui-container {
    width: calc(100% - 20px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .site-alert__inner {
    padding-right: 12px;
    padding-left: 12px;
  }

  .search-suggest__item {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .search-suggest__item strong {
    grid-column: 2;
    text-align: left;
  }
}


/* ===== css2/footer.css ===== */
.site-footer {
  margin-top: 48px;
  background: #18202a;
  color: #eef3f7;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3,1fr);
  gap: 36px;
  padding-top: 42px;
  padding-bottom: 38px;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
  color: #fff;
}

.site-footer p {
  color: #c9d3dc;
  line-height: 1.55;
}

.site-footer a {
  display: block;
  color: #dfe8ef;
  text-decoration: none;
  margin: 9px 0;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.site-footer__payments span {
  border: 1px solid #536170;
  border-radius: 6px;
  padding: 6px 9px;
  font-size: 12px;
}

.site-footer__bottom {
  border-top: 1px solid #35414d;
  padding: 16px 0;
  color: #aebbc6;
  font-size: 13px;
}

