/* Slider Wrapper */
.three-dn-slider-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}

/* Slider Inner Track */
.three-dn-slider {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
}

/* Slide Item */
.three-dn-slide {
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
}

.three-dn-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #ccc;
    border-radius: 4px;
}
