/* Make selects match .form-group input appearance */
.form-group select {
  background: #fff;
  border: 1px solid #e2e9e1;
  height: 45px;
  box-shadow: none;
  padding-left: 16px;
  padding-right: 32px;
  font-size: 13px;
  color: #1a1a1a;
  width: 100%;
  border-radius: 0;
  appearance: auto;
  -webkit-appearance: auto;
}

.form-group select:focus {
  border-color: #e2e9e1;
  outline: none;
  box-shadow: none;
}

.form-group select:disabled {
  background: #f8f8f8;
  color: #aaa;
}

/* ---- Checkout: payment method cards ---- */
.payment-card {
  border: 2px solid #e2e9e1;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  background: #fff;
}
.payment-card:hover {
  border-color: #3bb77e;
}
.payment-card.active {
  border-color: #3bb77e;
  background: #f4fdf8;
}
.payment-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.payment-card-header input[type=radio] {
  accent-color: #3bb77e;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.payment-card-icon {
  font-size: 22px;
  color: #3bb77e;
  line-height: 1;
  flex-shrink: 0;
}
.payment-card-label { flex: 1; }
.payment-card-label strong { display: block; font-size: 14px; font-weight: 600; color: #222; }
.payment-card-label small  { font-size: 12px; color: #888; }
.payment-card-body {
  display: none;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #e2e9e1;
}
.payment-card.active .payment-card-body { display: block; }
.payment-card-body input[type=tel] {
  width: 100%;
  border: 1px solid #e2e9e1;
  height: 42px;
  padding: 0 14px;
  font-size: 13px;
  border-radius: 4px;
  outline: none;
}
.payment-card-body input[type=tel]:focus { border-color: #3bb77e; }

/* ---- Checkout: section headings ---- */
.checkout-section-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

/* ---- Checkout: sticky order summary ---- */
@media (min-width: 768px) {
  .checkout-summary-sticky {
    position: sticky;
    top: 80px;
  }
}
