/**
 * Amitry Product & Category Slider Pro - AJAX Add to Cart button
 */

.wcsp-add-to-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 10px 16px;
	margin-top: 12px;
	border: 1px solid #111827;
	background: #111827;
	color: #ffffff !important;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	border-radius: 6px;
	line-height: 1.2;
	box-sizing: border-box;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.wcsp-add-to-cart:hover {
	background: #1f2937;
	transform: translateY(-1px);
}

.wcsp-add-to-cart:active {
	transform: translateY(0);
}

.wcsp-add-to-cart.loading {
	opacity: 0.7;
	pointer-events: none;
}

.wcsp-add-to-cart.added::after {
	content: '✓';
	margin-left: 6px;
	font-weight: 700;
}

/* Hide generic "View cart" text that WooCommerce sometimes appends */
.wcsp-card .added_to_cart {
	display: inline-block;
	margin-top: 6px;
	font-size: 12px;
	text-align: center;
	width: 100%;
}

@media (prefers-reduced-motion: reduce) {
	.wcsp-add-to-cart { transition: none; }
}
