.category-container {
    display: flex;
    gap: 30px;
}

.category-container #left-column {
    width: 20%;
    margin-bottom: 40px;
}

body#category .category-container #content-wrapper {
    width: 80%;
    margin-top: 0;
}

.block-category {
    margin-bottom: 20px;
    color: var(--zg-color-text-primary);
}

.block-category .title-category {
    font-size: var(--zg-font-size-h1);
    font-weight: var(--zg-font-weight-bold);
}

.block-category #category-description {
    font-size: var(--zg-font-size-body);
    font-weight: var(--zg-font-weight-regular);
    line-height: 1.5;
}

/** Inputs **/
body#category .custom-checkbox input[type=checkbox]+span {
    /* Sobreescribir los estilos de form-inputs.css */
    border: none;
}

/** Miniaturas de productos - 3 columnas **/
.products.row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
}

/** Miniaturas de productos - 4 columnas (En página ofertas, novedades, lo más vendidos...)**/
.products.row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-left: 0;
    margin-right: 0;
}

@media only screen and (max-width: 768px) {
    .category-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .category-container #left-column,
    body#category .category-container #content-wrapper {
        width: 100%;
    }

    .products.row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

@media only screen and (max-width: 425px) {
    .products.row {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 10px;
    }

    .text-xs-right.up {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-end;
    }

    .text-xs-right.up .btn-secondary {
        display: flex;
        gap: 4px;
        align-items: center;
        background-color: var(--zg-color-secondary);
    }
}