/* Riot Shop — Kireimarket-style layout, black & red */

:root {
  --brand-bg: #0a0608;
  --brand-vignette: rgba(6, 2, 4, 0.94);
  --riot-red: #ff4655;
  --riot-red-soft: #ff6b76;
  --riot-text: #ffffff;
  --riot-muted: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-bg-top: rgba(255, 255, 255, 0.09);
  --glass-bg-bottom: rgba(255, 255, 255, 0.03);
  --glass-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --radius-sm: 0.875rem;
  --radius-md: 1.125rem;
  --radius-lg: 1.375rem;
  --radius-xl: 1.5rem;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  font-family: 'Questrial', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background-color: var(--brand-bg);
  color: var(--riot-text);
  min-height: 100vh;
  position: relative;
}

::selection {
  background-color: rgba(255, 70, 85, 0.35);
  color: #fff;
}

/* ── Background layers ── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--brand-bg);
}

.site-bg-glow { position: absolute; inset: 0; }

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
}

.glow-orb-1 {
  width: 55vw; height: 55vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle, rgba(255, 70, 85, 0.5) 0%, transparent 68%);
  top: -18%; left: -12%;
  animation: glow-drift-1 14s ease-in-out infinite;
}
.glow-orb-2 {
  width: 48vw; height: 48vw; max-width: 520px; max-height: 520px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.35) 0%, transparent 70%);
  bottom: -22%; right: -14%;
  animation: glow-drift-2 16s ease-in-out infinite;
}
.glow-orb-3 {
  width: 40vw; height: 40vw; max-width: 440px; max-height: 440px;
  background: radial-gradient(circle, rgba(255, 70, 85, 0.28) 0%, transparent 72%);
  top: 38%; left: 42%;
  animation: glow-drift-3 20s ease-in-out infinite;
}

@keyframes glow-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(14vw, 10vh) scale(1.12); }
}
@keyframes glow-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-14vw, -12vh) scale(1.1); }
}
@keyframes glow-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10vw, 12vh) scale(1.15); }
}

.site-bg-grid {
  position: absolute; inset: 0; opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px);
  background-size: 56px 56px;
}

.site-bg-dots {
  position: absolute; inset: 0; opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
}

.site-bg-grain {
  position: absolute; inset: 0; opacity: 0.045; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='320'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.site-bg-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 115% 85% at 50% 85%, transparent 35%, var(--brand-vignette) 100%);
}

.site-bg-bottom-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12rem;
  background: linear-gradient(to top, var(--brand-bg), transparent);
}

/* ── Glass system ── */
.glass-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(to bottom, var(--glass-bg-top), var(--glass-bg-bottom));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  pointer-events: none;
}

.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.live-dot {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--riot-red);
  opacity: 0.65;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.live-dot::after {
  content: '';
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--riot-red);
  box-shadow: 0 0 12px rgba(255, 70, 85, 0.7);
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

.brand-text {
  background: linear-gradient(to right, #fecaca, var(--riot-red), #fca5a5, #ff4655);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-icon-well {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(to bottom right, rgba(255, 70, 85, 0.35), rgba(220, 38, 38, 0.15));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.text-heading { color: var(--riot-text); }
.text-muted { color: var(--riot-muted); }

/* ── Layout ── */
.site-main {
  padding-top: calc(env(safe-area-inset-top, 0px) + 4.5rem);
  padding-bottom: 4rem;
}

@media (min-width: 640px) {
  .site-main { padding-top: calc(env(safe-area-inset-top, 0px) + 4.75rem); }
}

@media (min-width: 1024px) {
  .site-main { padding-top: calc(env(safe-area-inset-top, 0px) + 6.75rem); padding-bottom: 6rem; }
}

/* ── Header (floating glass pill) ── */
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 50;
  padding-top: calc(env(safe-area-inset-top, 0px) + 0.75rem);
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.header-wrap {
  display: flex;
  justify-content: center;
  padding: 0 0.75rem;
}

@media (min-width: 640px) { .header-wrap { padding: 0 1.25rem; } }

.header-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (max-width: 1023px) {
  .header-wrap {
    justify-content: flex-end;
    padding: 0 0.875rem;
  }

  .header-pill {
    width: auto;
    max-width: none;
    min-height: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
  }
}

@media (min-width: 1024px) {
  .header-pill {
    width: 100%;
    max-width: 72rem;
    min-height: 2.75rem;
    padding: 0.75rem 1.75rem;
    gap: 1.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.065);
    box-shadow: 0 12px 48px -16px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px) saturate(1.35);
    -webkit-backdrop-filter: blur(24px) saturate(1.35);
  }
}

.header-nav {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    width: 100%;
  }
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-btn-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
}

.header-actions {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .header-actions { right: 0.75rem; }
}

@media (max-width: 1023px) {
  .header-actions {
    position: static;
    transform: none;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .header-actions { display: none; }
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 36px -14px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.mobile-menu-btn:active {
  transform: scale(0.96);
}

@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }

/* Mobile dropdown nav — compact panel, not full-screen drawer */
.mobile-nav {
  position: fixed;
  top: calc(env(safe-area-inset-top, 0px) + 3.85rem);
  right: 0.875rem;
  left: auto;
  width: min(16rem, calc(100vw - 1.5rem));
  z-index: 49;
  pointer-events: none;
}

.mobile-nav.is-open { pointer-events: auto; }

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s ease;
  border: none;
  cursor: pointer;
}

.mobile-nav.is-open .mobile-nav-backdrop { opacity: 1; }

.mobile-nav-panel {
  position: relative;
  max-height: min(20rem, calc(100vh - 5.5rem));
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 6, 10, 0.97);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: auto;
}

.mobile-nav.is-open .mobile-nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mobile-nav .nav-btn {
  width: 100%;
  justify-content: flex-start;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
}

.mobile-menu-body-lock { overflow: hidden; }

/* ── Hero ── */
.hero-section {
  text-align: center;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) { .hero-section { padding-bottom: 3.5rem; } }

.hero-section--home {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .hero-section--home {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section--home {
    padding-top: 3.5rem;
    padding-bottom: 5.5rem;
  }
}

.hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-section--home .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hero-section--home .hero-copy { gap: 1.75rem; }
}

.hero-section--home .glass-pill {
  margin: 0 auto;
  width: fit-content;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  text-wrap: balance;
}

.hero-section--home .hero-title {
  line-height: 1.22;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0 0.5rem;
}

@media (min-width: 640px) {
  .hero-section--home .hero-title {
    line-height: 1.24;
    padding: 0 1rem;
  }
}

.hero-subtitle {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  text-wrap: pretty;
}

@media (min-width: 640px) { .hero-subtitle { font-size: 1.125rem; } }

.hero-section--home .hero-subtitle {
  margin: 0 auto;
}

.hero-section--home #hero-stats {
  width: 100%;
}

.page-hero { padding-bottom: 2rem; }
.page-hero > div { border-bottom: none; padding-bottom: 0; }

/* ── Stats ── */
.hero-stats-grid,
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 2.5rem auto 0;
}

@media (min-width: 640px) {
  .hero-stats-grid,
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

@media (min-width: 1024px) {
  .hero-stats-grid--4,
  .stats-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 9.5rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.stat-card .brand-icon-well {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.75rem;
}

.stat-value {
  font-size: clamp(1.65rem, 3vw, 1.75rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #fff;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
}

.stats-bar { background: transparent; }
.stats-bar-inner { border: none; padding: 2rem 0; }

/* ── Section headings ── */
.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-heading p {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  color: var(--riot-muted);
  max-width: 36rem;
  margin-inline: auto;
}

.section-block { padding: 3rem 0; }
.section-block--home-products {
  padding-top: 2.5rem;
}

@media (min-width: 768px) {
  .section-block--home-products { padding-top: 3.5rem; }
}

@media (min-width: 1024px) {
  .section-block--home-products { padding-top: 4rem; }
}

.section-alt { background: transparent; }

/* ── Shop / product cards ── */
.content-box {
  padding: 1.5rem;
  border-radius: 1rem;
}

.content-box .shop-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.875rem;
}

.shop-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
  min-height: 10rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.shop-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 70, 85, 0.25);
}

.shop-card h3 {
  font-weight: 700;
  font-size: 1.0625rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.shop-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--riot-muted);
  flex: 1;
}

.shop-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--riot-red-soft);
}

.product-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  position: relative;
  min-height: 12rem;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 70, 85, 0.35);
  background: rgba(255, 70, 85, 0.15);
  color: #fecaca;
}

.product-amount { font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.product-sub, .product-region { font-size: 0.8rem; color: var(--riot-muted); margin-top: 0.25rem; }
.product-price {
  font-size: 1.75rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--riot-red);
  margin: 1rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .product-grid--vp { grid-template-columns: repeat(2, 1fr); }
  .product-grid--accounts { grid-template-columns: repeat(3, 1fr); }
}

/* ── Region tabs ── */
.region-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-bottom: 1.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--riot-red) transparent;
}

.region-tab {
  padding: 0.5rem 1.125rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.region-tab:hover {
  border-color: rgba(255, 70, 85, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.region-tab-active {
  background: rgba(255, 70, 85, 0.2);
  border-color: rgba(255, 70, 85, 0.45);
  color: #fff;
}

/* ── Process / trust ── */
.process-step,
.trust-card {
  padding: 1.5rem;
  text-align: center;
}

.step-number {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(to bottom right, rgba(255, 70, 85, 0.45), rgba(220, 38, 38, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg { color: var(--riot-red); }

/* ── Reviews (Kireimarket-style) ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  min-height: 14rem;
}

.review-card .quote-watermark {
  position: absolute;
  right: -0.25rem;
  top: 1rem;
  width: 5rem;
  height: 5rem;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

@media (min-width: 640px) {
  .review-card .quote-watermark { width: 6rem; height: 6rem; }
}

.review-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.review-card-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  flex: 1;
}

.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 70, 85, 0.35), rgba(127, 29, 29, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.3);
}

.review-name {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-top: 0.25rem;
}

.review-stars svg {
  width: 0.875rem;
  height: 0.875rem;
  fill: url(#brand-stars);
  stroke: url(#brand-stars);
}

.review-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 70, 85, 0.35);
  padding: 0.25rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fecaca;
}

.review-text {
  position: relative;
  z-index: 1;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
}

.review-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── Buttons ── */
.btn-primary,
.btn-secondary,
.form-input,
.payment-method-card,
.payment-step-indicator,
.voucher-row {
  border-radius: var(--radius-md);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--riot-red) 0%, #dc2626 100%);
  color: white;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(255, 70, 85, 0.25);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(255, 70, 85, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: rgba(255, 70, 85, 0.35);
  background: rgba(255, 70, 85, 0.1);
}

/* ── Forms ── */
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  font-size: 0.9375rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.35); }

.form-input:focus {
  outline: none;
  border-color: rgba(255, 70, 85, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
}

.form-field { position: relative; }

.form-field.is-invalid .form-input,
.form-field.is-invalid .custom-select-trigger {
  border-color: rgba(255, 70, 85, 0.65);
  background: rgba(255, 70, 85, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.14);
}

.field-error {
  display: none;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 70, 85, 0.35);
  background: rgba(255, 70, 85, 0.1);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fecaca;
}

.form-field.is-invalid .field-error { display: block; }

/* Custom select */
.content-box:has(#contact-form-panel),
.contact-form-panel,
.form-field[data-field="subject"] {
  overflow: visible;
}

.custom-select {
  position: relative;
  z-index: 1;
}

.custom-select.is-open {
  z-index: 60;
}

.custom-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9375rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.custom-select.has-value .custom-select-trigger {
  border-color: rgba(255, 70, 85, 0.35);
  background: rgba(255, 70, 85, 0.08);
}

.custom-select.is-open .custom-select-trigger {
  border-color: rgba(255, 70, 85, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 70, 85, 0.12);
}

.custom-select-value.is-placeholder { color: rgba(255, 255, 255, 0.35); }
.custom-select-value:not(.is-placeholder) { color: #fff; font-weight: 600; }

.custom-select-chevron {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.55);
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select-chevron { transform: rotate(180deg); }

.custom-select-menu {
  position: absolute;
  z-index: 70;
  pointer-events: none;
  top: calc(100% + 0.375rem);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.375rem;
  list-style: none;
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 6, 10, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.custom-select.is-open .custom-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select-option {
  display: block;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-select-option:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.custom-select-option.is-selected {
  background: rgba(255, 70, 85, 0.18);
  color: #fecaca;
}

.hidden { display: none !important; }

.form-spinner {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--riot-red);
  animation: form-spin 0.75s linear infinite;
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ── FAQ ── */
.faq-item { overflow: hidden; margin-bottom: 0.75rem; }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.125rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.faq-question:hover { background: rgba(255, 255, 255, 0.04); }

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
}

.faq-answer.open {
  padding: 0 1.5rem 1.25rem;
  max-height: 400px;
  opacity: 1;
}

.faq-answer p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--riot-muted);
}

/* ── Page CTA ── */
.page-cta-box {
  max-width: 36rem;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.page-cta-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.page-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ── Footer ── */
.site-footer {
  border-top: none;
  padding: 2rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  text-align: center;
  background: transparent !important;
}

.site-footer::before {
  content: '';
  display: block;
  width: min(92%, 40rem);
  height: 1px;
  margin: 0 auto 2rem;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--riot-red-soft); }

.footer-copy p:first-child {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-copy p:last-child {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.5rem;
  max-width: 28rem;
  margin-inline: auto;
  line-height: 1.5;
}

/* ── Animations ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.scroll-reveal.is-visible { opacity: 1; transform: translateY(0); }

.page-enter { animation: pageEnter 0.55s ease both; }

.page-animate {
  animation: pageEnter 0.5s ease both;
  animation-delay: var(--page-enter-delay, 0s);
}

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

.contact-form-panel { transition: opacity 0.3s ease, transform 0.3s ease; }
.contact-form-panel.is-hiding { opacity: 0; transform: translateY(-8px); pointer-events: none; }

.toast {
  position: fixed;
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  right: calc(1.25rem + env(safe-area-inset-right, 0px));
  left: auto;
  max-width: min(22rem, calc(100vw - 2rem));
  transform: translateY(100px);
  background: rgba(14, 6, 10, 0.95);
  color: white;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  line-height: 1.5;
  z-index: 200;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
  border: 1px solid rgba(255, 70, 85, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.65);
}

.toast.show { transform: translateY(0); opacity: 1; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-arrow:hover { color: var(--riot-red-soft); }

/* ── Payment checkout ── */
.payment-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.payment-step-indicator {
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.payment-step-indicator.is-active,
.payment-step-indicator.is-done {
  opacity: 1;
  border-color: rgba(255, 70, 85, 0.3);
}

.payment-step-indicator.is-active {
  background: rgba(255, 70, 85, 0.1);
}

.payment-step-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--riot-red-soft);
}

.payment-step-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--riot-muted);
  margin-top: 0.25rem;
}

.payment-order-summary {
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.payment-order-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--riot-muted);
}

.payment-order-product {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.375rem;
}

.payment-order-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--riot-red);
  margin-top: 0.25rem;
}

.payment-order-id {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
}

.payment-panel {
  padding: 1.5rem;
}

.payment-panel-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.payment-panel-sub {
  font-size: 0.875rem;
  color: var(--riot-muted);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.payment-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  margin-top: 1.25rem;
}

@media (min-width: 480px) {
  .payment-method-grid { grid-template-columns: repeat(3, 1fr); }
}

.payment-method-card {
  padding: 0.875rem 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.payment-method-card:hover {
  border-color: rgba(255, 70, 85, 0.35);
  background: rgba(255, 70, 85, 0.08);
}

.payment-method-card.is-selected {
  border-color: rgba(255, 70, 85, 0.5);
  background: rgba(255, 70, 85, 0.15);
  color: #fecaca;
  box-shadow: inset 0 0 0 1px rgba(255, 70, 85, 0.2);
}

.payment-nav-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.voucher-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.voucher-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.voucher-tier {
  font-weight: 700;
  color: #fff;
  font-size: 0.9375rem;
}

.voucher-hint {
  font-size: 0.75rem;
  color: var(--riot-muted);
  margin-top: 0.125rem;
}

.payment-total-voucher {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--riot-muted);
}

.payment-total-voucher strong { color: #fff; }

.payment-attempts { margin-top: 0.75rem; }

.alt-providers {
  margin-top: 1.25rem;
  padding: 1.25rem;
}

.alt-provider-list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.alt-provider-list a {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--riot-red-soft);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.alt-provider-list a:hover {
  background: rgba(255, 70, 85, 0.1);
}

.payment-cancelled .payment-panel-title { color: #fecaca; }

.payment-instant-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.625rem;
}

/* ── Available Products catalog grid ── */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.catalog-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  padding: 1.25rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

@media (min-width: 640px) {
  .catalog-card { padding: 1.5rem; }
}

.catalog-card:hover {
  border-color: rgba(255, 70, 85, 0.28);
  transform: translateY(-2px);
}

.catalog-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.catalog-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--riot-red-soft);
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  background: rgba(255, 70, 85, 0.12);
  border: 1px solid rgba(255, 70, 85, 0.2);
  position: static;
}

.catalog-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--riot-red);
  margin: 0;
  white-space: nowrap;
}

.catalog-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.catalog-desc {
  font-size: 0.875rem;
  color: var(--riot-muted);
  line-height: 1.6;
  flex: 1;
}

.catalog-delivery-note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75rem;
}

.catalog-card .shop-card-cta,
.catalog-card .product-buy-btn {
  margin-top: auto;
  padding: 1rem 0 0;
  align-self: flex-start;
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

/* ── Payment step transitions ── */
.payment-flow {
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.payment-flow.is-leaving {
  opacity: 0;
  transform: translateY(12px);
}

.payment-flow.is-entering {
  opacity: 0;
  transform: translateY(-12px);
}

.payment-flow.is-entering.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Crypto payment ── */
.crypto-checkout {
  margin-top: 1.25rem;
}

.crypto-coin-section {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.crypto-section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--riot-muted);
  margin-bottom: 0.75rem;
}

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

.crypto-coin-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 4.25rem;
  padding: 0.875rem 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.crypto-coin-btn:hover {
  border-color: rgba(255, 70, 85, 0.35);
  background: rgba(255, 70, 85, 0.08);
}

.crypto-coin-btn.is-selected {
  border-color: rgba(255, 70, 85, 0.5);
  background: rgba(255, 70, 85, 0.15);
  color: #fecaca;
  box-shadow: inset 0 0 0 1px rgba(255, 70, 85, 0.2);
}

.crypto-coin-name {
  font-size: 0.8125rem;
  font-weight: 600;
}

.crypto-coin-symbol {
  font-size: 0.6875rem;
  color: var(--riot-muted);
}

.crypto-coin-btn.is-selected .crypto-coin-symbol {
  color: rgba(254, 202, 202, 0.75);
}

.crypto-details {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}

.crypto-details.is-open {
  max-height: 32rem;
  opacity: 1;
  margin-top: 1rem;
}

.crypto-pick-hint {
  font-size: 0.875rem;
  color: var(--riot-muted);
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.crypto-payment-box {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.crypto-amount-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .crypto-amount-row { grid-template-columns: 1fr; }
}

.crypto-amount-block {
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.crypto-amount-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--riot-muted);
  margin-bottom: 0.5rem;
}

.crypto-copy-value {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}

.crypto-copy-value:hover { color: var(--riot-red-soft); }

.crypto-copy-hint {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.25rem;
}

.crypto-rate-note,
.crypto-rate-loading,
.crypto-rate-error {
  font-size: 0.75rem;
  color: var(--riot-muted);
  margin-top: 0.375rem;
}

.crypto-rate-error { color: #fecaca; }

.crypto-address-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.crypto-address-copy {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 70, 85, 0.25);
  background: rgba(255, 70, 85, 0.08);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.crypto-address-copy:hover {
  background: rgba(255, 70, 85, 0.14);
  border-color: rgba(255, 70, 85, 0.4);
}

.crypto-address-text {
  flex: 1;
  font-size: 0.8125rem;
  word-break: break-all;
  line-height: 1.5;
  color: #fecaca;
}

.crypto-copy-icon {
  flex-shrink: 0;
  color: var(--riot-red-soft);
}

.crypto-address-hint {
  font-size: 0.75rem;
  color: var(--riot-muted);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ── Mobile polish ── */
.btn-primary,
.btn-secondary,
.nav-btn,
.mobile-menu-btn,
.crypto-coin-btn,
.payment-method-card,
.product-buy-btn,
.catalog-card .shop-card-cta {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (max-width: 639px) {
  .section-block { padding: 2.25rem 0; }

  .hero-title { font-size: clamp(1.75rem, 8vw, 2.5rem); }

  .payment-steps { gap: 0.375rem; }

  .payment-step-indicator { padding: 0.625rem 0.25rem; }

  .payment-step-label {
    font-size: 0.5625rem;
    letter-spacing: 0.04em;
  }

  .payment-panel { padding: 1.25rem; }

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

  .catalog-card { padding: 1rem; }

  .catalog-title { font-size: 0.9375rem; }

  .catalog-desc,
  .catalog-delivery-note { font-size: 0.8125rem; }



  .btn-primary,
  .btn-secondary { min-height: 2.75rem; }

  .mobile-nav .nav-btn { min-height: 2.75rem; }

  .page-cta-actions { flex-direction: column; width: 100%; }

  .page-cta-actions .btn-primary,
  .page-cta-actions .btn-secondary { width: 100%; }
}