/* HULLAA GCC currency selector — v3.3.4 */
.hullaa-currency-switcher {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #173f35;
  font-size: 13px;
  line-height: 1.35;
  z-index: 90;
}

.hullaa-currency-switcher > summary {
  list-style: none;
}
.hullaa-currency-switcher > summary::-webkit-details-marker {
  display: none;
}

.hullaa-currency-switcher__summary {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(23, 63, 53, .16);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.hullaa-currency-switcher__summary:hover,
.hullaa-currency-switcher[open] .hullaa-currency-switcher__summary {
  border-color: rgba(23, 93, 72, .42);
  background: #fbf9f3;
  box-shadow: 0 6px 18px rgba(25, 54, 45, .08);
}

.hullaa-currency-switcher__symbol {
  font-weight: 700;
  color: #175d48;
}

.hullaa-currency-switcher__code {
  direction: ltr;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #6e7773;
}

.hullaa-currency-switcher__chevron {
  font-size: 16px;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform .2s ease;
}

.hullaa-currency-switcher[open] .hullaa-currency-switcher__chevron {
  transform: rotate(180deg) translateY(1px);
}

.hullaa-currency-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  width: 280px;
  max-width: min(280px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid rgba(23, 63, 53, .13);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(28, 54, 46, .16);
  z-index: 99999;
}

.hullaa-currency-switcher__title {
  padding: 5px 7px 9px;
  font-size: 12px;
  font-weight: 700;
  color: #68736f;
}

.hullaa-currency-switcher__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 8px 10px;
  border-radius: 11px;
  color: #263a33;
  text-decoration: none !important;
}

.hullaa-currency-switcher__option:hover {
  background: #f6f5f0;
  color: #174c3d;
}

.hullaa-currency-switcher__option.is-selected {
  background: #f3f7f4;
  color: #175d48;
  font-weight: 700;
}

.hullaa-currency-switcher__option.is-selected::before {
  content: "✓";
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #175d48;
  color: #fff;
  font-size: 11px;
  order: 3;
}

.hullaa-currency-switcher__option-name {
  flex: 1 1 auto;
  min-width: 0;
}

.hullaa-currency-switcher__option-meta {
  flex: 0 0 auto;
  direction: ltr;
  font-size: 11px;
  color: #858e8a;
}

.hullaa-currency-switcher__hint {
  margin-top: 6px;
  padding: 9px 8px 3px;
  border-top: 1px solid #edf0ee;
  font-size: 10px;
  line-height: 1.65;
  color: #7b8581;
}

.hullaa-currency-checkout-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 93, 72, .16);
  border-radius: 12px;
  background: #f7faf8;
  color: #25483d;
  font-size: 12px;
  line-height: 1.65;
}

.hullaa-currency-checkout-note strong {
  color: #175d48;
}

/* When the desktop topbar is disabled the switcher can sit in the main header. */
.pls-header-main .pls-header-desktop .hullaa-currency-switcher {
  margin-inline-end: 8px;
}

/* Mobile menu: show the selector as a full-width, easy-to-tap control. */
.pls-mobile-menu-bottom .hullaa-currency-switcher {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.pls-mobile-menu-bottom .hullaa-currency-switcher__summary {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  border-radius: 12px;
}

.pls-mobile-menu-bottom .hullaa-currency-switcher__menu {
  position: static;
  width: 100%;
  max-width: none;
  margin-top: 8px;
  box-shadow: none;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .hullaa-currency-switcher__option {
    min-height: 48px;
    font-size: 13px;
  }
}
