:root {
  --bg: #0b0b0c;
  --bg-elev: #0f0f11;
  --bg-soft: #131316;
  --border: #1a1a1d;
  --border-strong: #232328;
  --text: #f2f2f4;
  --text-dim: #7a7a82;
  --text-faint: #4a4a52;
  --green: #4ade80;
  --green-dark: #16a34a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

* { scrollbar-width: thin; scrollbar-color: #2a2a31 transparent; }
*::-webkit-scrollbar { width: 6px; height: 6px; }
*::-webkit-scrollbar-thumb { background: #2a2a31; border-radius: 3px; }

.shop-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.shop-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 12, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.shop-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.shop-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.shop-brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 13px;
}
.shop-brand-img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}

.shop-nav-right {
  display: flex;
  gap: 6px;
  align-items: center;
}

.shop-icon-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--text-dim);
  transition: all 0.15s ease;
}
.shop-icon-btn:hover {
  color: var(--text);
  background: var(--bg-elev);
}

.shop-cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 14px;
  height: 14px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #fff;
  font-size: 9.5px;
  font-weight: 600;
  display: grid;
  place-items: center;
  line-height: 1;
}

.shop-hero {
  padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 70%);
}

.shop-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.shop-hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.shop-hero-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

.shop-section {
  padding: 32px 0 80px;
}

.shop-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.shop-section-head h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.shop-filters {
  display: flex;
  gap: 4px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}

.shop-chip {
  padding: 6px 12px;
  border-radius: 5px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 12.5px;
  transition: all 0.12s ease;
}
.shop-chip:hover:not(.active) { color: var(--text); }
.shop-chip.active {
  background: var(--border-strong);
  color: var(--text);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

.shop-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}
.shop-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.shop-card-img {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  font-size: 56px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: -0.02em;
  font-family: 'Inter', sans-serif;
}

.shop-card-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shop-card-name {
  font-size: 14.5px;
  font-weight: 500;
  margin-bottom: 5px;
}

.shop-card-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.shop-card-price {
  font-size: 16px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.shop-card-price-from {
  font-size: 11px;
  color: var(--text-faint);
  margin-right: 4px;
}

.shop-card-discount {
  color: var(--text-faint);
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
}

.shop-card-cta {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
  transition: all 0.12s ease;
}
.shop-card-cta:hover { background: #d8d8dc; }

.shop-card-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 8px;
}
.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.stock-dot.in { background: var(--green); }
.stock-dot.low { background: #fbbf24; }
.stock-dot.out { background: #f87171; }

.shop-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.shop-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-footer-meta {
  color: var(--text-faint);
  font-size: 12.5px;
}
.shop-footer-meta a {
  color: var(--text-dim);
  border-bottom: 1px dashed var(--border-strong);
}
.shop-footer-meta a:hover { color: var(--text); }

.shop-footer-links {
  display: flex;
  gap: 22px;
  font-size: 12.5px;
  color: var(--text-dim);
}
.shop-footer-links a:hover { color: var(--text); }

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

.shop-card {
  animation: fadeInUp 0.4s ease-out backwards;
}
.shop-card:nth-child(1) { animation-delay: 0.04s; }
.shop-card:nth-child(2) { animation-delay: 0.08s; }
.shop-card:nth-child(3) { animation-delay: 0.12s; }
.shop-card:nth-child(4) { animation-delay: 0.16s; }
.shop-card:nth-child(5) { animation-delay: 0.20s; }
.shop-card:nth-child(6) { animation-delay: 0.24s; }
.shop-card:nth-child(7) { animation-delay: 0.28s; }
.shop-card:nth-child(8) { animation-delay: 0.32s; }

.pd-main { padding: 32px 0 72px; }

.pd-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  font-size: 13px;
  margin-bottom: 24px;
  transition: color 0.15s ease;
}
.pd-back:hover { color: var(--text); }

.pd-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

.pd-stack {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-areas:
    "gallery info"
    "desc desc";
  gap: 32px;
  align-items: start;
}
.pd-gallery     { grid-area: gallery; display: flex; flex-direction: column; gap: 10px; position: sticky; top: 90px; }
.pd-info        { grid-area: info; }
.pd-description { grid-area: desc; margin-top: 8px; }
.pd-description .pd-section-label { margin-bottom: 10px; }
.pd-description .pd-desc { margin-bottom: 0; white-space: pre-wrap; }

.pd-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 6px;
}
.pd-thumb {
  aspect-ratio: 1;
  border-radius: 6px;
  border: 1.5px solid transparent;
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pd-thumb:hover { transform: translateY(-1px); }
.pd-thumb.active { border-color: rgba(255, 255, 255, 0.9); }

.pd-cover {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 96px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  top: 80px;
}

.pd-info h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.pd-desc {
  font-size: 14.5px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pd-section { margin-bottom: 22px; }

.pd-section-label {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 500;
}

.pd-variants {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-variant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  text-align: left;
  transition: all 0.15s ease;
}
.pd-variant:hover:not(:disabled) { border-color: var(--border-strong); }
.pd-variant.selected {
  border-color: var(--green);
  background: rgba(74, 222, 128, 0.06);
}
.pd-variant:disabled { opacity: 0.45; cursor: not-allowed; }

.pd-variant-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.pd-variant-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-dim);
}

.pd-variant-price {
  font-size: 15px;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.pd-qty {
  display: inline-flex;
  align-items: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.pd-qty-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.12s ease;
}
.pd-qty-btn:hover { color: var(--text); background: var(--bg-soft); }

.pd-qty input {
  width: 50px;
  height: 38px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  outline: none;
}
.pd-qty input::-webkit-inner-spin-button,
.pd-qty input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.pd-qty input { -moz-appearance: textfield; }

.pd-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 28px;
}

.pd-buy-label {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.pd-buy-amount {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.pd-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease;
}
.pd-buy-btn:hover { background: #15803d; }
.pd-buy-btn:disabled { background: var(--border-strong); cursor: not-allowed; color: var(--text-faint); }

.pd-trust {
  display: flex;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.pd-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
}
.pd-trust-item svg { color: var(--green); }

@media (max-width: 800px) {
  .pd-grid { grid-template-columns: 1fr; gap: 20px; }
  .pd-stack {
    grid-template-columns: 1fr;
    grid-template-areas: "gallery" "info" "desc";
    gap: 20px;
  }
  .pd-gallery { position: static; }
  .pd-cover { position: static; aspect-ratio: 16 / 9; font-size: 64px; }
  .pd-buy-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .pd-buy-btn { width: 100%; }
}

.shop-panel { display: none; }
.shop-panel.active { display: block; }

.pd-vd-section {
  background: var(--bg-soft, #17181b);
  border: 1px solid var(--border, #2a2b30);
  border-radius: 12px;
  padding: 14px 16px 16px;
}
.pd-vd-progress {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  margin: 14px 0 26px;
}
.pd-vd-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.pd-vd-markers { position: absolute; inset: 0; pointer-events: none; }
.pd-vd-marker {
  position: absolute;
  top: 50%;
  width: 12px; height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  border-radius: 50%;
  background: #2a2b30;
  border: 2px solid #6b7280;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.pd-vd-marker.reached { background: #22c55e; border-color: #4ade80; }
.pd-vd-marker-label {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10.5px;
  font-weight: 600;
  color: #9ca3af;
  white-space: nowrap;
}
.pd-vd-marker.reached .pd-vd-marker-label { color: #4ade80; }
.pd-vd-status {
  font-size: 12.5px;
  color: var(--text-dim, #9ca3af);
  line-height: 1.5;
  margin-bottom: 10px;
}
.pd-vd-status strong { color: var(--text, #e7e7ea); font-weight: 600; }
.pd-vd-tiers {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-vd-tier {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #6b7280;
  padding: 3px 0;
}
.pd-vd-tier.reached { color: var(--text, #e7e7ea); }
.pd-vd-tier-qty { font-family: ui-monospace, Menlo, Consolas, monospace; }
.pd-vd-tier-pct { font-weight: 600; }
.pd-vd-tier.reached .pd-vd-tier-pct { color: #4ade80; }
.pd-vd-tier-price { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 11.5px; }

.co-discord {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 6px;
}
.co-discord-connect {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 12px 14px;
  background: #5865F2;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease;
}
.co-discord-connect:hover { background: #4752C4; }
.co-discord-connect:active { transform: translateY(1px); }
.co-discord-pill {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  background: rgba(88, 101, 242, 0.10);
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: 10px;
}
.co-discord-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #2a2b30;
}
.co-discord-text { flex: 1; min-width: 0; }
.co-discord-name {
  font-size: 13.5px; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.co-discord-username {
  font-size: 12px; color: #9aa0a6;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.co-discord-disconnect {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.06);
  color: #9aa0a6;
  font-size: 16px;
  cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.co-discord-disconnect:hover { background: rgba(239, 68, 68, 0.18); color: #f87171; }
.co-discord-notyou {
  background: transparent;
  border: none;
  color: #9aa0a6;
  font-family: inherit;
  font-size: 11.5px;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 6px;
  flex-shrink: 0;
}
.co-discord-notyou:hover { color: #f87171; }

.co-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 14px 16px;
  background: var(--bg-soft, #17181b);
  border: 1px solid var(--border, #2a2b30);
  border-radius: 10px;
}
.co-legal-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text, #e7e7ea);
  cursor: pointer;
}
.co-legal-row input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; cursor: pointer;
  accent-color: #22c55e;
}
.co-legal-row a { color: #9ca3af; text-decoration: underline; }
.co-legal-row a:hover { color: #d1d5db; }

.legal-main { padding: 32px 0 80px; }
.legal-container { max-width: 760px; margin: 0 auto; }
.legal-container h1 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 14px 0 6px;
}
.legal-meta { color: #888; font-size: 12.5px; margin-bottom: 22px; }
.legal-body {
  background: var(--bg-soft, #17181b);
  border: 1px solid var(--border, #2a2b30);
  border-radius: 12px;
  padding: 22px 24px;
  font-family: inherit;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text, #e7e7ea);
}

.co-main { padding: 32px 0 72px; }

.co-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-dim);
}
.co-secure svg { color: var(--green); }

.co-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}

.co-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}

.co-card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 14px;
}

.co-field { display: flex; flex-direction: column; gap: 6px; }
.co-field label {
  font-size: 12px;
  color: var(--text-dim);
}
.co-field input {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13.5px;
  outline: none;
  transition: border-color 0.15s ease;
}
.co-field input:focus { border-color: var(--border-strong); }
.co-field-help { font-size: 11.5px; color: var(--text-faint); margin-top: 2px; }

.co-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.co-method {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  color: var(--text);
  font-size: 13px;
  transition: all 0.15s ease;
  position: relative;
}
.co-method:hover { border-color: var(--border-strong); }
.co-method.selected {
  border-color: var(--green);
  background: rgba(74, 222, 128, 0.06);
}
.co-method img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  object-fit: contain;
}
.co-method .co-method-name { flex: 1; text-align: left; }
.co-method-fee {
  color: #888;
  font-size: 12px;
  font-weight: 500;
  margin-right: 4px;
  white-space: nowrap;
}
.co-method.selected .co-method-fee { color: #aaa; }
.co-method-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--border-strong);
  position: relative;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.co-method-check::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--green);
  transform: scale(0);
  transition: transform 0.15s ease;
}
.co-method.selected .co-method-check {
  border-color: var(--green);
}
.co-method.selected .co-method-check::after {
  transform: scale(1);
}

.co-pending-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.08);
  border-top-color: #fff;
  animation: co-spin 0.9s linear infinite;
  margin: 0 auto 14px;
}
.co-pending-spinner.small { width: 16px; height: 16px; border-width: 2px; margin: 0; display: inline-block; vertical-align: middle; }
@keyframes co-spin { to { transform: rotate(360deg); } }

.co-crypto-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  max-width: 640px;
  margin: 24px auto;
}
.co-crypto-head { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; }
.co-crypto-icon { width: 40px; height: 40px; border-radius: 8px; }
.co-crypto-head h2 { font-size: 20px; font-weight: 500; margin: 0 0 4px; letter-spacing: -0.01em; }
.co-crypto-sub { color: var(--text-dim); font-size: 13.5px; }
.co-crypto-fields { display: flex; flex-direction: column; gap: 14px; margin-bottom: 18px; }
.co-crypto-field label { display: block; font-size: 12px; color: var(--text-faint); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.co-crypto-copy {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  font-size: 13px;
  word-break: break-all;
}
.co-crypto-copy > span { flex: 1; }
.co-crypto-address-text { font-size: 12.5px; }
.co-copy-btn {
  flex-shrink: 0;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 5px;
  font-family: inherit;
  font-size: 11.5px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.co-copy-btn:hover { background: rgba(255,255,255,0.05); }
.co-copy-btn.copied { background: rgba(74,222,128,0.15); border-color: rgba(74,222,128,0.4); color: #6bd896; }
.co-crypto-hint { font-size: 11.5px; color: var(--text-faint); margin-top: 4px; }
.co-crypto-status {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.co-crypto-status.confirming { color: #f5c14b; }
.co-crypto-status.received   { color: #6bd896; }
.co-crypto-warning {
  font-size: 11.5px;
  color: var(--text-faint);
  background: rgba(248, 113, 113, 0.05);
  border: 1px solid rgba(248, 113, 113, 0.18);
  border-radius: 8px;
  padding: 10px 14px;
}

.co-failed-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(248, 113, 113, 0.12);
  color: #f87171;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}

.co-delivered {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px;
  margin-top: 16px;
  font-family: ui-monospace, 'JetBrains Mono', monospace;
  font-size: 12.5px;
  text-align: left;
  white-space: pre-wrap;
  word-break: break-all;
  color: var(--text);
  max-height: 240px;
  overflow: auto;
}

.review-box {
  margin-top: 24px;
  padding: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  text-align: left;
}
.review-title { font-size: 13px; color: var(--text-dim); margin-bottom: 8px; font-weight: 500; }
.review-stars { display: flex; gap: 4px; margin-bottom: 12px; }
.review-stars button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.18);
  font-size: 26px;
  cursor: pointer;
  padding: 2px 4px;
  line-height: 1;
  transition: color 0.1s ease, transform 0.1s ease;
}
.review-stars button:hover, .review-stars button.hover { color: #f5c14b; transform: scale(1.1); }
.review-stars button.active { color: #f5c14b; }
.review-box textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  resize: vertical;
  outline: none;
}
.review-box textarea:focus { border-color: rgba(255,255,255,0.2); }
.review-thanks {
  margin-top: 10px;
  padding: 10px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #6bd896;
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}

.co-fineprint {
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}
.co-fineprint a { color: var(--text-dim); border-bottom: 1px dashed var(--border-strong); }

.co-summary .co-card { position: sticky; top: 80px; }

.co-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}

.co-item-cover {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
}

.co-item-info { flex: 1; min-width: 0; }
.co-item-name {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 2px;
}
.co-item-variant {
  font-size: 12px;
  color: var(--text-dim);
}

.co-item-qty {
  font-size: 13px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

.co-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dim);
  padding: 4px 0;
}

.co-line-total {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
}

.co-success {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 56px 28px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.co-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.co-success h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.co-success p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.co-success strong { color: var(--text); }

@media (max-width: 800px) {
  .co-grid { grid-template-columns: 1fr; }
  .co-methods { grid-template-columns: 1fr; }
  .co-summary .co-card { position: static; }
}
