.sticki-elementor-carousel {
    --sticki-items: 5;
    --sticki-gap: 22px;
    --sticki-edge: 24px;
    --sticki-ratio: 4 / 5;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}
.sticki-elementor-carousel *,
.sticki-elementor-carousel *::before,
.sticki-elementor-carousel *::after { box-sizing: border-box; }

.sticki-elementor-carousel--full {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.sticki-elementor-carousel__viewport {
    width: 100%;
    overflow: hidden;
    padding-inline: var(--sticki-edge);
    user-select: none;
    touch-action: pan-y;
}

.sticki-elementor-carousel__track {
    display: flex;
    align-items: stretch;
    gap: var(--sticki-gap);
    width: max-content;
    padding: 6px 0 16px;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.sticki-elementor-carousel__item {
    flex: 0 0 calc((100vw - (var(--sticki-edge) * 2) - (var(--sticki-gap) * (var(--sticki-items) - 1))) / var(--sticki-items));
    width: calc((100vw - (var(--sticki-edge) * 2) - (var(--sticki-gap) * (var(--sticki-items) - 1))) / var(--sticki-items));
    min-width: 110px;
    max-width: none;
    margin: 0;
    overflow: hidden;
    background: #eee9e3;
    transform: translateZ(0);
}

.sticki-elementor-carousel__item img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: var(--sticki-ratio);
    object-fit: cover;
    pointer-events: none;
    transition: transform .65s cubic-bezier(.2,.72,.2,1);
}

.sticki-elementor-carousel--zoom .sticki-elementor-carousel__item:hover img {
    transform: scale(1.035);
}

.sticki-elementor-carousel__empty {
    padding: 28px;
    border: 1px dashed #c9beb3;
    border-radius: 14px;
    text-align: center;
    color: #766b61;
    background: #fffdfa;
}

@media (max-width: 1024px) {
    .sticki-elementor-carousel { --sticki-items: 3; }
}

@media (max-width: 767px) {
    .sticki-elementor-carousel {
        --sticki-items: 1.25;
        --sticki-gap: 12px;
        --sticki-edge: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sticki-elementor-carousel__track { transform: none !important; }
}
