:root {
  --header-height: 74px;
  --ink: #17202a;
  --muted: #617083;
  --paper: #f6f8fb;
  --surface: #ffffff;
  --line: #dce3ea;
  --blue: #0f5794;
  --blue-deep: #0b345a;
  --green: #21a36b;
  --red: #df4f3f;
  --sun: #f3b548;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.12);
  --soft-shadow: 0 26px 70px rgba(23, 32, 42, 0.1);
  --sport-shadow: 0 28px 90px rgba(15, 87, 148, 0.18);
  --glass: rgba(255, 255, 255, 0.78);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(15, 87, 148, 0.06) 0 18%, transparent 18% 100%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 42%, #eef4f8 100%);
  overflow-x: hidden;
}

body.cart-open,
body.product-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(220, 227, 234, 0.72);
  box-shadow: 0 10px 34px rgba(23, 32, 42, 0.06);
  backdrop-filter: blur(20px) saturate(1.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  background: linear-gradient(180deg, #fff, #f3f8fc);
  box-shadow: inset 0 0 0 4px rgba(15, 87, 148, 0.06);
  font-size: 0.78rem;
}

.brand-text {
  font-size: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a,
.footer-links a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.footer-links a:hover {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-link {
  font-weight: 700;
  color: var(--blue-deep);
  white-space: nowrap;
}

.ghost-button,
.secondary-button,
.cart-trigger,
.icon-button,
.category-tile,
.qty-button,
.secondary-card-button,
.secondary-frame-button {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.ghost-button,
.secondary-button,
.cart-trigger {
  min-height: 42px;
  padding: 10px 14px;
}

.ghost-button:hover,
.secondary-button:hover,
.cart-trigger:hover,
.category-tile:hover,
.secondary-card-button:hover,
.secondary-frame-button:hover {
  border-color: var(--blue);
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.cart-icon {
  position: relative;
  width: 18px;
  height: 16px;
  border: 2px solid currentColor;
  border-top: 0;
}

.cart-icon::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: -7px;
  height: 9px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
}

.store-hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.store-hero {
  min-height: 76dvh;
  display: grid;
  align-items: center;
  background: #101923;
}

.store-hero::before,
.store-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.store-hero::before {
  right: -10vw;
  bottom: 12%;
  width: 52vw;
  height: 10px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), var(--red));
  transform: rotate(-17deg);
}

.store-hero::after {
  right: 9vw;
  bottom: 5%;
  width: 36vw;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue), transparent);
  transform: rotate(-17deg);
}

.store-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 23, 0.84) 0%, rgba(8, 15, 23, 0.64) 38%, rgba(8, 15, 23, 0.08) 78%),
    linear-gradient(0deg, rgba(8, 15, 23, 0.3), transparent 48%);
}

.store-hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  padding: 74px 0;
  color: #fff;
}

.store-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: -42px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 22px 44px rgba(23, 32, 42, 0.12));
}

.feature-strip div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 22px;
  border: 1px solid rgba(220, 227, 234, 0.72);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.feature-strip div:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.feature-strip div:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.feature-strip strong {
  color: var(--blue-deep);
  font-size: 1.45rem;
}

.feature-strip span {
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 62px 24px 34px;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: -1;
  width: min(520px, 40vw);
  height: 74%;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(223, 79, 63, 0.12) 42% 48%, transparent 48% 100%),
    linear-gradient(135deg, transparent 0 58%, rgba(33, 163, 107, 0.14) 58% 63%, transparent 63% 100%);
}

.page-hero-copy {
  padding: 32px;
  border: 1px solid rgba(220, 227, 234, 0.72);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px) saturate(1.18);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 4.3rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.page-hero p {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.page-hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(11, 52, 90, 0.95), rgba(15, 87, 148, 0.86)),
    var(--blue-deep);
  box-shadow: var(--sport-shadow);
}

.page-hero-panel::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: 34px;
  width: 180px;
  height: 6px;
  background: rgba(255, 255, 255, 0.28);
  transform: rotate(66deg);
}

.page-hero-panel strong {
  font-size: 1.45rem;
  line-height: 1.08;
}

.page-hero-panel span {
  color: rgba(255, 255, 255, 0.82);
}

.premium-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

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

.premium-category,
.premium-info-grid article,
.premium-step-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(220, 227, 234, 0.74);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 253, 0.9)),
    #fff;
  box-shadow: 0 16px 48px rgba(23, 32, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.premium-category::after,
.premium-info-grid article::after,
.premium-step-grid article::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: 24px;
  width: 160px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  opacity: 0.18;
  transform: rotate(-28deg);
}

.premium-category img {
  width: 104px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(15, 87, 148, 0.12));
}

.premium-category:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(15, 87, 148, 0.12);
}

.premium-category span,
.premium-info-grid h2,
.premium-step-grid h2 {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.16;
}

.premium-category small,
.premium-info-grid p,
.premium-step-grid p {
  color: var(--muted);
}

.showroom-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.showroom-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 87, 148, 0.08), rgba(255, 255, 255, 0.96) 42%, rgba(33, 163, 107, 0.08)),
    #fff;
  box-shadow: var(--sport-shadow);
}

.showroom-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.showroom-media.is-product {
  display: grid;
  place-items: center;
  padding: 28px;
}

.showroom-media.is-product img {
  min-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(23, 32, 42, 0.14));
}

.sport-collage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0.42fr;
  gap: 14px;
  min-height: 520px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 234, 0.74);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #ffffff 0%, #f2f7fb 58%, #eef8f2 100%);
  box-shadow: var(--sport-shadow);
}

.sport-collage::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: 44px;
  width: 430px;
  height: 10px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  opacity: 0.32;
  transform: rotate(-24deg);
}

.sport-collage-main,
.sport-collage-stack img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.68);
  filter: drop-shadow(0 24px 34px rgba(23, 32, 42, 0.12));
}

.sport-collage-main {
  padding: 22px;
}

.sport-collage-stack {
  display: grid;
  gap: 14px;
  min-height: 0;
}

.sport-collage-stack img {
  min-height: 0;
  padding: 16px;
  border: 1px solid rgba(220, 227, 234, 0.78);
}

.showroom-copy {
  display: grid;
  gap: 18px;
}

.showroom-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.showroom-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.premium-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue-deep);
  font-weight: 800;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.hero {
  position: relative;
  min-height: 78dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #101923;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 22, 34, 0.86) 0%, rgba(11, 22, 34, 0.68) 34%, rgba(11, 22, 34, 0.18) 72%, rgba(11, 22, 34, 0.02) 100%),
    linear-gradient(0deg, rgba(11, 22, 34, 0.32), transparent 45%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  padding: 72px 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: 4.25rem;
  line-height: 0.95;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.secondary-card-button,
.secondary-frame-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
}

.primary-button {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #fb5b4b, var(--red));
  box-shadow: 0 16px 34px rgba(223, 79, 63, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button:hover {
  background: linear-gradient(135deg, #f24d3d, #c83f32);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(223, 79, 63, 0.34);
}

.secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.36);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 34px 0 0;
}

.hero-metrics div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics dt {
  font-weight: 900;
  font-size: 1.05rem;
}

.hero-metrics dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.category-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  max-width: 1240px;
  margin: 22px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.catalog-category-band {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  max-width: 1280px;
}

.catalog-category-band .category-tile {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 112px;
  padding: 12px 10px;
}

.catalog-category-band .category-tile img {
  width: 58px;
  height: 50px;
}

.catalog-category-band .category-tile span {
  width: 100%;
  font-size: 0.86rem;
  text-align: center;
  overflow-wrap: normal;
}

.category-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 98px;
  padding: 13px;
  text-align: left;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.9)),
    #fff;
  box-shadow: 0 18px 50px rgba(23, 32, 42, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: 18px;
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  opacity: 0.12;
  transform: rotate(-25deg);
}

.category-tile:hover,
.category-tile:focus {
  transform: translateY(-3px);
  box-shadow: 0 24px 66px rgba(15, 87, 148, 0.14);
  outline: 0;
}

.category-tile img {
  position: relative;
  z-index: 1;
  width: 66px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 20px rgba(15, 87, 148, 0.12));
}

.category-tile span {
  position: relative;
  z-index: 1;
  min-width: 0;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: normal;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 82px 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.catalog-copy h2,
.info-copy h2,
.product-copy h2,
.callback-copy h2 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.catalog-copy p:not(.eyebrow),
.info-copy p,
.product-copy p,
.callback-copy p {
  color: var(--muted);
}

.catalog-section {
  position: relative;
  max-width: 1280px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.catalog-copy,
.catalog-promo,
.catalog-toolbar {
  border: 1px solid rgba(220, 227, 234, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.07);
  backdrop-filter: blur(16px) saturate(1.1);
}

.catalog-copy {
  padding: 26px;
}

.catalog-promo {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 210px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 27, 45, 0.96), rgba(15, 87, 148, 0.86)),
    url("assets/category-tables.svg?v=20260604-forms-v1") center 32px / 210px no-repeat;
}

.catalog-promo::after {
  content: "";
  position: absolute;
  right: -54px;
  top: 42px;
  width: 190px;
  height: 5px;
  background: linear-gradient(90deg, var(--green), #fff, var(--red));
  opacity: 0.42;
  transform: rotate(61deg);
}

.catalog-promo::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  pointer-events: none;
}

.catalog-promo span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-promo strong {
  display: block;
  margin: 5px 0;
  font-size: 1.45rem;
  line-height: 1.05;
}

.catalog-promo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.catalog-toolbar {
  position: sticky;
  top: calc(var(--header-height) + 12px);
  z-index: 7;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
  padding: 13px;
  backdrop-filter: blur(18px);
}

.catalog-toolbar-placeholder {
  display: none;
  margin-bottom: 22px;
}

.catalog-toolbar-placeholder.is-visible {
  display: block;
}

.catalog-toolbar.is-fixed {
  position: fixed;
  top: var(--catalog-toolbar-top, calc(var(--header-height) + 12px));
  left: var(--catalog-toolbar-left, 24px);
  width: var(--catalog-toolbar-width, calc(100vw - 48px));
  z-index: 9;
  gap: 10px;
  margin-bottom: 0;
  padding: 8px 10px;
  border-color: rgba(220, 227, 234, 0.68);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(23, 32, 42, 0.14);
  backdrop-filter: blur(22px) saturate(1.25);
}

.catalog-toolbar.is-fixed .field {
  gap: 0;
}

.catalog-toolbar.is-fixed .field > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.catalog-toolbar.is-fixed .field input,
.catalog-toolbar.is-fixed .field select {
  min-height: 38px;
  padding: 8px 10px;
  font-size: 0.92rem;
}

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(15, 87, 148, 0.12);
}

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

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(220, 227, 234, 0.74);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #fff 0%, #fff 68%, #fbfdff 100%);
  box-shadow: 0 16px 46px rgba(23, 32, 42, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.product-card:hover,
.product-card:focus {
  transform: translateY(-6px);
  border-color: rgba(15, 87, 148, 0.38);
  box-shadow: 0 28px 78px rgba(15, 87, 148, 0.16);
  outline: 0;
}

.product-card:hover::after,
.product-card:focus::after {
  transform: scaleX(1);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 250px;
  background:
    linear-gradient(142deg, #f1f6fb 0%, #ffffff 46%, #eef8f3 100%);
}

.product-media::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 28px;
  width: 220px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--red));
  opacity: 0.18;
  transform: rotate(-24deg);
}

.product-media img,
.product-card > img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 18px 24px rgba(23, 32, 42, 0.1));
}

.product-media a {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 250px;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.product-title-link {
  color: inherit;
}

.product-title-link:hover {
  color: var(--blue);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: var(--radius);
  background: rgba(33, 163, 107, 0.12);
  color: #126b48;
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
}

.product-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  display: -webkit-box;
  min-height: 4.25em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.specs li {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.84rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.price {
  font-size: 1.35rem;
  font-weight: 900;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.92rem;
}

.product-actions {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  margin-top: auto;
}

.add-button,
.secondary-card-button {
  width: 100%;
}

.secondary-card-button {
  background: #f8fbfd;
  color: var(--blue-deep);
}

.selection-section {
  padding-top: 50px;
}

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

.selection-grid article {
  min-height: 250px;
  padding: 24px;
  border-left: 5px solid var(--green);
  background: #fff;
}

.step-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--red);
  font-weight: 900;
}

.selection-grid h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.selection-grid p {
  margin: 0;
  color: var(--muted);
}

.info-band,
.callback-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 58px 24px;
}

.info-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.delivery-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-list li {
  position: relative;
  padding: 16px 16px 16px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-weight: 700;
}

.delivery-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(33, 163, 107, 0.14);
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
}

.product-copy p {
  font-size: 1.02rem;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.faq summary {
  cursor: pointer;
  padding: 16px;
  font-weight: 800;
}

.faq p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.callback-section {
  margin-bottom: 58px;
  background: var(--blue-deep);
  color: #fff;
}

.callback-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.lead-form,
.checkout-form {
  display: grid;
  gap: 14px;
}

.lead-form {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
}

.lead-form .field,
.checkout-form .field {
  color: var(--muted);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.full-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: #126b48;
  font-weight: 800;
}

.form-status.error {
  color: var(--red);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(150px, 0.42fr) minmax(340px, 0.9fr);
  align-items: start;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 24px 48px;
  color: var(--muted);
}

.site-footer > div {
  min-width: 0;
}

.footer-brand {
  margin-bottom: 10px;
  color: var(--ink);
}

.footer-links {
  display: grid;
  gap: 8px;
  justify-self: end;
  text-align: right;
}

.footer-callback {
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.footer-callback h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.15;
}

.footer-lead-form {
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(220, 227, 234, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 36px rgba(23, 32, 42, 0.08);
}

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

.footer-form-grid .field-full {
  grid-column: 1 / -1;
}

.footer-lead-form .field span {
  font-size: 0.78rem;
}

.footer-lead-form .field input,
.footer-lead-form .field textarea {
  min-height: 42px;
  padding: 11px 12px;
}

.footer-lead-form .field textarea {
  min-height: 72px;
  resize: vertical;
}

.footer-lead-form .consent {
  font-size: 0.78rem;
}

.product-page-main {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 34px 24px 58px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--blue-deep);
  font-weight: 800;
}

.product-page-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 26px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(220, 227, 234, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

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

.product-page-main-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 234, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 87, 148, 0.08), rgba(33, 163, 107, 0.08)),
    #fff;
}

.product-page-main-image img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: contain;
  padding: 18px;
}

.product-page-gallery-control {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(220, 227, 234, 0.95);
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.12);
  transform: translateY(-50%);
  font-size: 1.9rem;
  line-height: 1;
}

.product-page-gallery-prev {
  left: 12px;
}

.product-page-gallery-next {
  right: 12px;
}

.product-page-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.product-page-thumb {
  min-height: 72px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-page-thumb img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}

.product-page-thumb.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 87, 148, 0.12);
}

.product-page-info {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  min-width: 0;
  padding: 8px 2px;
}

.product-page-info h1 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.06;
}

.product-page-description {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.product-page-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-top: 22px;
}

.product-page-price strong {
  font-size: 2rem;
  line-height: 1;
}

.product-page-price span {
  color: var(--muted);
  text-decoration: line-through;
}

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

.product-page-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #126b48;
  font-weight: 800;
}

.product-page-section {
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(220, 227, 234, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.product-page-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.product-page-specs div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.product-page-specs dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.product-page-specs dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.product-page-footer {
  border-top: 1px solid rgba(220, 227, 234, 0.86);
}

.mobile-bar {
  display: none;
}

.cart-overlay,
.product-frame-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(15, 23, 32, 0.46);
}

.product-frame-overlay {
  z-index: 40;
  background: rgba(15, 23, 32, 0.58);
}

.cart-drawer,
.product-frame {
  position: fixed;
  background: #fff;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.cart-drawer {
  inset: 0 0 0 auto;
  z-index: 31;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(520px, 100vw);
  box-shadow: -26px 0 50px rgba(23, 32, 42, 0.18);
  transform: translateX(100%);
}

body.cart-open .cart-drawer {
  transform: translateX(0);
}

.product-frame {
  left: 50%;
  top: 50%;
  z-index: 41;
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(1040px, calc(100vw - 48px));
  max-height: calc(100dvh - 48px);
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.98);
  pointer-events: none;
}

body.product-open .product-frame {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.cart-head,
.frame-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
  font-size: 1.8rem;
}

.frame-head {
  align-items: center;
  padding: 16px 18px;
}

.frame-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(33, 163, 107, 0.12);
  color: #126b48;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.25rem;
  font-weight: 800;
}

.cart-body {
  overflow: auto;
  padding: 20px 24px 28px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.empty-cart {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--paper);
}

.wide-empty {
  grid-column: 1 / -1;
}

.cart-line {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-line img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--paper);
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

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

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-weight: 900;
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 800;
}

.cart-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 18px 0;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-total strong {
  font-size: 1.45rem;
}

.checkout-form h3 {
  margin: 0;
  font-size: 1.25rem;
}

.frame-content {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 0;
  overflow: auto;
}

.frame-media {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(33, 163, 107, 0.2), transparent 34%),
    linear-gradient(135deg, #eff6fb, #ffffff 48%, #edf7f0);
}

.gallery-main {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
}

.gallery-main img {
  width: min(100%, 480px);
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.gallery-control {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(220, 227, 234, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-deep);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.14);
}

.gallery-control:hover {
  border-color: var(--blue);
}

.gallery-control-prev {
  left: 0;
}

.gallery-control-next {
  right: 0;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  max-width: 100%;
  padding: 2px 2px 6px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

.gallery-thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 62px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  scroll-snap-align: start;
}

.gallery-thumb.is-active {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(15, 87, 148, 0.12);
}

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

.frame-details {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
}

.frame-details h2 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.08;
}

.frame-description {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.frame-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.frame-price strong {
  font-size: 2rem;
}

.frame-price span {
  color: var(--muted);
  text-decoration: line-through;
}

.frame-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.frame-specs div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfd;
}

.frame-specs dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.frame-specs dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.frame-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.frame-actions .product-page-link {
  grid-column: 1 / -1;
}

@media (max-width: 1080px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

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

  .catalog-promo {
    min-height: 170px;
  }

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

  .feature-strip,
  .premium-category-grid,
  .premium-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .page-hero,
  .showroom-section {
    grid-template-columns: 1fr;
  }

  .sport-collage {
    min-height: 440px;
  }

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

  .product-page-info {
    position: static;
  }

  .product-page-main-image {
    min-height: 340px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) minmax(150px, 0.42fr);
  }

  .footer-callback {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-top: var(--header-height);
    padding-bottom: 72px;
  }

  .header-inner {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    display: block;
    max-width: 118px;
    white-space: normal;
    line-height: 1.05;
  }

  .main-nav {
    display: none;
  }

  .header-actions,
  .phone-link,
  .ghost-button {
    display: none;
  }

  .hero {
    min-height: 76dvh;
  }

  .store-hero {
    min-height: 72dvh;
  }

  .store-hero::before {
    right: -24vw;
    bottom: 18%;
    width: 80vw;
  }

  .store-hero::after {
    right: -6vw;
    bottom: 11%;
    width: 62vw;
  }

  .hero-image {
    object-position: 62% center;
  }

  .store-hero-image {
    object-position: 62% center;
  }

  .hero-content {
    width: min(360px, calc(100% - 48px));
    margin-left: 16px;
    padding: 54px 0;
  }

  .hero h1 {
    font-size: 3.05rem;
  }

  .store-hero-content {
    width: auto;
    margin-right: 16px;
    margin-left: 16px;
    padding: 58px 0;
  }

  .store-hero h1 {
    font-size: 2.55rem;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-lead {
    font-size: 1rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .feature-strip {
    margin-top: 0;
    padding: 16px;
  }

  .page-hero {
    padding: 34px 16px 22px;
  }

  .page-hero-copy,
  .page-hero-panel {
    padding: 22px;
  }

  .page-hero h1 {
    font-size: 2.45rem;
    line-height: 1.04;
    overflow-wrap: normal;
    word-break: normal;
  }

  .page-hero-panel {
    min-height: 180px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .category-band {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 12px;
    padding: 16px;
    scroll-snap-type: x proximity;
  }

  .category-tile {
    min-width: 210px;
    min-height: 86px;
    scroll-snap-align: start;
  }

  .catalog-toolbar,
  .selection-grid,
  .info-band,
  .seo-section,
  .callback-section,
  .site-footer,
  .frame-content {
    grid-template-columns: 1fr;
  }

  .premium-step-grid,
  .premium-info-grid,
  .premium-category-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 16px;
  }

  .showroom-media.is-product {
    padding: 18px;
  }

  .showroom-media img,
  .showroom-media.is-product img {
    min-height: 300px;
  }

  .sport-collage {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
  }

  .sport-collage-stack {
    grid-template-columns: 1fr 1fr;
  }

  .sport-collage-main {
    min-height: 280px;
  }

  .section-heading h2,
  .catalog-copy h2,
  .info-copy h2,
  .product-copy h2,
  .callback-copy h2 {
    font-size: 1.8rem;
  }

  .catalog-copy,
  .catalog-toolbar {
    padding: 16px;
  }

  .catalog-toolbar {
    top: calc(var(--header-height) + 8px);
  }

  .product-page-main {
    padding: 24px 16px 48px;
  }

  .product-page-shell,
  .product-page-section {
    padding: 16px;
  }

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

  .product-page-main-image {
    min-height: 300px;
  }

  .info-band,
  .callback-section {
    padding: 44px 16px;
  }

  .footer-links {
    justify-self: start;
    text-align: left;
  }

  .footer-callback {
    max-width: none;
    justify-self: stretch;
  }

  .product-frame {
    inset: auto 0 0 0;
    top: auto;
    left: 50%;
    right: auto;
    width: min(360px, calc(100vw - 16px));
    max-height: 92dvh;
    overflow-x: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    transform: translate(-50%, 100%);
  }

  body.product-open .product-frame {
    transform: translate(-50%, 0);
  }

  .frame-content {
    overflow: auto;
  }

  .frame-media {
    padding: 18px;
  }

  .frame-details {
    padding: 22px 18px 28px;
  }

  .frame-details h2 {
    font-size: 1.7rem;
  }

  .mobile-bar {
    position: fixed;
    left: 12px;
    right: auto;
    bottom: 12px;
    z-index: 28;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: min(366px, calc(100vw - 24px));
    padding: 8px;
    border: 1px solid rgba(220, 227, 234, 0.9);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 42px rgba(23, 32, 42, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-bar a,
  .mobile-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 42px;
    border: 0;
    border-radius: var(--radius);
    background: #f3f7fa;
    color: var(--ink);
    overflow: hidden;
    font-size: 0.92rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .mobile-bar button:nth-child(2) {
    background: var(--blue);
    color: #fff;
  }
}

@media (max-width: 620px) {
  .store-hero-content {
    max-width: 340px;
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .brand-text {
    max-width: 126px;
    line-height: 1.05;
  }

  .cart-trigger span:not(.cart-count):not(.cart-icon) {
    display: none;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .product-actions,
  .frame-actions,
  .price-row,
  .product-top,
  .site-footer {
    display: grid;
  }

  .footer-form-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip div:first-child,
  .feature-strip div:last-child {
    border-radius: var(--radius);
  }

  .sport-collage-stack {
    grid-template-columns: 1fr;
  }

  .sport-collage-main {
    min-height: 230px;
  }

  .sport-collage-stack img {
    min-height: 176px;
  }

  .product-media {
    min-height: 210px;
  }

  .cart-drawer {
    width: 100vw;
  }

  .cart-head,
  .cart-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-line {
    grid-template-columns: 64px 1fr;
  }

  .cart-line img {
    width: 64px;
    height: 64px;
  }

  .qty-row,
  .frame-specs,
  .product-page-actions,
  .product-page-specs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-page-price {
    display: grid;
    gap: 8px;
  }

  .product-page-main-image {
    min-height: 244px;
  }

  .product-page-gallery-control {
    width: 38px;
    height: 38px;
  }

  .product-page-thumbs {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .product-page-thumb {
    min-width: 82px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .store-hero h1,
  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
  }

  .section-heading h2,
  .catalog-copy h2,
  .info-copy h2,
  .product-copy h2,
  .callback-copy h2 {
    font-size: 1.55rem;
  }

  .product-page-main {
    padding-right: 12px;
    padding-left: 12px;
  }

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

  .product-page-price strong {
    font-size: 1.7rem;
  }

  .mobile-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}
