/* Package Add to Cart Buttons - Right Aligned with Price */
.product-item .product-item-info {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 12px !important;
	width: 100% !important;
	flex-wrap: nowrap !important;
}

.product-item .product-price {
	flex: 0 1 auto;
	min-width: 0;
}

.product-item .product-price h3 {
	font-size: 16px !important;
	white-space: nowrap;
}

.product-item .product-action {
	flex: 0 0 auto;
}

/* Properly styled btn-default for product items */
.product-item .product-action .btn-default {
	display: inline-block !important;
	padding: 12px 20px !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	white-space: nowrap !important;
	text-decoration: none !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
}

.product-item .product-action .btn-default:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
}

/* Hide the arrow animation on product action buttons */
.product-item .product-action .btn-default::before {
	display: none !important;
}

/* Fix padding since arrow is hidden */
.product-item .product-action .btn-default {
	padding: 12px 20px !important;
}

.product-item .product-action .btn-default:hover {
	padding: 12px 20px !important;
}

/* Mobile responsive - stack on very small screens */
@media (max-width: 480px) {
	.product-item .product-item-info {
		flex-wrap: wrap !important;
	}

	.product-item .product-action {
		width: 100%;
		margin-top: 10px;
	}

	.product-item .product-action .btn-default {
		width: 100%;
		text-align: center;
		display: block !important;
	}
}