/* ============================================================
   Woo Banner Slider  |  banner.css  |  v1.0.7
   ============================================================ */

/* Tečky a progress bar – zbytek poziční logiky je inline v HTML */

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

.wbs-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: 2px solid rgba(255, 255, 255, 0.85);
    padding: 0;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.wbs-dot.is-active,
.wbs-dot:hover {
    background: #fff;
    transform: scale(1.25);
}

.wbs-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.wbs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    width: 0%;
    z-index: 10;
    border-radius: 0 2px 0 0;
    transition: width linear;
}

@media (max-width: 960px) {
    .wbs-dots { bottom: 8px; }
    .wbs-dot  { width: 8px; height: 8px; }
}

@media (max-width: 600px) {
    .wbs-dots { bottom: 6px; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
    .wbs-slide,
    .wbs-progress { transition: none !important; }
}