.stacked-fade-slider { position:relative; max-width:100%; margin:auto; overflow:hidden; font-family:sans-serif; }
.stacked-fade-slider .slide { display:none; }
.stacked-fade-slider .slide.active { display:block; animation: sfs_fadeIn_2054db9a 1s ease; }

/* Image box */
.stacked-fade-slider .image-box { position:relative; height:250px; }
.stacked-fade-slider .image-box img { width:100%; height:100%; object-fit:cover; border-top-left-radius:15px; border-top-right-radius:15px; }

/* Text box */
.stacked-fade-slider .text-box {
  height:260px;
  background:#f9f9f9;
  padding:15px;
  text-align:left;
  border-bottom-left-radius:15px;
  border-bottom-right-radius:15px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

/* Title */
.stacked-fade-slider .text-box h2 { font-size:24px; margin:0 0 10px; }

/* Description: max 3 lines */
.stacked-fade-slider .description {
  flex:0 0 60px;
  font-size:16px;
  line-height:20px;
  overflow:hidden;
  text-overflow:ellipsis;
  margin-bottom:10px;
}

/* Bottom content moved down */
.stacked-fade-slider .bottom-content { margin-top:auto; padding-top:10px; }

/* Meta section */
.stacked-fade-slider .meta { display:flex; gap:20px; margin-bottom:20px; }
.stacked-fade-slider .duration { font-size:14px; color:#1a1a1acc; }
.stacked-fade-slider .price { font-size:14px; font-weight:600; color:#ffc533ff; }

/* CTA button */
.stacked-fade-slider .cta-btn {
  display:block;
  width:100%;
  height:36px;
  line-height:36px;
  text-decoration:none !important;
  font-weight:normal !important;
  font-size:16px;
  border-radius:5px;
  text-align:center;
  margin-top:10px;
}

/* Pagination dots */
.stacked-fade-slider .pagination { position:absolute; bottom:10px; left:50%; transform:translateX(-50%); }
.stacked-fade-slider .pagination .dot { display:inline-block; width:10px; height:10px; margin:0 5px; background:#aaa; border-radius:50%; cursor:pointer; }
.stacked-fade-slider .pagination .dot.active { width:25px; border-radius:15px; background:#2e8575; }

@keyframes sfs_fadeIn_2054db9a { from{opacity:0;} to{opacity:1;} }
