.currency-switch { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; margin-top: 8px; }
.currency-switch button { min-width: 0; min-height: 48px; display: grid; place-items: center; gap: 1px; border: 1px solid rgba(255,151,85,.14); border-radius: 12px; background: rgba(255,255,255,.025); color: var(--muted); cursor: pointer; }
.currency-switch button b { color: var(--text); font-size: 16px; }
.currency-switch button span { font-size: 7px; letter-spacing: .08em; }
.currency-switch button.selected { border-color: rgba(255,104,23,.68); background: rgba(255,104,23,.12); color: var(--orange-soft); box-shadow: inset 0 0 0 1px rgba(255,104,23,.08); }
.payment-method[hidden] { display: none; }
.payment-methods:has(.payment-method:not([hidden])) { grid-template-columns: 1fr; }
