/* ==========================
   📦 Table & Highlight
========================== */
.pricing-table th,
.pricing-table td {
  vertical-align: middle;
  padding: 16px;
  font-size: 15px;
}

.pricing-table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.pricing-table .highlight {
  background-color: #fff3cd !important;
}

.section-header td {
  background-color: #f1f3f5;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.bg-warning {
  font-size: 11px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-table td,
  .pricing-table th {
    font-size: 13px;
    padding: 10px;
  }
}

/* ==========================
   ❓ FAQ Accordion
========================== */
.accordion-button::after {
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.accordion-button {
  font-weight: 600;
}

/* ==========================
   🧾 Offcanvas Payment UI
========================== */
.offcanvas-bottom {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 -1px 10px rgba(0,0,0,0.08);
}

#offcanvasBottom .offcanvas-header {
  padding: 16px 24px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

#offcanvasBottom .offcanvas-body {
  padding: 2rem 1.5rem;
}

#offcanvasBottom h4,
#offcanvasBottom h5,
#offcanvasBottom h6 {
  font-weight: 600;
}

#offcanvasBottom input[type="text"],
#offcanvasBottom input[type="email"] {
  font-size: 14px;
  padding: 10px 12px;
}

#offcanvasBottom .form-label {
  font-size: 13px;
  font-weight: 500;
}

#offcanvasBottom .small-note {
  font-size: 12px;
  color: #6c757d;
}

#offcanvasBottom .btn-outline-primary {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
}

/* Payment Summary Card */
#offcanvasBottom .card {
  border-radius: 10px;
}

#offcanvasBottom .card-body {
  font-size: 14px;
}

#offcanvasBottom #summaryEmail strong {
  font-weight: 600;
}

/* I Agree Button */
#agreeBtn {
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
}

#agreeBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #offcanvasBottom .col-lg-7,
  #offcanvasBottom .col-lg-5 {
    padding: 0 !important;
  }

  #offcanvasBottom .offcanvas-body {
    padding: 1.25rem;
  }

  #offcanvasBottom .btn {
    font-size: 15px;
    width: 100%;
  }
}