:root {
  --bg: #07090b;
  --bg-elevated: rgba(15, 20, 25, 0.84);
  --bg-panel: rgba(17, 24, 31, 0.92);
  --bg-panel-soft: rgba(20, 28, 36, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f6f2ea;
  --text-muted: #afb6c2;
  --text-soft: #d8dee7;
  --silver: #cfd8e5;
  --orange: #ff7b2c;
  --amber: #ffbe55;
  --blue: #52c4ff;
  --green: #6ee8ac;
  --red: #ff5d57;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 32px rgba(0, 0, 0, 0.22);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --container: min(1180px, calc(100vw - 32px));
  --header-offset: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 123, 44, 0.18), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(82, 196, 255, 0.12), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 190, 85, 0.1), transparent 24%),
    linear-gradient(180deg, #06080a 0%, #091015 48%, #06080b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  opacity: 0.24;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(255, 123, 44, 0.78);
  background: rgba(255, 255, 255, 0.07);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

main {
  display: block;
}

.layout-shell {
  width: var(--container);
  margin: 0 auto;
}

.section-shell {
  width: var(--container);
  margin: 0 auto;
  padding: 92px 0 0;
}

.section-shell--compact {
  padding-top: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.73rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  box-shadow: 0 0 18px rgba(255, 123, 44, 0.65);
}

.section-head {
  display: grid;
  gap: 1.1rem;
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.section-head h1,
.section-head h2,
.section-head h3,
.hero-copy h1 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
}

.section-head h1,
.hero-copy h1 {
  font-size: clamp(3.6rem, 8vw, 7rem);
}

.section-head h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.25rem);
}

.section-head p,
.hero-copy p,
.body-copy,
.policy-copy p,
.policy-copy li,
.card-copy,
.contact-note,
.footer-copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.body-copy strong,
.card-copy strong {
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #0b0e12;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 16px 38px rgba(255, 123, 44, 0.28);
}

.button--secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.button--ghost {
  color: var(--text-soft);
  border-color: rgba(255, 255, 255, 0.1);
  background: transparent;
}

.button--small {
  min-height: 42px;
  padding: 0.72rem 1rem;
  font-size: 0.95rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(6, 8, 10, 0.9);
  backdrop-filter: blur(20px);
}

.topbar__inner {
  width: var(--container);
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0;
  color: var(--text-soft);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 25;
  padding-top: 0.9rem;
}

.site-header__inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: calc(var(--radius-md) + 4px);
  background: rgba(11, 15, 19, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.brand__mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 190, 85, 0.4), rgba(255, 123, 44, 0.1)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 11px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  transform: skewX(-12deg);
}

.brand__mark::after {
  inset: 14px 10px 10px 16px;
  border-color: transparent transparent rgba(255, 123, 44, 0.9) rgba(255, 123, 44, 0.9);
}

.brand__text {
  display: grid;
  gap: 0.18rem;
}

.brand__text strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
  text-transform: uppercase;
  line-height: 1;
}

.brand__text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav a {
  padding: 0.8rem 1rem;
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 500;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cart-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.cart-trigger__count {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--amber));
  color: #0b0e12;
  font-size: 0.84rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
  content: "";
}

.nav-toggle span {
  margin-top: 6px;
  margin-bottom: 6px;
}

.site-header.is-open .nav-toggle::before {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .nav-toggle span {
  opacity: 0;
}

.site-header.is-open .nav-toggle::after {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  width: var(--container);
  margin: 0 auto;
  padding: 42px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.95fr);
  gap: 1.6rem;
}

.hero-copy,
.hero-panel,
.glass-panel,
.benefit-card,
.category-card,
.story-card,
.support-card,
.policy-card,
.product-card,
.testimonial-card,
.checkout-card,
.checkout-summary,
.empty-state,
.stat-grid__item,
.timeline-card,
.contact-card,
.faq-card,
.footer-block {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(20, 28, 35, 0.82), rgba(11, 15, 19, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1.3rem;
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -10% -24% 32%;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 123, 44, 0.26), transparent 68%);
  pointer-events: none;
}

.hero-copy p {
  max-width: 620px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-highlight {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.25rem;
}

.hero-highlight strong {
  font-size: 1.55rem;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
}

.hero-highlight span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.hero-panel {
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: grid;
  gap: 1rem;
  overflow: hidden;
}

.hero-panel__card,
.hero-panel__split,
.hero-panel__stats {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel__card {
  position: relative;
  padding: 1.2rem;
  min-height: 250px;
  overflow: hidden;
}

.hero-panel__card::before {
  content: "";
  position: absolute;
  inset: 18px 22px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 123, 44, 0.22), transparent 70%);
}

.hero-panel__scan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel__model {
  display: grid;
  gap: 0.6rem;
  margin-top: 2rem;
  max-width: 280px;
}

.hero-panel__model strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-panel__model p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero-panel__accent {
  position: absolute;
  inset: auto -40px 20px auto;
  width: 250px;
  height: 82px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 190, 85, 0.8), rgba(255, 123, 44, 0.18));
  transform: rotate(-12deg);
  filter: blur(0.4px);
}

.hero-panel__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.hero-panel__mini {
  min-height: 126px;
  border-radius: 18px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  gap: 0.4rem;
}

.hero-panel__mini span {
  color: var(--text-muted);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel__mini strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.hero-panel__stats {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.hero-panel__stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel__stats-row:last-child {
  border-bottom: 0;
}

.hero-panel__stats-row span {
  color: var(--text-muted);
}

.hero-panel__stats-row strong {
  font-size: 1.08rem;
}

.benefit-grid,
.category-grid,
.story-grid,
.policy-grid,
.timeline-grid,
.support-grid,
.testimonial-grid,
.footer-grid,
.stat-grid,
.contact-layout,
.catalog-utility,
.checkout-layout {
  display: grid;
  gap: 1.1rem;
}

.benefit-grid {
  width: var(--container);
  margin: 24px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-card,
.category-card,
.policy-card,
.support-card,
.timeline-card,
.testimonial-card,
.checkout-card,
.checkout-summary,
.empty-state,
.faq-card,
.contact-card {
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.benefit-card {
  display: grid;
  gap: 0.65rem;
}

.benefit-card__label {
  color: var(--text-muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefit-card h3,
.category-card h3,
.story-card h3,
.policy-card h3,
.support-card h3,
.timeline-card h3,
.testimonial-card h3,
.checkout-card h2,
.contact-card h3,
.faq-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

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

.category-card {
  min-height: 220px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 16px auto auto 16px;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 200px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 123, 44, 0.38), transparent 72%);
}

.category-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.story-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.story-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: grid;
  gap: 1.1rem;
}

.story-card--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 123, 44, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(21, 28, 36, 0.9), rgba(10, 14, 19, 0.95));
}

.story-list,
.policy-list,
.footer-links,
.contact-list,
.micro-list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.story-list li,
.policy-list li,
.micro-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.story-list li::before,
.policy-list li::before,
.micro-list li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 0 14px rgba(255, 123, 44, 0.65);
}

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

.stat-grid__item {
  border-radius: 24px;
  padding: 1.2rem;
  display: grid;
  gap: 0.35rem;
}

.stat-grid__item strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.stat-grid__item span {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

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

.product-card {
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  min-height: 100%;
}

.product-card__visual {
  position: relative;
  min-height: 230px;
  padding: 1rem;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(140deg, var(--visual-a, #ff7b2c), var(--visual-b, #52c4ff)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 60%);
}

.product-card__visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.product-card__visual::after {
  content: "";
  position: absolute;
  inset: auto 28px 18px auto;
  width: 110px;
  height: 110px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  transform: rotate(-18deg);
}

.product-card__scan,
.product-card__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(11, 15, 19, 0.14);
  backdrop-filter: blur(12px);
}

.product-card__media {
  position: relative;
  z-index: 1;
  justify-self: center;
  align-self: center;
  width: calc(100% - 16px);
  max-width: 210px;
  aspect-ratio: 1 / 1;
  display: block;
}

.product-card__shape {
  position: absolute;
  inset: 0;
  border-radius: 28px 28px 24px 24px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(15, 20, 25, 0.18), rgba(15, 20, 25, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.product-card__shape::before {
  content: "";
  position: absolute;
  inset: -16px 28% auto;
  height: 24px;
  border-radius: 14px 14px 8px 8px;
  background: rgba(255, 255, 255, 0.85);
}

.product-card__shape::after {
  content: "";
  position: absolute;
  inset: 44px 22px auto;
  height: 44px;
  border-radius: 14px;
  background: rgba(8, 12, 16, 0.28);
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(8, 12, 16, 0.24);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity 180ms ease;
}

[data-image-shell].is-loaded .product-card__image,
[data-image-shell].is-loaded .summary-item__image,
[data-image-shell].is-loaded .drawer-item__image {
  opacity: 1;
}

[data-image-shell].is-loaded .product-card__shape,
[data-image-shell].is-loaded .summary-item__fallback,
[data-image-shell].is-loaded .drawer-item__fallback {
  opacity: 0;
}

.product-card__body {
  padding: 1.25rem;
  display: grid;
  gap: 0.9rem;
}

.product-card__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 123, 44, 0.12);
  border: 1px solid rgba(255, 123, 44, 0.22);
  color: #ffd4bd;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-rating {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.product-card__copy {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.product-card__list {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-card__list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.product-card__list li::before {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.product-card__meta,
.summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.product-card__price {
  display: grid;
  gap: 0.15rem;
}

.product-card__price span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__price strong {
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.catalog-utility {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 1.4rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-chip.is-active,
.filter-chip:hover,
.filter-chip:focus-visible {
  background: rgba(255, 123, 44, 0.12);
  border-color: rgba(255, 123, 44, 0.28);
  transform: translateY(-1px);
}

.filter-controls {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-controls input,
.filter-controls select {
  width: auto;
  min-width: 220px;
}

.empty-catalog {
  padding: 1.8rem;
  text-align: center;
  border-radius: 26px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
}

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

.timeline-card {
  display: grid;
  gap: 0.9rem;
}

.timeline-card__step {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.contact-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}

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

.contact-form,
.policy-copy,
.faq-stack,
.checkout-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-label {
  display: grid;
  gap: 0.55rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.form-message {
  min-height: 1.35rem;
  margin: 0;
  color: var(--green);
  font-size: 0.92rem;
}

.contact-list li,
.footer-links a {
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-list strong,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

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

.policy-card p,
.support-card p,
.testimonial-card p,
.timeline-card p,
.contact-card p,
.checkout-card p,
.faq-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.68;
}

.policy-copy {
  margin-top: 1.6rem;
}

.policy-copy h2,
.policy-copy h3 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.policy-copy h2 {
  font-size: 2rem;
}

.policy-copy h3 {
  font-size: 1.35rem;
}

.policy-copy ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

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

.testimonial-card {
  display: grid;
  gap: 0.8rem;
}

.testimonial-card strong {
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.faq-stack {
  max-width: 880px;
}

.faq-card details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.faq-card details:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--orange);
}

.faq-card details[open] summary::after {
  content: "-";
}

.faq-card details p {
  padding-top: 0.85rem;
}

.checkout-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

.checkout-form {
  margin-top: 1rem;
}

.radio-stack {
  display: grid;
  gap: 0.75rem;
}

.radio-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.radio-card input {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--orange);
}

.radio-card strong {
  display: block;
  margin-bottom: 0.2rem;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-offset) + 20px);
  display: grid;
  gap: 1rem;
}

.summary-items {
  display: grid;
  gap: 0.9rem;
}

.summary-item {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
}

.summary-item__visual {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--visual-a, #ff7b2c), var(--visual-b, #52c4ff));
  position: relative;
  overflow: hidden;
}

.summary-item__media {
  position: absolute;
  inset: 0;
  display: block;
}

.summary-item__visual::before {
  content: "";
  position: absolute;
  inset: 10px 18px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.summary-item__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.summary-item__fallback {
  position: absolute;
  inset: 10px 18px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(15, 20, 25, 0.16), rgba(15, 20, 25, 0.48));
  transition: opacity 180ms ease;
}

.summary-item__meta strong {
  display: block;
  margin-bottom: 0.15rem;
}

.summary-item__meta span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.summary-total {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-total .summary-line:last-child {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 700;
}

.empty-state {
  display: grid;
  gap: 1rem;
}

.empty-state__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mini-product {
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.7rem;
}

.mini-product strong {
  font-size: 1rem;
}

.mini-product p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.success-banner {
  display: none;
  padding: 1.15rem 1.25rem;
  border-radius: 22px;
  border: 1px solid rgba(110, 232, 172, 0.25);
  background: rgba(110, 232, 172, 0.08);
  color: #c7ffe0;
}

.success-banner.is-visible {
  display: block;
}

.success-banner.is-error {
  border-color: rgba(255, 93, 87, 0.28);
  background: rgba(255, 93, 87, 0.08);
  color: #ffd1cf;
}

.success-banner strong {
  display: block;
  margin-bottom: 0.3rem;
}

.drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 6, 0.72);
  opacity: 0;
  transition: opacity 220ms ease;
}

.drawer.is-open .drawer__overlay {
  opacity: 1;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  padding: 1.15rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(12, 17, 21, 0.98), rgba(7, 10, 13, 0.98));
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.drawer.is-open .drawer__panel {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.drawer__header h2 {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 2rem;
}

.drawer__close {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.drawer__body {
  overflow-y: auto;
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.drawer-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.drawer-item__visual {
  width: 82px;
  height: 94px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--visual-a, #ff7b2c), var(--visual-b, #52c4ff));
  position: relative;
  overflow: hidden;
}

.drawer-item__media {
  position: absolute;
  inset: 0;
  display: block;
}

.drawer-item__visual::before {
  content: "";
  position: absolute;
  inset: 12px 22px 14px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.82);
}

.drawer-item__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.drawer-item__fallback {
  position: absolute;
  inset: 12px 22px 14px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(15, 20, 25, 0.16), rgba(15, 20, 25, 0.52));
  transition: opacity 180ms ease;
}

.drawer-item__meta {
  display: grid;
  gap: 0.55rem;
}

.drawer-item__meta strong {
  font-size: 1rem;
  line-height: 1.25;
}

.drawer-item__meta span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.drawer-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qty-control button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.drawer-item__remove {
  color: #ffb3ad;
  background: transparent;
  padding: 0;
}

.drawer__empty {
  padding: 1.6rem;
  border-radius: 24px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  text-align: center;
  color: var(--text-muted);
}

.drawer__footer {
  display: grid;
  gap: 0.8rem;
}

.drawer__progress {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.progress-bar {
  width: 100%;
  height: 8px;
  margin-top: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.footer {
  padding: 90px 0 32px;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-block {
  border-radius: 28px;
  padding: 1.35rem;
  display: grid;
  gap: 0.95rem;
}

.footer-block h3 {
  margin: 0;
  font-size: 1.1rem;
}

.footer-block form {
  display: grid;
  gap: 0.8rem;
}

.footer-note {
  width: var(--container);
  margin: 18px auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-inline {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.surface-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-soft);
  font-weight: 700;
}

.surface-link::after {
  content: "->";
  color: var(--orange);
}

[data-animate] {
  animation: rise-in 700ms ease both;
}

[data-animate="2"] {
  animation-delay: 80ms;
}

[data-animate="3"] {
  animation-delay: 140ms;
}

[data-animate="4"] {
  animation-delay: 200ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .story-grid,
  .contact-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .category-grid,
  .support-grid,
  .timeline-grid,
  .testimonial-grid,
  .footer-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .filter-controls {
    justify-content: flex-start;
  }

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

@media (max-width: 840px) {
  :root {
    --header-offset: 74px;
  }

  .site-header {
    top: 38px;
  }

  .site-header__inner {
    padding: 0.85rem 0.95rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .nav,
  .nav-actions {
    width: 100%;
    display: none;
  }

  .site-header.is-open .nav,
  .site-header.is-open .nav-actions {
    display: flex;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.5rem;
  }

  .nav-actions {
    padding-top: 0.3rem;
    flex-wrap: wrap;
  }

  .nav a,
  .nav-actions a,
  .nav-actions button {
    width: 100%;
    justify-content: center;
  }

  .hero-copy,
  .hero-panel {
    padding: 1.35rem;
  }

  .hero-highlights,
  .benefit-grid,
  .stat-grid,
  .policy-grid,
  .empty-state__grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-controls input,
  .filter-controls select {
    width: 100%;
    min-width: 0;
  }

  .checkout-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .section-shell {
    padding-top: 72px;
  }

  .hero {
    padding-top: 28px;
  }

  .benefit-grid,
  .category-grid,
  .support-grid,
  .timeline-grid,
  .testimonial-grid,
  .footer-grid,
  .product-grid,
  .footer-note {
    grid-template-columns: 1fr;
  }

  .product-card__footer,
  .summary-line,
  .drawer-item__controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-item {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .summary-item > :last-child {
    grid-column: span 2;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
