.suphi-mini-slider-wrapper {
    position: relative;
    padding-bottom: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.suphi-slider-container {
    width: 100%;
    height: 400px; /* Default height */
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 5;
}

.suphi-slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none; /* For link mode */
}

.suphi-slide-caption {
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.suphi-caption-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    padding: 5px;
}

.caption-text {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

/* Shadow Layers for the "stacked" look */
.suphi-slider-shadow-layers {
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 20px;
    z-index: 1;
}

.shadow-layer-1, .shadow-layer-2 {
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 10px;
}

.shadow-layer-1 {
    bottom: 5px;
    margin: 0 10px;
    z-index: 2;
}

.shadow-layer-2 {
    bottom: 0;
    margin: 0 20px;
    z-index: 1;
}

/* Navigation Buttons */
.suphi-slider-container .swiper-button-next,
.suphi-slider-container .swiper-button-prev {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.suphi-slider-container .swiper-button-next::after,
.suphi-slider-container .swiper-button-prev::after {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .suphi-slider-container {
        height: 300px;
    }
    .caption-text {
        font-size: 16px;
    }
}
