/**
 * Seller register (/start) — premium layout polish (spacing, type, responsive).
 * Concept unchanged: showcase + featured store + email/Google signup.
 */
:root {
  --ar-wine: #6a2345;
  --ar-plum: #2a0f24;
  --ar-ink: #1c1218;
  --ar-muted: #6b5d63;
  --ar-gold: #d6b15f;
  --ar-cream: #f8f4f1;
  --ar-line: rgba(42, 15, 36, 0.09);
  --ar-font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;

  --ar-pad-x: 24px;
  --ar-pad-y: 20px;
  --ar-gap: 28px;
  --ar-stack: 20px;
  --ar-radius: 20px;
  --ar-radius-sm: 14px;
  --ar-btn-h: 52px;
  --ar-shadow: 0 12px 32px rgba(42, 15, 36, 0.06);
  --ar-shadow-lg: 0 20px 48px rgba(42, 15, 36, 0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body.sg-auth-register {
  font-family: var(--ar-font);
  color: var(--ar-ink);
  background: #fdfbf9;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.sg-ar-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 8% -8%, rgba(214, 177, 95, 0.16), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 10%, rgba(106, 35, 69, 0.08), transparent 50%),
    linear-gradient(180deg, #fdfbf9 0%, #f6f0ea 55%, #f1e9e1 100%);
  pointer-events: none;
}

.sg-ar-shell {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding:
    calc(var(--ar-pad-y) + env(safe-area-inset-top, 0px))
    var(--ar-pad-x)
    calc(48px + env(safe-area-inset-bottom, 0px));
}

.sg-ar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
  min-height: 40px;
}
.sg-ar-home,
.sg-ar-top-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ar-muted);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.15s ease;
}
.sg-ar-home:hover,
.sg-ar-top-login:hover { color: var(--ar-wine); }
.sg-ar-top-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--ar-line);
  background: rgba(255, 255, 255, 0.72);
}

.sg-ar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: start;
}

/* ── Showcase column ── */
.sg-ar-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.sg-ar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.sg-ar-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(106, 35, 69, 0.16);
  flex-shrink: 0;
}
.sg-ar-brand--mob { display: none; }
.sg-ar-wordmark {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sg-ar-wordmark span { color: var(--ar-wine); }

.sg-ar-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ar-wine);
  opacity: 0.9;
}
.sg-ar-showcase-title {
  margin: 0 0 24px;
  max-width: 16ch;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.22;
  color: var(--ar-plum);
}

/* Marketplace product rail — full width, below hero + auth */
.sg-ar-rail-section {
  margin-top: 32px;
  min-width: 0;
}
.sg-ar-rail {
  display: flex;
  gap: 12px;
  overflow: hidden;
  margin: 0;
  padding: 2px 0 4px;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  animation: sgArMarquee 42s linear infinite;
  will-change: transform;
}
.sg-ar-rail:hover { animation-play-state: paused; }

@keyframes sgArMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.sg-ar-product {
  flex: 0 0 140px;
  background: #fff;
  border: 1px solid rgba(42, 15, 36, 0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--ar-shadow);
}
.sg-ar-product img {
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
  background: #f0ebe7;
  aspect-ratio: 140 / 120;
}
.sg-ar-product-meta {
  padding: 10px 12px 12px;
}
.sg-ar-product-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ar-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.sg-ar-product-price {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ar-wine);
  letter-spacing: -0.01em;
}

/* Featured seller */
.sg-ar-store {
  background: #fff;
  border: 1px solid rgba(42, 15, 36, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--ar-shadow-lg);
}
.sg-ar-store-cover {
  position: relative;
  min-height: 132px;
  background:
    linear-gradient(180deg, transparent 15%, rgba(20, 8, 16, 0.68)),
    linear-gradient(135deg, #6a2345, #2a0f24);
  background-size: cover;
  background-position: center;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.sg-ar-store-badge {
  align-self: flex-end;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: none;
}
.sg-ar-store-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 0;
}
.sg-ar-store-identity > div {
  min-width: 0;
  flex: 1;
}
.sg-ar-store-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: #fff;
  flex-shrink: 0;
}
.sg-ar-store-logo.is-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ar-wine);
}
.sg-ar-store-identity strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sg-ar-store-identity span {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
  opacity: 0.88;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sg-ar-store-body {
  padding: 14px 16px 16px;
}
.sg-ar-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.sg-ar-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ar-muted);
  background: rgba(42, 15, 36, 0.04);
  border: 1px solid var(--ar-line);
}
.sg-ar-thumbs {
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.sg-ar-thumbs img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: #f0ebe7;
  flex-shrink: 0;
  aspect-ratio: 1;
}

/* ── Auth card ── */
.sg-ar-main {
  min-width: 0;
  position: sticky;
  top: 20px;
}

.sg-ar-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(42, 15, 36, 0.07);
  border-radius: 24px;
  padding: 32px 28px 28px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    var(--ar-shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sg-ar-head {
  margin-bottom: 22px;
}
.sg-ar-head h1 {
  margin: 0 0 10px;
  max-width: 14ch;
  font-size: clamp(1.55rem, 2.8vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--ar-plum);
}
.sg-ar-head p {
  margin: 0;
  max-width: 32ch;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ar-muted);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* Stats — equal height */
.sg-ar-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}
.sg-ar-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 72px;
  padding: 12px 8px;
  border-radius: 14px;
  background: rgba(42, 15, 36, 0.028);
  border: 1px solid var(--ar-line);
}
.sg-ar-stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ar-plum);
}
.sg-ar-stat span {
  display: block;
  margin-top: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ar-muted);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.sg-ar-alert {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 550;
  line-height: 1.4;
}
.sg-ar-alert.is-error { background: #fef2f2; color: #991b1b; }
.sg-ar-alert a { color: inherit; font-weight: 700; }

/* Buttons — iOS-like consistency */
.sg-ar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: var(--ar-btn-h);
  min-height: var(--ar-btn-h);
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.12s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.15s ease;
}
.sg-ar-btn:hover { transform: translateY(-1px); }
.sg-ar-btn:active { transform: scale(0.98); }
.sg-ar-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.sg-ar-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #8b3a5c 0%, #6a2345 55%, #4a1830 100%);
  box-shadow: 0 10px 22px rgba(106, 35, 69, 0.28);
  margin-bottom: 10px;
}
.sg-ar-btn--primary:hover {
  box-shadow: 0 14px 28px rgba(106, 35, 69, 0.34);
}
.sg-ar-btn--google {
  color: #2d3748;
  background: #fff;
  border-color: rgba(45, 21, 32, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 20px;
  font-weight: 650;
}
.sg-ar-btn--google:hover {
  background: #fafafa;
  border-color: rgba(45, 21, 32, 0.14);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.sg-ar-btn--ghost {
  color: var(--ar-ink);
  background: rgba(42, 15, 36, 0.035);
  border-color: var(--ar-line);
  margin-bottom: 8px;
  height: 48px;
  min-height: 48px;
  font-size: 0.92rem;
  font-weight: 650;
}
.sg-ar-btn--ghost:hover {
  background: rgba(42, 15, 36, 0.055);
}

/* Benefits — compact, light */
.sg-ar-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.sg-ar-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 550;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ar-ink);
  background: rgba(42, 15, 36, 0.025);
  border: 1px solid var(--ar-line);
}
.sg-ar-benefit span {
  flex-shrink: 0;
  width: 1.1em;
  color: var(--ar-wine);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
  text-align: center;
}

.sg-ar-switch {
  margin: 4px 0 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ar-muted);
  letter-spacing: -0.01em;
}
.sg-ar-switch a {
  color: var(--ar-wine);
  font-weight: 700;
  text-decoration: none;
}
.sg-ar-switch a:hover { text-decoration: underline; }

.sg-ar-back {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ar-muted);
  cursor: pointer;
  letter-spacing: -0.01em;
}
.sg-ar-back:hover { color: var(--ar-wine); }

.sg-ar-step-title {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ar-plum);
}
.sg-ar-step-lead {
  margin: 0 0 18px;
  max-width: 36ch;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ar-muted);
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.sg-ar-label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ar-muted);
}
.sg-ar-input {
  width: 100%;
  height: var(--ar-btn-h);
  min-height: var(--ar-btn-h);
  padding: 0 16px;
  margin-bottom: 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(42, 15, 36, 0.12);
  background: #fff;
  font: inherit;
  font-size: 1rem;
  font-weight: 550;
  color: var(--ar-ink);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sg-ar-input:focus {
  border-color: rgba(106, 35, 69, 0.45);
  box-shadow: 0 0 0 4px rgba(106, 35, 69, 0.1);
}

.sg-ar-trust {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ar-muted);
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.sg-ar-email {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--ar-plum) !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.02em;
  word-break: break-all;
}
.sg-ar-trust-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: 0.875rem;
  color: var(--ar-muted);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.sg-ar-trust-list li { margin-bottom: 6px; }

.sg-ar-waiting {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: rgba(106, 35, 69, 0.05);
  border: 1px solid rgba(106, 35, 69, 0.1);
  font-size: 0.875rem;
  color: var(--ar-muted);
  line-height: 1.45;
}
.sg-ar-waiting strong { color: var(--ar-plum); font-weight: 700; }
.sg-signup-waiting-pulse {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--ar-wine);
  box-shadow: 0 0 0 0 rgba(106, 35, 69, 0.4);
  animation: sgArPulse 1.4s ease-out infinite;
  flex-shrink: 0;
}
@keyframes sgArPulse {
  0% { box-shadow: 0 0 0 0 rgba(106, 35, 69, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(106, 35, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(106, 35, 69, 0); }
}
.sg-ar-waiting.is-verified .sg-signup-waiting-pulse {
  background: #059669;
  animation: none;
  box-shadow: none;
}

.sg-ar-verify-actions {
  display: grid;
  gap: 0;
}

.sg-ar-flow .sg-signup-step { display: none; }
.sg-ar-flow .sg-signup-step.is-active { display: block; }
.sg-ar-flow .sg-signup-step[hidden]:not(.is-active) { display: none !important; }

.sg-signup-toast {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%) translateY(12px);
  z-index: 50;
  max-width: min(92vw, 400px);
  padding: 12px 16px;
  border-radius: 12px;
  background: #1c1218;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 550;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.sg-signup-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.sg-otp-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 16px 0 10px;
}
.sg-otp-digit {
  width: 46px;
  height: 54px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
}
.sg-otp-digit:focus {
  outline: none;
  border-color: #7a1f3d;
  box-shadow: 0 0 0 3px rgba(122, 31, 61, 0.12);
}
.sg-otp-timer {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 14px;
}

/* ── Tablet ── */
@media (max-width: 960px) {
  :root {
    --ar-pad-x: 24px;
    --ar-gap: 24px;
  }

  .sg-ar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .sg-ar-main {
    position: static;
  }
  /* Mobile stack: featured store → signup card → product rail (below grid) */
  .sg-ar-showcase { order: 1; }
  .sg-ar-main { order: 2; }
  .sg-ar-rail-section {
    margin-top: 24px;
  }
  .sg-ar-brand--desk { display: none; }
  .sg-ar-brand--mob {
    display: flex;
    margin-bottom: 20px;
  }
  .sg-ar-brand--mob img {
    width: 36px;
    height: 36px;
  }
  .sg-ar-card {
    padding: 28px 22px 24px;
    border-radius: 22px;
  }
  .sg-ar-head {
    margin-bottom: 20px;
  }
  .sg-ar-head h1 {
    max-width: none;
    font-size: 1.6rem;
  }
  .sg-ar-head p {
    max-width: 34ch;
    font-size: 0.92rem;
  }
  .sg-ar-stats {
    margin-bottom: 20px;
  }
  .sg-ar-stat {
    min-height: 68px;
  }
  .sg-ar-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .sg-ar-store-cover {
    min-height: 118px;
  }
  .sg-ar-product {
    flex-basis: 128px;
  }
  .sg-ar-product img {
    height: 110px;
  }
}

/* ── Phones (XR / 11 / 13 / A-series) ── */
@media (max-width: 480px) {
  :root {
    --ar-pad-x: 20px;
    --ar-btn-h: 50px;
  }

  .sg-ar-shell {
    padding-top: calc(16px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
  }
  .sg-ar-top {
    margin-bottom: 22px;
  }
  .sg-ar-grid {
    gap: 28px;
  }
  .sg-ar-card {
    padding: 24px 18px 22px;
    border-radius: 20px;
  }
  .sg-ar-head {
    margin-bottom: 18px;
  }
  .sg-ar-head h1 {
    font-size: 1.45rem;
    margin-bottom: 8px;
  }
  .sg-ar-head p {
    font-size: 0.9rem;
    max-width: 30ch;
  }
  .sg-ar-stats {
    gap: 8px;
    margin-bottom: 18px;
  }
  .sg-ar-stat {
    min-height: 64px;
    padding: 10px 6px;
    border-radius: 12px;
  }
  .sg-ar-stat strong {
    font-size: 0.95rem;
  }
  .sg-ar-stat span {
    font-size: 0.62rem;
  }
  .sg-ar-btn {
    font-size: 0.95rem;
  }
  .sg-ar-btn--primary {
    margin-bottom: 10px;
  }
  .sg-ar-btn--google {
    margin-bottom: 18px;
  }
  .sg-ar-benefits {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 18px;
  }
  .sg-ar-benefit {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }
  .sg-ar-showcase-title {
    font-size: 1.25rem;
    line-height: 1.25;
  }
  .sg-ar-rail-section {
    margin-top: 20px;
  }
  .sg-ar-product {
    flex-basis: 118px;
  }
  .sg-ar-product img {
    height: 100px;
  }
  .sg-ar-product-meta {
    padding: 8px 10px 10px;
  }
  .sg-ar-store-cover {
    min-height: 120px;
    padding: 12px 14px;
  }
  .sg-ar-thumbs img {
    width: 52px;
    height: 52px;
  }
  .sg-ar-step-title {
    font-size: 1.25rem;
  }
  .sg-ar-step-lead {
    font-size: 0.88rem;
  }
}

/* ── Small phones (SE / A04 narrow) ── */
@media (max-width: 380px) {
  :root {
    --ar-pad-x: 18px;
    --ar-btn-h: 48px;
  }

  .sg-ar-head h1 {
    font-size: 1.32rem;
  }
  .sg-ar-head p {
    font-size: 0.875rem;
  }
  .sg-ar-card {
    padding: 22px 16px 20px;
  }
  .sg-ar-stat {
    min-height: 60px;
    padding: 8px 4px;
  }
  .sg-ar-stat strong {
    font-size: 0.88rem;
  }
  .sg-ar-stat span {
    font-size: 0.58rem;
  }
  .sg-ar-btn--ghost {
    height: 46px;
    min-height: 46px;
  }
  .sg-ar-product {
    flex-basis: 108px;
  }
  .sg-ar-product img {
    height: 92px;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sg-ar-rail { animation: none; }
  .sg-ar-btn { transition: none; }
  .sg-signup-waiting-pulse { animation: none; }
}
