.wcawvc-carousel-widget {
    width: 100%;
    position: relative;
}

.wcawvc-carousel-empty {
    padding: 20px;
    border: 1px dashed #d0d0d0;
    background: #fafafa;
    text-align: center;
    font-size: 14px;
}

.wcawvc-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f5f5f5;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
    cursor: grab;
}

.wcawvc-carousel.is-dragging {
    cursor: grabbing;
}

.wcawvc-carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.wcawvc-carousel-track.is-animated {
    transition-property: transform;
    transition-timing-function: ease;
}

.wcawvc-carousel-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex: 0 0 100%;
}

.wcawvc-carousel-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: var(--wcawvc-object-fit, cover);
    object-position: center center;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.wcawvc-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 1px solid transparent;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    padding: 0;
    outline: none;
}

.wcawvc-carousel-prev {
    left: 12px;
}

.wcawvc-carousel-next {
    right: 12px;
}

.wcawvc-carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
}

.wcawvc-carousel-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.wcawvc-carousel-dot:hover {
    transform: scale(1.08);
}

.wcawvc-carousel-dot.is-active {
    background: #fff;
    transform: scale(1.15);
}

@media (max-width: 767px) {
    .wcawvc-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .wcawvc-carousel-prev {
        left: 8px;
    }

    .wcawvc-carousel-next {
        right: 8px;
    }

    .wcawvc-carousel-dots {
        bottom: 10px;
    }
}