:root {
  --bg: #efefef;
  --surface: #ffffff;
  --surface-soft: #f6f6f6;
  --border: #d8d8d8;
  --text: #222222;
  --muted: #6c6c6c;
  --muted-dark: #4f4f4f;
  --purple: #e24030;
  --purple-dark: #ce3a2d;
  --green: #9ac11d;
  --green-dark: #86ab11;
  --orange: #f5a623;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  --radius: 6px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

a:hover {
  text-decoration: underline;
}

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

button {
  cursor: pointer;
}

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

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #18151b;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header__accent {
  height: 4px;
  background: #e24030;
}

.site-header__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand {
  flex: 0 0 auto;
}

.brand__mark {
  width: 200px;
  max-width: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
  color: #ffffff;
  font-size: 9px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

.brand__mark span + span {
  margin-top: 2px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.86);
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a:hover {
  text-decoration: none;
  color: #fff;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.icon-button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.search-pill {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 14px;
  background: #e24030;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.search-pill:hover {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
}

.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #201b24;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transition: max-height 0.3s ease;
}

.mobile-menu.is-open {
  max-height: 420px;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 12px 0 16px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.mobile-nav a {
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
}

.mobile-menu__actions {
  display: grid;
  gap: 10px;
}

.mobile-menu__actions .button {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 330px;
  background: url("../images/hero-banner.jpg") center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.36) 100%),
    linear-gradient(90deg, rgba(24, 21, 27, 0.15), rgba(24, 21, 27, 0.06));
}

.hero__inner {
  position: relative;
  min-height: 330px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__play {
  width: 88px;
  height: 88px;
  border: 0;
  background: transparent;
  padding: 0;
}

.hero__play svg {
  width: 100%;
  height: 100%;
}

.product-intro {
  padding: 18px 0 10px;
}

.page-title {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 3px;
  font-size: 12px;
  color: #fff;
  background: var(--purple);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted-dark);
}

.rating-inline {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rating-inline__star {
  color: var(--orange);
}

.meta-row__divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.showcase {
  padding: 8px 0 26px;
}

.showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 32px;
  align-items: start;
}

.media-preview {
  margin: 0;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}

.media-preview img {
  width: 100%;
 /* aspect-ratio: 16 / 9;
  object-fit: cover;*/
}

.purchase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 18px;
}

.purchase-card__meta,
.purchase-card__note,
.field-label {
  margin: 0;
  color: var(--muted);
}

.purchase-card__meta {
  font-size: 13px;
  margin-bottom: 14px;
}

.price-row {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.discount-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 26px;
  padding: 0 10px;
  border-radius: 2px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}

.discount-badge--large {
  min-width: 104px;
  height: auto;
  font-size: 22px;
  border-radius: 0;
}

.price-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 16px;
  background: #fafafa;
}

.price-block__old,
.price-stack__old {
  color: #8a8a8a;
  text-decoration: line-through;
  font-size: 14px;
}

.price-block__new {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: #3d3d3d;
}

.purchase-card__note {
  font-size: 13px;
  margin-top: 10px;
}

.field-label {
  display: block;
  font-size: 13px;
  margin-top: 18px;
  margin-bottom: 6px;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.select-wrap select {
  width: 100%;
  min-height: 46px;
  appearance: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface-soft);
  padding: 0 40px 0 12px;
  color: var(--purple-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
  filter: brightness(1.02);
}

.button--primary,
.button--secondary,
.button--tertiary,
.button--ghost,
.button--disabled {
  width: 100%;
}

.button--primary {
  margin-top: 16px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
}

.button--secondary {
  margin-top: 10px;
  background: linear-gradient(180deg, #e24030, #ce3a2d);
  color: #fff;
}


.button--tertiary {
  margin-top: 18px;
  background: var(--purple);
  color: #fff;
}

.button--ghost {
  background: #fff;
  color: #5e5e5e;
  border-color: var(--border);
}

.button--disabled {
  background: #dfe4cd;
  color: #94a15b;
}

.wishlist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: #3a3a3a;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  
}

.content-section {
  margin-bottom: 28px;
}

.section-title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-title--spaced {
  margin-bottom: 20px;
}

.content-section p {
  margin: 0 0 12px;
  color: #2f2f2f;
}

.muted-copy {
  color: var(--muted);
  font-size: 13px;
}

.table-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-card--compact {
  padding: 0;
}

.comparison-table,
.requirements-table,
.languages-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table th,
.comparison-table td,
.requirements-table th,
.requirements-table td,
.languages-table th,
.languages-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #ececec;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.comparison-table thead th,
.requirements-table thead th,
.languages-table thead th {
  font-size: 13px;
  text-transform: none;
  background: #fcfcfc;
  color: var(--muted-dark);
}

.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  width: 18%;
  text-align: center;
}

.comparison-table .highlight-column {
  color: var(--purple);
}

.success {
  color: #0b7c28;
  font-weight: 700;
}

.requirements-table tbody th {
  width: 18%;
  color: var(--muted-dark);
  background: #fcfcfc;
}

.requirements-table td,
.requirements-table th {
  font-size: 13px;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: #2c2c2c;
}

.bullet-list li + li {
  margin-top: 10px;
}

.detail-stack {
  display: grid;
  gap: 10px;
}

.detail-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  font-size: 14px;
}

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

.detail-value {
  color: #2d2d2d;
}

.detail-links a {
  text-decoration: underline;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple);
  font-weight: 700;
}

.languages-table th,
.languages-table td {
  font-size: 13px;
}

.languages-table td:nth-child(2),
.languages-table td:nth-child(3),
.languages-table th:nth-child(2),
.languages-table th:nth-child(3) {
  width: 64px;
  text-align: center;
}

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

.dlc-card {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.dlc-card img {
  width: 72px;
  height: 48px;
  object-fit: cover;
}

.dlc-card__body {
  padding: 8px 0;
}

.dlc-card__body h3 {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.3;
}

.dlc-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.mini-cart {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 14px;
}

.mobile-stack {
  padding: 0 0 12px;
}

.mobile-accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.mobile-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 14px;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}

.mobile-accordion__chevron {
  transition: transform 0.2s ease;
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
}

.mobile-accordion.is-open .mobile-accordion__chevron {
  transform: rotate(90deg);
}

.mobile-accordion__content {
  display: none;
  padding-bottom: 16px;
}

.mobile-accordion.is-open .mobile-accordion__content {
  display: block;
}

.mobile-accordion__teaser {
  margin: -4px 0 14px;
  color: var(--muted-dark);
  font-size: 14px;
}

.mobile-meta-block {
  margin-top: 14px;
}

.mobile-meta-block__label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.mobile-review-card {
  padding: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mobile-review-card h3 {
  margin: 4px 0 8px;
  font-size: 18px;
}

.mobile-review-card p {
  margin: 0;
  color: #2f2f2f;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mobile-requirements p {
  margin: 0 0 8px;
}

.dlc-list--mobile .dlc-card {
  grid-template-columns: 72px 1fr;
}

.recommendations {
  padding: 12px 0 32px;
}

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

.product-card {
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-card__body {
  padding: 10px 10px 12px;
}

.product-card__body h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  min-height: 38px;
}

.product-card__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  margin-left: auto;
}

.price-stack--single {
  justify-content: flex-end;
}

.price-stack strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.reviews-section {
  padding: 0 0 50px;
}

.review-summary-card,
.review-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.review-summary-card {
  display: grid;
  grid-template-columns: 240px 1fr 240px;
  gap: 26px;
  align-items: center;
  padding: 24px;
}

.review-score__value {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: var(--purple);
}

.review-score__value span {
  color: var(--orange);
}

.review-score p {
  margin: 8px 0 0;
  color: var(--muted);
}

.review-bars {
  display: grid;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: 14px 1fr 36px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.bar {
  height: 8px;
  background: #dfdfdf;
  border-radius: 999px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--purple);
  border-radius: inherit;
}

.other-ratings {
  display: grid;
  gap: 16px;
}

.other-ratings div {
  display: grid;
  gap: 4px;
}

.other-ratings strong {
  font-size: 28px;
  color: var(--purple);
}

.other-ratings span {
  color: var(--muted);
  font-size: 13px;
}

.review-form-card {
  margin-top: 26px;
  padding: 24px;
}

.review-form-card h3 {
  margin: 0 0 16px;
  font-size: 24px;
}

.review-form__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
}

.review-form__main {
  display: grid;
  gap: 12px;
}

.star-picker {
  color: #7a7a7a;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
  background: #fff;
}

.review-form__tips {
  align-self: start;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fcfcfc;
}

.review-form__tips p {
  margin: 0 0 10px;
}

.review-form__tips ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted-dark);
}

.review-form__tips li + li {
  margin-top: 6px;
}

.review-form__footer {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.review-form__footer small {
  color: var(--muted);
}

.review-form__actions {
  display: flex;
  gap: 10px;
  min-width: 260px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 32px;
  margin-top: 26px;
}

.review-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding-top: 10px;
}

.review-item__aside {
  display: flex;
  gap: 12px;
}

.avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2ca2a6;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  text-transform: lowercase;
}

.author-meta {
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: var(--muted-dark);
}

.review-item__body time {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.stars-row {
  color: var(--orange);
  letter-spacing: 0.08em;
}

.review-item__body h3 {
  margin: 8px 0 10px;
  font-size: 26px;
}

.review-item__body p {
  margin: 0;
  color: #2d2d2d;
}

.helpful-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
}

.chip-button {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: #3d3d3d;
}

.review-filters {
  display: grid;
  gap: 20px;
}

.filter-group {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-group h3 {
  margin: 0 0 12px;
  font-size: 17px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 14px;
  color: #2d2d2d;
}

.site-footer {
  background: #17161a;
  color: rgba(255, 255, 255, 0.9);
  padding: 30px 0 22px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.footer-links-column {
  display: grid;
  gap: 10px;
}

.footer-links-column a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-meta a,
.legal-links a {
  color: #fff;
}

.galaxy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  width: fit-content;
  padding: 0 22px;
  border: 1px solid #e24030;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(138, 75, 173, 0.94), rgba(77, 33, 105, 0.94));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.galaxy-button:hover {
  text-decoration: none;
}

.social-row {
  display: flex;
  gap: 14px;
}

.social-row a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-grid;
  place-items: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

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

  .review-summary-card {
    grid-template-columns: 220px 1fr 220px;
  }

  .review-form__grid {
    grid-template-columns: minmax(0, 1fr) 220px;
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .desktop-search-pill {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    min-height: 54px;
    gap: 12px;
  }

  .brand__mark {
    width: 160px;
  }

  .search-pill {
    display: none;
  }

  .hero,
  .hero__inner {
    min-height: 180px;
  }

  .product-intro {
    padding: 14px 0 8px;
  }

  .page-title {
    font-size: 28px;
  }

  .meta-row {
    font-size: 15px;
  }

  .showcase {
    padding-bottom: 8px;
  }

  .showcase__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .purchase-card {
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  }

  .purchase-card__meta {
    font-size: 14px;
  }

  .price-block__new {
    font-size: 34px;
  }

  .section-title--spaced {
    margin-bottom: 16px;
  }

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

  .product-card__body {
    padding: 8px 8px 10px;
  }

  .product-card__body h3 {
    min-height: 48px;
    font-size: 13px;
  }

  .price-stack strong {
    font-size: 19px;
  }

  .recommendations {
    padding-top: 10px;
  }

  .site-footer {
    padding-top: 26px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 12px, var(--container));
  }

  .site-header__inner {
    gap: 8px;
  }

  .brand__mark {
    width: 136px;
  }

  .header-actions {
    gap: 2px;
  }

  .icon-button {
    width: 30px;
    height: 30px;
  }

  .hero,
  .hero__inner {
    min-height: 154px;
  }

  .page-title {
    font-size: 24px;
  }

  .tag {
    min-height: 24px;
    font-size: 11px;
    padding: 0 8px;
  }

  .meta-row {
    gap: 8px;
    font-size: 14px;
  }

  .purchase-card {
    padding: 14px 12px;
  }

  .price-row {
    align-items: stretch;
  }

  .discount-badge--large {
    min-width: 86px;
    font-size: 20px;
  }

  .price-block {
    padding: 10px 12px;
  }

  .price-block__new {
    font-size: 28px;
  }

  .button,
  .wishlist-button,
  .select-wrap select {
    min-height: 44px;
  }

  .mobile-accordion__trigger {
    padding: 16px 0 12px;
    font-size: 16px;
  }

  .mobile-accordion__teaser,
  .mobile-accordion__content p,
  .mobile-accordion__content li {
    font-size: 14px;
  }

  .product-grid {
    gap: 10px;
  }

  .product-card__body h3 {
    min-height: 54px;
  }

  .product-card__price-row {
    align-items: center;
  }

  .price-stack strong {
    font-size: 17px;
  }

  .footer-links-grid {
    gap: 20px;
  }

  .footer-meta {
    font-size: 13px;
  }

  .galaxy-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
