/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/*
 * Quantity stepper on product pages -- styled with the site's own brand
 * color (--wd-primary-color, set in the theme's color settings) instead of
 * the theme's plain default look, so it matches the Add to Cart button.
 */
.woocommerce div.quantity {
	display: inline-flex !important;
	align-items: stretch !important;
	border: 1.5px solid var(--wd-primary-color, #138670) !important;
	border-radius: 8px !important;
	overflow: hidden !important;
	background: #fff !important;
}

.woocommerce div.quantity .qty {
	border: none !important;
	background: transparent !important;
	color: var(--wd-primary-color, #138670) !important;
	font-weight: 700 !important;
	text-align: center !important;
}

.woocommerce div.quantity .plus,
.woocommerce div.quantity .minus {
	background: var(--wd-primary-color, #138670) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	font-weight: 700 !important;
	cursor: pointer;
	transition: background-color .15s ease;
}

.woocommerce div.quantity .plus:hover,
.woocommerce div.quantity .minus:hover {
	filter: brightness(0.9);
}
