.header-cart {
  gap: 8px;
}

.header-cart [data-cart-count] {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 6px;
  color: var(--ink-deep);
  background: var(--yellow);
  border-radius: 11px;
  font-size: 11px;
}

.header-cart [data-cart-count][hidden] {
  display: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 18px 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 7px;
  color: #a9b5b1;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--coral);
}

.catalog-hero {
  padding: 58px 0 62px;
  background: var(--mint);
  border-bottom: 1px solid rgba(18, 63, 67, 0.12);
}

.catalog-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 72px;
  align-items: end;
}

.catalog-hero h1 {
  max-width: 780px;
  font-size: 52px;
}

.catalog-hero-copy {
  max-width: 660px;
  margin-top: 17px;
  color: rgba(18, 63, 67, 0.78);
  font-size: 18px;
}

.catalog-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(18, 63, 67, 0.24);
}

.catalog-hero-facts div {
  padding: 16px 12px 0 0;
}

.catalog-hero-facts strong,
.catalog-hero-facts span {
  display: block;
}

.category-hero {
  padding-bottom: 0;
}

.category-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 64px;
  align-items: center;
}

.category-hero-layout img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.56);
}

.category-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid rgba(18, 63, 67, 0.2);
}

.category-hero-facts div {
  padding: 18px 24px 20px 0;
}

.category-hero-facts div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(18, 63, 67, 0.2);
}

.category-hero-facts strong,
.category-hero-facts span {
  display: block;
}

.category-hero-facts strong {
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 22px;
}

.category-hero-facts span {
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

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

.category-guide {
  padding: 78px 0 96px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.category-guide .article-grid {
  align-items: start;
}

.category-related {
  position: sticky;
  top: 110px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.category-related h2 {
  margin-top: 5px;
  font-size: 26px;
}

.category-related nav {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.category-related a {
  display: block;
  padding: 17px 0;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.category-related strong,
.category-related span {
  display: block;
}

.category-related strong {
  font-size: 15px;
}

.category-related span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.category-related a:hover strong {
  color: var(--coral);
}

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

  .category-hero-layout img {
    height: 300px;
  }

  .category-related {
    position: static;
  }
}

@media (max-width: 680px) {
  .category-hero-facts,
  .catalog-grid-category {
    grid-template-columns: 1fr;
  }

  .category-hero-facts div + div {
    padding-left: 0;
    border-top: 1px solid rgba(18, 63, 67, 0.2);
    border-left: 0;
  }

  .category-hero-layout img {
    height: 240px;
  }
}

.catalog-hero-facts strong {
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 24px;
}

.catalog-hero-facts span {
  margin-top: 2px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.catalog-main {
  padding: 62px 0 92px;
}

.catalog-group + .catalog-group {
  margin-top: 68px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.catalog-group-head,
.home-catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 28px;
}

.catalog-group-head h2,
.home-catalog-head h2 {
  font-size: 38px;
}

.catalog-group-head > p {
  max-width: 420px;
  color: var(--muted);
  font-size: 15px;
}

.catalog-group-copy {
  max-width: 420px;
}

.catalog-group-copy p {
  color: var(--muted);
  font-size: 15px;
}

.catalog-group-copy a {
  display: inline-block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-underline-offset: 3px;
}

.home-catalog-section {
  padding: 82px 0;
  background: var(--warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.catalog-filter-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.catalog-filter-nav a:hover {
  border-color: var(--coral);
}

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

.catalog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-card-featured {
  grid-column: span 2;
}

.catalog-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f8f4;
}

.catalog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 180ms ease;
}

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

.catalog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.catalog-card-category {
  margin-bottom: 7px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card h3 {
  font-size: 21px;
}

.catalog-card h3 a {
  text-decoration: none;
}

.catalog-rating {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.catalog-rating span {
  color: #e2a800;
}

.catalog-card-summary {
  flex: 1;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-card-buy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.catalog-card-buy > div {
  min-width: 0;
}

.catalog-card-buy strong,
.catalog-card-buy span {
  display: block;
}

.catalog-card-buy strong {
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 25px;
  line-height: 1;
}

.stock-label {
  margin-top: 6px;
  color: #248069;
  font-size: 11px;
  font-weight: 800;
}

.stock-label.is-out,
.cart-line-warning {
  color: #b84d39;
}

.catalog-card .button {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 13px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
  box-shadow: none;
}

.catalog-source-note {
  max-width: 800px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 12px;
}

.catalog-guides {
  margin-top: 72px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.catalog-guides-head h2 {
  font-size: 36px;
}

.catalog-guide-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-guide-links a {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px 0;
  color: var(--ink);
  text-decoration: none;
}

.catalog-guide-links a + a {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.catalog-guide-links a:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.catalog-guide-links a:nth-child(3n + 1) {
  padding-left: 0;
  border-left: 0;
}

.catalog-guide-links span,
.catalog-guide-links strong,
.catalog-guide-links small {
  display: block;
}

.catalog-guide-links span {
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-guide-links strong {
  margin-top: 17px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 21px;
  line-height: 1.2;
}

.catalog-guide-links small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.catalog-guide-links a:hover strong {
  color: var(--coral);
}

.product-main {
  padding-bottom: 92px;
}

.product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: 64px;
  padding: 24px 0 72px;
  align-items: start;
}

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

.product-gallery-stage {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.product-gallery-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 10px;
}

.product-gallery-thumb {
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.product-gallery-thumb.is-active,
.product-gallery-thumb:hover {
  border-color: var(--coral);
  box-shadow: inset 0 0 0 1px var(--coral);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-purchase {
  position: sticky;
  top: 104px;
  min-width: 0;
  padding-top: 8px;
}

.product-purchase h1 {
  max-width: 620px;
  font-size: 42px;
  line-height: 1.08;
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.product-rating .stars {
  color: #e2a800;
  font-size: 17px;
}

.product-rating a,
.rating-proof a {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 3px;
}

.product-summary {
  margin-top: 17px;
  color: var(--muted);
  font-size: 16px;
}

.product-price {
  margin-top: 25px;
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 11px;
  color: #248069;
  font-size: 13px;
  font-weight: 850;
}

.product-stock::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: currentColor;
  border-radius: 50%;
}

.product-stock.is-out {
  color: #b84d39;
}

.product-variants {
  margin: 24px 0 0;
  padding: 0;
  border: 0;
}

.product-variants legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.variant-button::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: var(--variant-color);
  border: 1px solid rgba(18, 63, 67, 0.18);
  border-radius: 50%;
}

.variant-button.is-active,
.variant-button:hover {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.variant-button.is-unavailable {
  color: var(--muted);
  background: #f4f6f5;
  text-decoration: line-through;
}

.variant-button.is-unavailable:not(.is-active):hover {
  border-color: var(--line);
  box-shadow: none;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

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

.product-actions .button-secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.product-ozon-delivery {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f1f6ff;
  border: 1px solid #c8d9ff;
  border-left: 4px solid var(--ozon-blue);
  border-radius: 4px;
}

.product-ozon-delivery {
  margin-top: 15px;
  padding: 14px 15px;
}

.product-ozon-delivery span,
.product-ozon-delivery strong,
.product-ozon-delivery small {
  min-width: 0;
  display: block;
}

.product-ozon-delivery strong {
  color: var(--ink);
  font-size: 13px;
}

.product-ozon-delivery small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
}

.purchase-conditions {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.purchase-conditions li {
  color: var(--muted);
  font-size: 13px;
}

.purchase-conditions strong {
  color: var(--ink);
}

.product-section {
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.product-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 80px;
  align-items: start;
}

.product-section h2 {
  font-size: 36px;
}

.product-subheading {
  margin-top: 38px;
}

.product-description p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 17px;
  font-size: 17px;
  line-height: 1.72;
}

.feature-list,
.contents-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.contents-list li {
  position: relative;
  padding: 13px 0 13px 30px;
  border-bottom: 1px solid var(--line);
}

.feature-list li::before,
.contents-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #248069;
  font-weight: 900;
}

.spec-list {
  margin: 21px 0 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1.25fr);
  gap: 22px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  font-size: 14px;
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  color: var(--ink);
  font-weight: 800;
}

.rating-proof {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  background: #fff7d5;
  border-left: 4px solid var(--yellow);
}

.rating-proof-score strong,
.rating-proof-score span {
  display: block;
}

.rating-proof-score strong {
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 42px;
  line-height: 1;
}

.rating-proof-score span {
  color: #e2a800;
  font-size: 16px;
}

.rating-proof p {
  color: var(--muted);
  font-size: 13px;
}

.product-faq {
  display: grid;
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.product-faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.product-faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.product-faq p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
}

.related-products h2 {
  margin-bottom: 27px;
}

.cart-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: min(420px, calc(100% - 32px));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 17px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 4px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.cart-toast.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cart-toast span {
  flex: 1;
  font-size: 13px;
  font-weight: 750;
}

.cart-toast a {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.cart-page {
  padding: 26px 0 92px;
}

.cart-page h1 {
  font-size: 48px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 44px;
  align-items: start;
  margin-top: 35px;
}

.cart-lines {
  border-top: 1px solid var(--line);
}

.cart-line {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line-image {
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.cart-line-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-line-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.cart-line-name {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.cart-line-copy span,
.cart-line-warning {
  font-size: 12px;
}

.cart-line-copy span {
  color: var(--muted);
}

.cart-line-controls {
  min-width: 150px;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-line-controls > strong {
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 22px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 34px 38px 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.quantity-control button {
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 0;
  cursor: pointer;
  font-size: 19px;
}

.quantity-control button:disabled {
  color: #9aa7a5;
  cursor: not-allowed;
  background: #f2f4f3;
}

.quantity-control output {
  text-align: center;
  font-size: 13px;
  font-weight: 850;
}

.cart-remove {
  padding: 0;
  color: var(--muted);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-summary-panel {
  position: sticky;
  top: 104px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-summary-panel h2 {
  font-size: 26px;
}

.cart-summary-panel > .eyebrow {
  margin-bottom: 4px;
}

.cart-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.cart-summary-row span {
  color: var(--muted);
  font-size: 13px;
}

.cart-summary-row strong {
  color: var(--ink);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 30px;
}

.cart-summary-copy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cart-empty {
  padding: 58px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-empty h2 {
  font-size: 30px;
}

.cart-empty p {
  margin: 10px 0 22px;
  color: var(--muted);
}

.checkout-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  margin-top: 20px;
  padding: 20px 0 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.checkout-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid #bdcbca;
  border-radius: 4px;
  outline: none;
}

.checkout-form input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(18, 63, 67, 0.1);
}

.checkout-form input[aria-invalid="true"] {
  border-color: #b84d39;
  box-shadow: 0 0 0 3px rgba(184, 77, 57, 0.1);
}

.checkout-reassurance {
  color: #24705f;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.checkout-form .form-footnote {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.checkout-form .form-footnote a {
  color: var(--ink);
  font-weight: 800;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
}

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

  .catalog-card-featured {
    grid-column: span 1;
  }

  .product-top {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: 42px;
  }

  .product-purchase h1 {
    font-size: 36px;
  }

  .product-content-grid,
  .cart-layout {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .catalog-hero-layout,
  .product-top,
  .product-content-grid,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .catalog-hero-layout {
    gap: 36px;
  }

  .catalog-hero h1 {
    font-size: 44px;
  }

  .product-top {
    gap: 34px;
  }

  .product-purchase,
  .cart-summary-panel {
    position: static;
  }

  .product-content-grid {
    gap: 50px;
  }

  .cart-layout {
    gap: 28px;
  }

  .catalog-guide-links {
    grid-template-columns: 1fr;
  }

  .catalog-guide-links a,
  .catalog-guide-links a + a {
    padding: 22px 0;
    border-left: 0;
  }

  .catalog-guide-links a + a {
    border-top: 1px solid var(--line);
  }

}

@media (max-width: 620px) {
  .catalog-hero {
    padding: 44px 0 48px;
  }

  .catalog-hero h1,
  .cart-page h1 {
    font-size: 38px;
  }

  .catalog-main,
  .product-main,
  .cart-page {
    padding-bottom: 68px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-group-head,
  .home-catalog-head {
    display: grid;
    align-items: start;
    gap: 14px;
  }

  .catalog-group-head h2,
  .home-catalog-head h2 {
    font-size: 31px;
  }

  .home-catalog-section {
    padding: 58px 0;
  }

  .catalog-guides {
    margin-top: 54px;
    padding-top: 48px;
  }

  .catalog-guides-head h2 {
    font-size: 31px;
  }

  .catalog-card-body {
    padding: 18px;
  }

  .catalog-card-buy {
    align-items: center;
  }

  .product-purchase h1 {
    font-size: 32px;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .product-section {
    padding: 52px 0;
  }

  .product-section h2 {
    font-size: 31px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .rating-proof {
    grid-template-columns: 1fr;
  }

  .cart-line {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .cart-line-image {
    width: 88px;
    height: 88px;
  }

  .cart-line-controls {
    grid-column: 1 / -1;
    width: 100%;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-items: start;
  }

  .cart-line-controls > strong {
    justify-self: center;
  }

  .checkout-form {
    grid-template-columns: 1fr;
    padding: 18px 0 0;
  }

  .checkout-form .button {
    width: 100%;
  }

  .cart-toast {
    right: 16px;
    bottom: 16px;
  }
}
