/* ======================================
	BYA - Cart Buy Again
========================================= */

:root {
	--bya-primary-color: #222222;
	--bya-primary-text: #ffffff;
	--bya-accent-color: #0073aa;
	--bya-bg-color: #ffffff;
	--bya-border-color: #e6e6e6;
	--bya-text-color: #333333;
	--bya-muted-text: #777777;
	--bya-radius: 4px;
}

.bya-carousel-product-list-wrapper .bya-owl-carousel-items .owl-item {
	display: flex !important;
	align-items: stretch;
}

.bya-carousel-product-list-wrapper .bya-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 25px;
	color: var(--bya-text-color);
	position: relative;
	padding-bottom: 10px;
}

.bya-carousel-product-list-wrapper .bya-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: var(--bya-accent-color);
}

.bya-carousel-product-list-wrapper .bya-carousel-product {
	background-color: #ffffff;
	border: 1px solid #eaedf3;
	border-radius: 8px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	width: 100%;
	font-family: inherit;
	transition: box-shadow 0.3s ease;
}

.bya-cart-product:hover {
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.bya-cart-product-link {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
	height: 150px;
}

.bya_product_img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.bya-cart-product-title,
.bya-product-category,
.bya-cart-product-price,
.bya-product-stock p.stock,
.bya_out_of_stock {
	text-align: left;
}

.bya-cart-product-title {
	font-size: 15px;
	font-weight: 700;
	color: #333333;
	line-height: 1.3;
	margin-bottom: 5px;
}

.bya-product-category {
	font-size: 12px;
}

.bya-product-category a {
	color: #a0a4ab;
	text-decoration: none !important;
}

.bya-product-stock p.stock {
	font-size: 13px;
	font-weight: 600;
	color: #2d2f33;
	margin: 5px 0 10px 0;
	display: flex;
	align-items: left;
	gap: 6px;
}

.bya-cart-product-price .woocommerce-Price-amount {
	font-size: 16px;
	font-weight: 700;
	color: #cf1a38;
	align-items: left;
}

.bya_add_to_cart_container,
.bya_buy_again_container {
	width: 100%;
}

.bya_add_to_cart_container + .bya_buy_again_container {
	margin-top: 8px;
}

button.bya-add-to-cart, 
button.bya-buy-again {
	width: 100%;
	background-color: #3b4269;
	color: #ffffff;
	border: none;
	border-radius: 5px;
	padding: 12px 10px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	text-transform: none;
	display: block;
	text-align: center;
	transition: background-color 0.2s ease;
}

button.bya-add-to-cart:hover, 
button.bya-buy-again:hover {
	background-color: #2c3253;
	color: #ffffff;
}

.bya_quantity.hidden {
	display: none;
}