/* Progress Bar Container */
.clubs-slider__progress {
    display: flex;
    gap: 5px;
    position: absolute; /* Make sure it's above swiper */
    bottom: 15px; /* Position it properly inside slider */
    left: 50%;
    transform: translateX(-50%);
    width: 99%;
    z-index: 10; /* Increase z-index to be above swiper overlays */
    pointer-events: none; /* Prevent blocking swiper clicks */
}
.clubs-slider__progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    width: 0%;
    transition: width 5s linear, background-color 0.3s ease !important;
}

.clubs-slider__progress-bar.filling {
    width: 100%;
    background: white;
}

