:root {
  --bg: oklch(99% 0.002 240);
  --surface: oklch(100% 0 0);
  --surface-2: oklch(97% 0.004 240);
  --fg: oklch(20% 0.012 250);
  --muted: oklch(54% 0.012 250);
  --border: oklch(92% 0.005 250);
  --accent: oklch(52% 0.1 175);
  --accent-weak: oklch(96% 0.025 175);
  --warm: oklch(94% 0.02 80);

  --font-display:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-body:
    -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, monospace;

  --space-xs: 4px;
  --space-s: 8px;
  --space-m: 16px;
  --space-l: 24px;
  --space-xl: 40px;
  --space-2xl: 72px;

  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 18px;

  --max-w: 1280px;
  --nav-h: 64px;
  --shadow: 0 10px 30px rgba(20, 24, 40, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--space-m);
  font-weight: 600;
}
h1 {
  font-size: clamp(30px, 5vw, 48px);
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(24px, 3vw, 34px);
}
h3 {
  font-size: 18px;
}
p {
  margin: 0 0 var(--space-m);
}

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

.sp-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--fg);
  color: #fff;
  padding: 8px 14px;
  z-index: 200;
}
.sp-skip:focus {
  left: var(--space-s);
  top: var(--space-s);
}

.sp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-s);
  height: 48px;
  padding: 0 var(--space-l);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-m);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    background 0.15s ease,
    border-color 0.15s ease;
  text-decoration: none;
}
.sp-btn:active {
  transform: scale(0.985);
}
.sp-btn--primary {
  background: var(--accent);
  color: #fff;
}
.sp-btn--primary:hover {
  background: color-mix(in oklch, var(--accent) 90%, #000 10%);
  text-decoration: none;
}
.sp-btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.sp-btn--ghost:hover {
  background: var(--surface-2);
  text-decoration: none;
}

.sp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in oklch, var(--surface) 88%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.sp-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-l);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: var(--space-l);
}
.sp-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-right: auto;
}
.sp-logo:hover {
  text-decoration: none;
}
.sp-logo svg {
  color: var(--accent);
}
.sp-nav__links {
  display: flex;
  gap: var(--space-l);
  font-size: 14px;
}
.sp-nav__links a {
  color: var(--muted);
}
.sp-nav__links a:hover {
  color: var(--fg);
  text-decoration: none;
}
.sp-nav__links a.active {
  color: var(--fg);
  font-weight: 500;
}
.sp-cart {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font-size: 14px;
  position: relative;
}
.sp-cart:hover {
  text-decoration: none;
  border-color: var(--accent);
}
.sp-cart__count {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sp-nav__toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--fg);
  cursor: pointer;
  padding: 6px;
}

.sp-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-l);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.sp-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 var(--space-m);
}
.sp-hero__content h1 {
  margin-bottom: var(--space-m);
}
.sp-hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: var(--space-l);
}
.sp-hero__actions {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
  margin-bottom: var(--space-l);
}
.sp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-s);
  color: var(--muted);
  font-size: 13px;
}
.sp-hero__meta strong {
  color: var(--fg);
}
.sp-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border);
}
.sp-hero__visual {
  border-radius: var(--radius-l);
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}
.sp-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.sp-trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-m) var(--space-l);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}
.sp-trust__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
}
.sp-trust__item svg {
  color: var(--accent);
}
.sp-trust--catalog .sp-trust__inner {
  gap: var(--space-l);
}

.sp-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-l);
}
.sp-section--surface {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
}
.sp-section--surface > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.sp-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-l);
  gap: var(--space-m);
}
.sp-section__head a {
  font-size: 14px;
}

.sp-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-m);
}
.sp-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-s);
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  color: var(--fg);
  text-align: center;
  transition:
    border-color 0.15s,
    transform 0.15s,
    box-shadow 0.15s;
}
.sp-cat-card:hover {
  text-decoration: none;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.sp-cat-card__icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-weak);
  color: var(--accent);
}
.sp-cat-card__icon svg {
  width: 26px;
  height: 26px;
}
.sp-cat-card__name {
  font-size: 14px;
  font-weight: 500;
}

.sp-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-l);
}
.sp-product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  color: var(--fg);
  transition:
    box-shadow 0.2s,
    transform 0.15s,
    border-color 0.15s;
}
.sp-product-card:hover {
  text-decoration: none;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--border);
}
.sp-product-card__img {
  background: var(--surface-2);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.sp-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.sp-product-card:hover .sp-product-card__img img {
  transform: scale(1.03);
}
.sp-product-card__body {
  display: flex;
  flex-direction: column;
  padding: var(--space-m);
  gap: 2px;
}
.sp-product-card__cat {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.sp-product-card__name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin: 2px 0;
}
.sp-product-card__meta {
  font-size: 12px;
  color: var(--muted);
}
.sp-product-card__price {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--fg);
  font-weight: 600;
  margin-top: var(--space-s);
}
.sp-product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-s);
  gap: var(--space-s);
}
.sp-product-card__rating {
  color: var(--accent);
  display: inline-flex;
}

.sp-stars {
  display: inline-flex;
  gap: 1px;
  align-items: center;
}
.sp-star {
  color: var(--accent);
}
.sp-star:not(.sp-star--on) {
  color: var(--border);
}

.sp-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-l);
  flex-wrap: wrap;
  padding: var(--space-xl) var(--space-l);
  border-radius: var(--radius-l);
  background: linear-gradient(135deg, var(--accent-weak), var(--warm));
  border: 1px solid var(--border);
}
.sp-cta__inner h2 {
  margin-bottom: var(--space-xs);
}
.sp-cta__inner p {
  margin: 0;
  color: var(--muted);
  max-width: 56ch;
}

.sp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-l);
}
.sp-review {
  margin: 0;
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}
.sp-review .sp-stars {
  color: var(--accent);
  margin-bottom: var(--space-s);
}
.sp-review blockquote {
  margin: 0 0 var(--space-s);
  font-size: 15px;
  color: var(--fg);
}
.sp-review figcaption {
  font-size: 13px;
  color: var(--muted);
}

.sp-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-l);
}
.sp-step {
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}
.sp-step__head {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-bottom: var(--space-s);
}
.sp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}
.sp-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-weak);
  color: var(--accent);
}
.sp-step__title {
  font-size: 16px;
  margin-bottom: var(--space-xs);
}
.sp-step__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.sp-faq__list {
  max-width: 760px;
  margin: 0 auto;
}
.sp-faq__item {
  border-bottom: 1px solid var(--border);
}
.sp-faq__summary {
  cursor: pointer;
  padding: var(--space-m) 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
}
.sp-faq__summary::-webkit-details-marker {
  display: none;
}
.sp-faq__summary::after {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-right: 4px;
}
.sp-faq__item[open] .sp-faq__summary::after {
  transform: rotate(-135deg);
  margin-top: 5px;
}
.sp-faq__summary:hover {
  color: var(--accent);
}
.sp-faq__answer {
  padding: 0 0 var(--space-m);
  color: var(--muted);
  font-size: 15px;
}

.sp-page-head {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-xl) var(--space-l) var(--space-m);
}
.sp-page-head h1 {
  margin-bottom: var(--space-xs);
}
.sp-page-head p {
  color: var(--muted);
  margin: 0;
}
.sp-breadcrumbs {
  display: flex;
  gap: var(--space-s);
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--space-m);
}
.sp-breadcrumbs a {
  color: var(--muted);
}
.sp-breadcrumbs a:hover {
  color: var(--fg);
}

.sp-catalog {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-l) var(--space-xl);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
}
.sp-filters {
  font-size: 14px;
  position: sticky;
  top: calc(var(--nav-h) + var(--space-m));
  align-self: start;
}
.sp-filter-group {
  margin-bottom: var(--space-l);
}
.sp-filter-group h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 var(--space-s);
}
.sp-filter-opt {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  padding: 5px 0;
  cursor: pointer;
  color: var(--fg);
}
.sp-filter-opt input {
  accent-color: var(--accent);
}
.sp-price-inputs {
  display: flex;
  gap: var(--space-s);
}
.sp-price-inputs input,
.sp-sort {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  font-size: 14px;
  font-family: var(--font-mono);
  background: var(--surface);
  color: var(--fg);
}
.sp-sort {
  width: 100%;
  font-family: var(--font-body);
}
.sp-filters__reset {
  width: 100%;
  height: 40px;
  font-size: 13px;
}
.sp-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-m);
  font-size: 14px;
  color: var(--muted);
}
.sp-empty {
  padding: var(--space-2xl) var(--space-l);
  text-align: center;
  color: var(--muted);
}

.sp-product__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-l) var(--space-l) var(--space-xl);
}
.sp-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}
.sp-product__gallery {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.sp-product__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-product__detail .sp-product-card__cat {
  display: inline-block;
}
.sp-product__detail h1 {
  margin: var(--space-s) 0 var(--space-xs);
}
.sp-product__rating {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  color: var(--accent);
  margin-bottom: var(--space-m);
}
.sp-product__reviews {
  color: var(--muted);
  font-size: 13px;
}
.sp-product__price {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: var(--space-m);
}
.sp-product__short {
  color: var(--muted);
  margin-bottom: var(--space-l);
}
.sp-variant {
  margin-bottom: var(--space-m);
}
.sp-variant__label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: var(--space-s);
}
.sp-variant__opts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
}
.sp-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--fg);
  font-size: 13px;
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
}
.sp-chip:hover {
  border-color: var(--accent);
}
.sp-chip--active {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}
.sp-product__buy {
  display: flex;
  gap: var(--space-m);
  align-items: stretch;
  margin: var(--space-l) 0;
  flex-wrap: wrap;
}
.sp-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.sp-qty__btn {
  width: 40px;
  height: 48px;
  background: var(--surface);
  border: 0;
  color: var(--fg);
  font-size: 20px;
  cursor: pointer;
}
.sp-qty__btn:hover {
  background: var(--surface-2);
}
.sp-qty__input {
  width: 48px;
  height: 48px;
  border: 0;
  text-align: center;
  font-size: 15px;
  font-family: var(--font-mono);
  background: var(--surface);
  -moz-appearance: textfield;
}
.sp-qty__input::-webkit-outer-spin-button,
.sp-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sp-add-to-cart {
  flex: 1;
  min-width: 200px;
}
.sp-specs {
  list-style: none;
  padding: 0;
  margin: var(--space-l) 0 0;
  border-top: 1px solid var(--border);
}
.sp-specs li {
  padding: var(--space-s) 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.sp-product__assure {
  display: flex;
  gap: var(--space-l);
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
  margin-top: var(--space-m);
}
.sp-product__assure span {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
}
.sp-product__assure svg {
  color: var(--accent);
}
.sp-product__desc {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}
.sp-product__desc h2 {
  margin-bottom: var(--space-m);
}

.sp-cart-page {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-l) var(--space-2xl);
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-xl);
  align-items: start;
}
.sp-cart-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.sp-cart-empty {
  color: var(--muted);
  padding: var(--space-xl) 0;
}
.sp-cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: var(--space-m);
  padding: var(--space-m);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  align-items: center;
}
.sp-cart-item__img {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-s);
  overflow: hidden;
  background: var(--surface-2);
}
.sp-cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-cart-item__name {
  font-weight: 500;
  font-size: 15px;
}
.sp-cart-item__meta {
  font-size: 12px;
  color: var(--muted);
}
.sp-cart-item__variant {
  font-size: 12px;
  color: var(--muted);
}
.sp-cart-item__controls {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  margin-top: var(--space-s);
}
.sp-cart-item__controls .sp-qty {
  height: 36px;
}
.sp-cart-item__controls .sp-qty__btn,
.sp-cart-item__controls .sp-qty__input {
  height: 36px;
}
.sp-cart-item__controls .sp-qty__btn {
  width: 32px;
  font-size: 16px;
}
.sp-cart-item__controls .sp-qty__input {
  width: 40px;
}
.sp-cart-item__remove {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
}
.sp-cart-item__remove:hover {
  color: var(--fg);
}
.sp-cart-item__line {
  font-family: var(--font-mono);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
.sp-cart-summary {
  position: sticky;
  top: calc(var(--nav-h) + var(--space-m));
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}
.sp-cart-summary h2 {
  font-size: 20px;
}
.sp-cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-s) 0;
  font-size: 14px;
  color: var(--muted);
}
.sp-cart-summary__total {
  border-top: 1px solid var(--border);
  margin-top: var(--space-s);
  padding-top: var(--space-m);
  font-size: 18px;
  color: var(--fg);
  font-weight: 600;
  font-family: var(--font-mono);
}
.sp-checkout {
  margin-top: var(--space-m);
  border-top: 1px solid var(--border);
  padding-top: var(--space-l);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.sp-checkout h3 {
  margin-bottom: var(--space-xs);
}
.sp-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
}
.sp-field input,
.sp-field textarea,
.sp-field select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--surface);
  width: 100%;
}
.sp-field textarea {
  resize: vertical;
}
.sp-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-s);
}
.sp-pay-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  padding: var(--space-s);
  background: var(--surface-2);
  border-radius: var(--radius-s);
}
.sp-checkout__submit {
  width: 100%;
  margin-top: var(--space-s);
}
.sp-checkout__ok {
  color: var(--accent);
  font-size: 14px;
  margin: 0;
  padding: var(--space-s);
  background: var(--accent-weak);
  border-radius: var(--radius-s);
}

.sp-about-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-l);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.sp-about-hero__img {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--surface-2);
}
.sp-about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sp-about-text {
  max-width: 70ch;
}
.sp-about-text p {
  color: var(--muted);
  font-size: 17px;
}
.sp-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-l);
}
.sp-value {
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}
.sp-value__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-weak);
  color: var(--accent);
  margin-bottom: var(--space-s);
}
.sp-value h3 {
  margin-bottom: var(--space-xs);
}
.sp-value p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.sp-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-l);
  text-align: center;
}
.sp-stat {
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}
.sp-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.sp-stat__label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: var(--space-xs);
}

.sp-contact {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-m) var(--space-l) var(--space-2xl);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.sp-contact__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}
.sp-contact-card {
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
}
.sp-contact-card__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-weak);
  color: var(--accent);
  margin-bottom: var(--space-s);
}
.sp-contact-card h3 {
  margin-bottom: var(--space-xs);
}
.sp-contact-card a,
.sp-contact-card span {
  display: block;
  font-size: 14px;
  color: var(--muted);
}
.sp-contact-card a:hover {
  color: var(--fg);
}
.sp-contact__main {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.sp-contact__map {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  max-height: 320px;
}
.sp-contact__map svg {
  display: block;
  width: 100%;
  height: 320px;
}
.sp-map {
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  aspect-ratio: 16 / 9;
}
.sp-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.sp-map__link {
  display: inline-block;
  font-size: 14px;
}
.sp-contact-form {
  padding: var(--space-l);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
}
.sp-contact-form__note {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 var(--space-s);
}
.sp-contact-form button {
  width: 100%;
  margin-top: var(--space-s);
}

.sp-prose {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-l) var(--space-2xl);
}
.sp-prose__updated {
  color: var(--muted);
  font-size: 13px;
  margin-top: calc(-1 * var(--space-s));
}
.sp-prose h2 {
  margin-top: var(--space-xl);
}
.sp-prose p,
.sp-prose li {
  color: var(--muted);
}
.sp-prose strong {
  color: var(--fg);
}
.sp-prose ul {
  padding-left: 1.2em;
}
.sp-prose li {
  margin-bottom: var(--space-xs);
}
.sp-table-wrap {
  overflow-x: auto;
}
.sp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.sp-table th,
.sp-table td {
  text-align: left;
  padding: var(--space-s) var(--space-m);
  border-bottom: 1px solid var(--border);
}
.sp-table thead th {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sp-table--simple th {
  color: var(--muted);
  width: 38%;
  vertical-align: top;
}

.sp-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) var(--space-l) var(--space-l);
  margin-top: var(--space-2xl);
}
.sp-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--space-l);
}
.sp-footer__brand p {
  color: var(--muted);
  font-size: 13px;
  max-width: 36ch;
  margin-top: var(--space-s);
}
.sp-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--fg);
}
.sp-footer__logo svg {
  color: var(--accent);
}
.sp-footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  font-size: 13px;
}
.sp-footer__col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 var(--space-xs);
}
.sp-footer__col a,
.sp-footer__col span {
  color: var(--muted);
}
.sp-footer__col a:hover {
  color: var(--fg);
}
.sp-footer__bottom {
  max-width: var(--max-w);
  margin: var(--space-l) auto 0;
  padding-top: var(--space-m);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: var(--space-m);
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

.sp-cookie {
  position: fixed;
  left: var(--space-l);
  right: var(--space-l);
  bottom: var(--space-l);
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  padding: var(--space-m) var(--space-l);
  display: flex;
  align-items: center;
  gap: var(--space-l);
  flex-wrap: wrap;
  z-index: 120;
}
.sp-cookie[hidden] {
  display: none;
}
.sp-cookie__text {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 220px;
}
.sp-cookie__actions {
  display: flex;
  gap: var(--space-s);
}
.sp-cookie__btn {
  height: 38px;
  padding: 0 var(--space-m);
  font-size: 13px;
}

@keyframes sp-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sp-product-card,
.sp-cat-card,
.sp-review,
.sp-value,
.sp-stat,
.sp-step {
  animation: sp-fade-up 0.5s ease both;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 980px) {
  .sp-hero__inner,
  .sp-about-hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
  .sp-product__grid {
    grid-template-columns: 1fr;
    gap: var(--space-l);
  }
  .sp-catalog {
    grid-template-columns: 1fr;
  }
  .sp-filters {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-m);
  }
  .sp-filter-group {
    margin-bottom: 0;
    min-width: 200px;
    flex: 1;
  }
  .sp-cart-page {
    grid-template-columns: 1fr;
  }
  .sp-contact {
    grid-template-columns: 1fr;
  }
  .sp-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .sp-nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: var(--space-l);
    gap: var(--space-m);
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }
  .sp-nav__links.open {
    transform: translateY(0);
  }
  .sp-nav__toggle {
    display: inline-flex;
    order: 3;
    margin-left: var(--space-s);
  }
  .sp-cart {
    order: 4;
  }
  .sp-cart__label {
    display: none;
  }
  .sp-section__head {
    flex-direction: column;
    align-items: flex-start;
  }
  .sp-field-row {
    grid-template-columns: 1fr;
  }
  .sp-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
  .sp-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .sp-hero__inner,
  .sp-section,
  .sp-page-head,
  .sp-product__inner,
  .sp-catalog,
  .sp-cart-page,
  .sp-contact,
  .sp-prose {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
  .sp-footer__inner {
    grid-template-columns: 1fr;
  }
  .sp-footer {
    padding-left: var(--space-m);
    padding-right: var(--space-m);
  }
  .sp-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-m);
  }
  .sp-product-card__name {
    font-size: 13px;
  }
  .sp-cookie {
    left: var(--space-m);
    right: var(--space-m);
    bottom: var(--space-m);
  }
}
