/* MelumiyaChat v47 — CSP-safe premium EUR/USD currency toggle */
.price-switcher{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin:0 0 14px;
  padding:16px 18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015)),
    radial-gradient(circle at top left,rgba(151,119,230,.16),transparent 42%),
    radial-gradient(circle at bottom right,rgba(111,88,181,.14),transparent 40%),
    rgba(14,5,24,.82);
  box-shadow:0 22px 54px rgba(0,0,0,.28),inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(14px);
}
.price-switcher-copy{display:flex;flex-direction:column;gap:4px;min-width:220px}
.price-switcher-label{font-size:.78rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#ddd0f8}
.price-switcher-hint{font-size:.95rem;line-height:1.45;color:rgba(247,235,255,.82)}
.price-switcher-controls{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.015));
  border-radius:999px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05),0 10px 28px rgba(0,0,0,.22);
}
.currency-chip{
  appearance:none;
  border:1px solid rgba(255,255,255,.10);
  background:transparent;
  color:#f8efff;
  border-radius:999px;
  padding:10px 18px;
  min-width:132px;
  font:inherit;
  font-size:.96rem;
  font-weight:800;
  letter-spacing:.01em;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease,color .18s ease;
}
.currency-chip:hover{
  transform:translateY(-1px);
  border-color:rgba(164,138,226,.40);
  background:rgba(255,255,255,.045);
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}
.currency-chip.active,.currency-chip[aria-pressed="true"]{
  background:linear-gradient(135deg,#9476d9 0%,#7b5fc1 54%,#644aa1 100%);
  border-color:transparent;
  color:#19091f;
  box-shadow:0 16px 34px rgba(116,91,186,.34),inset 0 1px 0 rgba(255,255,255,.42);
}
.currency-chip:focus-visible{
  outline:none;
  box-shadow:0 0 0 2px rgba(255,255,255,.16),0 0 0 5px rgba(129,107,201,.32);
}
.price-note{margin-top:8px;color:rgba(245,232,255,.92)}
.price-note strong[data-currency-label]{color:#e7dcff}
@media (max-width:760px){
  .price-switcher{padding:14px 14px 15px;align-items:flex-start}
  .price-switcher-copy{min-width:0;width:100%}
  .price-switcher-controls{width:100%;justify-content:flex-start;overflow:auto}
  .currency-chip{flex:1 0 auto;min-width:124px}
}
