/* BT Hero Slider — frontend */

.bths-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.bths-swiper {
    width: 100%;
}

.bths-slide {
    width: 100%;
    line-height: 0;
}

.bths-slide-link {
    display: block;
    width: 100%;
    line-height: 0;
}

.bths-picture,
.bths-picture img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* Strelice */
.bths-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.bths-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}
.bths-arrow-prev { left: 16px; }
.bths-arrow-next { right: 16px; }
.bths-arrow::after {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

/* Tačkice */
.bths-pagination {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}
.bths-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    opacity: 1;
    margin: 0 4px;
    transition: background 0.2s, transform 0.2s;
}
.bths-pagination .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

/* Mobile tweakovi */
@media (max-width: 1024px) {
    .bths-arrow {
        display: none;
    }
    .bths-pagination {
        bottom: 10px;
    }
    .bths-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}
