.products-section {
  padding: 80px 0;
  background: #131d27;
  margin-top: -3rem;
}

.products-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 2s ease;
}

.product-slide.active {
  opacity: 1;
  transform: scale(1);
}

.product-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 30px 30px;
  color: white;
  text-align: left;
}

.product-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-caption p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.9;
}

.products-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.indicator.active {
  background: #007bff;
  transform: scale(1.2);
}

.indicator:hover {
  background: #0056b3;
}

@media (max-width: 768px) {
  .products-slider {
    height: 300px;
    margin: 30px auto;
  }
  
  .product-caption h3 {
    font-size: 1.4rem;
  }
  
  .product-caption p {
    font-size: 1rem;
  }
  
  .product-caption {
    padding: 30px 20px 20px;
  }
}

@media (max-width: 480px) {
  .products-slider {
    height: 250px;
    border-radius: 10px;
  }
  
  .product-caption h3 {
    font-size: 1.2rem;
  }
  
  .product-caption p {
    font-size: 0.9rem;
  }
  
  .products-section {
    padding: 60px 0;
  }
}