/* Currency switcher: the footer trigger, the picker list, and the one-time detection notice.
   The trigger lives in the footer on every screen size (it used to be in the header on desktop
   and buried in the menu drawer on mobile, where nobody found it). Geolocation already picks
   the visitor's currency, so this is a correction, not a primary control. */
.au-footer-currency{display:inline-flex;align-items:center;gap:var(--space-1);min-height:44px;padding:0 var(--space-3);background:transparent;color:var(--muted);font-size:var(--text-xs);letter-spacing:.04em;border:1px solid var(--footer-rule);border-radius:var(--radius-pill);white-space:nowrap;transition:color var(--duration),border-color var(--duration)}
.au-footer-currency:hover,.au-footer-currency:focus-visible{color:var(--ink);border-color:currentColor}
.au-footer-currency .au-icon{width:14px;height:14px}

.au-currency-list{display:grid;gap:var(--space-2);margin-top:var(--space-5)}
.au-currency-option{display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:var(--space-4);width:100%;min-height:60px;padding:var(--space-3) var(--space-4);text-align:left;background:var(--surface);border:1px solid var(--control);border-radius:var(--radius-control);transition:border-color var(--duration),background var(--duration)}
.au-currency-option:hover{border-color:var(--primary)}
.au-currency-option[aria-checked=true]{border-color:var(--primary);background:var(--blush);box-shadow:inset 0 0 0 1px var(--primary)}
.au-currency-code{font-size:var(--text-body);font-weight:600;color:var(--ink);font-variant-numeric:tabular-nums;min-width:64px}
.au-currency-name{font-size:var(--text-md);color:var(--text)}
.au-currency-tick{display:grid;place-items:center;width:22px;height:22px;border-radius:50%;background:var(--primary);color:#fff;opacity:0}
.au-currency-tick .au-icon{width:13px;height:13px;stroke-width:2.5}
.au-currency-option[aria-checked=true] .au-currency-tick{opacity:1}
.au-currency-note{margin-top:var(--space-5)}

.au-currency-banner{display:flex;align-items:center;gap:var(--space-3);flex-wrap:wrap;padding:var(--space-3) var(--gutter);background:var(--blush);color:var(--text);font-size:var(--text-md);border-bottom:1px solid var(--border)}
.au-currency-banner>span{flex:1;min-width:200px}
.au-currency-banner strong{color:var(--ink)}
.au-currency-banner .au-icon-btn{width:36px;height:36px;min-width:36px}
.au-currency-banner .au-icon-btn .au-icon{width:16px;height:16px}

.au-settlement-note{display:block;margin-top:var(--space-1);font-size:var(--text-sm);color:var(--muted);font-weight:400;line-height:1.45}

@media(max-width:767px){
  .au-currency-banner{font-size:var(--text-sm);padding:var(--space-2) var(--gutter)}
}
