/*series*/
#series {
	padding-top: 130px;
}

.product-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}

.product-section h2 {
	text-align: center;
	margin-bottom: 30px;
}

.product-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f8f8f8;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 30px;
	gap: 20px;
	animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.product-image-slider {
	position: relative;
	width: 45%;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #f3f3f3;
	border-radius: 10px;
}

.product-image-slider img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: none;
}

.product-image-slider img.active {
	display: block;
}

.product-image-slider button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: none;
	font-size: 20px;
	padding: 5px 10px;
	border-radius: 50%;
	cursor: pointer;
}

.product-image-slider .prev { left: 10px; }
.product-image-slider .next { right: 10px; }

.product-info {
	width: 50%;
}

.product-info h3 {
	margin-bottom: 10px;
}

.product-info p {
	color: #555;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.25s; }
.product-card:nth-child(3) { animation-delay: 0.4s; }
.product-card:nth-child(4) { animation-delay: 0.55s; }

.see-more {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  color: #007bff;
  text-decoration: underline;
}
