/* ── Order notes — restore hidden labels ────────────────────────────────── */

.bt-checkout-form__notes .woocommerce-additional-fields label {
  display: block !important;
}

/* ── Order detail totals table ───────────────────────────────────────────── */

.brtheme-checkout-review-order-totals .brtheme-checkout-review-order-table__row {
  display: flex !important;
  justify-content: space-between;
  align-items: flex-start;
}

/* Right-align value column, stacked vertically (e.g. price + tax note) */
.bt-checkout-form__order-detail .brtheme-checkout-review-order-table__row > div:last-child,
.bt-checkout-form__order-detail .active-shipping-method > div:last-child {
  text-align: right;
  display: flex;
  flex-direction: column;
}

/* Tax-included note inside the Total cell */
.includes_tax {
  font-weight: 400;
  font-size: 70%;
  line-height: 1;
}

/* "Flat rate" label sits below "Shipping" text */
.brtheme-checkout-shipping-method-label {
  display: block;
  font-size: 0.85em;
  font-weight: normal;
}

/* Divider + bold above the Total row */
.brtheme-checkout-review-order-total {
  border-top: 1px solid currentColor;
  padding-top: 1em;
  margin-top: 0.5em;
  font-weight: bold;
}

.brtheme-checkout-review-order-total .brtheme-checkout-review-order__label {
  font-weight: bold;
}
