body.woocommerce-cart .asr-cart-proforma-action {
	--asr-doc-dark: #000;
	--asr-doc-accent: #ffcc00;
	--asr-doc-accent-soft: #fff8d6;
	margin-top: 12px;
}

body.woocommerce-cart .asr-cart-proforma-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 52px;
	padding: 10px 18px;
	border: 2px solid var(--asr-doc-dark);
	border-radius: 16px;
	background: var(--asr-doc-accent-soft);
	color: var(--asr-doc-dark);
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	text-decoration: none;
	box-shadow: 0 3px 0 var(--asr-doc-dark);
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

body.woocommerce-cart .asr-cart-proforma-button:hover,
body.woocommerce-cart .asr-cart-proforma-button:focus-visible {
	border-color: var(--asr-doc-dark);
	background: var(--asr-doc-accent);
	color: var(--asr-doc-dark);
	box-shadow: 0 4px 0 var(--asr-doc-dark);
	transform: translateY(-1px);
}

body.woocommerce-cart .asr-cart-proforma-button:focus-visible {
	outline: 3px solid rgba(255, 204, 0, 0.35);
	outline-offset: 2px;
}

body.woocommerce-cart .asr-cart-proforma-button:active {
	box-shadow: 0 1px 0 var(--asr-doc-dark);
	transform: translateY(2px);
}

body.woocommerce-cart .asr-cart-proforma-button__icon,
body.woocommerce-cart .asr-cart-proforma-button__spinner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
}

body.woocommerce-cart .asr-cart-proforma-button__icon svg {
	display: block;
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body.woocommerce-cart .asr-cart-proforma-button__spinner {
	border: 2px solid rgba(0, 0, 0, 0.2);
	border-top-color: currentColor;
	border-radius: 50%;
	opacity: 0;
	animation: asr-cart-proforma-spin 700ms linear infinite;
}

body.woocommerce-cart .asr-cart-proforma-button__label {
	min-width: 0;
}

body.woocommerce-cart .asr-cart-proforma-button[aria-disabled="true"] {
	cursor: wait;
	opacity: 0.78;
	box-shadow: 0 2px 0 var(--asr-doc-dark);
	transform: none;
}

body.woocommerce-cart .asr-cart-proforma-button[aria-disabled="true"] .asr-cart-proforma-button__icon {
	display: none;
}

body.woocommerce-cart .asr-cart-proforma-button[aria-disabled="true"] .asr-cart-proforma-button__spinner {
	opacity: 1;
}

@keyframes asr-cart-proforma-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 480px) {
	body.woocommerce-cart .asr-cart-proforma-button {
		min-height: 54px;
		padding-inline: 14px;
		border-radius: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.woocommerce-cart .asr-cart-proforma-button {
		transition: none;
	}

	body.woocommerce-cart .asr-cart-proforma-button__spinner {
		animation-duration: 1.4s;
	}
}
