/* ============================================================
   Airwallex checkout alert boxes: readable text on the light alert background
   Blaze Commerce fix, ClickUp 86eyk9yb0 (2026-08-11)

   Symptom: the Klarna "not available in your billing country" message was
   invisible. Airwallex ships a light pink alert background
   (airwallex-checkout.css:145) but never sets a text colour, so the text
   inherited the dark theme's rgba(255,255,255,.8) and landed at roughly a
   1.06:1 contrast ratio on #FFEFEF.

   Same class of bug, and the same durable home, as the intl-tel-input fix
   already in this theme (ClickUp 86exwqku1). Scoped to .wc-airwallex-alert-box
   only, so nothing else on checkout is affected.

   Measured after this rule: body text 15.6:1, link 5.6:1 on #FFEFEF, both
   above the WCAG AA 4.5:1 threshold.
   ============================================================ */

.wc-airwallex-alert-box,
.wc-airwallex-alert-box-with-title {
	color: #1a1a1a !important;
}

.wc-airwallex-alert-box p,
.wc-airwallex-alert-box-with-title p,
.wc-airwallex-alert-box .wc-airwallex-alert-box-content,
.wc-airwallex-alert-box-with-title .wc-airwallex-alert-box-content {
	color: inherit !important;
}

.wc-airwallex-alert-box a,
.wc-airwallex-alert-box-with-title a {
	color: #0b5fbf !important;
	text-decoration: underline;
}

.wc-airwallex-alert-box a:hover,
.wc-airwallex-alert-box a:focus,
.wc-airwallex-alert-box-with-title a:hover,
.wc-airwallex-alert-box-with-title a:focus {
	color: #08447f !important;
}

/* The plugin styles the front-end box but not the titled variant, which is
   defined only in its admin stylesheet. Give it the same light background so
   a titled alert cannot render as dark-on-dark either. */
.wc-airwallex-alert-box-with-title {
	display: flex;
	min-height: 48px;
	padding: 16px;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
	border-radius: 6px;
}

.wc-airwallex-alert-box-with-title.wc-airwallex-error {
	border: 1px solid #ff776d;
	background: #ffefef;
}

.wc-airwallex-alert-box-with-title.wc-airwallex-warning {
	border: 1px solid #ffd014;
	background: #fffbef;
}

.wc-airwallex-alert-box-with-title.wc-airwallex-info {
	border: 1px solid #38bdf8;
	background: #f0f9ff;
}

.wc-airwallex-alert-box.wc-airwallex-success,
.wc-airwallex-alert-box-with-title.wc-airwallex-success {
	border: 1px solid #83dd83;
	background: #effbf3;
}
