:root {
  --bg: #07111d;
  --bg-soft: #111b2f;
  --card: rgba(16, 24, 42, 0.82);
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.14);
  --text: #f4f6fb;
  --muted: #b7bfd2;
  --gold: #f2c14e;
  --gold-soft: rgba(242,193,78,0.16);
  --gold-border: rgba(242,193,78,0.24);
  --blue: #76b8ff;
  --green: #34d399;
  --shadow: 0 20px 60px rgba(0,0,0,0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(118,184,255,0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(242,193,78,0.1), transparent 22%),
    linear-gradient(180deg, #07111d 0%, #0e1728 56%, #0b1321 100%);
  color: var(--text);
  overflow-x: hidden;
}

::selection {
  background: rgba(242,193,78,0.28);
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.34), transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

code {
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 8px;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-banner {
  padding: 9px 16px;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #fff8e7;
  background: linear-gradient(90deg, rgba(242,193,78,0.14), rgba(118,184,255,0.09));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 22, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-strong);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: 0.65px;
  text-transform: uppercase;
}

.brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
}

.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.02);
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.nav-links a.is-active {
  color: #fff;
  background: rgba(242,193,78,0.1);
  border-color: var(--gold-border);
}

.hero {
  padding: 84px 0 30px;
}

.shipping-notice-wrap {
  padding: 0 0 8px;
}

.shipping-notice {
  background: linear-gradient(90deg, rgba(242,193,78,0.2), rgba(52,211,153,0.14));
  border: 1px solid rgba(242,193,78,0.26);
  color: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.shipping-notice strong {
  color: var(--gold);
}

.shipping-notice span {
  color: #ffffff;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.trust-strip-wrap {
  padding: 12px 0 8px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,193,78,0.4), transparent);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.card,
.product-card,
.info-card,
.guide-box,
.tracking-box,
.contact-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-image {
  padding: 34px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -60px -100px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(242,193,78,0.18), transparent 72%);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 700;
}

h1, h2, h3, p {
  margin: 0;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-bottom: 16px;
}

.hero-text {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 58ch;
  font-size: 1.03rem;
}

.hero-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-metric {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.06);
}

.hero-metric strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-box .hero-actions {
  width: 100%;
  max-width: 420px;
}

.contact-box .hero-actions .btn {
  flex: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid var(--line);
  transition: transform 0.18s ease, filter 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  text-align: center;
  min-width: 0;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #111;
  border-color: transparent;
  box-shadow: 0 16px 30px rgba(242,193,78,0.24);
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--gold-border);
}

.section {
  padding: 36px 0 10px;
}

.section-head {
  margin-bottom: 22px;
  max-width: 720px;
}

.section-head h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.section-head p {
  color: var(--muted);
  line-height: 1.7;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid var(--gold-border);
}

.product-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pokemon-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.onepiece-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
}

.order-builder-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}

.order-summary-card,
.order-form-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.checkout-shell {
  align-items: start;
}

.checkout-form-card {
  display: grid;
  gap: 18px;
}

.checkout-summary-card {
  position: sticky;
  top: 104px;
}

.checkout-block {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,0.018);
}

.checkout-block-head {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.checkout-block-head h3 {
  margin-bottom: 0;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.checkout-block-head p,
.checkout-note {
  color: var(--muted);
  line-height: 1.6;
}

.field-grid {
  display: grid;
  gap: 14px;
}

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

.order-summary-card::before,
.order-form-card::before,
.product-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242,193,78,0.38), transparent);
}

.order-summary-card.is-pinned {
  box-shadow: 0 22px 45px rgba(0,0,0,0.25);
  border-color: rgba(244,197,66,0.2);
}

.order-summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.text-action {
  background: transparent;
  border: 0;
  color: var(--gold);
  cursor: pointer;
  font-weight: 700;
  padding: 0;
}

.empty-state {
  color: var(--muted);
  line-height: 1.6;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
}

.cart-item-copy {
  display: grid;
  gap: 4px;
}

.cart-item-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.qty-btn,
.remove-btn {
  border: 1px solid var(--line);
  background: #0c1221;
  color: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.remove-btn {
  color: #ffb4b4;
}

.qty-value {
  min-width: 20px;
  text-align: center;
  font-weight: 700;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.field-label {
  font-weight: 700;
  color: #f3ede2;
}

.required-mark {
  color: #ff7373;
  font-style: normal;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(10, 14, 26, 0.88);
  color: #fff;
  padding: 15px 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.45);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(244,197,66,0.4);
  box-shadow: 0 0 0 3px rgba(244,197,66,0.12);
  background: rgba(12, 18, 33, 0.96);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field-checkbox {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.field-checkbox input {
  width: 18px;
  height: 18px;
}

.form-note {
  color: var(--muted);
  margin-bottom: 16px;
}

.payment-options {
  display: grid;
  gap: 12px;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  cursor: pointer;
}

.payment-option input {
  margin-top: 4px;
}

.payment-option strong {
  display: block;
  margin-bottom: 4px;
}

.payment-option small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.payment-option:has(input:checked) {
  border-color: rgba(244,197,66,0.38);
  background: rgba(244,197,66,0.08);
  box-shadow: 0 0 0 1px rgba(244,197,66,0.16) inset;
}

.checkout-trust-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.trust-point {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  color: var(--muted);
}

.summary-divider {
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  min-width: 0;
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  text-align: right;
  overflow-wrap: anywhere;
}

.summary-row.is-total {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.05rem;
}

.summary-row.is-total span {
  color: #fff;
}

.checkout-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.checkout-actions .btn {
  flex: 1 1 220px;
  justify-content: center;
}

.btn-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.btn-order {
  width: 100%;
  margin-top: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  color: #fff;
  border-color: rgba(255,255,255,0.1);
}

.btn-order.is-added {
  background: rgba(52, 211, 153, 0.14);
  border-color: rgba(52, 211, 153, 0.35);
  color: #d6fff0;
}

.product-card {
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,197,66,0.35);
  box-shadow: 0 24px 45px rgba(0,0,0,0.24);
}

.product-image {
  padding: 12px;
  background: linear-gradient(180deg, #0c1221, #0e1730);
}

.product-image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-body {
  padding: 18px;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.product-body h3 {
  font-size: 1.04rem;
  margin-bottom: 10px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.product-body p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 14px;
  min-height: 54px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.price {
  color: var(--gold);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: 0.02em;
}

.stock {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-whatsapp {
  flex: 1;
  background: #25d366;
  color: #08101c;
  border-color: transparent;
}

.btn-whatsapp:hover {
  filter: brightness(1.05);
}

.buy-actions {
  display: flex;
  gap: 10px;
}

.btn-telegram {
  flex: 1;
  background: #229ed9;
  color: #fff;
  border-color: transparent;
}

.btn-telegram:hover {
  filter: brightness(1.05);
}

.product-card .buy-actions {
  display: none;
}

.info-card {
  padding: 20px;
}

.info-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.info-card p,
.guide-box p,
.guide-box li,
.tracking-box,
.contact-box p {
  color: var(--muted);
  line-height: 1.65;
}

.highlight-note {
  color: var(--gold);
  font-weight: 700;
}

.tracking-box,
.guide-box,
.contact-box {
  padding: 20px;
  margin-top: 18px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
}

.review-rating {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.testimonial-card strong {
  display: block;
  color: #fff;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at top right, rgba(242,193,78,0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.018));
}

.contact-box h2 {
  font-size: 2.1rem;
}

.floating-order-chip {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 130;
  min-width: 200px;
  background: rgba(10, 14, 26, 0.94);
  border: 1px solid rgba(244,197,66,0.25);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
  border-radius: 18px;
  padding: 12px 14px;
  display: none;
  gap: 8px;
}

.floating-order-chip.is-visible {
  display: grid;
}

.floating-order-chip strong {
  font-size: 0.95rem;
}

.floating-order-chip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.floating-order-chip a {
  color: var(--gold);
  font-weight: 700;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 18px);
  opacity: 0;
  pointer-events: none;
  z-index: 140;
  background: rgba(10, 14, 26, 0.96);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.guide-box ul {
  margin: 0 0 14px;
  padding-left: 18px;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding: 30px 0 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.01));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-copy,
.footer-block p,
.footer-bottom p {
  color: var(--muted);
  line-height: 1.7;
}

.footer-block h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-block a {
  color: #f5f3ee;
  transition: color 0.18s ease;
}

.footer-block a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 18px;
}

@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-copy,
  .hero-image {
    padding: 28px;
  }

  .order-builder-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary-card {
    position: static;
    top: auto;
  }

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

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

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .top-banner {
    padding: 8px 14px;
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.8px;
  }

  .topbar {
    position: static;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    font-size: 1.08rem;
    line-height: 1.2;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 8px;
    border-radius: 12px;
    font-size: 0.78rem;
    text-align: center;
  }

  .hero {
    padding: 24px 0 18px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-metrics,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .shipping-notice {
    padding: 14px;
    border-radius: 14px;
    line-height: 1.5;
  }

  .trust-item {
    padding: 14px;
    border-radius: 14px;
  }

  .field-grid-two {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .hero-copy,
  .hero-image {
    padding: 18px;
    border-radius: 16px;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.04;
    letter-spacing: 0;
    margin-bottom: 12px;
  }

  .section-head h2,
  .contact-box h2 {
    font-size: 1.55rem;
    line-height: 1.18;
    letter-spacing: 0;
  }

  .hero-text {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn,
  .contact-box .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-metric {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .section {
    padding: 28px 0 6px;
  }

  .section-head {
    margin-bottom: 16px;
  }

  .section-kicker {
    border-radius: 10px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .order-summary-card,
  .order-form-card,
  .checkout-block,
  .product-card,
  .testimonial-card,
  .info-card,
  .contact-box {
    border-radius: 16px;
  }

  .order-summary-card,
  .order-form-card {
    padding: 16px;
  }

  .checkout-block {
    padding: 14px;
  }

  .checkout-block-head h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .field {
    margin-bottom: 14px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 48px;
    padding: 13px 14px;
    font-size: 16px;
    border-radius: 12px;
  }

  .cart-item,
  .order-summary-head,
  .summary-row {
    align-items: flex-start;
  }

  .cart-item {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
  }

  .cart-controls {
    width: 100%;
    justify-content: flex-start;
  }

  .summary-row {
    gap: 10px;
  }

  .checkout-actions .btn {
    flex-basis: auto;
  }

  .buy-actions {
    flex-direction: column;
  }

  .checkout-actions {
    flex-direction: column;
  }

  .product-image {
    padding: 10px;
  }

  .product-image img {
    border-radius: 12px;
  }

  .product-body {
    padding: 15px;
  }

  .product-body p {
    min-height: 0;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .contact-box {
    align-items: stretch;
    padding: 18px;
  }

  .floating-order-chip {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-width: 0;
    border-radius: 14px;
  }

  .site-toast {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    transform: translateY(18px);
    border-radius: 14px;
    text-align: center;
  }

  .site-toast.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .nav-links a {
    min-height: 40px;
  }

  .hero-copy,
  .hero-image,
  .order-summary-card,
  .order-form-card,
  .contact-box {
    padding: 14px;
  }

  h1 {
    font-size: 1.88rem;
  }

  .hero-image img {
    border-radius: 12px;
  }

  .checkout-block-head {
    margin-bottom: 16px;
  }

  .order-summary-head {
    flex-direction: column;
  }

  .text-action {
    align-self: flex-start;
  }
}
