
/* MOBILE: show currency buttons on screen (fixed) */
.currency-switch-mobile { }

@media (max-width: 640px){
  .currency-switch-mobile{
    display: flex !important;       /* override hidden */
    position: fixed !important;
    top: 58px; /* moved below language */
    right: 12px;
    z-index: 99999;
    background: rgba(0,0,0,0.60);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 12px;
  }
  .currency-switch-mobile .currency-btn{
    font-size: 11px;
  }
}

/* SAFE AREA / SMALL DEVICES */
@media (max-width: 640px) and (max-height: 700px){
  .currency-switch-mobile{ top: 52px; }
}
