.country-switcher.cs-b53eabb5 {
  position: relative;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  z-index: 99999 !important;
  overflow: visible !important;
}

.cs-b53eabb5 .cs-btn {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #ffffff;
  color: #000000;
  border: 1px solid #e8e8ed;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  appearance: none;
  transition: all 0.3s ease;
}

.cs-b53eabb5 .cs-btn:hover {
  background: #f9f9fb;
}

.cs-b53eabb5 .cs-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #ffffff;
  border: 1px solid #ededf2;
  border-radius: 10px;
  min-width: 190px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
  overflow: hidden;
  z-index: 999999 !important;
}

.cs-b53eabb5.is-active .cs-dropdown {
  display: block;
}

.cs-b53eabb5 .cs-dropdown a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  color: #000000;
  transition: all 0.2s ease;
}

.cs-b53eabb5 .cs-dropdown a:hover {
  background: #f9f9fb;
  color: #8F7200;
}