/* Slider Wrapper */
.three-dn-slider-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
}
.three-dn-slider {
    display: flex;
    gap: 10px;
}
.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;
}

/* Tabs */
.yd-tab-wrapper {
    margin-top: 15px;
    width: 100%;
}
.yd-tab-header {
    padding: 8px 12px;
    background: #f1f1f1;
    border: 1px solid #ccc;
    display: inline-block;
    cursor: pointer;
}
.yd-tab-header.active {
    background: #fff;
    border-bottom: none;
}
.yd-tab-content {
    display: none;
    border: 1px solid #ccc;
    padding: 12px;
}
.yd-tab-content.active {
    display: block;
}
