.coverflow-slider {
    position: relative;
    overflow: hidden;
    width: 100%;

    .coverflow-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .coverflow-slide {
        position: absolute;
        transform-origin: center center;
        transition: .4s linear;
        will-change: left, opacity, transform, z-index;
    }

    .coverflow-btn {
        position: absolute;
        top: calc(50% - 22px);
        z-index: 200;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 24px;

        width: 44px;
        aspect-ratio: 1/1;
        background-image: url(/application/images/arrow-burgundy-left.svg);
        border-radius: 50%;
        box-shadow: 0 0 20px 0 rgba(164, 48, 90, .15);
        background-position: 50% 50%;
        background-repeat: no-repeat;
        transition: var(--standard-transition);
    }

    .coverflow-prev { 
        left: 10px;
     }
    .coverflow-next { 
        right: 10px;
        transform: rotate(180deg);
    }
}

.coverflow-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    user-select: none;
    -webkit-user-select: none;
}
.coverflow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.coverflow-slide {
    position: absolute;
    transform-origin: center center;
    cursor: grab;
}
.coverflow-slide:active { 
    cursor: grabbing;
}
.coverflow-slide img,
.coverflow-slide video {
    max-width: 100%;
    display: block;
    border-radius: 12px;
    pointer-events: none;
}
 
/* dots */
.coverflow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 14px;
}
.coverflow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--gray-e0);
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
}
.coverflow-dot.active {
    background: var(--burgundy);
    transform: scale(1.3);
}