*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #121212;
  --bg4: #181818;
  --surface: rgba(255,255,255,0.03);
  --surface2: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.10);
  --primary: #f2f2f2;
  --text: #f2f2f2;
  --muted: #888;
  --muted2: #555;
  --accent: #e53e3e;
  --warning: #f6c90e;
  --danger: #e53e3e;
  --blue: #60a5fa;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 8px;
  --radius-pill: 999px;
  --nav-h: 58px;
  --ease: 0.18s ease;
  --max-w: 1520px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

footer {
  margin-top: auto;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.section-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-wrap--home {
  max-width: 1600px;
}

.section {
  padding: 88px 0;
}

.section--tight-top {
  padding-top: 24px;
}

.section--products-page {
  padding-top: 24px;
  padding-bottom: 88px;
}

.section--checkout {
  padding-top: 32px;
  padding-bottom: 56px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 12px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-logo span {
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--accent);
  background: var(--surface2);
}

.currency-picker {
  position: relative;
  margin: 0 4px;
}

.currency-picker-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.06em;
  transition: color var(--ease), border-color var(--ease), background var(--ease);
  white-space: nowrap;
  cursor: pointer;
}

.currency-picker-btn:hover,
.currency-picker.open .currency-picker-btn {
  color: #fff;
  border-color: var(--border2);
  background: var(--surface2);
}

.currency-picker-symbol {
  color: #fff;
}

.currency-picker-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.currency-picker.open .currency-picker-chevron {
  transform: rotate(180deg);
}

.currency-picker-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 200px;
  background: #131313;
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 300;
  pointer-events: none;
}

.currency-picker.open .currency-picker-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.currency-picker-search-wrap {
  padding: 10px 10px 4px;
}

.currency-picker-search {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  color: #fff;
  font-size: 12px;
  font-family: inherit;
  padding: 6px 10px;
  outline: none;
  transition: border-color var(--ease);
}

.currency-picker-search::placeholder {
  color: var(--muted2);
}

.currency-picker-search:focus {
  border-color: var(--border2);
}

.currency-picker-list {
  max-height: 220px;
  overflow-y: auto;
  padding: 4px 6px 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
}

.currency-picker-list::-webkit-scrollbar {
  width: 4px;
}

.currency-picker-list::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}

.currency-picker-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 7px 10px;
  border-radius: var(--radius-xs);
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}

.currency-picker-option:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.currency-picker-option.active {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.cpo-symbol {
  width: 22px;
  text-align: right;
  font-weight: 700;
  color: #fff;
  font-size: 12px;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  margin-left: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--ease), border-color var(--ease);
}

.cart-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--border2);
}

.cart-count {
  background: #fff;
  color: #000;
  font-size: 9px;
  font-weight: 900;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: var(--radius-xs);
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 4px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: transform 0.15s, opacity 0.15s;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: none;
}

.btn-primary:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), transform 0.15s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn-secondary--sm {
  padding: 10px 18px;
  font-size: 11px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 18px;
  background: transparent;
  border: 1px solid var(--border2);
  color: rgba(255,255,255,0.74);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
}

.btn-ghost:hover {
  background: var(--surface2);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}

.btn-ghost--sm {
  padding: 9px 15px;
  font-size: 10px;
}

.btn-full {
  width: 100%;
}

.btn-text {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--ease);
  font-family: inherit;
  padding: 0;
}

.btn-text:hover {
  color: #fff;
}

.btn-remove {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}

.btn-remove:hover {
  opacity: 0.7;
}

.btn-continue {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  transition: color var(--ease);
}

.btn-continue:hover {
  color: #fff;
}

.home-hero {
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 820px 420px at 68% 8%, rgba(229,62,62,0.06) 0, transparent 60%),
    radial-gradient(ellipse 620px 280px at 18% 84%, rgba(96,165,250,0.04) 0, transparent 58%),
    linear-gradient(180deg, var(--bg2) 0, var(--bg) 100%);
}

.home-hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.022;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.home-hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100dvh - var(--nav-h));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
  padding: 46px 0 70px;
}

.home-hero-copy {
  max-width: 620px;
}

.hero-eyebrow,
.section-eyebrow {
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 12px;
}

.live-dot-wrap {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%,100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.home-h1 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 8ch;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted2);
}

.hero-trust-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-divider {
  width: 1px;
  height: 12px;
  background: var(--border);
}

.home-hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.hero-main-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.22s, border-color 0.22s, background 0.22s;
}

.hero-main-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  background: var(--surface2);
}

.hero-main-media {
  aspect-ratio: 1 / 1;
  background: var(--bg3);
  overflow: hidden;
  position: relative;
}

.hero-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-main-info {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-main-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero-main-title {
  font-size: 28px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero-main-price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-side-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-side-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.hero-side-item:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
  background: var(--surface2);
}

.hero-side-thumb {
  width: 92px;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg3);
}

.hero-side-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-side-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-side-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.hero-side-price {
  font-size: 13px;
  font-weight: 800;
  color: rgba(255,255,255,0.8);
}

.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 52px) 0 44px;
  overflow: hidden;
}

.page-hero--sm {
  padding-bottom: 28px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 50% -20%, rgba(255,255,255,0.04) 0, transparent 60%),
    linear-gradient(180deg, var(--bg2) 0, var(--bg) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(44px, 7.5vw, 90px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e8e8e8, #a0a0a0 50%, #888888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.page-hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 520px;
  margin-top: 8px;
}

.page-hero--compact {
  padding: calc(var(--nav-h) + 26px) 0 22px;
  border-bottom: 1px solid var(--border);
}

.page-hero--compact .page-hero-bg {
  display: none;
}

.page-hero--compact .page-hero-title {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
  background-clip: initial;
  margin-bottom: 4px;
}

.page-hero--compact .page-hero-desc {
  font-size: 13px;
  color: var(--muted);
  max-width: 640px;
  margin-top: 2px;
}

.section-title {
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.section-cta-row {
  text-align: center;
  margin-top: 36px;
}

.category-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.category-btn {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: inherit;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
}

.category-btn:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
  border-color: var(--border2);
}

.category-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.products-grid {
  display: grid;
}

.products-grid--featured {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.products-grid--shop {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.products-grid--products-page {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.products-grid--home-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.products-grid--home-explore {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color var(--ease), transform 0.22s, background var(--ease);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.14), transparent);
  z-index: 1;
}

.product-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  background: var(--surface2);
}

.product-card-img {
  width: 100%;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
  aspect-ratio: 1;
}

.product-card--large .product-card-img {
  aspect-ratio: 4 / 5;
}

.product-card--home .product-card-img {
  aspect-ratio: 1 / 1.08;
}

.product-card--products-page .product-card-img {
  aspect-ratio: 1 / 1.08;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  opacity: 0;
  transition: opacity 0.22s;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
}

.product-card-info {
  padding: 15px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.product-card--products-page .product-card-info {
  padding: 15px 16px 16px;
}

.product-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.product-card-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.product-card-price {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}

.product-card-price-range {
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

.product-card-shipping-note {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-tile {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.022);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.product-tile:hover {
  transform: translateY(-3px);
  border-color: var(--border2);
  background: var(--surface);
}

.product-tile-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg3);
  position: relative;
}

.product-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.product-tile:hover .product-tile-media img {
  transform: scale(1.04);
}

.product-tile-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 13px 14px 14px;
}

.product-tile-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.product-tile-price {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.76);
}

.product-hero {
  padding: calc(var(--nav-h) + 24px) 0 14px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  transition: color var(--ease);
}

.back-link:hover {
  color: #fff;
}

.product-detail {
  padding: 20px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  position: relative;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.15s;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.active {
  border-color: rgba(255,255,255,0.45);
}

.product-detail-eyebrow {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted2);
  margin-bottom: 6px;
}

.product-detail-name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 18px;
}

.product-price-block {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.product-price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.product-detail-price {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}

.product-price-note {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-price-shipping-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted2);
}

.product-price-shipping-note svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.product-description {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.variant-section {
  margin-bottom: 18px;
}

.variant-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 10px;
}

.variant-selected-val {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.color-options,
.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.color-btn,
.size-btn {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}

.color-btn:hover,
.size-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border2);
  color: #fff;
}

.color-btn.active,
.size-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.quantity-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.quantity-wrap--sm {
  min-width: 148px;
  transform-origin: left center;
}

.qty-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.04);
  border: none;
  color: #fff;
  font-size: 17px;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  cursor: pointer;
  flex-shrink: 0;
}

.qty-btn:hover {
  background: rgba(255,255,255,0.09);
}

.qty-input {
  width: 54px;
  height: 42px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.atc-row {
  margin-top: 4px;
}

.btn-atc {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 16px 28px;
}

.product-trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}

.trust-item svg {
  flex-shrink: 0;
  opacity: 0.55;
}

.cart-page-wrap {
  max-width: 1220px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(360px, 440px);
  gap: 36px;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 22px;
}

.cart-item-img {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.cart-item-variant {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.cart-item-price {
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  font-weight: 600;
  margin-top: 2px;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 120px;
}

.cart-item-total {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.cart-summary,
.checkout-summary {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}

.cart-summary-inner {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
}

.cart-summary-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 18px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.cart-summary-row--total {
  font-weight: 900;
  color: #fff;
  font-size: 16px;
}

.cart-summary-row--note {
  font-size: 11px;
  color: var(--muted);
}

.cart-summary-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 0;
}

.cart-empty-state {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 24px;
}

.cart-empty-title {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
}

.cart-empty-text {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.cart-empty-btn {
  margin-top: 28px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.checkout-block-title {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 14px;
}

.address-display {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.address-display p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.shipping-option:has(input:checked) {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
}

.shipping-option input[type="radio"] {
  accent-color: #fff;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.shipping-option-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.shipping-option-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.shipping-option-eta {
  font-size: 11px;
  color: var(--muted);
}

.shipping-option-price {
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.checkout-item:last-child {
  border-bottom: none;
}

.checkout-item-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg3);
  flex-shrink: 0;
}

.checkout-item-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.checkout-item-qty {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.checkout-item-price {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.checkout-note {
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.6;
}

.checkout-page-wrap {
  max-width: 1220px;
}

.checkout-shopify {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: start;
}

.checkout-form-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}

.checkout-summary-col {
  min-width: 0;
}

.checkout-summary-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.form-section {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.form-section:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.form-section-head {
  margin-bottom: 16px;
}

.form-section-title {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.form-label-optional {
  font-weight: 500;
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.form-input::placeholder {
  color: var(--muted2);
}

.form-input:focus {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.shipping-methods-empty {
  font-size: 13px;
  color: var(--muted);
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed var(--border2);
  border-radius: var(--radius-sm);
  line-height: 1.6;
}

.checkout-submit-btn {
  margin-top: 22px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.summary-item-img {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}

.summary-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-item-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  background: rgba(255,255,255,0.85);
  color: #08120f;
  font-size: 10px;
  font-weight: 900;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.summary-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.summary-item-name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.summary-item-variant {
  font-size: 11px;
  color: var(--muted);
}

.summary-item-price {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.complete-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.complete-icon {
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.complete-card h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 42px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 10px;
}

.complete-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 28px;
}

.order-detail-block {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 24px;
  text-align: left;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}

.order-detail-row:last-child {
  border-bottom: none;
}

.order-detail-row span:last-child {
  font-weight: 700;
  color: #fff;
}

.order-id-mono {
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.02em;
}

.complete-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.status-pending {
  background: rgba(246,201,14,0.1);
  border: 1px solid rgba(246,201,14,0.2);
  color: var(--warning);
}

.status-in-production {
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.2);
  color: var(--blue);
}

.status-cancelled {
  background: rgba(229,62,62,0.08);
  border: 1px solid rgba(229,62,62,0.18);
  color: var(--danger);
}

.status-shipped,
.status-delivered {
  background: rgba(229,62,62,0.1);
  border: 1px solid rgba(229,62,62,0.2);
  color: var(--accent);
}

.alert {
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.alert a {
  text-decoration: underline;
}

.alert-error {
  background: rgba(229,62,62,0.07);
  border: 1px solid rgba(229,62,62,0.18);
  color: var(--danger);
}

.alert-warn {
  background: rgba(246,201,14,0.07);
  border: 1px solid rgba(246,201,14,0.18);
  color: var(--warning);
}

.empty-state {
  text-align: center;
  padding: 80px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-trust-strip {
  padding-top: 0;
  padding-bottom: 72px;
}

.trust-strip-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-strip-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
}

.trust-strip-item svg {
  flex-shrink: 0;
  opacity: 0.45;
}

.trust-strip-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-strip-item strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.trust-strip-item span {
  font-size: 11px;
  color: var(--muted);
}

.trust-strip-divider {
  width: 1px;
  background: var(--border);
}

.home-banner {
  padding-top: 34px;
  padding-bottom: 88px;
}

.home-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: stretch;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 34px;
}

.home-banner-title {
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 12px;
}

.home-banner-desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.56);
}

.home-banner-points,
.home-banner-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-point,
.home-stat {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.home-point-title,
.home-stat-val {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}

.home-point-desc,
.home-stat-label {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}

.section-cta-block {
  border-top: 1px solid var(--border);
  padding-top: 60px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.section-cta-block-text h2 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  color: #fff;
  letter-spacing: -0.01em;
}

.section-cta-block-text p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  margin-top: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-brand {
  max-width: 240px;
  flex-shrink: 0;
}

.footer-logo {
  margin-bottom: 12px;
  display: inline-flex;
}

.footer-brand-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color var(--ease), border-color var(--ease);
}

.footer-social-link:hover {
  color: #fff;
  border-color: var(--border2);
}

.footer-links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 2px;
}

.footer-col a {
  font-size: 12px;
  color: var(--muted);
  transition: color var(--ease);
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--muted2);
  width: 100%;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 1280px) {
  .home-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
  }

  .home-hero-copy {
    max-width: 760px;
  }

  .home-hero-showcase {
    grid-template-columns: 1fr;
  }

  .hero-side-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-side-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-side-thumb {
    width: 100%;
  }

  .products-grid--home-featured,
  .products-grid--home-explore,
  .products-grid--products-page {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .products-grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-banner-inner {
    padding: 30px;
    gap: 24px;
  }

  .products-grid--products-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section-wrap {
    padding: 0 20px;
  }

  .section {
    padding: 68px 0;
  }

  .home-h1 {
    font-size: clamp(42px, 9vw, 70px);
  }

  .hero-desc {
    font-size: 15px;
  }

  .hero-side-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-grid--home-featured,
  .products-grid--home-explore,
  .products-grid--shop,
  .products-grid--products-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-banner-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cart-layout,
  .checkout-shopify {
    grid-template-columns: 1fr;
  }

  .cart-summary,
  .checkout-summary-sticky {
    position: static;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group--full {
    grid-column: 1 / -1;
  }

  .trust-strip-inner {
    flex-direction: column;
  }

  .trust-strip-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 54px;
  }

  nav {
    padding: 0 16px;
  }

  .section-wrap {
    padding: 0 16px;
  }

  .section {
    padding: 52px 0;
  }

  .section--products-page {
    padding-top: 18px;
    padding-bottom: 56px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 0;
    z-index: 190;
    display: none;
  }

  .nav-links.nav-links--open {
    display: flex;
  }

  .nav-link {
    padding: 12px 20px;
    width: 100%;
    border-radius: 0;
    font-size: 12px;
  }

  .nav-hamburger {
    display: flex;
  }

  .currency-picker-btn .currency-picker-code {
    display: none;
  }

  .products-grid--featured {
    grid-template-columns: 1fr;
  }

  .products-grid,
  .products-grid--shop,
  .products-grid--home-featured,
  .products-grid--home-explore,
  .products-grid--products-page {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cart-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .cart-item-img {
    width: 88px;
    height: 88px;
    border-radius: 14px;
  }

  .cart-item-qty,
  .cart-item-right {
    grid-column: 2 / 3;
  }

  .cart-item-qty {
    justify-content: flex-start;
  }

  .cart-item-right {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cart-item-name {
    font-size: 18px;
  }

  .cart-item-total {
    font-size: 18px;
  }

  .product-trust-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-links {
    gap: 28px;
  }

  .complete-card {
    padding: 28px 18px;
  }
}

@media (max-width: 640px) {
  .home-hero-grid {
    gap: 28px;
    padding-bottom: 54px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-trust-strip {
    gap: 10px;
  }

  .trust-divider {
    display: none;
  }

  .hero-side-list {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 28px;
  }

  .home-banner {
    padding-top: 20px;
    padding-bottom: 64px;
  }
}

@media (max-width: 480px) {
  .home-h1 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .category-bar {
    gap: 4px;
  }

  .category-btn {
    padding: 6px 12px;
    font-size: 10px;
  }

  .home-banner-inner {
    padding: 24px 20px;
  }
}
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.7);
}

.pill svg {
  color: var(--accent);
  flex-shrink: 0;
}

.faq-section {
  margin-top: 40px;
  padding: 32px 0 0;
  border-top: 1px solid var(--border);
}

.faq-section-head {
  max-width: 640px;
  margin-bottom: 20px;
}

.faq-section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.faq-section-copy {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.faq-item:hover {
  border-color: var(--border2);
}

.faq-item[open] {
  border-color: rgba(229,62,62,0.26);
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.faq-question {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 12px;
  width: 100%;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text);
}

.faq-question-num {
  color: var(--accent);
  font-weight: 800;
  margin-right: 0;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  transition: transform 0.18s ease;
}

.faq-item[open] .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 0 18px 18px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
}

.checkout-trust-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.checkout-trust-block .trust-pills {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .faq-question {
    padding: 14px 16px;
    font-size: 13px;
    gap: 12px;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 12px;
  }

  .faq-section {
    margin-top: 28px;
    padding-top: 24px;
  }
}

.summary-trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.summary-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.summary-trust-item svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 1px;
}

.summary-trust-item-body {
  min-width: 0;
}

.summary-trust-item-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
}

.summary-trust-item-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 2px;
}

.section-divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

.mini-page-title {
  padding: calc(var(--nav-h) + 24px) 0 20px;
  border-bottom: 1px solid var(--border);
}

.mini-page-title-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.mini-page-title h1 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.mini-page-title-meta {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.cart-table-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 100px;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.cart-table-head span {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.cart-table-head span:nth-child(2) {
  text-align: center;
}

.cart-table-head span:nth-child(3) {
  text-align: right;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px 100px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.cart-row:last-child {
  border-bottom: none;
}

.cart-row-product {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.cart-row-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}

.cart-row-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-row-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cart-row-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.cart-row-variant {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.cart-row-price {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.cart-row-qty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-row-total-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.cart-row-total {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cart-table-head {
    display: none;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .cart-row-qty {
    justify-content: flex-start;
  }

  .cart-row-total-col {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cart-row-remove {
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  font-family: inherit;
  align-self: flex-start;
  transition: color 0.15s;
}

.cart-row-remove:hover {
  color: var(--danger);
}

.complete-icon--warning {
  color: var(--warning);
}

.complete-icon--danger {
  color: var(--danger);
}

.faq-question-num {
  color: var(--accent);
  font-weight: 800;
  margin-right: 2px;
}

.worry-free-box {
  display: flex;
  gap: 12px;
  padding: 16px;
  margin-bottom: 20px;
  background: rgba(229,62,62,0.05);
  border: 1px solid rgba(229,62,62,0.18);
  border-radius: var(--radius-sm);
}

.worry-free-checkbox-wrap {
  flex-shrink: 0;
  padding-top: 2px;
}

.worry-free-checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
}

.worry-free-body {
  min-width: 0;
  flex: 1;
}

.worry-free-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.worry-free-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

.worry-free-title svg {
  color: var(--accent);
  flex-shrink: 0;
}

.worry-free-price {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}

.worry-free-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.worry-free-coverage-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}

.worry-free-coverage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.worry-free-coverage-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.worry-free-coverage-list svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 640px) {
  .worry-free-box {
    padding: 14px;
  }
}

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

.form-hint-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.color-btn.is-sold-out,
.size-btn.is-sold-out {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.color-btn.is-sold-out:hover,
.size-btn.is-sold-out:hover {
  border-color: var(--border);
  background: var(--surface);
}

.sold-out-tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--danger);
  text-decoration: none;
  margin-left: 4px;
}

.sold-out-notice {
  font-size: 12px;
  color: var(--danger);
  margin-top: 8px;
  font-weight: 600;
}

.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}

.stock-badge--sm {
  top: 8px;
  left: 8px;
  padding: 4px 9px;
  font-size: 9px;
}

.stock-badge--out {
  background: rgba(8,8,8,0.82);
  border: 1px solid rgba(229,62,62,0.35);
  color: var(--danger);
}

.stock-badge--low {
  background: rgba(8,8,8,0.82);
  border: 1px solid rgba(246,201,14,0.35);
  color: var(--warning);
}

.stock-badge--inline {
  position: static;
  display: inline-flex;
  margin: 10px 0 4px;
  backdrop-filter: none;
}

.stock-badge--out.stock-badge--inline {
  background: rgba(229,62,62,0.08);
}

.stock-badge--low.stock-badge--inline {
  background: rgba(246,201,14,0.08);
}

.stock-badge--in {
  background: rgba(8,8,8,0.82);
  border: 1px solid rgba(229,62,62,0.35);
  color: var(--accent);
}

.stock-badge--in.stock-badge--inline {
  background: rgba(229,62,62,0.08);
}

.is-hidden {
  display: none;
}

.img-placeholder-fill {
  width: 100%;
  height: 100%;
}

.icon-empty-state {
  opacity: 0.25;
  margin: 0 auto 20px;
}

.btn-go-home {
  margin-top: 32px;
  display: inline-flex;
}

.section--checkout-nohero {
  padding-top: calc(var(--nav-h) + 28px);
}

.home-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 460px;
}

.home-hero-visual-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 1;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--accent);
  transition: border-color var(--ease), transform 0.2s, background var(--ease);
}

.home-hero-visual-tile:hover {
  border-color: var(--border2);
  background: var(--surface2);
  transform: translateY(-2px);
}

.home-hero-visual-tile span {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.home-hero-visual-tile--lg {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color var(--ease), background var(--ease);
}

.how-step:hover {
  border-color: var(--border2);
  background: var(--surface2);
}

.how-step-num {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
}

.how-step-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.how-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

.home-cta {
  padding: 64px 0 96px;
}

.home-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 48px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.home-cta-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.home-cta-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .home-hero-visual {
    display: none;
  }
}

.spotlight-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 20px;
  margin-top: 28px;
  align-items: stretch;
}

.spotlight-main {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), transform 0.2s;
}

.spotlight-main:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
}

.spotlight-main-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg3);
  overflow: hidden;
}

.spotlight-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-main-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spotlight-main-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.spotlight-main-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.spotlight-main-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.spotlight-main-cta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spotlight-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--ease), background var(--ease);
}

.spotlight-row:hover {
  border-color: var(--border2);
  background: var(--surface2);
}

.spotlight-row-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}

.spotlight-row-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-row-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.spotlight-row-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spotlight-row-price {
  font-size: 12px;
  color: var(--muted);
}

.stock-pill {
  flex-shrink: 0;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}

.stock-pill--in {
  background: rgba(229,62,62,0.1);
  border: 1px solid rgba(229,62,62,0.22);
  color: var(--accent);
}

.stock-pill--low {
  background: rgba(246,201,14,0.1);
  border: 1px solid rgba(246,201,14,0.22);
  color: var(--warning);
}

.stock-pill--out {
  background: rgba(229,62,62,0.1);
  border: 1px solid rgba(229,62,62,0.22);
  color: var(--danger);
}

.timeline {
  position: relative;
  margin-top: 32px;
  padding-left: 44px;
}

.timeline-line {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), rgba(229,62,62,0.08));
}

.timeline-step {
  position: relative;
  padding-bottom: 32px;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: -44px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg2);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}

.timeline-content {
  padding-top: 4px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 60ch;
}

.home-cta {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.home-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 400px at 50% 0%, rgba(229,62,62,0.08) 0%, transparent 70%),
    var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.home-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.home-cta-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 10px 0 12px;
}

.home-cta-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 46ch;
}

.home-cta-stats {
  display: grid;
  gap: 16px;
}

.home-cta-stat {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.home-cta-stat-num {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 2px;
}

.home-cta-stat-label {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-cta-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .home-cta-stats {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 36px;
  }

  .timeline-dot {
    left: -36px;
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}