:root {
  --bg: #f5f5f2;
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(17, 19, 23, 0.08);
  --text: #111317;
  --muted: #68717c;
  --accent: #111317;
  --shadow: 0 28px 70px rgba(17, 19, 23, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(17, 19, 23, 0.04), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfa 52%, #f3f3f1 100%);
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", "Segoe UI", sans-serif;
}

body.has-layer {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header .shell {
  width: min(1240px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17, 19, 23, 0.06);
  box-shadow: 0 10px 30px rgba(17, 19, 23, 0.05);
}

.header-main {
  background: transparent;
  color: var(--text);
}

.header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 62px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.03);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
}

.menu-toggle svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.header-row .brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 2px 0;
  gap: 0;
}

.header-row .brand img {
  width: clamp(92px, 10vw, 136px);
  max-width: min(28vw, 136px);
  height: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.03);
  border: 1px solid rgba(17, 19, 23, 0.06);
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.header-nav::-webkit-scrollbar {
  display: none;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.header-link:hover {
  color: var(--text);
  background: rgba(17, 19, 23, 0.04);
}

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

.header-action,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
}

.header-action {
  color: var(--text);
  background: rgba(17, 19, 23, 0.04);
  border-color: rgba(17, 19, 23, 0.04);
}

.header-cta {
  background: var(--text);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(17, 19, 23, 0.15);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17, 19, 23, 0.06);
  box-shadow: 0 10px 28px rgba(17, 19, 23, 0.05);
}

.topbar-row {
  min-height: 60px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 2px 0;
}

.brand > img {
  width: clamp(62px, 7vw, 84px);
  max-width: min(18vw, 84px);
  height: auto;
  flex: none;
  object-fit: contain;
}

.brand-page-logo {
  padding: 0;
  line-height: 0;
}

.brand-page-logo > img {
  width: auto !important;
  max-width: 88px !important;
  height: 18px !important;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 23, 0.05);
}

.brand-mark img {
  width: 74%;
  height: 74%;
  object-fit: contain;
}

.brand-copy small,
.brand-copy strong {
  display: block;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-copy strong {
  margin-top: 2px;
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.03);
  border: 1px solid rgba(17, 19, 23, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.topnav::-webkit-scrollbar {
  display: none;
}

.topnav a,
.button,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.topnav a {
  color: var(--muted);
}

.topnav a:hover {
  background: rgba(17, 19, 23, 0.04);
  color: var(--text);
}

.button {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(17, 19, 23, 0.14);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--line);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-section {
  padding: 22px 0 26px;
}

.hero {
  padding: 56px 0 28px;
}

.hero-panel,
.product-hero {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 28px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.05);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.product-copy h1 {
  margin: 16px 0 10px;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.1em;
}

.hero-copy p,
.product-copy p,
.section-head p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.8;
}

.hero-stats,
.product-meta-grid,
.feature-grid,
.spec-grid {
  display: grid;
  gap: 14px;
}

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.stat-card,
.feature-card,
.spec-card,
.product-card,
.sticky-card,
.section-card {
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(17, 19, 23, 0.06);
}

.stat-card,
.feature-card,
.spec-card,
.section-card {
  padding: 20px;
}

.stat-card strong,
.feature-card strong,
.spec-card strong {
  display: block;
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.stat-card span,
.feature-card p,
.spec-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.hero-visual,
.product-visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(17, 19, 23, 0.05), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 243, 244, 0.92));
  overflow: hidden;
}

.hero-visual img,
.product-visual img {
  width: min(100%, 460px);
  height: min(100%, 460px);
  object-fit: contain;
}

.product-visual {
  min-height: 460px;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: var(--product-image);
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(0.9);
  transform: scale(1.12);
  opacity: 0.54;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
}

.product-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  z-index: 1;
}

.section {
  padding: 28px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 22px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

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

.catalog-card {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(17, 19, 23, 0.06);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card:hover {
  box-shadow: 0 18px 36px rgba(17, 19, 23, 0.06);
}

.catalog-media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  border-radius: 28px 28px 20px 20px;
  background: linear-gradient(180deg, rgba(236, 238, 241, 1), rgba(224, 227, 231, 0.98));
}

.catalog-media::before {
  content: "";
  position: absolute;
  inset: -10%;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  filter: blur(28px) saturate(0.9);
  transform: scale(1.12);
  opacity: 0.58;
}

.catalog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
}

.catalog-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  transform: scale(1.08);
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 14px;
}

.catalog-copy {
  min-width: 0;
}

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

.catalog-copy strong {
  font-size: 1rem;
  letter-spacing: -0.04em;
}

.catalog-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.catalog-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.05);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.catalog-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #111317;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
}

.tag,
.variant-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.05);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.product-story {
  display: grid;
  gap: 18px;
}

.sticky-card {
  position: sticky;
  top: 104px;
  padding: 22px;
}

.product-price-big {
  margin: 14px 0 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.variant-list label {
  cursor: pointer;
}

.variant-list input {
  display: none;
}

.variant-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(17, 19, 23, 0.04);
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
}

.variant-list input:checked + span {
  background: #111317;
  border-color: #111317;
  color: #ffffff;
}

.helper {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.feedback {
  min-height: 22px;
  color: #0a8b58;
  font-size: 0.9rem;
}

.layer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 19, 23, 0.28);
  backdrop-filter: blur(10px);
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 90;
  width: min(420px, calc(100vw - 22px));
  padding: 16px 0 16px 16px;
}

.side-menu-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border-radius: 0 34px 34px 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: 0 34px 80px rgba(17, 19, 23, 0.18);
}

.side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.side-menu-head strong {
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.side-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 50%;
  background: rgba(17, 19, 23, 0.04);
  color: var(--text);
  font-size: 1rem;
  font-weight: 900;
}

.menu-stack {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
}

.menu-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  text-align: left;
}

.menu-item-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(17, 19, 23, 0.05);
  color: var(--text);
}

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

.menu-item-copy {
  min-width: 0;
}

.menu-item-copy strong,
.menu-item-copy small {
  display: block;
}

.menu-item-copy strong {
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.menu-item-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.menu-item-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.05);
  border: 1px solid rgba(17, 19, 23, 0.06);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: min(460px, calc(100vw - 18px));
  padding: 16px 16px 16px 0;
}

.cart-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border-radius: 34px 0 0 34px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 19, 23, 0.08);
  box-shadow: 0 34px 80px rgba(17, 19, 23, 0.18);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-head h3 {
  margin: 14px 0 0;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.08em;
}

.cart-feedback {
  min-height: 20px;
}

.cart-items {
  flex: 1;
  display: grid;
  gap: 12px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 22px;
  background: rgba(17, 19, 23, 0.03);
}

.cart-item-thumb {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 19, 23, 0.06);
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-copy strong,
.cart-item-copy span {
  display: block;
}

.cart-item-copy strong {
  font-size: 0.94rem;
  letter-spacing: -0.03em;
}

.cart-item-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-item-side {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-qty button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17, 19, 23, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font-weight: 900;
}

.cart-qty span {
  min-width: 18px;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 800;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: underline;
}

.cart-empty {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 34px;
  border-radius: 28px;
  background: rgba(17, 19, 23, 0.03);
  text-align: center;
}

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

.cart-footer {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.cart-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.cart-summary-line.total {
  color: var(--text);
}

.cart-summary-line strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.cart-checkout {
  width: 100%;
}

.mini-cart {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(17, 19, 23, 0.98);
  color: #ffffff;
  box-shadow: 0 22px 44px rgba(17, 19, 23, 0.22);
  border: 0;
  text-align: left;
}

.mini-cart strong,
.mini-cart span {
  display: block;
}

.mini-cart strong {
  font-size: 0.96rem;
  letter-spacing: -0.03em;
}

.mini-cart span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.site-footer {
  padding: 8px 0 92px;
}

.site-footer-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.7fr) minmax(240px, 0.85fr);
  gap: 18px;
  padding: 24px;
  border-radius: 36px;
  background: linear-gradient(145deg, #0d1014, #171c23 58%, #0f1216);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(17, 19, 23, 0.14);
}

.site-footer-shell::before {
  content: "";
  position: absolute;
  inset: auto -80px -110px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 72%);
  pointer-events: none;
}

.site-footer-brand,
.site-footer-column,
.site-footer-note {
  position: relative;
  z-index: 1;
}

.site-footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
}

.site-footer-brand small,
.site-footer-column small {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer-brand strong {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.site-footer-brand p {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

.site-footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer-chips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer-links,
.site-footer-contact {
  display: grid;
  gap: 10px;
}

.site-footer-links a,
.site-footer-contact a,
.site-footer-contact span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.62;
}

.site-footer-links a:hover,
.site-footer-contact a:hover {
  color: #ffffff;
}

.site-footer-note {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.8rem;
}

@media (max-width: 1100px) {
  .hero-panel,
  .product-hero,
  .product-layout {
    grid-template-columns: 1fr;
  }

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

  .sticky-card {
    position: static;
  }

  .site-footer-shell {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 30px;
  }
}

@media (max-width: 780px) {
  .topbar-row {
    grid-template-columns: 1fr auto;
  }

  .topnav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 14px;
  }

  .site-footer {
    padding: 4px 0 88px;
  }

  .site-footer-shell {
    padding: 18px;
    border-radius: 24px;
  }

  .site-footer-brand strong {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .site-footer-note {
    font-size: 0.76rem;
  }

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

  .brand > img {
    width: min(15vw, 72px);
  }

  .brand-page-logo > img {
    max-width: 78px !important;
    height: 16px !important;
  }

  .hero-visual,
  .product-visual {
    min-height: 320px;
  }
}

@media (max-width: 860px) {
  .header-row {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 74px;
  }

  .header-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 12px;
  }

  .header-left {
    min-width: 0;
  }

  .header-actions {
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 24px);
  }

  .site-header .shell {
    width: calc(100% - 22px);
  }

  .menu-toggle span {
    display: none;
  }

  .header-action,
  .header-cta {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.88rem;
  }

  .brand > img {
    width: min(18vw, 64px);
  }

  .brand-page-logo > img {
    max-width: 72px !important;
    height: 15px !important;
  }

  .topnav a,
  .button,
  .button-ghost {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero-panel,
  .product-hero,
  .sticky-card,
  .section-card,
  .feature-card,
  .spec-card,
  .stat-card,
  .product-card {
    border-radius: 24px;
  }

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

  .section-head {
    display: grid;
  }

  .catalog-meta {
    display: grid;
    justify-items: start;
  }

  .mini-cart {
    left: 12px;
    right: 12px;
    justify-content: space-between;
  }

  .cart-drawer {
    width: min(460px, 100vw);
    padding: 0;
  }

  .cart-panel {
    border-radius: 28px 0 0 28px;
  }

  .side-menu {
    width: min(420px, 100vw);
    padding: 0;
  }

  .side-menu-panel {
    border-radius: 0 28px 28px 0;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-side {
    justify-items: start;
  }
}

@media (max-width: 430px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}
