.you-may-also-like-section {
	padding: 60px 40px;
	background-color: #ffffff;
}

.you-may-also-like-container {
	max-width: 1400px;
	margin: 0 auto;
}

.you-may-also-like-title {
	text-align: center;
	font-size: 32px;
	font-weight: 500;
	color: #1a1a1a;
	margin: 0 0 40px;
}

/* ===================== SLIDER WRAPPER ===================== */
.yml-slider-wrapper {
	position: relative;
	display: block;
}

.yml-nav-btn {
	position: absolute;
	top: 0; /* JS se dynamically set hoga */
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #1a1a1a;
	z-index: 5;
	transition: background 0.2s ease;
}

.yml-nav-prev {
	left: -22px;
}

.yml-nav-next {
	right: -22px;
}

.yml-nav-btn:hover {
	background-color: #f5f5f5;
}

.yml-nav-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}



/* ===================== SLIDER TRACK ===================== */
.yml-slider-track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	flex: 1;
	padding-bottom: 5px;
}

.yml-slider-track::-webkit-scrollbar {
	display: none;
}

/* ===================== CARD ===================== */
.yml-card {
	flex: 0 0 auto;
	width: 260px;
}

.yml-card-image {
	position: relative;
	background-color: #f2f2f2;
	border-radius: 6px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.yml-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.yml-card:hover .yml-card-image img {
	transform: scale(1.03);
}

.yml-badge {
	position: absolute;
	top: 14px;
	font-size: 11px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 3px;
	z-index: 2;
}

.yml-badge-discount {
	left: 14px;
	background-color: #1a1a1a;
	color: #fff;
}

.yml-badge-sale {
	right: 14px;
	background-color: #fff;
	color: #1a1a1a;
	border: 1px solid #1a1a1a;
}

.yml-cart-icon {
	position: absolute;
	bottom: 14px;
	right: 14px;
	width: 38px;
	height: 38px;
	background-color: #1a1a1a;
	color: #fff;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	cursor: pointer;
	z-index: 2;
	transition: opacity 0.2s ease;
}

.yml-cart-icon:hover {
	opacity: 0.8;
}

.yml-cart-icon.loading {
	opacity: 0.5;
	pointer-events: none;
}

.yml-card-title {
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 6px;
	line-height: 1.4;
}

.yml-card-title a {
	color: #1a1a1a;
	text-decoration: none;
}

.yml-card-title a:hover {
	text-decoration: underline;
}

.yml-card-desc {
	font-size: 13px;
	color: #888;
	margin: 0 0 10px;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.yml-card-price-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.yml-card-price {
	font-size: 15px;
	font-weight: 700;
	color: #1a1a1a;
}

.yml-card-price del {
	color: #999;
	font-weight: 400;
	font-size: 13px;
	margin-right: 6px;
}

.yml-card-rating {
	display: flex;
	align-items: center;
	gap: 2px;
	font-size: 11px;
	color: #1a1a1a;
}

.yml-card-rating span {
	color: #999;
	margin-left: 4px;
}

.yml-add-to-bag {
	width: 100%;
	background: transparent;
	border: 1px solid #1a1a1a;
	color: #1a1a1a;
	padding: 14px;
	border-radius: 50px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.yml-add-to-bag:hover {
	background-color: #1a1a1a;
	color: #ffffff;
}

.yml-add-to-bag.loading {
	opacity: 0.6;
	pointer-events: none;
}

/* ===================== PROGRESS BAR ===================== */
.yml-progress-track {
	height: 2px;
	background-color: #eee;
	margin-top: 30px;
	border-radius: 2px;
	overflow: hidden;
}

.yml-progress-bar {
	height: 100%;
	width: 20%;
	background-color: #1a1a1a;
	border-radius: 2px;
	transition: width 0.2s ease, transform 0.2s ease;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
	.you-may-also-like-section {
		padding: 40px 16px;
	}

	.you-may-also-like-title {
		font-size: 24px;
	}

	.yml-nav-btn {
		display: none;
	}

	.yml-card {
		width: 200px;
	}
}