/* SPCC Currency Switcher */
.spcc-banner {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Globe icon in brand red */
.spcc-banner i {
  color: #e10706;
}

/* Insert a muted “/” after the country label */
.spcc-banner .country-label::after {
  content: "/";
  color: #999999;
  margin: 0 6px;
}

/* Base dropdown styling */
.spcc-banner select {
  background: transparent;
  color: #000000;
  font-weight: bold;
  border: none;
  padding: 0;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  /* black arrow by default */
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23000000' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 10px;
}

/* On hover/focus, tint arrow & text in brand red */
.spcc-banner select:hover,
.spcc-banner select:focus {
  color: #e10706;
  outline: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23e10706' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
}
