/* VELAXIZ v1.57.0 — Home statistics balance / Product gallery thumb state / Contact banner cleanup. */

/* Home Statistics: the four statistic cells together occupy one half and the
 * certification group occupies the other half. Both halves distribute their
 * own contents evenly so the strip no longer feels left-heavy. */
body.home .stats-bar .stats-inner {
    justify-content: flex-start;
    gap: 0;
}
body.home .stats-bar .stat-item {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 0 clamp(8px, 1.1vw, 20px);
    box-sizing: border-box;
}
body.home .stats-bar .stats-divider {
    flex: 0 0 1px;
    margin: 0 clamp(16px, 2.2vw, 38px);
}
body.home .stats-bar .cert-logos {
    flex: 4 1 0;
    min-width: 0;
    justify-content: space-evenly;
    gap: clamp(10px, 1.6vw, 28px);
}
body.home .stats-bar .cert {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
}

/* Product Detail gallery thumbs: every thumb has a visible frame; the active
 * slide is identified by Slick's canonical .slick-current class. */
.single-product .prodeta-smimg {
    margin-top: 14px;
}
.single-product .prodeta-smimg-items {
    cursor: pointer;
}
.single-product .prodeta-smimg-cont {
    overflow: hidden;
    border: 1px solid #d8dce3;
    background: #fff;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.single-product .prodeta-smimg-items:hover .prodeta-smimg-cont,
.single-product .prodeta-smimg-items:focus-within .prodeta-smimg-cont {
    border-color: #9bbfe0;
}
.single-product .prodeta-smimg-items.slick-current .prodeta-smimg-cont,
.single-product .prodeta-smimg:not(.slick-initialized) .prodeta-smimg-items:first-child .prodeta-smimg-cont {
    border-color: var(--primary);
    box-shadow: inset 0 0 0 1px var(--primary);
}
.single-product .prodeta-smimg-cont .img_box {
    background: #fff;
}

@media (max-width: 991px) {
    body.home .stats-bar .stats-inner {
        display: flex;
        flex-wrap: wrap;
        gap: 18px 0;
    }
    body.home .stats-bar .stat-item {
        flex: 1 1 50%;
    }
    body.home .stats-bar .stats-divider {
        display: none;
    }
    body.home .stats-bar .cert-logos {
        flex: 1 0 100%;
        padding-top: 18px;
        border-top: 1px solid rgba(255,255,255,.16);
    }
}

@media (max-width: 520px) {
    body.home .stats-bar .stat-item {
        flex-basis: 100%;
        justify-content: flex-start;
    }
    body.home .stats-bar .cert-logos {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }
}
