.dcs-wrapper-66e3b7ce {
    position: relative;
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
}
.dcs-track-66e3b7ce {
    display: flex;
    transition: transform 0.3s ease-out;
    cursor: grab;
    gap: 20px;
}
.dcs-track-66e3b7ce:active {
    cursor: grabbing;
}
.dcs-item-66e3b7ce {
    flex-shrink: 0;
    box-sizing: border-box;
    user-select: none;
}
.dcs-link-66e3b7ce {
    display: block;
    text-decoration: none;
    color: inherit;
    pointer-events: auto; /* Required for dragging */
}
.dcs-link-disabled-66e3b7ce {
    pointer-events: none !important;
}
.dcs-image-wrap-66e3b7ce {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f5f5f5;
}
.dcs-image-wrap-66e3b7ce img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    pointer-events: none; /* Prevents native image drag */
}
.dcs-hover-zoom .dcs-link-66e3b7ce:hover .dcs-image-wrap-66e3b7ce img {
    transform: scale(1.05);
}
.dcs-label-below-66e3b7ce {
    padding-top: 15px;
    text-align: center;
}
.dcs-label-66e3b7ce {
    display: block;
    font-weight: 600;
}
.dcs-prev-66e3b7ce, .dcs-next-66e3b7ce {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}
.dcs-prev-66e3b7ce { left: 10px; }
.dcs-next-66e3b7ce { right: 10px; }

.dcs-pagination-66e3b7ce {
    text-align: center;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.dcs-dot-66e3b7ce {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}
.dcs-dot-active-66e3b7ce {
    background: #333;
}
