.produto-part-tre{
    width:100%;
    background:#242526;
    border:1px solid #303136;
    border-radius:18px;
    padding:22px;
    margin-top:18px;
    margin-bottom:70px;
    box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.produto-vendedor-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.produto-vendedor-left{
    display:flex;
    align-items:center;
    gap:16px;
    min-width:0;
    flex:1;
}

.produto-vendedor-avatar{
    width:82px;
    height:82px;
    min-width:82px;
    min-height:82px;
    border-radius:50%;
    overflow:hidden;
    flex-shrink:0;

    background:#2374e1;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;
    font-weight:800;

    border:3px solid #303136;
    box-shadow:0 0 0 3px rgba(35,116,225,.15);
}

.produto-vendedor-avatar img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

.produto-vendedor-dados{
    display:flex;
    flex-direction:column;
    gap:6px;
    min-width:0;
}

.produto-vendedor-label{
    color:#b0b3b8;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.6px;
}

.produto-vendedor-dados strong{
    color:#ffffff;
    font-size:20px;
    font-weight:700;
    line-height:1.3;

    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}

.produto-badge-plus{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:4px 10px;

    border-radius:999px;

    background:#3d2f00;
    border:1px solid #6a5200;

    color:#ffd700;
    font-size:11px;
    font-weight:800;
    letter-spacing:.4px;
    white-space:nowrap;
}

.produto-ver-mais{
    display:flex;
    align-items:center;
    justify-content:center;

    min-width:180px;

    padding:14px 20px;

    background:#2374e1;
    color:#ffffff;

    border-radius:12px;

    font-size:14px;
    font-weight:800;

    text-decoration:none;

    transition:.25s ease;

    box-shadow:0 8px 20px rgba(35,116,225,.25);
}

.produto-ver-mais:hover{
    background:#1b66ca;
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(35,116,225,.35);
}

.produto-vendedor-erro{
    background:#4a0000;
    color:#ffffff;
    padding:15px;
    border-radius:10px;
}

@media(max-width:768px){

    .produto-vendedor-avatar{
        width:72px;
        height:72px;
        min-width:72px;
        min-height:72px;
        font-size:26px;
    }

    .produto-vendedor-dados strong{
        font-size:18px;
    }

    .produto-ver-mais{
        min-width:160px;
        padding:13px 18px;
    }

}

@media(max-width:576px){

    .produto-part-tre{
        padding:18px;
    }

    .produto-vendedor-box{
        flex-direction:column;
        align-items:stretch;
    }

    .produto-vendedor-left{
        width:100%;
    }

    .produto-ver-mais{
        width:100%;
    }

}