/*
 * Vacation Rental Manager - Property Slider
 */

.vrm-property-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.vrm-property-slider-track {
    position: relative;
    min-height: 300px;
    background: #f5f5f5;
}

.vrm-property-slide {
    display: none;
}

.vrm-property-slide.is-active {
    display: block;
}

.vrm-property-slide-image {
    display: block;
    width: 100%;
    height: auto;
}

.vrm-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
}

.vrm-slider-prev {
    left: 12px;
}

.vrm-slider-next {
    right: 12px;
}

.vrm-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.vrm-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
}

.vrm-slider-dot.is-active {
    background: #fff;
}

@media (max-width: 768px) {
    .vrm-property-slider-track {
        min-height: 220px;
    }

    .vrm-slider-nav {
        width: 34px;
        height: 34px;
        line-height: 34px;
        font-size: 18px;
    }
}
