/* ==========================================
   PRODUCT CARD STYLES (Legacy - Preserve)
   ========================================== */
.xp-products-section{
	padding:60px 0 80px;
}

.xp-product-card {
	border: 1.5px solid #e5e5e5;
	border-radius: 16px;
	background: #f9f9f9;
	padding: 12px;
	margin: 8px;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
}

.xp-product-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(129,186,45,0.05), rgba(131,190,50,0.05));
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.xp-product-card:hover {
	border-color: #81ba2d;
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(129,186,45,0.12), 0 0 0 1px rgba(129,186,45,0.1);
}

.xp-product-card:hover::before {
	opacity: 1;
}

.xp-image-wrapper {
	position: relative;
	border: 1.5px solid #e5e5e5;
	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f5;
	aspect-ratio: 1/1;
}

.xp-product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.xp-product-card:hover .xp-product-image {
	transform: scale(1.08);
}

.xp-image-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
	pointer-events: none;
	z-index: 1;
}

.xp-label-hot {
	position: absolute;
	top: 10px;
	left: 10px;
	background: linear-gradient(135deg, #ef4444, #dc2626);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	font-family: 'Jost', sans-serif;
	border-radius: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(239,68,68,0.4);
}

.xp-label-discount {
	position: absolute;
	top: 38px;
	left: 10px;
	background: linear-gradient(135deg, #f97316, #ea580c);
	color: #fff;
	font-size: 11px;
	letter-spacing: 1px;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	padding: 4px 10px;
	border-radius: 6px;
	z-index: 2;
	box-shadow: 0 2px 8px rgba(249,115,22,0.4);
}

.xp-action-icons {
	position: absolute;
	top: 10px;
	right: 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	z-index: 2;
	opacity: 0;
	transition: all 0.35s ease;
}

.xp-action-btn {
	width: 30px;
	height: 30px;
	border-radius: 8px;
	border: 1.5px solid rgb(255 255 255);
	background: transparent;
	color: #ffffff;
	cursor: pointer;
	display: flex;
	font-size: 15px;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(8px);
}

.xp-action-btn:hover {
	background: #81ba2d;
	border-color: #81ba2d;
	color: #fff;
	transform: scale(1.1);
}

.xp-action-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.xp-product-card:hover .xp-action-icons {
	opacity: 1;
}

.xp-content-wrapper {
	padding: 14px 6px 8px 6px;
}

.xp-categories-name {
	font-size: 11px;
	color: #81ba2d;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-family: 'Jost', sans-serif;
	margin-bottom: 6px;
}

.xp-product-name {
	font-family: 'Jost', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 8px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	letter-spacing: 1px;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.xp-rating-wrapper {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 10px;
}

.xp-stars {
	display: flex;
	gap: 2px;
}

.xp-star {
	color: #fbbf24;
	font-size: 13px;
}

.xp-star.xp-star-empty {
	color: #3a3a48;
}

.xp-review-count {
	font-size: 12px;
	color: #787885;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

.xp-price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 14px;
}

.xp-discount-price {
	font-family: 'Jost', sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #1a1a1a;
	letter-spacing: 1px;
}

.xp-actual-price {
	font-size: 14px;
	color: #5a5a68;
	text-decoration: line-through;
	font-weight: 500;
	font-family: 'Jost', sans-serif;
	letter-spacing: 1px;
}

.xp-buy-online-heading {
	font-size: 15px;
	color: #787885;
	font-weight: 400;
	text-transform: capitalize;
	letter-spacing: 1px;
	margin-bottom: 8px;
	font-family: 'Jost', sans-serif;
}

.xp-buy-links {
	display: flex;
	gap: 8px;
}

.xp-buy-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 10px;
	border-radius: 8px;
	border: 1.5px solid #e5e5e5;
	background: #f5f5f5;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	color: #666666;
	font-size: 12px;
	font-weight: 600;
}

.xp-buy-btn:hover {
	border-color: #81ba2d;
	background: rgba(129,186,45,0.08);
	color: #81ba2d;
	transform: translateY(-1px);
}

/* Amazon logo SVG color */
.xp-buy-btn img { 
	width: 70px !important;
}
/* ==========================================
   OWL CAROUSEL CUSTOMIZATION
   ========================================== */

.owl-carousel {
	position: relative;
}

.owl-theme .owl-nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	padding: 0 15px;
	box-sizing: border-box;
	pointer-events: none;
	width: 100%;
}

.owl-theme .owl-nav button.owl-prev,
.owl-theme .owl-nav button.owl-next {
	width: 42px;
	height: 42px;
	background: #f5f5f5 !important;
	border: 1.5px solid #e5e5e5 !important;
	border-radius: 10px !important;
	color: #666666 !important;
	font-size: 24px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: all 0.3s ease;
	margin: 0 !important;
	padding: 0 !important;
	pointer-events: all;
	flex-shrink: 0;
}

.owl-theme .owl-nav button.owl-prev:hover,
.owl-theme .owl-nav button.owl-next:hover {
	background: #81ba2d !important;
	border-color: #81ba2d !important;
	color: #fff !important;
	box-shadow: 0 4px 16px rgba(129,186,45,0.35);
}

.owl-theme .owl-dots {
	display: none !important;
}

/* Wishlist active */
.xp-action-btn.xp-wishlisted {
	background: #ef4444;
	border-color: #ef4444;
	color: #fff;
}

/* Wishlist added (for index.php) */
.xp-action-btn.added-wishlist {
	background: #ef4444 !important;
	border-color: #ef4444 !important;
	color: #fff !important;
}

.xp-action-btn.added-wishlist svg {
	stroke: #fff;
	fill: #fff;
}