:root {
  --ink: #171a21;
  --ink-soft: #3d4554;
  --muted: #6e7686;
  --line: #e3e7ef;
  --paper: #f4f6fb;
  --white: #ffffff;
  --accent: #ff4d2e;
  --accent-hover: #e63e22;
  --accent-soft: #ffe8e3;
  --secondary: #00b4d8;
  --secondary-soft: #e3f7fc;
  --price: #ff4d2e;
  --save: #00a878;
  --danger: #e11d48;
  --ok: #00a878;
  --shadow: 0 12px 32px rgba(255, 77, 46, 0.10);
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1120px;
  --radius: 6px;
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-400.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/source-sans-3-latin-800.woff2") format("woff2");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.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;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(255, 77, 46, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 64px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav a:hover { color: var(--accent); }

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-search input {
  width: 180px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font: inherit;
  font-size: 0.88rem;
}
.header-search input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.16);
}

.lang-switch {
  display: flex;
  gap: 0.15rem;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.15rem;
  border-radius: var(--radius);
}
.lang-switch a {
  padding: 0.3rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  border-radius: 2px;
}
.lang-switch a.active {
  background: var(--accent);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s 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); }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0.5rem 1rem 0.85rem;
}
.mobile-nav a {
  display: block;
  padding: 0.7rem 0.25rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav.is-open { display: block; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero — one composition, brand first */
.hero {
  position: relative;
  min-height: min(78vh, 640px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(23, 26, 33, 0.78) 0%, rgba(255, 77, 46, 0.72) 48%, rgba(0, 180, 216, 0.55) 100%),
    radial-gradient(ellipse at 80% 15%, #ff8a6b 0%, #171a21 68%);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  animation: gridDrift 18s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 44px 44px, 44px 44px; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0 3.75rem;
  max-width: 40rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.92;
  margin: 0 0 1rem;
  animation: rise 0.7s ease both;
}

.hero-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 22ch;
  animation: rise 0.8s 0.05s ease both;
}

.hero-sub {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  max-width: 42ch;
  animation: rise 0.9s 0.1s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation: rise 1s 0.15s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); }

.btn-dark {
  background: var(--accent);
  color: var(--white);
  width: 100%;
  margin-top: 0.75rem;
}
.btn-dark:hover { background: var(--accent-hover); }

.btn-outline {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

/* Trust */
.trust {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.trust-item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.trust-item:nth-child(2) h3 { color: var(--secondary); }
.trust-item:nth-child(3) h3 { color: var(--save); }
.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Sections */
.section { padding: 4rem 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}
.search-hint {
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.15rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.product-card:hover {
  border-color: #ffb7a8;
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, #fff1ec, #e8f8fc);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  overflow: hidden;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-media img { transform: scale(1.04); }

.product-body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.product-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.2rem 0.45rem;
}
.product-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 700;
}
.product-body h3 a:hover { color: var(--accent); }
.product-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.85rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.price-now {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--price);
}
.price-was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.88rem;
}
.price-save {
  color: var(--save);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Why */
.why {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.why-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: why;
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
}
.why-list li {
  counter-increment: why;
  position: relative;
  padding: 1.1rem 1.2rem 1.1rem 3.6rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--paper);
  font-size: 1.02rem;
  color: var(--ink-soft);
}
.why-list li::before {
  content: counter(why, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, #171a21 0%, #2a1a18 55%, #102830 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 2.5rem 0;
  font-size: 0.9rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.footer-brand p { margin: 0; max-width: 36ch; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.footer-links a:hover { color: #fff; }
.footer-copy { color: rgba(255, 255, 255, 0.45); font-size: 0.82rem; }

/* PDP */
.pdp {
  background: var(--white);
  padding: 1.5rem 0 3.5rem;
}
.crumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.crumb a:hover { color: var(--accent); }

.pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.pdp-visual {
  background: linear-gradient(160deg, #fff1ec, #e8f8fc);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.pdp-visual img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.pdp-visual img.is-switching { opacity: 0.35; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.gallery-thumb {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0.3rem;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--accent); }

.sku-line {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 0.35rem;
}
.stock-pill {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--save);
  background: #e4f8f1;
  padding: 0.25rem 0.5rem;
}
.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pdp-sub {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.pdp-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  margin-bottom: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pdp-prices .label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.pdp-prices .val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--price);
}
.pdp-prices .val.muted {
  font-size: 1.05rem;
  color: var(--muted);
  font-weight: 600;
  text-decoration: line-through;
}
.pdp-prices .val.save { color: var(--save); font-size: 1.2rem; }

.package-box { margin: 0 0 1.25rem; }
.package-box .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.package-option {
  display: inline-block;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
}

.pdp-sec-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.96rem;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
}

.specs-wrap {
  margin-bottom: 2.5rem;
  padding: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
}
.specs th,
.specs td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.specs th {
  width: 38%;
  color: var(--muted);
  font-weight: 600;
  background: #f8fafb;
}

/* Order */
.order-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.order-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.order-kicker {
  margin: 0 0 0.15rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.order-panel h2 {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.order-lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  max-width: 42ch;
}
.order-side-price {
  text-align: right;
  background: var(--accent-soft);
  border: 1px solid #ffc9bc;
  border-radius: var(--radius);
  padding: 0.55rem 0.85rem;
  min-width: 110px;
}
.order-side-price span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.order-side-price strong {
  font-size: 1.25rem;
  color: var(--price);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 0.9rem;
  align-items: start;
}
.form-section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  margin-bottom: 0.7rem;
}
.form-section h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  font-weight: 800;
}
.form-section h3 span {
  display: inline-grid;
  place-items: center;
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.75rem;
}
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}
.field-hint {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  color: var(--muted);
}

input, select, textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.16);
}
textarea { min-height: 80px; resize: vertical; }

.phone-field {
  display: flex;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.phone-field:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.16);
}
.phone-prefix {
  display: grid;
  place-items: center;
  padding: 0 0.65rem;
  background: var(--paper);
  font-weight: 800;
  font-size: 0.85rem;
  border-right: 1px solid var(--line);
}
.phone-field input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.phone-field input:focus { box-shadow: none; }

.combo { position: relative; }
.combo.open input {
  border-color: var(--accent);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.combo-list {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--accent);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  max-height: 220px;
  overflow: auto;
  box-shadow: var(--shadow);
}
.combo-list li {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.combo-list li:hover,
.combo-list li.active {
  background: var(--accent-soft);
  color: var(--accent);
}

.package-readonly {
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius);
  border: 1px dashed var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.qty-stepper input {
  width: 3.2rem;
  text-align: center;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  padding: 0.45rem 0.2rem;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty-btn {
  width: 2.1rem;
  height: 2.15rem;
  border: 0;
  background: var(--paper);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.qty-btn:hover { background: var(--accent-soft); color: var(--accent); }

.checkout-summary {
  position: sticky;
  top: 88px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
}
.checkout-summary h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.summary-row span { color: var(--muted); }
.summary-row strong { text-align: right; max-width: 60%; }
.summary-row.total {
  border-bottom: 0;
  margin-top: 0.25rem;
  padding-top: 0.85rem;
}
.summary-row.total strong {
  font-size: 1.4rem;
  color: var(--price);
}
.btn-checkout {
  width: 100%;
  margin-top: 1rem;
}
.summary-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-weight: 600;
}
.alert-ok {
  background: #e4f8f1;
  color: var(--ok);
  border: 1px solid #9ee0c8;
}
.alert-err {
  background: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}
.req { color: var(--danger); }

.empty {
  padding: 2.5rem;
  text-align: center;
  color: var(--muted);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

/* Floating support dock */
.float-support {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 156px;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(23, 26, 33, 0.16);
  backdrop-filter: blur(8px);
  animation: floatIn 0.45s ease both;
}
.float-toggle {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.35rem 0.25rem 0.5rem;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.float-badge {
  position: absolute;
  top: -2px;
  right: 4px;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  display: inline-grid;
  place-items: center;
  line-height: 1;
}
.float-panel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.float-support.is-collapsed .float-panel {
  display: none;
}
.float-support.is-collapsed {
  width: auto;
  min-width: 112px;
}
.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.65rem 0.7rem;
  border-radius: 8px;
  border: 0;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.float-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.float-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}
.float-whatsapp { background: #25d366; }
.float-chat { background: var(--accent); }

.float-pay {
  margin-top: 0.4rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--line);
}
.float-pay-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  align-items: center;
}
.pay-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  border: 1px solid #e6e8ee;
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
}
.pay-logo svg {
  display: block;
  flex-shrink: 0;
}
.float-support.is-collapsed .float-pay {
  display: none;
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .float-support {
    right: 0.65rem;
    bottom: 0.75rem;
    width: 142px;
    padding: 0.5rem;
  }
  .float-btn { font-size: 0.78rem; padding: 0.55rem 0.5rem; }
  .pay-logo { height: 24px; }
}

/* Admin */
.admin-body {
  background: #eef1f4;
  min-height: 100vh;
  font-size: 15px;
}
.admin-top {
  background: linear-gradient(90deg, #171a21, #ff4d2e 140%);
  color: #fff;
  padding: 0.9rem 0;
}
.admin-top .container,
.admin-top .admin-wide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.admin-wide {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0.85rem;
  padding-right: 0.85rem;
  box-sizing: border-box;
}
.admin-orders-main {
  padding: 1rem 0 2rem;
}
.admin-orders-page .admin-top {
  padding-left: 0;
  padding-right: 0;
}
.admin-top a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
}
.admin-top a:hover { color: #fff; }

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 220px));
  gap: 0.85rem;
  margin: 1.25rem 0;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}
.stat .n { font-size: 1.6rem; font-weight: 800; line-height: 1.1; }
.stat .l { color: var(--muted); font-size: 0.85rem; margin-top: 0.2rem; }

.filter-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 1.25rem;
}

.order-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.order-table-full {
  width: 100%;
  border-radius: 6px;
}
table.orders {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
}
table.orders.orders-wide {
  min-width: 1680px;
  table-layout: auto;
}
table.orders th,
table.orders td {
  text-align: left;
  padding: 0.75rem 0.7rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.88rem;
}
table.orders.orders-wide th,
table.orders.orders-wide td {
  padding: 0.55rem 0.55rem;
  font-size: 0.82rem;
  vertical-align: middle;
}
table.orders th {
  background: #f8fafb;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
table.orders.orders-wide th {
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 2;
  font-size: 0.72rem;
}
table.orders .col-nowrap {
  white-space: nowrap;
}
table.orders .col-wrap {
  white-space: normal;
  word-break: break-word;
  min-width: 140px;
  max-width: 260px;
}
table.orders .col-actions .actions-row {
  flex-wrap: nowrap;
}
table.orders .col-order-id .order-created {
  margin-top: 0.15rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}
table.orders .shipped-days {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1d4ed8;
  white-space: nowrap;
}

.status {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
}
.status-pending { background: #fff7ed; color: #c2410c; }
.status-shipped { background: #eff6ff; color: #1d4ed8; }
.status-received { background: #ecfdf5; color: #047857; }
.status-exception { background: #fef2f2; color: #b91c1c; }
.status-reshipped { background: #f5f3ff; color: #6d28d9; }

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.login-box {
  width: min(100%, 380px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.login-box h1 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}
.login-box p { margin: 0 0 1.25rem; color: var(--muted); }

.edit-modal {
  position: fixed;
  inset: 0;
  background: rgba(21, 32, 43, 0.45);
  display: none;
  place-items: center;
  padding: 1rem;
  z-index: 100;
}
.edit-modal.open { display: grid; }
.edit-panel {
  width: min(100%, 720px);
  max-height: 90vh;
  overflow: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem;
}
.edit-panel h2 { margin: 0; font-size: 1.2rem; }
.edit-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: -0.35rem 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: -1.35rem;
  z-index: 3;
  background: #fff;
  margin-left: -0.15rem;
  margin-right: -0.15rem;
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  padding-top: 0.35rem;
}
.edit-panel-actions {
  display: flex;
  gap: 0.45rem;
  flex-shrink: 0;
  align-items: center;
}
.actions-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-sm { padding: 0.4rem 0.7rem; font-size: 0.8rem; }
.btn-danger { background: var(--danger); color: #fff; }

.admin-img-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.admin-img-preview img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* —— Order settlement / checkout page —— */
.checkout-page {
  padding: 1rem 0 2.5rem;
}
.checkout-page .crumb {
  margin: 0 0 0.55rem;
  font-size: 0.84rem;
}
.checkout-hero {
  margin: 0 0 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.checkout-hero-main {
  width: 100%;
}
.checkout-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.checkout-order-id {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.25;
}
.checkout-order-id span {
  display: inline-block;
  margin-right: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  vertical-align: middle;
}
.checkout-ship-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem 0.4rem;
  margin: 0.45rem 0 0;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  background: #eef6ff;
  border: 1px solid #c5dbf5;
  color: #1a4a7a;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}
.checkout-ship-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #1a5fb4;
}
.checkout-lead-sep {
  opacity: 0.55;
  font-weight: 700;
}
.checkout-lead-inline {
  font-weight: 500;
  color: #3b5f84;
}
.checkout-total-card {
  flex-shrink: 0;
  text-align: right;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent-soft), #fff);
  border: 1px solid var(--line);
}
.checkout-total-card span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.checkout-total-card strong {
  font-size: 1.4rem;
  color: var(--price);
  font-weight: 800;
  line-height: 1.15;
}
.checkout-settle-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 1rem;
  align-items: start;
}
.checkout-actions-inline {
  margin-top: 0.85rem;
}
.pay-method-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.4rem;
}
.pay-method-card {
  position: relative;
  margin: 0;
  cursor: pointer;
}
.pay-method-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-method-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 4.1rem;
  padding: 0.45rem 0.35rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, transform 0.12s ease;
}
.pay-method-logo {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 1.7rem;
}
.pay-method-logo svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.pay-method-body strong {
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.15;
  color: var(--ink);
}
.pay-method-card input:checked + .pay-method-body {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 2px rgba(255, 77, 46, 0.18);
  transform: translateY(-1px);
}
.pay-method-card:hover .pay-method-body {
  border-color: var(--accent);
}
.checkout-cs {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem 1.1rem;
  align-items: center;
  margin: 0 0 0.9rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(120deg, #fff8f3 0%, #f3faf6 100%);
  border: 1px solid #e8ddd2;
  border-radius: 10px;
}
.checkout-cs-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem 0.65rem;
}
.checkout-cs-copy h2 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.3;
}
.checkout-cs-choose {
  margin: 0 !important;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--muted) !important;
}
.checkout-cs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}
.checkout-cs-list li {
  margin: 0;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e5e7eb;
  font-size: 0.8rem;
  color: #374151;
  line-height: 1.35;
}
.checkout-cs-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.55rem;
}
.checkout-cs-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  isolation: isolate;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.checkout-cs-btn svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}
.checkout-cs-btn-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), transparent 55%);
  opacity: 0.55;
  animation: csGlowSweep 2.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.checkout-cs-chat {
  background: linear-gradient(135deg, #ff6a3d 0%, #ff3d2e 55%, #e11d1d 100%);
  box-shadow: 0 4px 12px rgba(255, 61, 46, 0.35), 0 0 0 0 rgba(255, 61, 46, 0.35);
  animation: csPulseOrange 2.2s ease-out infinite;
}
.checkout-cs-wa {
  background: linear-gradient(135deg, #3dde78 0%, #25d366 55%, #128c7e 100%);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.35);
  animation: csPulseGreen 2.2s ease-out infinite 0.35s;
}
.checkout-cs-btn:hover {
  transform: translateY(-1px) scale(1.03);
  filter: brightness(1.06);
  color: #fff;
}
.checkout-cs-chat:hover {
  box-shadow: 0 8px 18px rgba(255, 61, 46, 0.48);
}
.checkout-cs-wa:hover {
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.48);
}
.checkout-cs-btn:active {
  transform: translateY(0) scale(0.98);
}
.checkout-cs-btn.is-opening {
  filter: brightness(1.08);
  transform: scale(1.04);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.55), 0 8px 20px rgba(255, 61, 46, 0.45);
}
.checkout-cs-wa.is-opening {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.55), 0 8px 20px rgba(37, 211, 102, 0.45);
}
.chat-loading-mask {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.chat-loading-mask[hidden] {
  display: none !important;
}
.chat-loading-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 11.5rem;
  max-width: 18rem;
  padding: 1.35rem 1.5rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  text-align: center;
}
.chat-loading-spinner {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 3px solid #ffe1d6;
  border-top-color: #ff3d2e;
  animation: chatSpin 0.75s linear infinite;
}
.chat-loading-title {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}
.chat-loading-wait {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.3;
}
@keyframes chatSpin {
  to { transform: rotate(360deg); }
}
.checkout-cs-tip {
  grid-column: 1 / -1;
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  color: #1d4ed8;
}
@keyframes csPulseOrange {
  0% { box-shadow: 0 4px 12px rgba(255, 61, 46, 0.35), 0 0 0 0 rgba(255, 61, 46, 0.4); }
  70% { box-shadow: 0 4px 12px rgba(255, 61, 46, 0.35), 0 0 0 10px rgba(255, 61, 46, 0); }
  100% { box-shadow: 0 4px 12px rgba(255, 61, 46, 0.35), 0 0 0 0 rgba(255, 61, 46, 0); }
}
@keyframes csPulseGreen {
  0% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35), 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes csGlowSweep {
  0%, 100% { transform: translateX(-18%) rotate(8deg); opacity: 0.35; }
  50% { transform: translateX(18%) rotate(8deg); opacity: 0.7; }
}
@media (max-width: 720px) {
  .checkout-cs {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.8rem 0.85rem;
  }
  .checkout-cs-actions {
    flex-direction: row;
  }
  .checkout-cs-btn { flex: 1; }
  .checkout-lead-sep,
  .checkout-lead-inline {
    display: none;
  }
}
.checkout-done {
  max-width: 560px;
  margin: 1.5rem auto 0;
  padding: 1.75rem;
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.checkout-done h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.checkout-done > p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  line-height: 1.45;
}
.checkout-done-meta {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.35rem;
  text-align: left;
}
.checkout-done-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.checkout-done-meta dt {
  margin: 0;
  color: var(--muted);
}
.checkout-done-meta dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .checkout-settle-grid { grid-template-columns: 1fr; }
  .checkout-hero-top { align-items: flex-start; }
  .checkout-total-card { text-align: right; }
  .pay-method-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .order-panel-head { flex-direction: column; align-items: stretch; }
  .order-side-price { text-align: left; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-search input { width: 110px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .pdp-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .filter-bar { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .section-head { flex-direction: column; align-items: start; }
  .pay-method-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
