/* uaevapestore.com — design system */
:root {
  --bg: #ffffff;
  --ink: #0a0a0b;
  --ink-2: #1a1a1d;
  --muted: #6b6b72;
  --muted-2: #9a9aa2;
  --line: #e6e6ea;
  --line-2: #f1f1f4;
  --chip: #f6f6f8;
  --accent: oklch(0.58 0.19 150);
  --accent-ink: #ffffff;
  --accent-soft: oklch(0.96 0.05 150);
  --price: #b8123b;
  --radius: 6px;
  --radius-lg: 10px;
  --pad: 16px;
  --container: 1280px;
  --density: 1;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); overflow-x: hidden; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: 40px; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 26px; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: 18px; line-height: 1.3; }
h4 { font-size: 15px; line-height: 1.3; }
p { margin: 0 0 12px; color: var(--ink-2); }
a { color: inherit; text-decoration: none; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Announcement bar */
.announce {
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.01em;
}
.announce-inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  padding: 9px 24px; max-width: var(--container); margin: 0 auto;
}
.announce .ship {
  display: inline-flex; align-items: center; gap: 8px;
}
.announce .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px var(--accent);
}
.announce .links { display: flex; gap: 18px; opacity: 0.85; }
.announce .links span { cursor: pointer; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-top {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
  padding: 16px 24px; max-width: var(--container); margin: 0 auto;
}
.header-search {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--ink); border-radius: 6px;
  padding: 0 0 0 14px; overflow: hidden;
}
.header-search svg { color: var(--muted); flex-shrink: 0; }
.header-search input {
  flex: 1; border: 0; outline: 0; padding: 11px 10px;
  font-family: inherit; font-size: 14px; background: transparent; min-width: 0;
}
.header-search .search-btn {
  background: var(--ink); color: #fff; border: 0;
  padding: 0 20px; font-weight: 600; font-size: 14px;
  cursor: pointer; height: 42px; font-family: inherit;
}
.header-right { display: flex; align-items: center; gap: 22px; }
.header-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--ink-2); cursor: pointer;
  position: relative;
}
.header-link:hover { color: var(--accent); }
.cart-link .cart-count {
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700;
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  display: inline-grid; place-items: center;
}
.header-nav { border-top: 1px solid var(--line); background: #fafafb; }
.header-nav-inner {
  display: flex; gap: 2px; max-width: var(--container); margin: 0 auto;
  padding: 0 16px;
}
.nav-item {
  padding: 12px 14px; font-size: 13.5px; font-weight: 500;
  color: var(--ink-2); cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.nav-item:hover { color: var(--accent); }
.nav-item.active { color: var(--ink); border-bottom-color: var(--accent); font-weight: 600; }
.nav-item.sale { color: var(--price); font-weight: 600; }
@media (max-width: 1100px) {
  .header-top { grid-template-columns: auto 1fr auto; gap: 16px; }
  .header-right .header-link span { display: none; }
  .header-right .cart-link span:not(.cart-count) { display: inline; }
  .header-nav-inner { overflow-x: auto; }
}
@media (max-width: 760px) {
  .container,
  .header-top,
  .announce-inner { padding-left: 16px; padding-right: 16px; }
  .announce-inner { gap: 8px; }
  .announce .links { width: 100%; gap: 12px; flex-wrap: wrap; }
  .header-search { grid-column: 1 / -1; }
  .header-top { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .header-right { gap: 12px; }
  .logo { min-width: 0; }
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700; letter-spacing: -0.03em; font-size: 18px;
}
.logo-mark {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--ink); color: var(--accent);
  display: grid; place-items: center; font-size: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}
.logo .tld { color: var(--muted); font-weight: 500; }

.nav { display: flex; gap: 2px; align-items: center; justify-content: center; flex-wrap: nowrap; overflow: hidden; }
.nav a {
  padding: 8px 10px; border-radius: 6px; font-size: 13.5px; color: var(--ink-2);
  font-weight: 500; white-space: nowrap;
}
.nav a:hover { background: var(--chip); }
.nav a.active { background: var(--chip); color: var(--ink); }
.nav a .sub { color: var(--muted-2); font-size: 11px; margin-left: 4px; }

.header-right { display: flex; align-items: center; gap: 8px; }
.search-mini {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; border: 1px solid var(--line);
  border-radius: 6px; font-size: 13px; color: var(--muted);
  min-width: 200px; background: #fff; cursor: text;
  white-space: nowrap;
}
.search-mini .kbd {
  margin-left: auto; font-size: 11px; color: var(--muted-2);
  border: 1px solid var(--line); border-radius: 4px; padding: 1px 5px;
  font-family: 'JetBrains Mono', monospace;
}
.icon-btn {
  width: 36px; height: 36px; border-radius: 6px;
  display: grid; place-items: center; border: 1px solid var(--line);
  background: #fff; cursor: pointer; position: relative;
}
.icon-btn .badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--accent); color: var(--accent-ink);
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 6px;
  font-weight: 600; font-size: 14px; cursor: pointer;
  border: 1px solid var(--ink); background: var(--ink); color: #fff;
  transition: transform 0.12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-lg { padding: 14px 22px; font-size: 15px; }

/* Breadcrumbs */
.crumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  padding: 14px 0;
}
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.crumbs .sep { color: var(--muted-2); }
.crumbs .current { color: var(--ink); }

/* Section */
.section { padding: 64px 0; border-top: 1px solid var(--line); }
.section:first-of-type { border-top: 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 28px;
}
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: ''; width: 18px; height: 1px; background: var(--accent);
}

/* Tech chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--chip); color: var(--ink-2);
  font-size: 12px; font-weight: 500;
}
.chip-accent { background: var(--accent-soft); color: var(--accent-ink); }
.chip .d { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* Card */
.card {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; overflow: hidden;
}

/* Placeholder imagery — clean light grey tile */
.ph {
  position: relative; background: #f4f4f6;
  display: grid; place-items: center; color: var(--muted-2);
  font-size: 12px;
}
.ph .label {
  color: var(--muted-2); font-size: 12px;
}

/* Hairline tech frame (product imagery) */
.frame {
  position: relative;
}
.frame .corner {
  position: absolute; width: 10px; height: 10px;
  border-color: var(--ink); border-style: solid; border-width: 0;
}
.frame .corner.tl { top: 8px; left: 8px; border-top-width: 1px; border-left-width: 1px; }
.frame .corner.tr { top: 8px; right: 8px; border-top-width: 1px; border-right-width: 1px; }
.frame .corner.bl { bottom: 8px; left: 8px; border-bottom-width: 1px; border-left-width: 1px; }
.frame .corner.br { bottom: 8px; right: 8px; border-bottom-width: 1px; border-right-width: 1px; }

/* Footer */
.footer { background: var(--ink); color: #d5d5da; padding: 56px 0 28px; margin-top: 80px; }
.footer a { color: #d5d5da; }
.footer a:hover { color: #fff; }
.footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px; padding-bottom: 36px; border-bottom: 1px solid #26262c;
}
.footer ul { list-style: none; padding: 0; margin: 0; font-size: 13.5px; }
.footer li { margin-bottom: 8px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; font-size: 12px; color: var(--muted-2);
  font-family: 'JetBrains Mono', monospace;
}

/* Utility */
.row { display: flex; gap: 12px; align-items: center; }
.stars { display: inline-flex; gap: 2px; color: var(--ink); }
.stars svg { width: 14px; height: 14px; }
.divider { height: 1px; background: var(--line); margin: 24px 0; }
.u-muted { color: var(--muted); }
.u-mono { font-family: 'JetBrains Mono', monospace; }
.u-small { font-size: 12.5px; }

/* Static homepage */
.home-hero { padding: 32px 0 48px; }
.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 40px;
  align-items: center;
  background: #fafafb;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 40px;
  overflow: visible;
}
.hero-kicker {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}
.home-hero h1 { margin-bottom: 16px; }
.home-hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 24px;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-panel {
  aspect-ratio: 4 / 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  min-width: 0;
  width: 100%;
  padding: 18px;
  overflow: visible;
}
.hero-product-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-width: 0;
}
.hero-product-stack a {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  min-width: 0;
}
.hero-product-stack img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-product-stack img { padding: 14px; }
.trust-strip {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  flex: 0 0 auto;
}
.trust-item strong { display: block; font-size: 14px; }
.trust-item small { color: var(--muted); font-size: 12px; }
.section-title { margin-bottom: 24px; }
.centered { text-align: center; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.category-card {
  text-align: center;
  display: block;
}
.category-image {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--muted-2);
  font-size: 12px;
  padding: 10px;
}
.category-card strong { display: block; font-size: 14px; }
.category-card small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.promo-section { padding-top: 20px; }
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.promo-card {
  border-radius: 10px;
  padding: 40px 32px;
  min-height: 220px;
  display: block;
}
.promo-card h3 { font-size: 22px; margin-bottom: 10px; color: inherit; }
.promo-card p { max-width: 340px; margin-bottom: 18px; font-size: 14px; color: inherit; opacity: .78; }
.promo-card span { font-weight: 600; font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
.promo-dark { background: #1a1a1d; color: #fff; }
.promo-light { background: var(--accent-soft); color: var(--ink); }
.static-products-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.static-products-head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.search-results {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 24px;
  margin-bottom: 28px;
  scroll-margin-top: 140px;
}
.search-results[hidden] { display: none; }
.search-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.search-results-head p {
  color: var(--muted);
  font-size: 13px;
  margin: 5px 0 0;
}
.search-result-group {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.search-result-group + .search-result-group { margin-top: 26px; }
.search-result-group h3 { margin-bottom: 14px; }
.search-product-grid {
  grid-template-columns: repeat(4, 1fr);
}
.search-empty {
  color: var(--muted);
  margin: 0;
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 16px;
  grid-column: 1 / -1;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.product-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .15s ease, transform .15s ease;
}
.product-card:hover {
  box-shadow: 0 10px 24px -16px rgba(10,10,15,.35);
  transform: translateY(-1px);
}
.product-media {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.product-media img { padding: 16px; }
.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
  background: var(--ink);
}
.product-tag-sale { background: var(--price); }
.product-tag-new { background: var(--accent); }
.product-body {
  display: block;
  padding: 14px;
}
.product-category {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.product-name {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  min-height: 38px;
  margin-bottom: 6px;
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--muted);
}
.static-stars { color: #f5a623; letter-spacing: 1px; font-size: 12px; }
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}
.product-was {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.product-was + .product-price,
.product-card:has(.product-was) .product-price { color: var(--price); }
.brands-section { background: #fafafb; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}
.brand-grid a {
  padding: 18px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-2);
}
.text-container { max-width: 880px; }
.text-container .updated {
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 24px;
}
.text-container h3 { margin: 28px 0 10px; }
.faq-section { background: #fafafb; }
.faq-container { max-width: 760px; }
.faq-container h2 { text-align: center; margin-bottom: 24px; }
.faq-container details {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 16px 20px;
}
.faq-container details:first-of-type { border-radius: 8px 8px 0 0; }
.faq-container details:last-of-type { border-bottom: 1px solid var(--line); border-radius: 0 0 8px 8px; }
.faq-container summary { cursor: pointer; font-weight: 600; }
.faq-container details p { margin: 10px 0 0; color: var(--ink-2); font-size: 14px; }
.newsletter {
  background: var(--ink);
  color: #fff;
  padding: 48px 0;
}
.newsletter-inner { max-width: 560px; text-align: center; }
.newsletter h2 { color: #fff; margin-bottom: 8px; }
.newsletter p { color: rgba(255,255,255,.7); margin-bottom: 20px; }
.newsletter form {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  border: 0;
  font-family: inherit;
  font-size: 14px;
}
.site-footer {
  background: #f4f4f6;
  color: var(--ink-2);
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
}
.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { margin-bottom: 12px; }
.site-footer p {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 14px;
}
.payment-row { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-row span {
  padding: 4px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}
.site-footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; font-size: 13px; }
.site-footer li { margin-bottom: 7px; }
.site-footer a { color: var(--ink-2); }
.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .home-hero-inner { grid-template-columns: minmax(0, 1fr) minmax(280px, .9fr); gap: 24px; }
  .product-grid,
  .search-product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid, .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .home-hero-inner, .promo-grid { grid-template-columns: 1fr; }
  .home-hero-inner { padding: 24px; }
  .product-grid,
  .search-product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .detail-info { position: static; }
  .category-grid, .brand-grid, .trust-grid, .site-footer-grid { grid-template-columns: 1fr; }
  .static-products-head, .search-results-head, .site-footer-bottom, .newsletter form { flex-direction: column; align-items: stretch; }
  h1 { font-size: 32px; }
  .search-results,
  .detail-gallery,
  .detail-info,
  .product-copy-grid article,
  .product-copy-grid aside,
  .checkout-panel { padding: 18px; }
  .detail-price-row { flex-wrap: wrap; }
  .detail-fulfillment div,
  .spec-list { grid-template-columns: 1fr; }
  .site-footer-bottom { gap: 10px; }
}

/* Static product pages */
.product-detail { padding: 18px 0 48px; }
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 48px;
  align-items: start;
}
.detail-gallery {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 22px;
}
.detail-image {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: #fff;
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.detail-thumb {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 6px;
  cursor: pointer;
}
.detail-thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255, 122, 0, .16);
}
.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detail-info {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 28px;
  position: sticky;
  top: 124px;
}
.detail-kicker {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.detail-info h1 {
  font-size: 34px;
  margin-bottom: 14px;
}
.detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.detail-price {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
}
.detail-was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 17px;
}
.detail-chip {
  align-self: center;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  background: var(--chip);
}
.detail-chip.sale {
  background: color-mix(in oklab, var(--price), white 88%);
  color: var(--price);
}
.detail-description {
  color: var(--ink-2);
  margin-bottom: 22px;
}
.detail-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.detail-fulfillment {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.detail-fulfillment div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.detail-fulfillment div:last-child { border-bottom: 0; }
.detail-fulfillment strong {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
}
.product-copy-grid article,
.product-copy-grid aside {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 24px;
}
.product-copy-grid h2,
.product-copy-grid h3 { margin-bottom: 12px; }
.spec-list {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 14px;
  margin: 0;
}
.spec-list dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.spec-list dd { margin: 0; font-weight: 600; }
.spec-list dd a { color: inherit; text-decoration: underline; text-decoration-color: var(--line); }
.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mini-product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  display: block;
}
.mini-product-card span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.mini-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mini-product-card strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  min-height: 38px;
}
.mini-product-card small {
  display: block;
  color: var(--price);
  font-weight: 700;
  margin-top: 6px;
  font-size: 14px;
}
.internal-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.internal-link-list a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  background: #fff;
}
.internal-link-list a:hover {
  border-color: var(--ink);
}
/* Checkout */
.checkout-page { padding: 18px 0 64px; }
.checkout-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.checkout-kicker {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}
.checkout-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 24px;
}
.checkout-form h2,
.order-summary h2 {
  font-size: 20px;
  margin-bottom: 16px;
}
.checkout-form h2:not(:first-child) { margin-top: 30px; }
.checkout-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.form-grid {
  display: grid;
  gap: 14px;
}
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
.checkout-form input:focus,
.checkout-form textarea:focus {
  outline: 2px solid color-mix(in oklab, var(--accent), white 65%);
  border-color: var(--accent);
}
.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.payment-options label {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}
.payment-options input { width: auto; }
.checkout-note {
  color: var(--muted);
  font-size: 12.5px;
  margin: 14px 0 0;
}
.paypal-only-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fafafb;
  margin-bottom: 18px;
}
.paypal-only-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.paypal-only-card span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
}
.thank-you-page {
  padding: 24px 0 64px;
}
.thank-you-card {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 28px;
}
.thank-you-card h1 {
  margin-bottom: 12px;
}
.thank-you-card p {
  margin-bottom: 14px;
}
.thank-you-details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafb;
  padding: 16px;
  margin: 22px 0;
}
.thank-you-details dl {
  margin: 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px 14px;
}
.thank-you-details dt {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.thank-you-details dd {
  margin: 0;
  font-weight: 600;
}
.thank-you-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.content-page {
  padding: 18px 0 64px;
}
.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 24px;
  margin-bottom: 24px;
}
.content-panel,
.content-card,
.contact-strip {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.content-panel {
  padding: 28px;
}
.content-panel p:last-child,
.content-card p:last-child,
.contact-strip p:last-child {
  margin-bottom: 0;
}
.content-kicker {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.content-lead {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 58ch;
}
.content-side {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafafb;
  padding: 24px;
  display: grid;
  gap: 14px;
}
.content-side h2 {
  margin-bottom: 4px;
  font-size: 20px;
}
.content-side ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.content-side li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.content-side li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.content-card {
  padding: 24px;
}
.content-card h2 {
  margin-bottom: 12px;
}
.content-card h3 {
  margin: 18px 0 10px;
}
.content-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-2);
}
.content-card li + li {
  margin-top: 8px;
}
.contact-list {
  display: grid;
  gap: 14px;
}
.contact-strip {
  padding: 18px 20px;
}
.contact-strip strong {
  display: block;
  margin-bottom: 6px;
}
.contact-strip a {
  word-break: break-word;
}
.content-callout {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid color-mix(in oklab, var(--accent), white 76%);
  background: color-mix(in oklab, var(--accent), white 95%);
  border-radius: 10px;
}
.content-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.order-summary {
  position: sticky;
  top: 124px;
}
.order-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.order-thumb {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}
.order-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.order-item strong {
  display: block;
  line-height: 1.35;
}
.order-item small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}
.order-item > span {
  font-weight: 700;
  white-space: nowrap;
}
.summary-totals {
  margin: 18px 0;
}
.summary-totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-2);
}
.summary-totals div:last-child {
  border-bottom: 0;
  font-weight: 700;
  font-size: 18px;
}
.summary-totals dt { color: var(--muted); }
.summary-totals dd { margin: 0; }
.checkout-support {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
  background: #fafafb;
}
.checkout-support strong {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.checkout-support span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
}

@media (max-width: 980px) {
  .product-detail-grid,
  .product-copy-grid,
  .checkout-layout,
  .content-hero,
  .content-grid {
    grid-template-columns: 1fr;
  }
  .detail-info,
  .order-summary { position: static; }
  .mini-product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .checkout-head,
  .two-col,
  .payment-options {
    grid-template-columns: 1fr;
  }
  .checkout-head {
    display: grid;
    align-items: stretch;
  }
  .header-search { padding-left: 12px; }
  .header-search .search-btn { padding: 0 14px; }
  .home-hero { padding-top: 20px; }
  .home-hero-inner { padding: 18px; }
  .home-hero p { font-size: 15px; }
  .product-grid,
  .search-product-grid,
  .mini-product-grid,
  .category-grid,
  .brand-grid { grid-template-columns: 1fr; }
  .product-name,
  .mini-product-card strong { min-height: 0; }
  .promo-card { padding: 24px 20px; min-height: 0; }
  .checkout-page { padding-bottom: 40px; }
  .thank-you-card { padding: 20px; }
  .thank-you-details dl { grid-template-columns: 1fr; }
  .content-panel,
  .content-side,
  .content-card,
  .contact-strip { padding: 20px; }
  .order-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .order-item > span {
    grid-column: 2;
  }
}
