/* ═══════════════════════════════════════════════════
 *  WC Vehicle Options – Frontend Styles
 * ═══════════════════════════════════════════════════ */

.wcvo-options-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .wcvo-options-wrap {
    grid-template-columns: 1fr;
  }
}

/* ── Card ── */
.wcvo-option-card {
  background: #f5f5f5;
  border-radius: 8px;
  padding: 20px 24px;
  box-sizing: border-box;
}

.wcvo-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.wcvo-card-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
}

.wcvo-card-fee {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.wcvo-card-fee .wcvo-fee-value {
  font-weight: 600;
}

.wcvo-card-fee small {
  font-size: 12px;
  color: #999;
}

/* ── Radio list ── */
.wcvo-radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wcvo-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 0;
  font-size: 15px;
  color: #333;
  transition: color 0.15s;
}

.wcvo-radio-label:hover {
  color: #111;
}

.wcvo-radio-label input[type="radio"] {
  display: none;
}

.wcvo-radio-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.wcvo-radio-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.15s;
}

.wcvo-radio-label input[type="radio"]:checked ~ .wcvo-radio-dot {
  border-color: #2563eb;
}

.wcvo-radio-label input[type="radio"]:checked ~ .wcvo-radio-dot::after {
  background: #2563eb;
}

/* ── Slider ── */
.wcvo-slider-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 12px;
  line-height: 1.5;
}

.wcvo-slider-display {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.wcvo-slider-wrap {
  padding-bottom: 4px;
}

.wcvo-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #d1d5db;
  outline: none;
  cursor: pointer;
  margin: 0;
}

.wcvo-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d1d5db;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.wcvo-slider::-webkit-slider-thumb:hover {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.wcvo-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d1d5db;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.wcvo-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 13px;
  color: #999;
}

.wcvo-slider-labels span {
  cursor: pointer;
  transition: color 0.15s, font-weight 0.15s;
  user-select: none;
}

.wcvo-slider-labels span:hover {
  color: #333;
}

.wcvo-slider-labels span.active {
  color: #1a1a1a;
  font-weight: 600;
}

/* ── Suffix in price ── */
.wcvo-suffix {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}
