.bc-slide-progress-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
}

.bc-circle {
    width: 95px;
    height: 95px;
    position: relative;
}

.bc-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); /* Start from top */
}

.bg {
    fill: none;
    stroke: #eee;
    stroke-width: 4;
}

.progress {
    fill: none;
    stroke: #f57c00;
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset .45s ease;
}

.bc-current-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 800;
    color: #000;
}

/* Ensure arrows remain clickable */
.splide__arrows {
    position: relative;
    z-index: 5;
}

.splide__arrow {
    pointer-events: auto !important;
    position: relative;
    z-index: 10 !important;
    cursor: pointer;
}

.bc-single-circle {
    pointer-events: none;
    flex-shrink: 0;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.bc-single-circle[data-circle-persist="true"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Tablet and mobile adjustments */
@media (max-width: 1024px) {
    .bc-single-circle {
        margin: 0 8px;
    }
    
    .bc-single-circle svg {
        width: 40px;
        height: 40px;
    }
    
    .bc-current-num {
        font-size: 14px;
    }
    
    .splide__arrow {
        touch-action: manipulation;
        min-width: 44px;
        min-height: 44px;
    }
}

@media (max-width: 768px) {
    .bc-single-circle {
        margin: 0 5px;
    }
    
    .bc-single-circle svg {
        width: 35px;
        height: 35px;
    }
    
    .bc-current-num {
        font-size: 12px;
    }
}

@media (max-width: 920px) {
    .bc-single-circle {
        display: none !important;
    }
}

.kt-blocks-carousel .splide.kb-slider-arrow-position-bottom-right .splide__arrows .splide__arrow--prev {
    right: 0;
}
