/* ── 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;
}

/* ── Coupon submit loading state ───────────────────────────────────────── */

.brxe-brt-checkout-coupon-form .button.brt-coupon-is-loading {
  cursor: wait;
  opacity: 0.75;
}

.brxe-brt-checkout-coupon-form .button.brt-coupon-is-loading::after {
  content: "";
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.6em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -0.12em;
  animation: brt-coupon-spin 0.7s linear infinite;
}

@keyframes brt-coupon-spin {
  to { transform: rotate(360deg); }
}
