:root {
  --seo-text: #1d1d1b;
  --seo-muted: #858897;
  --seo-border: #e7e8ea;
  --seo-surface: #ffffff;
  --seo-background: #f6f6f8;
  --seo-accent: #6516ce;
  --seo-danger: #eb5757;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--seo-text);
  background: var(--seo-background);
  font-family: Manrope, Arial, sans-serif;
}

.seo-page {
  min-height: 100vh;
}

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

.seo-site-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  height: 128px;
  color: var(--seo-text);
  background: var(--seo-surface);
}

.seo-site-header a {
  color: inherit;
  text-decoration: none;
}

.seo-site-header svg {
  display: block;
  width: 100%;
  height: 100%;
}

.seo-site-header__extra {
  width: 100%;
  height: 48px;
  padding: 0 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f8fa;
}

.seo-site-header__local,
.seo-site-header__contacts,
.seo-site-header__meta-item {
  display: flex;
  align-items: center;
}

.seo-site-header__local,
.seo-site-header__contacts {
  min-width: 0;
}

.seo-site-header__meta-item {
  min-height: 32px;
  gap: 4px;
  font-family: "Manrope-SemiBold", Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  white-space: nowrap;
}

.seo-site-header__meta-item + .seo-site-header__meta-item {
  margin-left: 24px;
}

.seo-site-header__meta-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.seo-site-header__language {
  cursor: default;
}

.seo-site-header__chevron {
  width: 18px;
  height: 18px;
  margin-left: 4px;
  color: var(--seo-muted);
}

.seo-site-header__main {
  width: 100%;
  height: 80px;
  padding: 0 76px;
  display: flex;
  align-items: center;
  background: var(--seo-surface);
}

.seo-site-header__brand {
  width: 75px;
  height: 38px;
  flex: 0 0 75px;
  display: flex;
  align-items: center;
}

.seo-site-header__brand img {
  display: block;
  width: 75px;
  height: 38px;
  object-fit: contain;
}

.seo-site-header__mobile-location {
  display: none;
}

.seo-site-header__search {
  position: relative;
  height: 56px;
  min-width: 252px;
  margin-left: 24px;
  flex: 1;
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: #f7f8fa;
}

.seo-site-header__search input {
  width: 100%;
  height: 56px;
  padding: 0 56px 0 16px;
  border: 0;
  border-radius: 12px;
  outline: 0;
  color: var(--seo-text);
  background: transparent;
  font-family: "Manrope-Regular", Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.seo-site-header__search input::placeholder {
  color: #a0a3b5;
  opacity: 1;
}

.seo-site-header__search input:focus-visible {
  box-shadow: inset 0 0 0 2px var(--seo-accent);
}

.seo-site-header__search button {
  position: absolute;
  top: 0;
  right: 8px;
  width: 40px;
  height: 56px;
  padding: 8px;
  border: 0;
  color: #a0a3b5;
  background: transparent;
  cursor: pointer;
}

.seo-site-header__actions {
  margin-left: 8px;
  display: flex;
  align-items: center;
}

.seo-site-header__action {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 12px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--seo-text);
  background: transparent;
  cursor: pointer;
}

.seo-site-header__action:hover,
.seo-site-header__action:focus-visible,
.seo-site-header__meta-item:hover,
.seo-site-header__meta-item:focus-visible {
  color: var(--seo-accent);
}

.seo-site-header__badge {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--seo-accent);
  font-family: "Manrope-Bold", Manrope, Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}

.seo-site-header__badge[hidden] {
  display: none;
}

.seo-header {
  position: sticky;
  z-index: 10;
  top: 0;
  min-height: 72px;
  padding: 12px clamp(16px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--seo-border);
  background: rgba(255, 255, 255, 0.97);
}

.seo-header > span,
.seo-header__context > span {
  color: var(--seo-muted);
  font-size: 14px;
  text-align: right;
}

.seo-header__context {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.seo-cart-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--seo-text);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.seo-cart-link:hover,
.seo-cart-link:focus-visible {
  color: var(--seo-accent);
}

.seo-cart-count {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--seo-accent);
  font-size: 12px;
  line-height: 1;
}

.seo-brand {
  display: inline-flex;
  align-items: center;
}

.seo-brand img {
  display: block;
  width: auto;
  height: 40px;
  max-width: 176px;
  object-fit: contain;
}

.seo-main {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.seo-main.seo-main--product {
  width: min(736px, calc(100% - 48px));
  padding-top: 156px;
}

.seo-page--product {
  background: var(--seo-surface);
}

.seo-collection-page .sub-header__title {
  margin-top: 0;
  margin-bottom: 0;
  text-transform: uppercase;
}

.seo-collection-page {
  min-height: 100vh;
  padding-top: 128px;
  overflow: hidden;
  background: var(--seo-surface);
}

.seo-collection-page .sub-header {
  padding: 20px 76px;
  color: #ffffff;
  background: var(--seo-accent);
}

.seo-collection-page .sub-header__action {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  line-height: 16px;
  opacity: 0.7;
}

.seo-collection-page .sub-header__title {
  color: #ffffff;
  font-size: 24px;
  line-height: 27px;
}

.seo-collection-page .products__content {
  min-height: calc(100vh - 292px);
  padding: 36px 76px 48px;
}

.seo-collection-page .products__subcategories {
  width: 100%;
  max-width: 100%;
  height: 48px;
  min-height: 48px;
  padding: 0 12px 6px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.seo-collection-page .products__subcategories__item {
  height: 32px;
  max-width: 180px;
  margin: 0 4px;
  padding: 0 12px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  color: var(--seo-text);
  background: var(--seo-surface);
  text-decoration: none;
}

.seo-collection-page .products__subcategories__item-active {
  color: #ffffff;
  background: var(--seo-accent);
}

.seo-collection-page .products__subcategories__item-text {
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-collection-page .products__list {
  padding: 0 12px 44px;
  display: flex;
  flex-wrap: wrap;
}

.seo-collection-page .product-card {
  position: relative;
  height: 327px;
  min-height: 327px;
  max-height: 327px;
  margin: 0 14px 24px;
  padding: 4px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: var(--seo-surface);
  box-shadow: 0 2px 12px rgba(29, 29, 27, 0.08);
}

.seo-collection-page .product-card__details-hit-area {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
}

.seo-collection-page .product-card__image-container {
  position: relative;
  width: 100%;
  height: 163px;
  flex: 0 0 163px;
}

.seo-collection-page .product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.seo-collection-page .product-card__quick-view {
  display: none;
}

.seo-collection-page .product-card__content {
  height: 144px;
  min-height: 144px;
  margin-top: 12px;
  flex: 0 0 144px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.seo-collection-page .product-card__info {
  height: 62px;
  min-height: 62px;
  padding: 0 8px;
  overflow: hidden;
}

.seo-collection-page .product-card__name {
  display: -webkit-box;
  overflow: hidden;
  color: var(--seo-text);
  font-size: 16px;
  line-height: 20px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.seo-collection-page .product-card__meta {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.seo-collection-page .product-card__meta-step,
.seo-collection-page .product-card__meta-unit-price {
  min-width: 0;
  color: #a0a3b5;
  font-size: 14px;
  line-height: 18px;
}

.seo-collection-page .product-card__meta-step {
  flex: 1;
}

.seo-collection-page .product-card__meta-unit-price {
  flex-shrink: 0;
  text-align: right;
}

.seo-collection-page .product-card__bottom {
  height: 80px;
  min-height: 80px;
  margin-top: 2px;
  padding: 4px 4px 4px 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.seo-collection-page .product-card__purchase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.seo-collection-page .product-card__price {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.seo-collection-page .product-card__price-value {
  color: var(--seo-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.seo-collection-page .product-card_discount .product-card__price-value {
  color: var(--seo-danger);
}

.seo-collection-page .product-card__price-discount {
  color: #a0a3b5;
  font-size: 16px;
  line-height: 20px;
  text-decoration: line-through;
}

.seo-collection-page .product-card__icon-btn {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  background: var(--seo-accent);
}

.seo-collection-page .product-card__icon-btn__inner,
.seo-collection-page .product-card__icon-btn svg {
  width: 24px;
  height: 24px;
}

.seo-collection-back {
  width: max-content;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
}

.seo-collection-products .product-card__icon-btn svg {
  width: 24px;
  height: 24px;
}

.seo-collection-products .product-card__icon-btn {
  color: #ffffff;
}

.seo-main h1 {
  max-width: 880px;
  margin: 20px 0 8px;
  font-size: 34px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.seo-main h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
}

.seo-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--seo-muted);
  font-size: 14px;
  line-height: 20px;
}

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

.seo-breadcrumbs a:hover,
.seo-breadcrumbs a:focus-visible {
  color: var(--seo-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-breadcrumbs__separator {
  color: #a0a3b5;
}

.seo-lead {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--seo-muted);
  font-size: 16px;
  line-height: 24px;
}

.seo-city {
  max-width: 960px;
}

.seo-market-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.seo-market-list a {
  min-height: 84px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--seo-border);
  border-radius: 8px;
  color: var(--seo-text);
  background: var(--seo-surface);
  text-decoration: none;
}

.seo-market-list a:hover,
.seo-market-list a:focus-visible {
  border-color: var(--seo-accent);
  color: var(--seo-accent);
}

.seo-market-list span {
  flex-shrink: 0;
  color: var(--seo-muted);
  font-size: 14px;
}

.seo-product {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 328px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.seo-product__image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--gray-background-item, #f7f8fa);
}

.seo-product__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 328 / 250;
  object-fit: cover;
}

.seo-product-badges {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 4px;
  pointer-events: none;
}

.seo-product-badges__badge {
  box-sizing: border-box;
  max-width: 100%;
  min-height: 18px;
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  font-family: "Manrope-Medium", "Manrope-Regular", Manrope, Arial, sans-serif;
  font-size: 10px;
  line-height: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.seo-product-badges__badge--weight {
  flex-shrink: 0;
  color: #ffffff;
  background-color: rgba(9, 10, 21, 0.4);
}

.seo-product-badges__badge--marketing {
  color: #1d1d1b;
  background-color: #f59e4d;
}

.seo-product__summary {
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.seo-main--product .seo-product__summary h1 {
  max-width: none;
  margin: 0;
  font-family: "Manrope-Bold", Manrope, Arial, sans-serif;
  font-size: 24px;
  line-height: 32px;
}

.seo-product__meta {
  margin: 12px 0 0;
  font-family: "Manrope-Regular", Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: var(--seo-muted);
}

.seo-product__price--discount {
  color: var(--seo-danger);
}

.seo-product__old-price {
  display: block;
  color: var(--seo-muted);
  font-family: "Manrope-Regular", Manrope, Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  text-decoration: line-through;
}

.seo-product__old-price[hidden] {
  display: none;
}

.seo-muted,
.seo-empty {
  color: var(--seo-muted);
}

.seo-button {
  min-height: 52px;
  margin-top: 24px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: var(--seo-accent);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.seo-button:hover,
.seo-button:focus-visible {
  color: #ffffff;
  background: #5610b5;
  text-decoration: none;
}

button.seo-button:disabled {
  cursor: progress;
  opacity: 0.82;
}

.seo-primary-purchase {
  width: 100%;
  min-height: 56px;
  padding-top: 24px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.seo-primary-purchase__total {
  display: flex;
  flex: 7 1 0;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin: 0;
  overflow-wrap: anywhere;
}

.seo-primary-purchase__total output {
  font-family: "Rothek-Bold", Arial, sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
}

.seo-primary-purchase__add,
.seo-primary-purchase__stepper {
  border: 0;
  color: #ffffff;
  background: var(--seo-accent);
}

.seo-primary-purchase__add {
  flex: 17 1 0;
  min-width: 56px;
  min-height: 56px;
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Manrope-Bold", Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.seo-primary-purchase__cart-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.seo-primary-purchase__cart-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.seo-primary-purchase__stepper {
  display: none;
  flex-shrink: 0;
  width: 152px;
  height: 40px;
  padding: 1px;
  border-radius: 12px;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  background: var(--gray-background, #f2f3f6);
}

.seo-primary-purchase[data-in-cart="true"] .seo-primary-purchase__add {
  display: none;
}

.seo-primary-purchase[data-in-cart="true"] .seo-primary-purchase__stepper {
  display: grid;
}

.seo-primary-purchase__stepper button {
  width: 38px;
  min-width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  color: #ffffff;
  border-radius: 12px;
  background: var(--seo-accent);
  font: inherit;
  font-size: 24px;
  cursor: pointer;
}

.seo-primary-purchase__stepper .seo-decrease-icon {
  width: 24px;
  height: 24px;
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 24px;
  line-height: 22px;
}

.seo-primary-purchase__stepper [data-seo-decrease-trash] {
  width: 18px;
  height: 18px;
}

.seo-primary-purchase__stepper .seo-decrease-icon[hidden] {
  display: none;
}

.seo-decrease-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.seo-primary-purchase__add:hover,
.seo-primary-purchase__add:focus-visible,
.seo-primary-purchase__stepper button:hover,
.seo-primary-purchase__stepper button:focus-visible {
  color: #ffffff;
  background: #5610b5;
}

.seo-primary-purchase__add:disabled,
.seo-primary-purchase__stepper button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.seo-primary-purchase__value {
  min-width: 0;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--seo-text);
}

.seo-primary-purchase__value output {
  font-family: "Manrope-Regular", Manrope, Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  white-space: nowrap;
}

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

.seo-product-details {
  margin-top: 32px;
}

.seo-description h2 {
  margin: 0;
  font-family: "Rothek-Bold", Arial, sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  text-transform: uppercase;
}

.seo-description p {
  margin: 16px 0 0;
  font-family: "Manrope-Regular", Manrope, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.seo-description strong {
  font-family: "Manrope-Bold", Manrope, Arial, sans-serif;
}

.seo-description__list {
  margin-top: 16px;
}

.seo-description__item {
  display: flex;
  margin-bottom: 10px;
}

.seo-description__item:last-child {
  margin-bottom: 0;
}

.seo-description__dot {
  width: 4px;
  min-width: 4px;
  height: 4px;
  margin-top: 7px;
  border-radius: 50%;
  background-color: var(--seo-accent);
}

.seo-description .seo-description__text {
  max-width: none;
  margin: 0 0 0 8px;
  font-family: "Manrope-Regular", Manrope, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #1d1d1b;
}

.seo-error {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.seo-error__code {
  margin: 0;
  color: var(--seo-accent);
  font-size: 72px;
  font-weight: 800;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--seo-accent);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .seo-product {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .seo-product__image {
    width: 100%;
  }

  .seo-product__image img {
    aspect-ratio: 4 / 3;
  }

  .seo-product__summary {
    min-height: 0;
  }

  .seo-main--product .seo-product__summary h1 {
    font-size: 20px;
    line-height: 28px;
  }

  .seo-product__meta {
    margin-top: 8px;
    font-size: 14px;
  }

  .seo-primary-purchase {
    padding-top: 20px;
    gap: 12px;
  }

  .seo-primary-purchase__total {
    flex: 0 1 auto;
    min-width: 64px;
  }

  .seo-primary-purchase__add {
    padding-right: 16px;
    padding-left: 16px;
  }

  .seo-primary-purchase__stepper {
    width: min(152px, calc(100% - 76px));
  }

  .seo-product-details {
    margin-top: 24px;
  }

}

@media (max-width: 767px) {
  .seo-site-header {
    height: 144px;
  }

  .seo-site-header__extra {
    display: none;
  }

  .seo-site-header__main {
    height: 144px;
    padding: 12px 12px 16px;
    display: grid;
    grid-template-areas:
      "brand location actions"
      "search search search";
    grid-template-columns: 75px minmax(0, 1fr) auto;
    grid-template-rows: 44px 56px;
    gap: 12px 8px;
    align-content: center;
  }

  .seo-site-header__brand {
    grid-area: brand;
  }

  .seo-site-header__mobile-location {
    min-width: 0;
    height: 44px;
    grid-area: location;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
  }

  .seo-site-header__mobile-location-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  .seo-site-header__mobile-location-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .seo-site-header__search {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: 56px;
    min-width: 0;
    margin: 0;
    padding: 0;
    grid-area: search;
    display: flex;
    border-radius: 8px;
    background: #f7f8fa;
    box-shadow: none;
  }

  .seo-site-header__search input {
    height: 56px;
    border-radius: 8px;
    background: transparent;
  }

  .seo-site-header__actions {
    margin-left: 0;
    grid-area: actions;
    justify-self: end;
  }

  .seo-site-header__action {
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-basis: 44px;
  }

  .seo-site-header__badge {
    top: 5px;
    right: 5px;
  }

  .seo-collection-products .product-card {
    width: calc((100% - 16px) / 2) !important;
    min-width: calc((100% - 16px) / 2) !important;
    max-width: calc((100% - 16px) / 2) !important;
    flex-basis: calc((100% - 16px) / 2);
  }

  .seo-main.seo-main--product {
    padding-top: 168px;
  }

  .seo-collection-page {
    padding-top: 144px;
    background: var(--seo-background);
  }

  .seo-collection-page .sub-header {
    padding: 20px 16px;
  }

  .seo-collection-page .products__content {
    min-height: calc(100vh - 292px);
    padding: 20px 0 48px;
  }

  .seo-collection-page .product-card {
    height: 292px;
    min-height: 292px;
    max-height: 292px;
    margin: 0 4px 8px;
  }

  .seo-collection-page .product-card__image-container {
    height: auto;
    flex-basis: auto;
    aspect-ratio: 200 / 163;
  }

  .seo-collection-page .product-card__content {
    min-height: 132px;
    height: 132px;
    flex-basis: 132px;
  }

  .seo-collection-page .product-card__name {
    font-size: 14px;
    line-height: 18px;
  }

  .seo-collection-page .product-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .seo-collection-page .product-card__meta-step,
  .seo-collection-page .product-card__meta-unit-price {
    font-size: 12px;
    line-height: 16px;
    text-align: left;
  }

  .seo-collection-page .product-card__bottom {
    height: 68px;
    min-height: 68px;
    margin-top: auto;
  }

  .seo-collection-page .product-card__price-value {
    font-size: 18px;
    line-height: 20px;
  }
}

@media (max-width: 640px) {
  .seo-header {
    min-height: 60px;
    padding: 10px 16px;
  }

  .seo-header__context {
    gap: 10px;
  }

  .seo-header__context > span {
    display: none;
  }

  .seo-cart-link {
    font-size: 14px;
  }

  .seo-brand img {
    height: 32px;
    max-width: 136px;
  }

  .seo-main {
    width: min(100% - 24px, 1280px);
    padding-top: 20px;
  }

  .seo-main.seo-main--product {
    width: calc(100% - 40px);
    padding-bottom: 40px;
  }

  .seo-main h1 {
    font-size: 26px;
  }

  .seo-breadcrumbs {
    min-width: 0;
    flex-wrap: nowrap;
    gap: 6px;
    overflow: hidden;
    white-space: nowrap;
  }

  .seo-breadcrumbs > * {
    flex: 0 0 auto;
  }

  .seo-breadcrumbs [aria-current="page"] {
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .seo-market-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .seo-button {
    width: 100%;
  }

}

@media (max-width: 420px) {
  .seo-header {
    gap: 12px;
  }

  .seo-brand img {
    max-width: 118px;
  }

  .seo-site-header__main {
    grid-template-columns: 70px minmax(0, 1fr) auto;
  }

  .seo-site-header__brand,
  .seo-site-header__brand img {
    width: 70px;
  }

  .seo-site-header__mobile-location {
    font-size: 14px;
  }

}
