/* Slide Container cố định kích thước 1280x720 */
.slide-container {
	width: 100%;
	height: 620px;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	padding: 0; /* Giảm padding để dành chỗ cho slider */
}

.slide-header {
	padding: 0 80px;
	margin-bottom: 20px;
}

.red-line {
	width: 60px;
	height: 5px;
	background-color: #ff4d4d;
	margin-bottom: 15px;
}

.slide-title {
	font-family: 'Montserrat', sans-serif;
	font-size: 48px;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

/* 2. CẤU HÌNH SWIPER VÀ HIỆU ỨNG */
.swiper-wrapper-container {
	flex-grow: 1;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
}

.swiper {
	width: 100%;
	padding: 0 0 100px 0 !important; /* Tạo không gian cho hiệu ứng scale */
}

.swiper-slide {
	width: 640px;
	height: 450px;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	display: flex;
	flex-direction: column;
	/* Hiệu ứng mặc định: thu nhỏ và làm mờ */
	transform: scale(0.85);
	opacity: 0.7;
	filter: blur(0.5px);
/* 	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); */
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	position: relative;
}

/* Hiệu ứng khi slide ở trung tâm (.swiper-slide-active) */
.swiper-slide-active {
	width: 720px;
	height: 540px;
	transform: scale(1);
	opacity: 1;
	filter: blur(0);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

.slide-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Footer trong mỗi slide */
.slide-card-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, rgba(0, 45, 90, 0.95), rgba(0, 45, 90, 0.7) 60%, transparent);
	padding: 20px 30px;
	color: white;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.footer-info {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 10px;
	margin-top: 5px;
}

.footer-info span i { color: #ff6b00; margin-right: 5px; }

/* 4. ĐIỀU HƯỚNG & PAGINATION */
.nav-button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: #fff;
	border: 1px solid #ff4d4d;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 100;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

.nav-button:hover { background-color: #fff5f5; transform: translateY(-50%) scale(1.1); }
.nav-button svg { width: 24px; height: 24px; fill: #ff4d4d; }

.btn-prev { left: 40px; }
.btn-next { right: 40px; }

.swiper-pagination { bottom: 40px !important; }
.swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #cbd5e1;
	opacity: 1;
	margin: 0 6px !important;
	transition: all 0.4s ease;
}

/* Dấu chấm kích hoạt hình viên thuốc */
.swiper-pagination-bullet-active {
	width: 45px;
	border-radius: 10px;
	background: #002d5a !important;
}
/* End Slide */