:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #111111;
  background: #ffffff;
  --catalog-accent: #eb5e28;
  --catalog-heading: #252422;
  --catalog-text: #403d38;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

button,
input {
  font: inherit;
}

.new-catalog-page {
  background: #ffffff;
  color: #111111;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.new-site-shell {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.new-catalog-header {
  position: sticky;
  z-index: 100;
  top: 0;
  padding-bottom: 15px;
  background: #ffffff;
}

.new-utility-bar {
  display: flex;
  height: 50px;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  background: #ffffff;
  color: var(--catalog-text);
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}

.new-utility-bar a,
.new-utility-bar button,
.new-category-bar a {
  color: inherit;
  text-decoration: none;
}

.new-utility-bar button {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.new-utility-bar__phone--first {
  margin-left: auto;
}

.new-utility-bar a:hover,
.new-utility-bar a:focus-visible,
.new-utility-bar button:hover,
.new-utility-bar button:focus-visible,
.new-category-bar a:hover,
.new-category-bar a:focus-visible,
.new-category-bar button:hover,
.new-category-bar button:focus-visible {
  color: var(--catalog-accent);
  text-decoration: none;
}

.new-utility-bar strong {
  font-weight: 700;
}

.new-catalog-bar {
  display: flex;
  height: 40px;
  align-items: center;
}

.new-catalog-bar__logo,
.new-catalog-bar__logo img {
  display: block;
  width: 175px;
  height: 40px;
}

.new-catalog-bar__logo {
  flex: 0 0 175px;
}

.new-catalog-bar__logo img {
  object-fit: contain;
}

.new-catalog-bar__button,
.new-search-box__button {
  display: inline-flex;
  width: 100px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--catalog-accent);
  color: #ffffff;
  font: 700 16px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-decoration: none;
}

.new-catalog-bar__button {
  margin-left: 30px;
}

.new-catalog-bar__button:hover,
.new-catalog-bar__button:focus-visible,
.new-search-box__button:hover,
.new-search-box__button:focus-visible {
  background: var(--catalog-heading);
  color: #ffffff;
}

.new-search-box:has(.new-search-box__button:hover) .new-search-box__input,
.new-search-box:has(.new-search-box__button:focus-visible) .new-search-box__input {
  border-color: var(--catalog-heading);
}

.new-search-box {
  position: relative;
  display: flex;
  min-width: 0;
  height: 40px;
  flex: 1 1 auto;
  margin-left: 30px;
}

.new-search-box__input {
  width: auto;
  min-width: 0;
  height: 40px;
  flex: 1 1 auto;
  margin: 0;
  padding: 0 12px;
  border: 2px solid var(--catalog-accent);
  border-radius: 0;
  outline: 0;
  background: #ffffff;
  color: #111111;
  font: 400 16px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.new-customer-actions {
  display: flex;
  height: 40px;
  align-items: stretch;
  flex: 0 0 auto;
  gap: 30px;
  margin-left: 30px;
}

.new-customer-action {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--catalog-text);
  font: 400 14px/16px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  cursor: default;
  text-decoration: none;
  white-space: nowrap;
}

.new-customer-action[data-modal-open] {
  cursor: pointer;
}

.new-customer-action[data-modal-open]:hover,
.new-customer-action[data-modal-open]:focus-visible,
.new-customer-action[data-favorites-link].has-items,
.new-customer-action[data-cart-link].has-items {
  color: var(--catalog-accent);
}

.new-customer-action img {
  display: block;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.new-customer-action[data-modal-open]:hover img,
.new-customer-action[data-modal-open]:focus-visible img,
.new-customer-action[data-favorites-link].has-items img,
.new-customer-action[data-cart-link].has-items img {
  filter: invert(42%) sepia(94%) saturate(1909%) hue-rotate(344deg) brightness(97%) contrast(90%);
}

.new-category-bar {
  display: flex;
  height: 44px;
  margin-top: 15px;
  flex-direction: column;
  overflow-x: auto;
  white-space: nowrap;
}

.new-category-bar__row {
  display: flex;
  width: 100%;
  min-width: 1200px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.new-category-bar__row:first-child {
  justify-content: space-between;
}

.new-category-bar__row + .new-category-bar__row {
  gap: 24px;
}

.new-category-bar a,
.new-category-bar button {
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--catalog-text);
  font: 400 16px/22px system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-decoration: none;
}

.new-category-bar button {
  cursor: default;
}

.new-category-bar a[aria-current='page'] {
  height: 22px;
  padding: 0;
  background: transparent;
  color: var(--catalog-accent);
  font-weight: 400;
  line-height: 22px;
  text-decoration: none;
}

.new-catalog-main {
  padding: 40px 0 60px;
}

.new-catalog-results {
  position: relative;
  min-height: 400px;
}

.new-catalog-results.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.new-other-main {
  display: grid;
  min-height: calc(100vh - 164px);
  padding: 60px 0;
  place-items: center;
}

.new-other-results {
  display: grid;
  width: 100%;
  place-items: center;
}

.new-other-catalog {
  color: var(--catalog-text);
  text-align: center;
}

.new-other-catalog h1 {
  margin: 0;
  color: var(--catalog-heading);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
}

.new-other-catalog__call {
  display: inline-flex;
  min-width: 230px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 0;
  background: var(--catalog-accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.new-other-catalog__call:hover,
.new-other-catalog__call:focus-visible {
  background: var(--catalog-heading);
  color: #ffffff;
}

.new-product-main {
  padding: 40px 0 80px;
}

.new-product-back {
  display: inline-flex;
  min-width: 180px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 0;
  border-radius: 0;
  background: var(--catalog-accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.new-product-back:hover,
.new-product-back:focus-visible {
  background: var(--catalog-heading);
  color: #ffffff;
}

.new-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  align-items: start;
  gap: 50px;
  margin-top: 32px;
  color: var(--catalog-text);
}

.new-product-detail__media {
  display: grid;
  width: 100%;
  min-height: 480px;
  place-items: center;
  background: #ffffff;
}

.new-product-detail__media img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: contain;
}

.new-product-detail__content {
  min-width: 0;
}

.new-product-detail__content h1 {
  margin: 0;
  color: var(--catalog-heading);
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.2;
}

.new-product-detail__content > p {
  margin: 18px 0 0;
  color: var(--catalog-text);
  font-size: 16px;
  line-height: 1.5;
}

.new-product-detail__specs {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.new-product-detail__specs div {
  display: grid;
  min-height: 42px;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #ebecec;
}

.new-product-detail__specs dt,
.new-product-detail__specs dd {
  margin: 0;
}

.new-product-detail__specs dt {
  color: #77736d;
}

.new-product-detail__specs dd {
  color: var(--catalog-heading);
  font-weight: 700;
}

.new-product-detail__actions {
  display: flex;
  height: 40px;
  align-items: stretch;
  gap: 16px;
  margin-top: 32px;
}

.new-product-detail__quantity {
  width: 180px;
  flex: 0 0 180px;
  margin-top: 0;
}

.new-product-detail__favorite {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.new-product-detail__favorite img {
  display: block;
  width: 26px;
  height: 26px;
}

.new-product-detail__favorite.is-favorite img {
  filter: invert(42%) sepia(94%) saturate(1909%) hue-rotate(344deg) brightness(97%) contrast(90%);
}

.new-product-detail__cart {
  width: 150px;
  height: 40px;
  flex: 0 0 150px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--catalog-accent);
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.new-product-detail__cart:hover:not(:disabled),
.new-product-detail__cart:focus-visible:not(:disabled) {
  background: var(--catalog-heading);
  color: #ffffff;
}

.new-product-detail__cart.is-in-cart,
.new-product-detail__cart:disabled {
  background: var(--catalog-text);
  cursor: default;
  opacity: 1;
}

.new-privacy-page {
  padding: 40px 0 80px;
}

.privacy-policy {
  max-width: 1000px;
  padding: clamp(28px, 5vw, 56px);
  margin: 0 auto;
  border-radius: 0;
  background: #ebecec;
  color: var(--catalog-text);
  overflow-wrap: anywhere;
}

.privacy-policy h1 {
  margin: 0;
  color: var(--catalog-heading);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.privacy-policy h2 {
  margin: 38px 0 0;
  color: var(--catalog-heading);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.privacy-policy h3 {
  margin: 22px 0 0;
  color: var(--catalog-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}

.privacy-policy p,
.privacy-policy li {
  font-size: 15px;
  line-height: 1.65;
}

.privacy-policy p {
  margin: 12px 0 0;
}

.privacy-policy__clause {
  padding-left: 0;
}

.privacy-policy ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.privacy-policy li {
  position: relative;
  padding-left: 22px;
}

.privacy-policy li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #77736d;
  content: "—";
}

.privacy-policy a {
  color: var(--catalog-accent);
  text-decoration: none;
}

.privacy-policy a:hover,
.privacy-policy a:focus-visible {
  color: var(--catalog-heading);
}

.new-catalog-content {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.new-catalog-list {
  display: grid;
  gap: 32px;
  min-width: 0;
}

.new-catalog-product {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 180px;
  gap: 28px;
  min-width: 0;
  min-height: 220px;
  align-items: start;
  padding: 0;
  border: 0;
  background: #ffffff;
}

.new-catalog-product__media {
  display: flex;
  width: 220px;
  height: 220px;
  align-items: center;
  justify-content: center;
}

.new-catalog-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.new-catalog-product__description {
  min-width: 0;
  padding-top: 4px;
}

.new-catalog-product__description h2 {
  margin: 0;
  font: 700 18px/1.35 Arial, Helvetica, sans-serif;
}

.new-catalog-product__description a {
  color: #111111;
  text-decoration: none;
}

.new-catalog-product__description a:hover,
.new-catalog-product__description a:focus-visible {
  color: var(--catalog-accent);
}

.new-catalog-product__characteristics {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.25;
}

.new-catalog-product__characteristics div {
  display: flex;
  min-width: 0;
  gap: 4px;
}

.new-catalog-product__characteristics dt,
.new-catalog-product__characteristics dd {
  margin: 0;
}

.new-catalog-product__characteristics dt {
  flex: 0 0 auto;
  color: #858585;
}

.new-catalog-product__characteristics dd {
  overflow: hidden;
  color: #333333;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-catalog-product__purchase {
  display: flex;
  min-height: 190px;
  align-items: stretch;
  flex-direction: column;
  padding-top: 4px;
}

.new-catalog-product__price-caption {
  min-height: 28px;
  border-bottom: 1px solid #e5e7eb;
  color: #858585;
  font-size: 13px;
  line-height: 1.2;
}

.new-catalog-product__price {
  min-height: 44px;
  padding-top: 10px;
  color: #111111;
  font: 700 20px/1.2 Arial, Helvetica, sans-serif;
  text-align: left;
}

.new-catalog-quantity {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  height: 40px;
  align-items: center;
  margin-top: 12px;
  color: #111111;
}

.new-catalog-quantity button,
.new-catalog-quantity input {
  display: flex;
  min-width: 0;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: #ffffff;
  color: #111111;
  font-size: 18px;
  text-align: center;
}

.new-catalog-quantity button {
  cursor: pointer;
}

.new-catalog-quantity button:hover,
.new-catalog-quantity button:focus-visible {
  color: var(--catalog-accent);
}

.new-catalog-quantity input {
  width: 100%;
  outline: 0;
  appearance: textfield;
  -moz-appearance: textfield;
}

.new-catalog-quantity input::-webkit-inner-spin-button,
.new-catalog-quantity input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.new-catalog-quantity button:disabled,
.new-catalog-quantity input:disabled {
  color: var(--catalog-text);
  cursor: default;
  opacity: 1;
}

.new-catalog-product__cart {
  width: 110px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--catalog-accent);
  color: #ffffff;
  font: 700 14px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.new-catalog-product__cart:hover:not(:disabled),
.new-catalog-product__cart:focus-visible:not(:disabled) {
  background: var(--catalog-heading);
  color: #ffffff;
}

.new-catalog-product__cart.is-in-cart,
.new-catalog-product__cart:disabled {
  background: var(--catalog-text);
  cursor: default;
  opacity: 1;
}

.new-catalog-product__actions {
  display: flex;
  height: 40px;
  align-items: stretch;
  gap: 10px;
  margin-top: 12px;
}

.new-catalog-product__favorite {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.new-catalog-product__favorite img {
  display: block;
  width: 26px;
  height: 26px;
}

.new-catalog-product__favorite.is-favorite img {
  filter: invert(42%) sepia(94%) saturate(1909%) hue-rotate(344deg) brightness(97%) contrast(90%);
}

.new-catalog-empty {
  margin: 0;
  padding: 20px 0;
  color: #555555;
  font-size: 15px;
}

.filter-panel {
  min-width: 0;
  background: #ffffff;
}

.filter-panel__mobile-bar,
.filter-panel__toggle {
  display: none;
}

.filter-panel__heading {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
}

.filter-panel__reset {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--catalog-accent);
  cursor: pointer;
  font-size: 14px;
}

.filter-group {
  border: 0;
}

.filter-group summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 52px;
  align-content: center;
  column-gap: 12px;
  row-gap: 5px;
  padding: 8px 18px 8px 0;
  cursor: pointer;
  list-style: none;
}

.filter-group summary::-webkit-details-marker {
  display: none;
}

.filter-group summary::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  right: 4px;
  margin-top: -6px;
  border-right: 1px solid #111111;
  border-bottom: 1px solid #111111;
  transform: rotate(45deg);
}

.filter-group[open] summary::after {
  transform: rotate(225deg);
}

.filter-group__name {
  font-size: 14px;
  font-weight: 700;
}

.filter-group summary small {
  grid-column: 1;
  overflow: hidden;
  color: #777777;
  font-size: 12px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-group__body {
  max-height: 260px;
  overflow-y: auto;
  padding: 0 8px 12px 0;
}

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

.filter-option {
  display: flex;
  min-height: 32px;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.25;
}

.filter-option input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--catalog-accent);
}

.range-filter {
  padding: 12px 0 18px;
}

.range-filter__header,
.range-filter__bounds {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.range-filter__header {
  font-size: 13px;
  font-weight: 700;
}

.range-filter__header output,
.range-filter__bounds {
  color: #777777;
  font-size: 11px;
  font-weight: 400;
}

.range-filter__inputs {
  position: relative;
  height: 28px;
  margin-top: 8px;
}

.range-filter__track {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #d3d3d3 0 var(--range-start), var(--catalog-accent) var(--range-start) var(--range-end), #d3d3d3 var(--range-end) 100%);
}

.range-filter__inputs input[type='range'] {
  position: absolute;
  width: 100%;
  height: 22px;
  margin: 2px 0 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.range-filter__inputs input[type='range']::-webkit-slider-runnable-track {
  height: 3px;
  background: transparent;
}

.range-filter__inputs input[type='range']::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  margin-top: -7px;
  appearance: none;
  border: 0;
  border-radius: 50%;
  background: var(--catalog-accent);
  pointer-events: auto;
  cursor: pointer;
}

.range-filter__inputs input[type='range']::-moz-range-track {
  height: 3px;
  background: transparent;
}

.range-filter__inputs input[type='range']::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: var(--catalog-accent);
  pointer-events: auto;
  cursor: pointer;
}

.filter-panel__empty {
  color: #777777;
  font-size: 13px;
  line-height: 1.5;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #111111;
  text-decoration: none;
}

.pagination__current {
  background: var(--catalog-accent);
  color: #ffffff !important;
}

.search__suggestions {
  position: absolute;
  z-index: 300;
  top: 40px;
  left: -266px;
  width: 1000px;
  max-height: min(700px, calc(100vh - 120px));
  overflow: auto;
  border: 1px solid #ebecec;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(37, 36, 34, 0.18);
  text-align: left;
}

.search__suggestions[hidden],
.search-helper[hidden],
.search__all[hidden] {
  display: none;
}

.search__suggestion-content {
  display: grid;
}

.search__suggestion-content.has-helper {
  grid-template-columns: 210px minmax(0, 1fr);
}

.search-helper {
  padding: 14px 12px;
  border-right: 1px solid #ebecec;
  background: #f7f7f7;
}

.search-helper__title {
  margin: 0 0 10px;
  color: #252422;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.search-helper__list {
  display: grid;
  gap: 6px;
}

.search-helper__item {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 8px;
  border: 1px solid #ebecec;
  border-radius: 0;
  background: #ffffff;
  color: #403d38;
  cursor: pointer;
  font: 400 13px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  text-align: left;
}

.search-helper__item:hover,
.search-helper__item:focus-visible,
.search-helper__item.is-active {
  border-color: var(--catalog-accent);
  outline: none;
  background: rgba(235, 94, 40, 0.08);
  color: var(--catalog-accent);
}

.search-helper__item span {
  min-width: 0;
}

.search-helper__item small {
  color: inherit;
  font-size: 12px;
}

.search-helper__reset {
  margin: 10px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--catalog-accent);
  cursor: pointer;
  font: 600 13px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.search__suggestion-list {
  display: grid;
}

.search-suggestion {
  display: grid;
  min-width: 0;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border-bottom: 1px solid #ebecec;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
}

.search-suggestion:hover,
.search-suggestion:focus-visible,
.search-suggestion.is-active {
  outline: none;
  background: rgba(235, 94, 40, 0.08);
}

.search-suggestion img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.search-suggestion__name {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  font-size: 13px;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.search-suggestion__price {
  color: #252422;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.search__all {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  background: var(--catalog-accent);
  color: #ffffff;
  cursor: pointer;
  font: 700 14px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.search__empty,
.search__loading {
  margin: 0;
  padding: 24px;
  color: #403d38;
  font-size: 14px;
  text-align: center;
}

.search__status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 1232px) {
  .new-site-shell {
    width: auto;
    margin-inline: 16px;
  }

  .new-catalog-header {
    overflow-x: auto;
  }

  .new-catalog-bar,
  .new-category-bar,
  .new-utility-bar {
    min-width: 1168px;
  }
}

@media (max-width: 1000px) {
  .new-catalog-product {
    grid-template-columns: 180px minmax(0, 1fr) 160px;
    gap: 20px;
  }

  .new-catalog-product__media {
    width: 180px;
    height: 200px;
  }
}

@media (max-width: 820px) {
  .new-catalog-main {
    padding-top: 10px;
  }

  .new-catalog-content {
    display: block;
  }

  .filter-panel {
    margin-bottom: 24px;
  }

  .filter-panel__mobile-bar,
  .filter-panel__toggle {
    display: block;
  }

  .filter-panel__toggle {
    width: 100%;
    height: 40px;
    border: 0;
    background: var(--catalog-accent);
    color: #ffffff;
    font-weight: 700;
  }

  .filter-panel__body {
    display: none;
    padding-top: 12px;
  }

  .filter-panel.is-open .filter-panel__body {
    display: block;
  }

  .filter-group summary::after {
    right: 24px;
  }

  .new-catalog-product {
    min-height: 200px;
  }

  .new-catalog-product__media {
    width: 180px;
    height: 200px;
  }

  .new-catalog-product__purchase {
    min-height: 190px;
    margin-left: 0;
  }

  .new-product-main {
    padding-top: 20px;
  }

  .new-privacy-page {
    padding-top: 20px;
  }

  .new-product-detail {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .new-product-detail__media {
    min-height: 360px;
  }

  .new-product-detail__media img {
    height: 360px;
  }
}

@media (max-width: 680px) {
  .new-catalog-product {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
  }

  .new-catalog-product__media {
    width: 140px;
    height: 160px;
  }

  .new-catalog-product__description h2 {
    font-size: 16px;
  }

  .new-catalog-product__purchase {
    grid-column: 2;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .new-catalog-product {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .new-catalog-product__media {
    width: 110px;
    height: 130px;
  }

  .new-catalog-product__purchase {
    grid-column: 1 / -1;
  }

  .new-product-detail__media {
    min-height: 280px;
  }

  .new-product-detail__media img {
    height: 280px;
  }

  .new-product-detail__specs div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px 0;
  }

  .new-product-detail__actions {
    height: auto;
    flex-wrap: wrap;
  }

  .new-product-detail__quantity {
    width: calc(100% - 56px);
    flex: 1 1 calc(100% - 56px);
  }

  .new-product-detail__cart {
    width: 100%;
    flex-basis: 100%;
  }
}
