/* CSS adicional para formularios con select - Merchandising Modal */

select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(227, 208, 67, 0.2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e3d043' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

select:hover {
  border-color: var(--accent);
  background-color: rgba(255, 255, 255, 0.06);
}

select:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(227, 208, 67, 0.2);
}

select option {
  background: #172f3e;
  color: #ffffff;
  padding: 10px;
}

select option:checked {
  background: linear-gradient(rgba(227, 208, 67, 0.3), rgba(227, 208, 67, 0.3));
  color: #ffffff;
}
