.hover-slider-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.hover-slider-image {
    display: block;
    transition: opacity 0.15s ease;
}

.hover-slider-more {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    padding: 20px;
    z-index: 5;
}
.hover-slider-more img{
	width:60px !important;
	height:60px !important;
}

.hover-slider-more.active {
    display: flex;
    flex-direction:column;
    gap: 5px;
}

.hover-slider-progress {
    position: absolute;
    left: 3px;
    right: 3px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 2px;
    padding: 0 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.hover-slider-progress.top {
    top: 3px;
}

.hover-slider-progress.bottom {
    bottom: 3px;
}

.hover-slider-item:hover .hover-slider-progress {
    opacity: 1;
}

.progress-segment {
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    transition: background 0.1s ease;
    border-radius: 2px;
}

.progress-segment.active {
    background: #fff;
}
.hover-slider-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hoverSpin 0.8s linear infinite;
    display: none;
    z-index: 3;
}

.hover-slider-item.loading .hover-slider-loader {
    display: block;
}

@keyframes hoverSpin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}