/* v1132 — Airport order service-level and summary cleanup.
   Goals:
   1) remove the ugly rectangular box around the radio circle in service-level cards;
   2) make the total bar match the cleaner visa-style summary treatment;
   3) remove duplicate total in the sticky right summary while keeping a total in step 3 review. */

/* Service-level selector: build a clean standalone radio circle, not a text-input rectangle. */
.airport-order-page-v1100 .airport-option-card-v1100 input[type="radio"]{
  -webkit-appearance:none !important;
  appearance:none !important;
  width:26px !important;
  height:26px !important;
  min-width:26px !important;
  min-height:26px !important;
  margin:0 !important;
  padding:0 !important;
  border:2px solid #94a3b8 !important;
  border-radius:50% !important;
  background:#fff !important;
  box-shadow:none !important;
  outline:none !important;
  display:inline-grid !important;
  place-items:center !important;
  cursor:pointer !important;
}

.airport-order-page-v1100 .airport-option-card-v1100 input[type="radio"]::after{
  content:"";
  width:12px;
  height:12px;
  border-radius:50%;
  background:#1d4ed8;
  transform:scale(0);
  transition:transform .14s ease;
}

.airport-order-page-v1100 .airport-option-card-v1100 input[type="radio"]:checked{
  border-color:#1d4ed8 !important;
}

.airport-order-page-v1100 .airport-option-card-v1100 input[type="radio"]:checked::after{
  transform:scale(1);
}

/* Keep the selected card clean and remove any accidental decorative bars near the price. */
.airport-order-page-v1100 .airport-option-card-v1100 .airport-option-price-v1117,
.airport-order-page-v1100 .airport-option-card-v1100 > span:last-child{
  border:0 !important;
  box-shadow:none !important;
  text-decoration:none !important;
  background:transparent !important;
}

/* Right-side sticky summary: use only one total, with no divider line cutting through the rounded box. */
.airport-order-page-v1100 .airport-order-summary-card-v1100 .summary-row.total-line{
  display:grid !important;
  grid-template-columns:minmax(96px, .58fr) minmax(160px, 1.42fr) !important;
  align-items:center !important;
  gap:16px !important;
  margin-top:12px !important;
  padding:14px 16px !important;
  border:1px solid #fecaca !important;
  border-bottom:1px solid #fecaca !important;
  border-radius:18px !important;
  background:#fff7f7 !important;
  box-shadow:none !important;
}

.airport-order-page-v1100 .airport-order-summary-card-v1100 .summary-row.total-line span{
  font-weight:900 !important;
  color:#0f172a !important;
}

.airport-order-page-v1100 .airport-order-summary-card-v1100 .summary-row.total-line strong{
  font-size:24px !important;
  line-height:1.1 !important;
  color:#dc2626 !important;
  text-align:right !important;
  white-space:nowrap !important;
}

/* Final review step can still show a total inside the main flow, but it should match the same clean card treatment. */
.airport-order-page-v1100 #airportFinalReview .airport-review-row-v1100.total{
  border:1px solid #fecaca !important;
  border-bottom:1px solid #fecaca !important;
  border-radius:18px !important;
  background:#fff7f7 !important;
  margin-top:12px !important;
}

.airport-order-page-v1100 #airportFinalReview .airport-review-row-v1100.total span{
  font-weight:900 !important;
  color:#0f172a !important;
}

.airport-order-page-v1100 #airportFinalReview .airport-review-row-v1100.total strong{
  font-size:24px !important;
  color:#dc2626 !important;
  white-space:nowrap !important;
}

/* Mobile: keep the total bar readable and prevent wrapping. */
@media (max-width: 760px){
  .airport-order-page-v1100 .airport-order-summary-card-v1100 .summary-row.total-line,
  .airport-order-page-v1100 #airportFinalReview .airport-review-row-v1100.total{
    grid-template-columns:1fr !important;
    gap:6px !important;
  }
  .airport-order-page-v1100 .airport-order-summary-card-v1100 .summary-row.total-line strong,
  .airport-order-page-v1100 #airportFinalReview .airport-review-row-v1100.total strong{
    text-align:left !important;
    font-size:22px !important;
  }
}
