/* ═════════════════════════════════════════════════════════════════════════════
   BUMP SELECTOR BASE STYLES — v1.2.7
   Core styling for bump selector dropdowns
   Load BEFORE bump-selector-fx.css for proper cascade
   ═════════════════════════════════════════════════════════════════════════════ */

/* Bump Selector Wrapper Styling */
[class^="bump-selector-wrap"],
[class*=" bump-selector-wrap"] {
  margin: 0 0;
  padding: 10px;
  border-radius: 4px;
}

/* Select styling inside any bump wrapper */
[class^="bump-selector-wrap"] select,
[class*=" bump-selector-wrap"] select {
  border: 2px solid #DAA520;
  background-color: #FFFACD;
  color: #8B4513;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 4px;
  margin: 10px 0;
  width: 100%;
  font-size: 14px;
}

/* Focus state */
[class^="bump-selector-wrap"] select:focus,
[class*=" bump-selector-wrap"] select:focus {
  outline: none;
  box-shadow: 0 0 5px #DAA520;
}

/* Quantity selector label styling */
.quantity-selector-label {
  display: block;
  font-weight: bold;
  color: #8B4513;
  margin-bottom: 0;
  font-size: 14px;
}

/* Keep long option text tidy */
select {
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Default option styling */
.default-option,
.default-option-selected {
  font-weight: 800 !important;
}
