/** Shopify CDN: Minification failed

Line 223:0 Unexpected "}"

**/
/* Custom Dropdown Component Styles */
.custom-dropdown {
  position: relative;
  width: 100%;
  font-family: var(--font-body-family);
  font-size: 1rem;
  line-height: 1.5;
}

.custom-dropdown__trigger {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid #000;
  border-left: none;
  border-right: none;
  padding: 17px 23px 17px 0;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.custom-dropdown__trigger:focus-visible {
  outline: 2px dotted #000;
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
.custom-dropdown__trigger:focus:not(:focus-visible) {
  outline: none;
}

.custom-dropdown__label {
  font-weight: 400;
  color: #000;
}

.custom-dropdown__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  color: #000;
}

.custom-dropdown--open .custom-dropdown__arrow {
  transform: rotate(180deg);
}

.custom-dropdown__content {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #000;
  border-top: none;
  z-index: 3;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-width: max-content;
}

.custom-dropdown__options-container {
  padding: 0;
}

.custom-dropdown__option {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  transition: background-color 0.2s ease;
  font-weight: 400;
  color: #000000;
  background: #ffffff;
}

.custom-dropdown__option:last-child {
  border-bottom: none;
}

.custom-dropdown__option:hover:not(.custom-dropdown__option--disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}

.custom-dropdown__option:focus-visible {
  outline: 2px dotted #000;
  outline-offset: 2px;
}

/* Remove focus outline for mouse users */
.custom-dropdown__option:focus:not(:focus-visible) {
  outline: none;
}

.custom-dropdown__option--selected {
  background-color: rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.custom-dropdown__option--active {
  background-color: rgba(0, 0, 0, 0.15);
  font-weight: 500;
}

.custom-dropdown__option--disabled {
  color: #999;
  cursor: not-allowed;
  background-color: #f5f5f5;
  pointer-events: none;
}

.custom-dropdown__option--disabled:hover {
  background-color: #f5f5f5;
}



/* Scrollbar styling */
.custom-dropdown__content::-webkit-scrollbar {
  width: 6px;
}

.custom-dropdown__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.custom-dropdown__content::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.custom-dropdown__content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* Mobile responsive */
@media screen and (max-width: 767px) {
  .custom-dropdown__content {
    max-height: 250px;
  }
}

/* Focus management for screen readers */
.custom-dropdown__option[aria-selected="true"] {
  background-color: rgba(0, 0, 0, 0.1);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .custom-dropdown__trigger {
    border-width: 2px;
  }

  .custom-dropdown__option {
    border-bottom-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  .custom-dropdown__arrow,
  .custom-dropdown__option {
    transition: none;
  }
}

/* Screen reader only class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
  .custom-dropdown__content {
    background: #ffffff;
    border-color: #000;
  }

  .custom-dropdown__option {
    color: #000000;
    border-bottom-color: #e5e5e5;
    background: #ffffff;
  }
}

/* When dropdown opens upward */
.custom-dropdown__content[style*="bottom: 100%"] {
  border-top: 1px solid #000;
  border-bottom: none;
  top: auto;
}

.custom-dropdown__option:hover:not(.custom-dropdown__option--disabled) {
  background-color: rgba(0, 0, 0, 0.05);
}

.custom-dropdown__option--disabled {
  color: #999;
  background-color: #f5f5f5;
}
}