/* Számlázz.hu – customer-facing touches. Kept intentionally light to respect the theme. */

/* Checkout: tax number (adószám) field */
.woo-szamlazzhu-tax-number label {
	font-weight: 600;
}

.woo-szamlazzhu-tax-number input[type="text"] {
	letter-spacing: .02em;
}

/* My Account → Orders: invoice download button gets a small download glyph
   that inherits the theme button's text colour via currentColor. */
.woocommerce a.button.woo_szamlazzhu_invoice,
.woocommerce-orders-table a.woo_szamlazzhu_invoice {
	display: inline-flex;
	align-items: center;
	gap: .4em;
}

.woocommerce a.button.woo_szamlazzhu_invoice::before {
	content: "";
	width: 1em;
	height: 1em;
	background-color: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z'/%3E%3C/svg%3E") center / contain no-repeat;
	opacity: .85;
}

/* Order-received (thank-you) + My Account order view: document download buttons. */
.woo-szamlazzhu-customer-download {
	margin: 1em 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
}

.woo-szamlazzhu-customer-download .button {
	margin: 0;
}

/* Tax number validation indicator */
.woo-szamlazzhu-vat-msg {
	display: inline-block;
	margin-top: 4px;
	font-size: .85em;
	line-height: 1.4;
}

.woo-szamlazzhu-vat-msg.is-checking {
	color: #777;
}

.woo-szamlazzhu-vat-msg.is-valid {
	color: #1a7f37;
}

.woo-szamlazzhu-vat-msg.is-valid::before {
	content: "\2713\00a0";
}

.woo-szamlazzhu-vat-msg.is-invalid {
	color: #d63638;
}

.woo-szamlazzhu-vat-msg.is-invalid::before {
	content: "\2717\00a0";
}
