/* Hide native currency selector when currency symbol selector is active */
#_desktop_ps_currencyselector { display: none !important; }

.mprcurrency-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mprcurrency-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 7px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
  line-height: 1;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mprcurrency-dropdown__toggle:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}

.mprcurrency-dropdown.open .mprcurrency-dropdown__toggle {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.mprcurrency-dropdown__sign {
  font-weight: 600;
  font-size: 14px;
}

.mprcurrency-dropdown__iso {
  letter-spacing: 0.03em;
  opacity: 0.85;
  font-size: 13px;
}

.mprcurrency-dropdown__arrow {
  font-size: 18px;
  transition: transform 0.2s ease;
  line-height: 1;
}

.mprcurrency-dropdown.open .mprcurrency-dropdown__arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.mprcurrency-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1050;
  min-width: 160px;
  margin-top: 6px;
  padding: 6px 0;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15), 0 1px 3px rgba(0,0,0,.08);
}

.mprcurrency-dropdown.open .mprcurrency-dropdown__menu {
  display: block;
}

/* Override .header-top a color — needs .header-top prefix to beat custom.css specificity */
.header-top .mprcurrency-dropdown__menu a.mprcurrency-dropdown__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.12s ease, color 0.12s ease;
}

.header-top .mprcurrency-dropdown__menu a.mprcurrency-dropdown__option:hover {
  background: #f3f4f6;
  color: #111;
  text-decoration: none;
}

.header-top .mprcurrency-dropdown__menu a.mprcurrency-dropdown__option:visited {
  color: #374151;
}

.header-top .mprcurrency-dropdown__menu a.mprcurrency-dropdown__option--active {
  color: #111;
  font-weight: 600;
  background: #f9fafb;
}

.mprcurrency-dropdown__option .mprcurrency-dropdown__sign {
  min-width: 18px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.mprcurrency-dropdown__option--active .mprcurrency-dropdown__sign {
  color: #111;
}
