/* Variant dropdown on PDP (used when a product has more than one variation) */

.product-details-section .variant-box .pd-variant-select {
  width: 100%;
  max-width: 360px;
  padding: 11px 40px 11px 16px;
  border: 1px solid rgba(var(--border-color), 1);
  border-radius: 6px;
  background-color: rgba(var(--background), 0.6);
  color: rgba(var(--title-color), 1);
  font-size: 15px;
  line-height: 1.3;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' 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 14px center;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-details-section .variant-box .pd-variant-select:hover {
  border-color: rgba(var(--primary-color), 0.5);
}

.product-details-section .variant-box .pd-variant-select:focus {
  outline: none;
  border-color: rgba(var(--primary-color), 1);
  box-shadow: 0 0 0 3px rgba(var(--primary-color), 0.12);
}

@media (max-width: 575.98px) {
  .product-details-section .variant-box .pd-variant-select {
    max-width: 100%;
  }
}
