/* Zones */
.sc-hover-zones {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}

.sc-hover-zone {
    height: 100%;
    cursor: pointer;
}

/* Strip */
.sc-hover-strip {
    position: relative;
    width: 100%;
    display: flex;
    gap: 2px;
    padding: 0 4px 4px;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.2s;
    box-sizing: border-box;
    margin-top: 5px;
}

.sc-module-img:hover .sc-hover-strip {
    opacity: 1;
}

.sc-hover-strip-seg {
    flex: 1;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    transition: background 0.15s;
}

.sc-hover-strip-seg.active {
    background: #199b5a;
}

/* Loader */
.sc-hover-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: sc-spin 0.6s linear infinite;
    z-index: 3;
}

.sc-hover-loader.visible {
    display: block;
}

@keyframes sc-spin {
    to { transform: rotate(360deg); }
}

/* Mobile nav buttons */
.sc-img-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #333;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.sc-img-nav-prev { left: 6px; }
.sc-img-nav-next { right: 6px; }

@media (max-width: 767px) {
    .sc-hover-zones { display: none; }
    .sc-img-nav { display: flex; }
}
