:root {
  --bg: #eef3f4;
  --surface: #ffffff;
  --surface-strong: #22333b;
  --surface-dark: #18242b;
  --border: rgba(34, 51, 59, 0.12);
  --text: #22333b;
  --muted: #5d717b;
  --primary: #7cb4c9;
  --primary-dark: #5f99b0;
  --accent: #95c7d8;
  --success: #1d9b59;
  --shadow: 0 20px 60px rgba(34, 51, 59, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI Variable", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(124, 180, 201, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fbfb 0%, var(--bg) 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.topbar {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(16, 35, 63, 0.07);
  backdrop-filter: blur(20px);
}

.topbar--catalog .topbar__inner,
.topbar__split {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.topbar__notes {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.88rem;
}

.topbar__inner,
.topbar__links,
.header-main,
.header-actions,
.nav__inner,
.hero__actions,
.section-head,
.footer-bottom,
.promo-dots {
  display: flex;
  align-items: center;
}

.topbar__inner,
.header-main,
.nav__inner,
.footer-bottom {
  justify-content: space-between;
}

.topbar__inner {
  min-height: 42px;
  color: var(--muted);
  font-size: 0.88rem;
  justify-content: flex-end;
}

.topbar__links a,
.trust-strip article,
.benefits-grid article,
.button,
.header-icon,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.topbar__links {
  gap: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 251, 251, 0.92);
  border-bottom: 1px solid rgba(34, 51, 59, 0.08);
  backdrop-filter: blur(24px);
}

.header-main {
  gap: 20px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.6rem;
}

.brand__logo {
  display: block;
  width: auto;
  height: 48px;
  object-fit: contain;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface-strong), #39505b);
  color: white;
  font-size: 0.92rem;
  box-shadow: 0 12px 28px rgba(34, 51, 59, 0.24);
}

.brand__text {
  letter-spacing: -0.03em;
}

.searchbar {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(34, 51, 59, 0.08);
  background: white;
  box-shadow: 0 12px 30px rgba(34, 51, 59, 0.06);
}

.searchbar input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.searchbar button,
.menu-toggle,
.header-icon,
.cart-drawer button,
.mobile-panel button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.searchbar button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.header-actions {
  gap: 10px;
}

.header-icon {
  display: grid;
  gap: 6px;
  justify-items: center;
  min-width: 72px;
  color: var(--muted);
  font-size: 0.82rem;
}

.header-icon i,
.menu-toggle i {
  font-size: 1.15rem;
}

.header-icon--cart {
  position: relative;
}

.header-icon--cart strong {
  position: absolute;
  top: -2px;
  right: 8px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  background: var(--surface-strong);
  color: white;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  font-size: 1.4rem;
}

.main-nav {
  border-top: 1px solid rgba(34, 51, 59, 0.06);
}

.nav__inner {
  min-height: 58px;
  gap: 24px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.nav__inner a {
  position: relative;
  color: var(--text);
  font-weight: 600;
}

.nav__inner a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--surface-strong), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav__inner a:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: 0;
}

.hero__grid {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(124, 180, 201, 0.16), transparent 25%),
    linear-gradient(115deg, #18242b 10%, #22333b 48%, #324a55 100%);
  box-shadow: var(--shadow);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  min-height: 781px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 56px 36px max(16px, calc((100vw - var(--container)) / 2 + 16px));
  color: white;
}

.hero__content h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 840px;
}

.hero__content p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero__actions {
  gap: 14px;
}

.button {
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--surface-strong);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 16px 32px rgba(124, 180, 201, 0.3);
}

.button--ghost,
.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.28);
}

.button--secondary {
  color: var(--surface-strong);
  border-color: rgba(124, 180, 201, 0.4);
  background: rgba(124, 180, 201, 0.14);
}

.button--ghost {
  color: white;
  background: rgba(255, 255, 255, 0.06);
}

.button--ghost-light {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.button--catalog {
  width: 100%;
  color: white;
  background: linear-gradient(135deg, #24424f, #22333b);
  box-shadow: none;
}

.hero__visual {
  position: absolute;
  inset: 0;
  min-height: 781px;
  overflow: hidden;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 36, 43, 0.92) 0%, rgba(34, 51, 59, 0.84) 28%, rgba(34, 51, 59, 0.42) 55%, rgba(34, 51, 59, 0.16) 74%, rgba(34, 51, 59, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%);
  z-index: 1;
}

.hero__media-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.02) contrast(1.02);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 18px 24px 4px;
  color: white;
}

.trust-strip article {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(24, 36, 43, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-weight: 600;
  justify-content: center;
}

.cards-grid,
.brand-row,
.category-row,
.services-grid,
.products-grid,
.benefits-grid,
.footer-grid {
  display: grid;
}

.entry-cards {
  margin-top: 22px;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.entry-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow);
}

.entry-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.entry-card p {
  max-width: 210px;
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.6;
}

.entry-card a {
  display: inline-flex;
  color: var(--primary);
  font-weight: 700;
}

.entry-card__art {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 132px;
  height: 132px;
  border-radius: 22px;
  overflow: hidden;
  background: white;
  box-shadow: 0 16px 32px rgba(34, 51, 59, 0.08);
}

.entry-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entry-card--brakes {
  background: #ffffff;
}

.entry-card--wheels {
  background: #ffffff;
}

.entry-card--boutique {
  background: #ffffff;
}

.section-head {
  margin: 62px auto 22px;
}

.section-head > div {
  flex: 1;
  min-width: 0;
}

.section-head--products {
  align-items: flex-end;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.section-head a {
  margin-left: auto;
  color: var(--primary);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.brand-row {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.brand-chip,
.category-card,
.service-card,
.product-card {
  background: white;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow);
}

.brand-chip {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 22px;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-chip img {
  width: auto;
  max-width: 132px;
  height: 32px;
  object-fit: contain;
}

.category-row {
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  padding: 20px 14px 18px;
  border-radius: 22px;
  text-align: center;
  transition: transform 180ms ease;
}

.category-card:hover,
.service-card:hover,
.product-card:hover,
.brand-chip:hover {
  transform: translateY(-4px);
}

.category-card__art {
  width: 112px;
  height: 112px;
  margin: 0 auto 16px;
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(34, 51, 59, 0.08);
  padding: 10px;
}

.category-card__art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.category-card h3 {
  margin: 0;
  font-size: 1rem;
}

.promo-banner {
  position: relative;
  min-height: 340px;
  margin-top: 40px;
  padding: 40px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(112deg, rgba(24, 36, 43, 0.88), rgba(34, 51, 59, 0.8));
  box-shadow: var(--shadow);
}

.promo-banner__image {
  position: absolute;
  inset: 0;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 36, 43, 0.9) 0%, rgba(34, 51, 59, 0.82) 34%, rgba(34, 51, 59, 0.42) 62%, rgba(34, 51, 59, 0.18) 100%),
    radial-gradient(circle at 78% 24%, rgba(124, 180, 201, 0.22), transparent 24%);
  z-index: 1;
}

.promo-banner__content {
  position: relative;
  z-index: 2;
  width: min(48%, 520px);
  color: white;
}

.promo-banner__content h2 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.promo-banner__content p:not(.eyebrow) {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.8);
}

.promo-dots {
  gap: 10px;
  margin-top: 24px;
}

.promo-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.promo-dots button.is-active {
  width: 36px;
  border-radius: 999px;
  background: var(--primary);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.product-card {
  overflow: hidden;
  border-radius: 24px;
}

.service-card__media,
.product-card__media {
  position: relative;
  min-height: 280px;
  height: 280px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f4f7f8);
}

.product-card__media {
  border-bottom: 1px solid rgba(34, 51, 59, 0.06);
}

.service-card__media {
  background:
    linear-gradient(135deg, rgba(72, 99, 110, 0.98), rgba(34, 51, 59, 1));
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.service-card__media::after,
.product-card__media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.25), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.service-card__media::after {
  display: none;
}

.service-card__body,
.product-card__body {
  padding: 20px;
}

.service-card h3,
.product-card h3 {
  margin: 0 0 8px;
}

.service-card p,
.product-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card a {
  color: var(--primary);
  font-weight: 700;
}

.products-carousel {
  position: relative;
  background: transparent;
}

.products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 56px 10px 0;
  background: transparent;
}

.products-track::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 51, 59, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--surface-strong);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow--prev {
  left: -10px;
}

.carousel-arrow--next {
  right: -10px;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  min-width: 0;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: white;
  color: var(--surface-strong);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 248px;
}

.product-card__meta {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-card h3 {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.price-row strong {
  font-size: 1.24rem;
}

.price-row s {
  color: #98a7bb;
}

.product-card .button {
  width: 100%;
  min-height: 46px;
  margin-top: 2px;
  white-space: normal;
  line-height: 1.25;
}

.benefits {
  margin-top: 56px;
  padding: 22px 0;
  background: linear-gradient(135deg, #1b2b32, #22333b);
  color: white;
}

.benefits-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.benefits-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: start;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.25;
}

.benefits-grid article i {
  grid-row: 1 / span 2;
  margin-top: 2px;
  font-size: 1.55rem;
  opacity: 0.98;
}

.benefits-grid span {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.55;
}

.site-footer {
  padding: 42px 0 26px;
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
}

.footer-grid h3 {
  margin: 0 0 12px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}

.brand--footer {
  margin-bottom: 16px;
}

.brand--footer .brand__logo {
  height: 42px;
}

.footer-bottom {
  gap: 20px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--muted);
}

.footer-bottom div {
  display: flex;
  gap: 16px;
}

.cart-drawer,
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: min(92vw, 420px);
  height: 100dvh;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: -16px 0 40px rgba(9, 28, 58, 0.12);
  backdrop-filter: blur(24px);
  transform: translateX(102%);
  transition: transform 240ms ease;
}

.mobile-panel {
  left: auto;
}

.cart-drawer.is-open,
.mobile-panel.is-open,
.overlay.is-visible {
  transform: translateX(0);
}

.cart-drawer__header,
.mobile-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-drawer__header h2,
.mobile-panel__header strong {
  margin: 0;
}

.cart-drawer__items,
.mobile-panel__body {
  margin-top: 22px;
}

.mobile-panel__body {
  display: grid;
  gap: 14px;
}

.mobile-panel__body a {
  padding: 16px 18px;
  border-radius: 18px;
  background: #edf4f6;
  font-weight: 700;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
}

.cart-item__art {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 22%),
    linear-gradient(135deg, #48636e, #22333b);
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item button {
  color: var(--primary);
  font-weight: 800;
}

.cart-drawer__footer {
  position: absolute;
  inset: auto 24px 24px;
  display: grid;
  gap: 16px;
  padding-top: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96) 24%);
}

.cart-empty {
  color: var(--muted);
  line-height: 1.7;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: rgba(4, 10, 19, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.placeholder-page {
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 40px 16px;
}

.placeholder-shell {
  width: min(100%, 720px);
  padding: 42px;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.placeholder-shell h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  letter-spacing: -0.05em;
}

.placeholder-shell p:not(.eyebrow) {
  margin: 0 auto 24px;
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-page {
  padding: 18px 0 48px;
}

.catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.filter-card,
.catalog-card {
  border: 1px solid rgba(34, 51, 59, 0.08);
  background: white;
  box-shadow: var(--shadow);
}

.filter-card {
  border-radius: 24px;
  padding: 18px 18px 8px;
  position: sticky;
  top: 136px;
}

.filter-card__header,
.filter-group__toggle,
.range-values,
.catalog-toolbar,
.catalog-toolbar__actions,
.sort-field,
.view-switch,
.catalog-card__media,
.filter-chip,
.check-item {
  display: flex;
  align-items: center;
}

.filter-card__header,
.filter-group__toggle,
.catalog-toolbar {
  justify-content: space-between;
}

.filter-card__header h2,
.catalog-toolbar h1,
.catalog-card h3 {
  margin: 0;
}

.text-button {
  border: 0;
  padding: 0;
  color: var(--primary-dark);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.text-button--left {
  gap: 6px;
}

.filter-group {
  padding: 18px 0;
  border-top: 1px solid rgba(34, 51, 59, 0.08);
}

.filter-group__toggle {
  width: 100%;
  padding: 0;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.filter-group__body {
  margin-top: 16px;
}

.filter-search {
  position: relative;
  display: block;
  margin-bottom: 14px;
}

.filter-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 44px 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(34, 51, 59, 0.12);
  outline: 0;
}

.filter-search i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-item {
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  color: var(--text);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.check-item.is-selected {
  color: var(--surface-strong);
}

.check-item span:nth-child(2) {
  flex: 1;
  text-align: left;
}

.check-item__box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(34, 51, 59, 0.18);
  display: grid;
  place-items: center;
  color: white;
  background: transparent;
}

.check-item.is-selected .check-item__box {
  border-color: var(--surface-strong);
  background: var(--surface-strong);
}

.range-visual {
  position: relative;
  height: 32px;
}

.range-visual__track,
.range-visual__active {
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  height: 4px;
  border-radius: 999px;
}

.range-visual__track {
  background: rgba(34, 51, 59, 0.14);
}

.range-visual__active {
  left: 5%;
  right: 7%;
  background: var(--surface-strong);
}

.range-visual__thumb {
  position: absolute;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary-dark);
}

.range-visual__thumb--left {
  left: 3%;
}

.range-visual__thumb--right {
  right: 5%;
}

.range-values {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-toolbar {
  gap: 20px;
  margin-bottom: 24px;
}

.catalog-toolbar h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.05em;
}

.catalog-toolbar h1 span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.catalog-toolbar__actions {
  gap: 18px;
}

.sort-field {
  gap: 14px;
  color: var(--text);
  font-weight: 700;
}

.sort-field select {
  min-width: 210px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(34, 51, 59, 0.12);
  background: white;
  color: var(--text);
}

.view-switch {
  gap: 10px;
}

.view-switch button {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(34, 51, 59, 0.12);
  color: var(--muted);
  background: white;
  cursor: pointer;
}

.view-switch button.is-active {
  color: var(--surface-strong);
  background: rgba(124, 180, 201, 0.18);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.filter-chip {
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(34, 51, 59, 0.1);
  color: var(--text);
  background: white;
  font-weight: 600;
}

.catalog-products {
  display: grid;
  gap: 20px;
}

.catalog-products--grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.catalog-products--list .catalog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.catalog-card {
  overflow: hidden;
  border-radius: 22px;
  min-height: 100%;
}

.catalog-card__media {
  position: relative;
  justify-content: center;
  min-height: 320px;
  height: 320px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f4f7f8);
  overflow: hidden;
}

.catalog-card__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.catalog-badge,
.catalog-stock,
.catalog-favorite {
  position: absolute;
}

.catalog-badge,
.catalog-stock {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.catalog-badge {
  top: 16px;
  left: 16px;
  color: white;
  background: var(--surface-strong);
}

.catalog-badge--sale {
  background: #d22d2d;
}

.catalog-stock {
  top: 52px;
  left: 16px;
  color: #2f8e3d;
  background: #e6f8e7;
}

.catalog-favorite {
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(34, 51, 59, 0.1);
  color: var(--muted);
  background: white;
}

.catalog-art {
  position: relative;
  width: min(100%, 220px);
  height: 170px;
}

.catalog-art::before,
.catalog-art::after {
  content: "";
  position: absolute;
}

.catalog-art--tire {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #232323 0 26%, #999 27% 31%, #1e1e1e 32% 48%, #444 49% 56%, #111 57% 100%);
}

.catalog-art--oil::before {
  inset: 6px 56px 8px 72px;
  border-radius: 18px 18px 20px 20px;
  background: linear-gradient(180deg, #2a2a2a, #171717);
}

.catalog-art--oil::after {
  left: 120px;
  top: 18px;
  width: 42px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(180deg, #2d2d2d, #151515);
}

.catalog-art--brake {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #bbb 0 18%, transparent 19%),
    radial-gradient(circle at center, #636363 0 52%, #c8c8c8 53% 67%, transparent 68%);
}

.catalog-art--brake::after {
  right: 10px;
  top: 28px;
  width: 66px;
  height: 100px;
  border-radius: 26px 18px 18px 26px;
  background: linear-gradient(180deg, #f34a4a, #b91111);
}

.catalog-art--filter {
  width: 180px;
  height: 140px;
  border-radius: 18px;
  transform: rotate(-18deg);
  background:
    linear-gradient(90deg, #1f1f1f 0 8%, #d7d7d7 8% 14%, #b9b9b9 14% 18%, #dbdbdb 18% 24%, #b9b9b9 24% 28%, #dbdbdb 28% 34%, #b9b9b9 34% 38%, #dbdbdb 38% 44%, #b9b9b9 44% 48%, #dbdbdb 48% 54%, #b9b9b9 54% 58%, #dbdbdb 58% 64%, #b9b9b9 64% 68%, #1f1f1f 68% 100%);
}

.catalog-art--battery::before {
  inset: 26px 24px 22px;
  border-radius: 14px;
  background: linear-gradient(180deg, #202020, #0f0f0f);
}

.catalog-art--battery::after {
  left: 38px;
  top: 16px;
  width: 126px;
  height: 20px;
  border-radius: 10px 10px 4px 4px;
  background: #2d2d2d;
}

.catalog-art--spark::before {
  left: 98px;
  top: 10px;
  width: 20px;
  height: 142px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fefefe, #bcbcbc 24%, #e6e6e6 25%, #8d8d8d 45%, #d9d9d9 48%, #7f7f7f 65%, #e9e9e9 66%, #9d9d9d 100%);
}

.catalog-art--wipers::before,
.catalog-art--wipers::after {
  width: 120px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #222, #444, #111);
  transform-origin: left center;
}

.catalog-art--wipers::before {
  left: 28px;
  top: 112px;
  transform: rotate(-28deg);
}

.catalog-art--wipers::after {
  left: 60px;
  top: 100px;
  transform: rotate(-20deg);
}

.catalog-art--pads::before,
.catalog-art--pads::after {
  bottom: 46px;
  width: 100px;
  height: 56px;
  border-radius: 24px 24px 18px 18px;
  background: linear-gradient(180deg, #4d4d4d, #1f1f1f);
}

.catalog-art--pads::before {
  left: 16px;
}

.catalog-art--pads::after {
  right: 16px;
}

.catalog-card__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 250px;
}

.catalog-brand,
.catalog-sku {
  color: #85939a;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.catalog-subtitle,
.catalog-sku {
  margin: 0;
  color: var(--muted);
}

.catalog-card h3 {
  display: block;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.catalog-subtitle {
  margin: 0 0 8px;
  line-height: 1.5;
}

.catalog-sku {
  margin-top: 4px;
  line-height: 1.45;
}

.catalog-card .price-row {
  margin-top: auto;
  padding-top: 2px;
}

.catalog-card .button {
  margin-top: 6px;
  white-space: normal;
  line-height: 1.25;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cart-item__art {
  overflow: hidden;
}

.cart-item__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-page,
.checkout-page,
.success-page {
  padding: 24px 0 56px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 28px;
  align-items: start;
}

.product-gallery,
.product-panel,
.checkout-panel,
.success-card {
  border: 1px solid rgba(34, 51, 59, 0.08);
  background: white;
  box-shadow: var(--shadow);
}

.product-gallery {
  border-radius: 28px;
  overflow: hidden;
}

.product-gallery__main {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff, #f4f7f8);
}

.product-gallery__main img {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  display: block;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  border-top: 1px solid rgba(34, 51, 59, 0.08);
}

.product-thumb {
  min-height: 108px;
  padding: 10px;
  border: 1px solid rgba(34, 51, 59, 0.1);
  border-radius: 18px;
  background: #f8fbfb;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.product-thumb:hover,
.product-thumb.is-active {
  border-color: rgba(124, 180, 201, 0.9);
  box-shadow: 0 14px 30px rgba(34, 51, 59, 0.08);
  transform: translateY(-2px);
}

.product-thumb img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  display: block;
}

.product-info {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 6px 0;
}

.product-info__eyebrow {
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-info h1 {
  margin: 0;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.product-info__subtitle,
.product-info__copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-info__subtitle {
  font-size: 1.05rem;
}

.product-info__price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-info__price strong {
  font-size: clamp(2rem, 3vw, 2.9rem);
  letter-spacing: -0.04em;
}

.product-info__price span {
  color: #97a5b8;
  text-decoration: line-through;
  font-weight: 600;
}

.product-info__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e7f7ea;
  color: var(--success);
  font-weight: 700;
}

.product-actions {
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.quantity-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px;
  border: 1px solid rgba(34, 51, 59, 0.12);
  border-radius: 999px;
  background: white;
}

.quantity-box button {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #edf4f6;
  color: var(--surface-strong);
  cursor: pointer;
}

.quantity-box strong {
  min-width: 24px;
  text-align: center;
  font-size: 1rem;
}

.product-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.product-highlights article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 16px 18px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(34, 51, 59, 0.08);
}

.product-highlights i {
  font-size: 1.2rem;
  color: var(--primary-dark);
}

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

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

.product-panel {
  border-radius: 26px;
  padding: 28px;
}

.product-panel h2,
.checkout-panel__head h1,
.checkout-form h2,
.success-card h1 {
  margin: 0;
  letter-spacing: -0.04em;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.detail-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f7fafb;
}

.detail-list__item span {
  color: var(--muted);
}

.related-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.related-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 20px;
  background: #f7fafb;
}

.related-card__media {
  min-height: 112px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f2f6f7);
}

.related-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.related-card p,
.related-card h3 {
  margin: 0;
}

.related-card p {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.related-card h3 {
  margin-top: 4px;
  font-size: 1rem;
  line-height: 1.35;
}

.related-card strong {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.1rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.checkout-panel {
  border-radius: 28px;
  padding: 28px;
}

.checkout-panel--summary {
  position: sticky;
  top: 128px;
}

.checkout-panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.checkout-panel__head h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.checkout-item {
  display: grid;
  grid-template-columns: 104px 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(34, 51, 59, 0.08);
}

.checkout-item:first-child {
  border-top: 0;
}

.checkout-item__media {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f4f7f8);
  overflow: hidden;
}

.checkout-item__media img {
  width: 100%;
  height: 84px;
  object-fit: contain;
  display: block;
}

.checkout-item__info p,
.checkout-item__info h3,
.checkout-item__info span {
  margin: 0;
}

.checkout-item__info p {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-item__info h3 {
  margin-top: 6px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.checkout-item__info span {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 6px;
  border: 1px solid rgba(34, 51, 59, 0.12);
  border-radius: 999px;
}

.checkout-item__qty button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #edf4f6;
  cursor: pointer;
}

.checkout-item__price {
  min-width: 110px;
  text-align: right;
  font-size: 1.08rem;
}

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

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

.checkout-form span {
  font-weight: 700;
}

.checkout-form input,
.checkout-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(34, 51, 59, 0.12);
  border-radius: 16px;
  background: white;
  color: var(--text);
  outline: 0;
}

.checkout-form input:focus,
.checkout-form select:focus {
  border-color: rgba(124, 180, 201, 0.9);
  box-shadow: 0 0 0 4px rgba(124, 180, 201, 0.14);
}

.checkout-totals {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: #f7fafb;
  margin-top: 6px;
}

.checkout-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.checkout-total-line {
  padding-top: 12px;
  border-top: 1px solid rgba(34, 51, 59, 0.08);
}

.checkout-total-line strong {
  font-size: 1.28rem;
}

.checkout-submit {
  width: 100%;
  margin-top: 4px;
}

.checkout-empty {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 60px 28px;
  text-align: center;
  border: 1px solid rgba(34, 51, 59, 0.08);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.checkout-empty i {
  font-size: 3rem;
  color: var(--primary-dark);
}

.checkout-empty h1,
.checkout-empty p {
  margin: 0;
}

.checkout-empty p {
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.success-page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
}

.success-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 34px;
  text-align: center;
}

.success-card__icon {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--surface-strong);
  font-size: 2.2rem;
  box-shadow: 0 18px 34px rgba(124, 180, 201, 0.28);
}

.success-card h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.success-card__copy {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.success-summary {
  margin-top: 28px;
}

.success-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.success-summary__grid article,
.success-summary__items div {
  padding: 18px;
  border-radius: 20px;
  background: #f7fafb;
}

.success-summary__grid span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.success-summary__grid strong {
  font-size: 1.02rem;
}

.success-summary__items {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  text-align: left;
}

.success-summary__items div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

@keyframes floatCar {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1100px) {
  .cards-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .brand-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid,
  .trust-strip,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid {
    width: 100%;
    border-radius: 0;
  }

  .hero__content {
    width: min(100%, 680px);
    min-height: 380px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .product-layout,
  .product-extra,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .filter-card {
    position: static;
  }

  .catalog-products--grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .hero__visual {
    min-height: 380px;
  }

  .promo-banner__content {
    width: min(70%, 520px);
  }

  .checkout-panel--summary {
    position: static;
  }

  .success-summary__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar__links,
  .main-nav,
  .header-icon:not(.header-icon--cart) {
    display: none;
  }

  .topbar__notes {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-main {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .brand__logo {
    height: 42px;
  }

  .searchbar {
    order: 3;
    width: 100%;
    max-width: none;
  }

  .hero__content {
    padding: 28px 24px;
    min-height: 300px;
  }

  .hero__visual {
    min-height: 300px;
  }

  .cards-grid,
  .brand-row,
  .category-row,
  .services-grid,
  .benefits-grid,
  .footer-grid,
  .trust-strip,
  .catalog-products--grid {
    grid-template-columns: 1fr;
  }

  .products-track {
    grid-auto-columns: 82%;
    padding-right: 0;
  }

  .carousel-arrow {
    display: none;
  }

  .catalog-toolbar,
  .catalog-toolbar__actions,
  .sort-field,
  .topbar__split {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head--products {
    align-items: flex-start;
  }

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

  .section-head,
  .footer-bottom,
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-banner {
    padding: 28px;
    min-height: 300px;
  }

  .promo-banner__content {
    width: 100%;
  }

  .promo-banner::after {
    width: 100%;
    right: -36%;
  }

  .placeholder-shell {
    padding: 32px 24px;
  }

  .product-page,
  .checkout-page,
  .success-page {
    padding: 18px 0 42px;
  }

  .product-gallery__main {
    min-height: 340px;
    padding: 18px;
  }

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

  .catalog-card__media {
    min-height: 260px;
    height: 260px;
  }

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

  .product-thumb {
    min-height: 84px;
  }

  .product-info h1 {
    font-size: 2.25rem;
  }

  .product-actions {
    flex-direction: column;
  }

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

  .product-highlights,
  .success-summary__grid {
    grid-template-columns: 1fr;
  }

  .product-panel,
  .checkout-panel,
  .success-card {
    padding: 22px;
  }

  .checkout-panel__head,
  .success-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .checkout-item__price {
    text-align: left;
  }

  .success-summary__items div {
    align-items: flex-start;
    flex-direction: column;
  }
}
