/* PIM Easy Slider — Frontend Styles */

.pim-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    user-select: none;
}

.pim-slider-track-outer {
    overflow: hidden;
    width: 100%;
}

.pim-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Each slide */
.pim-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    position: relative;
}

.pim-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}

/* Arrows */
.pim-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}
.pim-arrow:hover { background: rgba(0, 0, 0, 0.75); }
.pim-prev { left: 12px; }
.pim-next { right: 12px; }

/* Dots */
.pim-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.pim-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.55);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.pim-dot.active,
.pim-dot:hover {
    background: #fff;
    transform: scale(1.25);
}

/* Responsive: mobile */
@media (max-width: 600px) {
    .pim-slide img  { max-height: 260px; }
    .pim-arrow      { width: 34px; height: 34px; font-size: 14px; }
}
