/* ============================================================
   FYH Peptides — currency switcher UI (site-wide)
   ============================================================ */
.fyh-cur-switch {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  padding: 3px;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  border-radius: 999px;
  line-height: 1;
  max-width: 100%;       /* let it shrink to parent width so wrap actually triggers */
  box-sizing: border-box;
}
.fyh-cur-btn {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  color: #52525b;
  padding: 6px 11px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.fyh-cur-btn .fyh-flag { font-size: 0.95rem; line-height: 1; }
.fyh-cur-btn:hover { color: #14532d; }
.fyh-cur-btn.is-active {
  background: #14532d;
  color: #fff;
  box-shadow: 0 1px 3px rgba(20, 83, 45, .25);
}
.fyh-cur-btn.is-active:hover { color: #fff; }

/* Label shown above the switch in the hero / mobile menu */
.fyh-cur-wrap { display: inline-flex; flex-direction: column; gap: 6px; }
.fyh-cur-label {
  font-size: 0.68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #71717a;
}

/* On small screens hide the flag-only? keep compact */
@media (max-width: 380px) {
  .fyh-cur-btn { padding: 6px 8px; font-size: 0.72rem; gap: 3px; }
  .fyh-cur-btn .fyh-cur-text { display: none; }
}
