/* Swiper Styling */
.modern-showcase-swiper {
	position: relative;
	padding: 0px;
	margin-bottom: 60px;
}

.modern-showcase-swiper .swiper-slide {
	width: 320px;
	height: auto;
}

/* Product Card */
.modern-product-card {
	position: relative;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.modern-product-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.card-link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.card-image-container {
	position: relative;
	height: 280px;
	overflow: hidden;
}

.image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-product-card:hover .product-image {
	transform: scale(1.15);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.modern-product-card:hover .image-overlay {
	opacity: 1;
}

.overlay-content {
	text-align: center;
	color: white;
	transform: translateY(20px);
	transition: transform 0.4s ease;
}

.modern-product-card:hover .overlay-content {
	transform: translateY(0);
}

.overlay-content i {
	font-size: 32px;
	margin-bottom: 10px;
	display: block;
}

.overlay-content span {
	font-size: 16px;
	font-weight: 600;
}

.discount-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 2;
}

.discount-badge span {
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.card-content {
	padding: 32px 24px 24px;
	width: 100%;
	
}

.product-category {
	margin-bottom: 12px;
}

.category-tag {
	color: #667eea;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 4px 12px;
	background: rgba(102, 126, 234, 0.1);
	border-radius: 12px;
}

.product-title {
	font-size: 22px;
	font-weight: 700;
	color: #2d3748;
	margin-bottom: 16px;
	line-height: 1.3;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height: 90px;
}

.price-container {
	margin-bottom: 24px;
}

.price-group {
	display: flex;
	align-items: center;
	gap: 12px;
}

.current-price {
	font-size: 28px;
	font-weight: 800;
	color: #667eea;
}

.original-price {
	font-size: 18px;
	font-weight: 500;
	color: #a0aec0;
	text-decoration: line-through;
}

.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.action-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #667eea;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
}

.modern-product-card:hover .action-btn {
	color: #764ba2;
	transform: translateX(5px);
}

.card-glow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
	opacity: 0;
	transition: opacity 0.4s ease;
	border-radius: 24px;
	pointer-events: none;
}

.modern-product-card:hover .card-glow {
	opacity: 1;
}

/* Navigation */
.custom-navigation {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	z-index: 10;
	pointer-events: none;
}

.nav-btn {
	position: absolute;
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	color: #667eea;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	pointer-events: all;
}

.prev-btn {
	left: 0;
}

.next-btn {
	right: 0;
}

.nav-btn:hover {
	background: #667eea;
	color: white;
	transform: scale(1.1);
	box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

/* Progress Pagination */
.progress-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 40px;
}

.progress-bar {
	width: 200px;
	height: 4px;
	background: rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	background: linear-gradient(90deg, #667eea, #764ba2);
	width: 20%;
	transition: width 0.3s ease;
}

.pagination-info {
	color: #2d3748;
	font-weight: 600;
	font-size: 16px;
}

.current {
	font-size: 20px;
	color: #667eea;
}

.separator {
	margin: 0 8px;
	opacity: 0.6;
}

.total {
	opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
	.modern-showcase-swiper {
		padding: 0 40px;
	}
	
	.modern-showcase-swiper .swiper-slide {
		width: 320px;
	}
}

@media (max-width: 768px) {
	.modern-showcase-swiper {
		padding: 0 20px;
	}
	
	.modern-showcase-swiper .swiper-slide {
		width: 280px;
	}
	
	.nav-btn {
		width: 48px;
		height: 48px;
		font-size: 16px;
	}
	
	.progress-bar {
		width: 150px;
	}
}

@media (max-width: 480px) {
	.modern-showcase-swiper .swiper-slide {
		width: 260px;
	}
	
	.card-content {
		padding: 24px 20px 20px;
	}
	
	.product-title {
		font-size: 18px;
	}
	
	.current-price {
		font-size: 24px;
	}
}
