
    /* ===============================================
       🔥 LISTA DE OPINIONES DEL VENDEDOR
       =============================================== */

    .opiniones-vendedor-scroll {
        max-height: 490px;
        overflow-y: auto;
        padding-right: 15px;
    }


    .opinion-vendedor-item {
        padding: 15px 5px;
        border-bottom: 1px solid #e9ecef;
        min-height: 115px;
    }


    .opinion-vendedor-item:last-child {
        border-bottom: none;
    }


    /* FOTO CUANDO EL USUARIO NO TIENE IMAGEN */

    .usuario-opinion-placeholder {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #f1f3f5;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #6c757d;
    }


    /* SCROLL */

    .opiniones-vendedor-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .opiniones-vendedor-scroll::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .opiniones-vendedor-scroll::-webkit-scrollbar-thumb {
        background: #adb5bd;
        border-radius: 10px;
    }


    /* ===============================================
       📱 RESPONSIVE
       =============================================== */

    @media (max-width: 768px) {

        .opiniones-vendedor-scroll {
            max-height: 470px;
        }

        .opinion-vendedor-item {
            min-height: auto;
        }

    }
