.categorie-box {
    width: 100%;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    /* KEY: inside flex row → same height */
    overflow: visible;
    padding-bottom: 20px;
}


/* Image */

.categorie-box .cat-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.categorie-box .cat-img img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
}


/* Text */

.categorie-box .cat-desc {
    margin-top: 10px;
    padding: 0 15px;
    text-align: center;
}

.categorie-box .cat-desc h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}