/* ===== Theme Fixes ===== */

/* General background + text */
body {
  background-color: #f8f9ff; /* light bluish background */
  color: #000; /* default text black */
}

.page-header {
  background: #0d6efd !important; /* Bootstrap primary blue */
}

/* Package Card (Product Selection) */
.btn-check + label {
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px;
  background: #fff !important;
  color: #000 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.2s ease-in-out;
}

.btn-check:checked + label {
  border: 2px solid #0d6efd !important;
  background: #eaf2ff !important;
  color: #0d6efd !important;
  box-shadow: 0 4px 12px rgba(13,110,253,0.2);
}

/* Fix package price text (remove green) */
.btn-check + label .h5 {
  color: #0d6efd !important;
}

/* Discount badge */
.badge.bg-danger {
  background-color: #ff9800 !important; /* orange */
  border-radius: 8px !important;
  padding: 0.25rem 0.5rem !important;
  font-size: 0.7rem !important;
}

/* Order Summary */
.order-summary {
  background: #fff !important;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  color: #000 !important;
}

.order-summary h6,
.order-summary span {
  color: #000 !important;
}

/* Buttons */
.btn-primary,
.btn-outline-primary {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-outline-primary:hover {
  background-color: #0b5ed7 !important;
  border-color: #0b5ed7 !important;
}

/* Info Cards (bottom section) */
.card.bg-light {
  background: #f0f6ff !important;
  border-radius: 12px !important;
}

/* Mobile Optimization */
@media (max-width: 576px) {
  .btn-check + label {
    font-size: 0.9rem;
    padding: 1rem 0.5rem;
  }
  .badge {
    font-size: 0.6rem !important;
    padding: 0.2rem 0.4rem !important;
  }
  .order-summary {
    font-size: 0.9rem;
  }
}
