:root {
  --bg: #0a0c0b;
  --bg-2: #121614;
  --panel: #161b18;
  --text: #f2f5f3;
  --muted: #9aa89f;
  --line: rgba(120, 255, 140, 0.16);
  --green: #39ff6a;
  --green-dim: #1fbf4a;
  --green-glow: rgba(57, 255, 106, 0.28);
  --white: #ffffff;
  --max: 1120px;
  --product-image-ratio: 1050 / 736;
  --font-display: "Rajdhani", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(57, 255, 106, 0.08), transparent 55%),
    radial-gradient(700px 380px at 10% 20%, rgba(57, 255, 106, 0.05), transparent 50%),
    linear-gradient(180deg, #070908 0%, var(--bg) 40%, #0d110e 100%);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: #7dff9b; }
.wrap { width: min(var(--max), calc(100% - 2.5rem)); margin: 0 auto; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(8, 10, 9, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 100px;
  padding: 0.75rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--text);
  padding: 0.35rem 0.5rem 0.35rem 0;
}
.brand:hover { color: var(--text); opacity: 0.92; }
.brand-logo {
  display: block;
  width: auto;
  height: 78px;
  max-width: min(240px, 48vw);
  object-fit: contain;
}
.brand-footer .brand-logo {
  height: 88px;
  max-width: 260px;
}
.nav-links {
  display: flex;
  gap: 1.1rem;
  margin-left: auto;
  flex-wrap: wrap;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.nav-cta {
  margin-left: 0;
  flex-shrink: 0;
}
.lang-switcher {
  position: relative;
  z-index: 40;
}
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 40px;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.lang-switcher-btn:hover,
.lang-switcher.is-open .lang-switcher-btn {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}
.lang-flag {
  display: block;
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}
.lang-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #121512;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  max-height: min(70vh, 22rem);
  overflow: auto;
}
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}
.lang-menu a:hover,
.lang-menu li[aria-selected="true"] a {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav-toggle {
  display: none;
  margin-left: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 160ms ease, opacity 160ms ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--green);
  color: #041208;
  box-shadow: 0 0 24px var(--green-glow);
}
.btn-primary:hover { color: #041208; background: #62ff88; }
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.hero {
  padding: 4.5rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: top;
}
.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero .lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 36rem;
  margin: 0 0 1.4rem;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
}
.price {
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.price-was {
  color: var(--muted);
  text-decoration: line-through;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.trust span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
}
.trust-uk-badge {
  display: inline-block;
  width: auto;
  height: 1.05em;
  margin: 0;
  vertical-align: middle;
  object-fit: contain;
}

.media-frame {
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(57, 255, 106, 0.14), transparent 42%),
    linear-gradient(160deg, #101513, #0a0e0b);
  border-radius: 18px;
  min-height: 360px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.media-frame::after {
  content: "";
  position: absolute;
  inset: 12% 18%;
  border: 1px solid rgba(57, 255, 106, 0.22);
  border-radius: 50%;
  animation: sweep-glow 6s linear infinite;
  pointer-events: none;
}
.media-frame .placeholder-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 1;
}
.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.media-frame--photo {
  background: #0a0e0b;
}
.media-frame--photo::after {
  display: none;
}

.product-shot.media-frame {
  aspect-ratio: var(--product-image-ratio);
  width: 100%;
  min-height: 0;
  height: auto;
}
.product-shot.media-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}
.hero-extra-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}

.hero-slideshow.media-frame {
  aspect-ratio: var(--product-image-ratio);
  width: 100%;
  min-height: 0;
  height: auto;
}
.hero-slideshow.media-frame img.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 1;
  pointer-events: none;
}
.hero-slideshow.media-frame img.hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}
.hero-slideshow-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.85rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}
.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.hero-dot.is-active {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 10px var(--green-glow);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow .hero-slide { transition: none; }
}
@keyframes sweep-glow {
  from { transform: rotate(0deg); opacity: 0.55; }
  to { transform: rotate(360deg); opacity: 0.55; }
}

.section { 
  padding: 0;
  padding-top: 50px;
}

@media (max-width: 500px) {
  .section {
    padding-top: 30px;
  }
}


.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}
.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}
.section-head p { margin: 0; color: var(--muted); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature {
  padding: 0 0 1.35rem;
  border-top: none;
}
.feature .product-shot {
  margin-bottom: 1rem;
}
.feature-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--green-glow);
  position: relative;
}
.feature-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--green-dim);
  border-radius: 50%;
}
.feature h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.feature p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.reviews-card {
  margin-top: 2rem;
  padding: 1.6rem 1.6rem 1.4rem;
  border: 1px solid rgba(57, 255, 106, 0.35);
  background:
    linear-gradient(160deg, rgba(57, 255, 106, 0.07), transparent 50%),
    rgba(22, 27, 24, 0.85);
}
.reviews-card-head {
  margin-bottom: 1.25rem;
}
.reviews-card-head h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.reviews-score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.85rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.stars {
  color: var(--green);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  line-height: 1;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.review {
  margin: 0;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}
.review .stars {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
}
.review > p:last-of-type {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}
.review footer {
  color: var(--muted);
  font-size: 0.88rem;
}

.bnpl-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(57, 255, 106, 0.35);
  background:
    linear-gradient(135deg, rgba(57, 255, 106, 0.08), transparent 55%),
    rgba(22, 27, 24, 0.85);
}
.bnpl-card-copy { min-width: 0; flex: 1; }
.bnpl-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.bnpl-card p {
  margin: 0;
  color: var(--muted);
  max-width: 48rem;
}
.bnpl-logos {
  list-style: none;
  margin: 1rem 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}
.bnpl-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.5rem 0.5rem;
}
.bnpl-logos img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}
.bnpl-note {
  font-size: 0.88rem;
  line-height: 1.45;
}
.bnpl-note a { color: var(--green); }
.bnpl-card .btn { flex-shrink: 0; align-self: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.gallery-grid .media-frame,
.gallery-grid .product-shot.media-frame {
  aspect-ratio: var(--product-image-ratio);
  min-height: 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: flex-start;
}
.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.spec-list li {
  display: grid;
  grid-template-columns: 9.5rem 1fr;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.spec-list strong {
  color: var(--green);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
}
.step .media-frame {
  margin-bottom: 1rem;
}
.step .product-shot.media-frame {
  aspect-ratio: var(--product-image-ratio);
  min-height: 0;
}
.step-num {
  color: var(--green);
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}
.step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.step p { margin: 0; color: var(--muted); }

.about-block {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  background: rgba(18, 24, 20, 0.7);
}
.about-block p { color: var(--muted); margin: 0 0 0.85rem; }
.about-block p:last-child { margin-bottom: 0; }
.about-seo {
  max-width: 48rem;
  margin-top: 2rem;
}
.about-seo h3 {
  color: var(--text);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  margin: 1.75rem 0 0.65rem;
}
.about-seo h3:first-child { margin-top: 0; }
.about-seo p {
  color: var(--muted);
  margin: 0 0 0.9rem;
  line-height: 1.6;
}
.about-seo a { color: var(--green); }

.cta-band {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(57, 255, 106, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(57, 255, 106, 0.08);
  animation: sweep-glow 10s linear infinite;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 0.75rem; }
.cta-band p { color: var(--muted); margin: 0 auto 1.5rem; max-width: 32rem; }

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.5rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-meta { text-align: right; color: var(--muted); font-size: 0.92rem; }
.footer-meta p { margin: 0.2rem 0; }
.footer-contact {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-top: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.footer-address {
  font-style: normal;
  margin: 0;
}
.footer-address strong {
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-contact-links {
  text-align: right;
}
.footer-contact-links p { margin: 0.25rem 0; }
.footer-contact-links a { color: var(--muted); }
.footer-contact-links a:hover { color: var(--green); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-legal p { margin: 0.25rem 0; }

.prose h2[id],
.prose h3[id] { scroll-margin-top: 6rem; }

.page-main { padding: 3rem 0 4rem; }
.page-main h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1rem;
  line-height: 1.3;
}

.coords-page { max-width: 720px; }
.coords-intro { color: var(--muted); margin: 0 0 1.25rem; }
.coords-toolbar {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 0.75rem;
}
.coords-search { display: grid; gap: 0.35rem; }
.coords-label {
  color: var(--muted);
  font-size: 0.92rem;
}
.coords-search-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}
.coords-search-row input[type="search"] {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
}
.coords-search-row input[type="search"]:focus {
  outline: 1px solid var(--green);
  border-color: var(--green);
}
.coords-hint,
.coords-status { margin: 0.35rem 0 0.75rem; min-height: 1.35em; }
.coords-map {
  width: 100%;
  height: min(62vh, 460px);
  min-height: 280px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1;
  background: #1a211c;
}
.coords-map .leaflet-control-attribution {
  background: rgba(8, 10, 9, 0.75);
  color: var(--muted);
}
.coords-map .leaflet-control-attribution a { color: var(--green); }
.coords-results {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0 1rem;
}
.coords-field { display: grid; gap: 0.35rem; }
.coords-field label {
  color: var(--muted);
  font-size: 0.92rem;
}
.coords-value-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}
.coords-value-row input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-variant-numeric: tabular-nums;
}
.coords-attribution { font-size: 0.85rem; margin-top: 1.5rem; }
@media (max-width: 640px) {
  .coords-search-row,
  .coords-value-row {
    grid-template-columns: 1fr;
  }
  .coords-search-row .btn,
  .coords-value-row .btn {
    width: 100%;
  }
}
.prose {
  max-width: 46rem;
  color: var(--muted);
}
.prose h2 {
  color: var(--text);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}
.prose ul { padding-left: 1.2rem; }
.prose li { margin: 0.4rem 0; }
.faq details {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.95rem 0;
}
.faq summary {
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 0.65rem 0 0; }
.faq-images {
  display: grid;
  gap: 0.85rem;
  margin: 0.85rem 0 0;
}
.faq-images img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0a0e0c;
}

.narrow { max-width: 520px; }
.shop-form { display: grid; gap: 0.9rem; margin: 1.25rem 0; }
.shop-form label { display: grid; gap: 0.35rem; color: var(--muted); font-size: 0.92rem; }
.shop-form input,
.shop-form select,
.shop-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: #0f1411;
  color: var(--text);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  font: inherit;
}
.shop-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  grid-template-columns: none;
}
.shop-form .checkbox input { width: auto; margin-top: 0.2rem; }
.customs-ack {
  margin: 1.25rem 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 24, 20, 0.45);
}
.customs-ack h2 { margin-top: 0; }
.customs-ack .checkbox span { line-height: 1.45; }
.customs-ack .checkbox a { text-decoration: underline; }
.optional { opacity: 0.7; font-size: 0.85em; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.notice {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin: 1rem 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.notice-error { border-color: rgba(255,90,90,0.45); background: rgba(255,90,90,0.08); }
.notice-ok { border-color: rgba(57,255,106,0.35); background: rgba(57,255,106,0.08); }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  align-items: start;
}
.order-summary {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
  background: rgba(18, 24, 20, 0.7);
  position: sticky;
  top: 90px;
}
.order-summary .total { font-size: 1.15rem; color: var(--green); }
.shipping-methods { margin: 1.5rem 0 1rem; }
.shipping-rate-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.shipping-rate-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 24, 20, 0.45);
  cursor: pointer;
}
.shipping-rate-option:has(input:checked) {
  border-color: rgba(57, 255, 106, 0.45);
  background: rgba(57, 255, 106, 0.08);
}
.shipping-rate-option input {
  margin-top: 0.25rem;
  flex: 0 0 auto;
}
.shipping-rate-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.shipping-rate-title { font-weight: 600; }
.shipping-rate-meta { color: var(--muted, #9aa39a); font-size: 0.95rem; }
.shop-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
}
.shop-table th,
.shop-table td {
  text-align: left;
  padding: 0.7rem 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.address-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .specs-grid,
  .gallery-grid,
  .feature-grid,
  .steps,
  .footer-grid,
  .checkout-grid,
  .address-grid,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .nav-toggle { display: inline-flex; }
  .nav-tools {
    margin-left: auto;
  }
  .brand-logo {
    height: 64px;
    max-width: min(200px, 46vw);
  }
  .nav-cta {
    min-height: 42px;
    padding: 0.55rem 0.95rem;
    font-size: 0.9rem;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    background: rgba(8, 10, 9, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    z-index: 30;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 0.75rem 0.35rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .site-header { position: sticky; }
  .footer-grid {
    justify-items: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-meta {
    text-align: center;
  }
  .footer-contact {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-contact-links {
    text-align: center;
  }
  .footer-legal {
    text-align: center;
  }
  .spec-list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .order-summary { position: static; }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .bnpl-card {
    flex-direction: column;
    align-items: stretch;
  }
  .bnpl-card .btn { width: 100%; }
  .hero-slideshow.media-frame,
  .product-shot.media-frame {
    aspect-ratio: var(--product-image-ratio);
    min-height: 0;
    max-height: none;
    width: 100%;
  }
  .hero-extra-row {
    grid-template-columns: 1fr 1fr;
  }
}
