/* === Add to Quote button === */

/* Force the WooCommerce cart form to lay out quantity, Add to Cart,
   and Add to Quote in a single row instead of stacking them. */
form.cart {
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 10px;
}
form.cart .quantity {
	margin: 0 !important;
}
form.cart button.single_add_to_cart_button {
	margin: 0 !important;
}

.rfq-add-to-quote-btn {
	background-color: #1E293B !important;
	border-color: #1E293B !important;
	color: #fff !important;
	margin: 0 !important;
	white-space: nowrap;
}
.rfq-add-to-quote-btn:hover {
	background-color: #0f172a !important;
	border-color: #0f172a !important;
	color: #fff !important;
}

/*
 * Fallback: hide Woodmart's "Buy Now" button via CSS in case the theme filters
 * in class-rfq-frontend.php don't match your exact Woodmart version.
 * IMPORTANT: Inspect the Buy Now button on your live site and replace the
 * selector below with the exact class Woodmart is using if it's still visible.
 */
.wd-buy-now-btn,
.buy-now-btn,
a.woodmart-buy-now,
.product_buy_now_button {
	display: none !important;
}

/* My Account quote basket table spacing */
#rfq-basket-table td, #rfq-basket-table th {
	padding: 8px 10px;
}