/* Product Showcase Section */
.product-showcase-section {
	width: 100%;
	padding: 60px 20px;
	background: #ffffff;
}

.product-showcase-container {
	max-width: 1400px;
	margin: 0 auto;
}

/* Tabs */
.showcase-tabs {
	display: flex;
	justify-content: center;
	gap: 50px;
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 40px;
}

.showcase-tab {
	background: none;
	border: none;
	padding: 0 0 18px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: #999;
	cursor: pointer;
	position: relative;
	transition: color 0.3s ease;
}

.showcase-tab.active {
	color: #111;
}

.showcase-tab.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #111;
}

.showcase-tab:hover {
	color: #333;
}

/* Panels - Ye sabse zaroori hai, ye hi tabs switch karta hai */
.showcase-panel {
	display: none;
}

.showcase-panel.active {
	display: block;
}

/* Carousel */
.showcase-carousel {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 5px;
	width: 100%;
}

.showcase-carousel::-webkit-scrollbar {
	display: none;
}

/* Product Card */
.showcase-card {
	flex: 0 0 calc(20% - 16px);
	min-width: 220px;
	display: flex;
	flex-direction: column;
}

/* Product Image */
.showcase-card-image {
	position: relative;
	background: #f2f2f2;
	border-radius: 10px;
	overflow: hidden;
	height: 320px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.showcase-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.3s ease;
}

.showcase-card:hover .showcase-card-image img {
	transform: scale(1.05);
}

.showcase-cart-icon {
	position: absolute;
	bottom: 12px;
	right: 12px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 14px;
	transition: background 0.3s ease;
	z-index: 2;
}

.showcase-cart-icon:hover {
	background: #333;
}

.showcase-card-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.showcase-card-title {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 5px;
	line-height: 1.4;
}

.showcase-card-title a {
	color: #111;
	text-decoration: none;
}

.showcase-card-desc {
	font-size: 13px;
	color: #888;
	margin: 0 0 10px;
	line-height: 1.5;
}

.showcase-card-price {
	font-size: 15px;
	font-weight: 600;
	color: #111;
	margin-bottom: 15px;
}

.showcase-card-price del {
	color: #999;
	font-weight: 400;
	margin-right: 6px;
}

.showcase-add-btn {
	display: block;
	text-align: center;
	background: transparent;
	border: 1px solid #111;
	color: #111;
	padding: 12px 20px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	margin-top: auto;
	transition: all 0.3s ease;
}

.showcase-add-btn:hover {
	background: #111;
	color: #fff;
}

/* Footer Row - Progress bar + Arrows together */
.showcase-footer-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.showcase-progress-track {
	flex: 1;
	height: 3px;
	background: #eee;
	border-radius: 10px;
	overflow: hidden;
}

.showcase-progress-bar {
	height: 100%;
	width: 20%;
	background: #111;
	border-radius: 10px;
	transition: width 0.3s ease;
}

/* Arrows */
.showcase-nav-arrows {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.showcase-arrow {
	background: #fff;
	border: 1px solid #ddd;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 13px;
	color: #111;
	transition: all 0.3s ease;
}

/* .showcase-arrow:hover {
	background: #111;
	color: #fff;
	border-color: #111;
} */

/* ============================= */
/* TABLET */
/* ============================= */
@media (max-width: 992px) {
	.showcase-card {
		flex: 0 0 calc(33.333% - 14px);
	}

	.showcase-tabs {
		gap: 30px;
	}
}

/* ============================= */
/* MOBILE VIEW - 2 CARDS SIDE BY SIDE */
/* ============================= */
@media (max-width: 576px) {

	.product-showcase-section {
		padding: 25px 15px;
	}

	/* Tabs - left aligned, chhote, no scroll needed agar fit ho jaye */
	.showcase-tabs {
		display: flex;
		justify-content: flex-start;
		gap: 25px;
		border-bottom: 1px solid #e5e5e5;
		margin-bottom: 20px;
		overflow-x: auto;
		white-space: nowrap;
		scrollbar-width: none;
	}

	.showcase-tabs::-webkit-scrollbar {
		display: none;
	}

	.showcase-tab {
		font-size: 12px;
		padding: 0 0 12px;
		flex-shrink: 0;
	}

	/* Carousel - 2 cards visible, thoda gap */
	.showcase-carousel {
		gap: 12px;
	}

	.showcase-card {
		flex: 0 0 calc(48% - 6px);
		min-width: unset;
		scroll-snap-align: start;
	}

	.showcase-carousel {
		scroll-snap-type: x mandatory;
	}

	.showcase-card-image {
		height: 220px;
		border-radius: 8px;
	}

	.showcase-cart-icon {
		width: 32px;
		height: 32px;
		font-size: 12px;
		bottom: 8px;
		right: 8px;
	}

	.showcase-card-title {
		font-size: 13px;
		margin-bottom: 4px;
	}

	.showcase-card-desc {
		font-size: 11px;
		margin-bottom: 6px;
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.showcase-card-price {
		font-size: 13px;
		margin-bottom: 12px;
	}

	.showcase-add-btn {
		padding: 10px 15px;
		font-size: 12px;
	}

	/* Footer row - progress bar chhota, arrows chhote right pe */
	.showcase-footer-row {
		margin-top: 20px;
		gap: 12px;
	}

	.showcase-progress-track {
		height: 2px;
	}

	.showcase-nav-arrows {
		display: flex; /* pehle hide tha, ab dikhega chhota sa */
	}

	.showcase-arrow {
		width: 30px;
		height: 30px;
		font-size: 11px;
	}
}