/* WooCommerce Quote Button -- layout only by default. Buttons use
   WooCommerce's own `.button` class so they inherit whatever button
   styling the active theme already provides; custom colors (if set in
   Settings > WC Quote Button) are added as a small inline <style> block
   at runtime, not here. */

.wcqb-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
}
.wcqb-actions .button {
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.wcqb-quote-button--single {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
}
.wcqb-icon {
	width: 16px;
	height: 16px;
	stroke: currentColor;
	fill: none;
	flex-shrink: 0;
}
