.av-currency {
  position: relative;
  display: inline-block;
}

/* BOTÓN */
.av-currency .av-currency__boton {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: none;
  background-color: #ffffff;
  color: #1a2b49;
  font-size: 14px;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* LISTA DESPLEGABLE */
.av-currency__lista {
  position: absolute;
  z-index: 999;
  min-width: 100%;
  margin: 6px 0 0;
  padding: 6px 0;
  list-style: none;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.av-currency__opcion {
  cursor: pointer;
  padding: 8px 14px;
  color: #1a2b49;
  text-align: left;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.av-currency__opcion:hover {
  background-color: #f4f4f4;
}

.av-currency__opcion--activa {
  font-weight: 600;
}

/* CHEVRON */
.av-currency__flecha {
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.av-currency__boton:hover .av-currency__flecha {
  opacity: 1;
}

.av-currency__boton[aria-expanded="true"] .av-currency__flecha {
  transform: rotate(180deg);
}
