#mfg-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.mfg-item {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5%; /* rond */
    transition: transform 0.2s ease;
    cursor: pointer;
}

.mfg-item:hover {
    transform: scale(1.05);
}

#mfg-pagination {
    margin-top: 20px;
    text-align: center;
}

#mfg-pagination a, #mfg-pagination span {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    background: #ffa800;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.2s;
}

#mfg-pagination a:hover {
    background: #005177;
}

#mfg-pagination span.mfg-disabled {
    background: #999;
    cursor: not-allowed;
}





