/* Только иконки на узких экранах */
@media (max-width: 750px) {
  .ab-currency-btn .ab-label { 
    display: none; 
  }
  .ab-currency-btn {
    gap: 0;
    padding: 8px 10px;   /* компактнее */
    min-width: 40px;     /* удобная цель для пальца */
    justify-content: center;
  }
  .ab-currency-btn .ab-icon {
    font-size: 16px;     /* можно 16–18, если хочешь крупнее */
    line-height: 1;
  }
}


/* Arendator Batumi — Currency Switcher CSS */
.ab-currency-switcher {
  display: inline-flex;
  border: 1px solid #ff3e014f;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;margin-left:13px;
}
.ab-currency-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  color: #333;
}
.ab-currency-btn + .ab-currency-btn { border-left: 1px solid rgba(0,0,0,.08); }
.ab-currency-btn .ab-icon { font-weight: 700; }
.ab-currency-btn.is-active {
  background: #ff3e01;
  color: #fff;
}

.ab-price {
  white-space: nowrap;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.ab-price__sym { margin-right: 4px; }
