.outer {
  padding: 0;
  margin: 0;
  color: white;
}

.container-sl {
  width: 100%;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Swiper container */
.swiper {
  width: 100%;
  max-width: 320px;
  height: 500px;
/*  padding-top: 40px;*/
  padding-bottom: 40px;
}

/* Swiper card-style slide */
.swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: linear-gradient(to right, #c31432, #240b36);
  border-radius: 15px;
  overflow: hidden;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

  transition: all 0.8s cubic-bezier(0.25, 0.4, 0.45, 1.4);
  filter: grayscale(80%) brightness(0.9);
  transform: scale(0.95);
  opacity: 0.85;
}

/* Active card effect */
.swiper .swiper-slide-active {
  filter: none;
  transform: scale(1);
  opacity: 1;
  z-index: 2;
}

/* Product image */
.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  border-radius: 15px 15px 0 0;
}

/* Hover zoom effect */
.swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Product info overlay */
.swiper .swiper-slide .info {
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 10;
  padding: 15px;
  box-shadow: inset 0 -120px 120px -120px black;
  text-align: center;
}

/* Product title */
.swiper .swiper-slide .info h4 {
  margin: 0;
  padding-bottom: 3px;
  color: #fff;
  font-size: 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Product price */
.swiper .swiper-slide .info .type {
  color: #eee;
  font-size: 16px;
  display: inline-block;
}

/* Pagination Bullets */
.swiper .swiper-pagination-bullet {
  background-color: grey;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper .swiper-pagination-bullet-active {
  background-color: #c31432 !important;
  transform: scale(1.3);
  opacity: 1;
}

/* Navigation Buttons (Optional) */
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  top: 50%;
  width: 40px;
  height: 40px;
  background: white;
  border: 3px solid #240b36;
  border-radius: 50%;
  color: #c31432;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 18px;
}

.swiper .swiper-button-prev:after {
  position: relative;
  left: -1px;
}

.swiper .swiper-button-next:after {
  position: relative;
  left: 1px;
}

.swiper .swiper-button-prev,
.swiper .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper .swiper-button-next,
.swiper .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper .swiper-button-prev.swiper-button-disabled,
.swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
