/* ========================================
   REGLAS ULTRA-ESPECÍFICAS PARA PC - MÁXIMA PRIORIDAD
   ======================================== */

/* PC - Pantallas grandes (más de 1200px) - ULTRA ESPECÍFICO */
@media (min-width: 1200px) {
    html body .container #categorias-container .row .col-md-4,
    html body .container #categorias-container .row .col-md-6,
    html body .container .categorias-container .row .col-md-4,
    html body .container .categorias-container .row .col-md-6 {
        width: 33.333% !important;
        max-width: 33.333% !important;
        flex: 0 0 33.333% !important;
        flex-basis: 33.333% !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        display: block !important;
        float: left !important;
        box-sizing: border-box !important;
    }
    
    /* Limpiar floats */
    html body .container #categorias-container .row::after,
    html body .container .categorias-container .row::after {
        content: "";
        display: table;
        clear: both;
    }
}

/* PC - Pantallas medianas (768px a 1199px) - ULTRA ESPECÍFICO */
@media (min-width: 768px) and (max-width: 1199px) {
    html body .container #categorias-container .row .col-md-4,
    html body .container #categorias-container .row .col-md-6,
    html body .container .categorias-container .row .col-md-4,
    html body .container .categorias-container .row .col-md-6 {
        width: 33.333% !important;
        max-width: 33.333% !important;
        flex: 0 0 33.333% !important;
        flex-basis: 33.333% !important;
        flex-grow: 0 !important;
        flex-shrink: 0 !important;
        display: block !important;
        float: left !important;
        box-sizing: border-box !important;
    }
    
    /* Limpiar floats */
    html body .container #categorias-container .row::after,
    html body .container .categorias-container .row::after {
        content: "";
        display: table;
        clear: both;
    }
}
