:root{
        --color-dark-blue: #465599;
        --color-green: #5fa999;
        --color-orange: #f3951b;
    }

.cont-filters-cat {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

.filter-buttons {
    width: 100%;
    height: auto;
    padding: 10px;
    margin: 0;
    background-color: transparent;
    border: 1px solid #f48264;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: hidden;
}

.filter-buttons img {
     display: none;
}


/* Botones de filtros */
    .btn {
        font-size: 16px;
        font-weight: 500;
        border: none;
        outline: none;
        padding: 8px 12px;
        margin: 6px 8px;
        border-radius: 5px;
        background-color: #ffffff;
        border: 1px solid #f48264;
        transition: background-color 0.3s, color 0.3s;
    }

    .btn:hover {
        background-color: var(--color-green);
        color: white;
        cursor: pointer;
    }

    .active-filter {
        background-color: #f48264 !important;
        color: white !important;
    }

    /* Contenedor de enlaces filtrados en 3 columnas */
    
    /*
    #shopContent {
        width: 100%;
        gap: 20px;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        background-color: #fffaf9;
        padding: 16px;
        border-radius: 0;
        border-bottom: 1px solid #f48264;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        overflow-x: auto;
    } */

    /*
    .column {
        display: flex;
        flex-direction: column;
        gap: 5px;
        flex: 1;
        background-color: yellow;
    }

    .column a {
        font-size: 16px;
        text-decoration: none;
        color: black;
        font-weight: 500;
        padding: 2px 0;
        transition: 0.2s;
        text-align: start;
    }

    .column a:hover {
        text-decoration: underline;
        color: #f48264;
    }

    .column a {
        font-weight: 500; 
    }


    .column a.fw-700 {
        font-weight: 700;
    }
    */


    #shopContent {
        display: grid;

        /* máximo 10 items por columna */
        grid-template-rows: repeat(10, auto);
        grid-auto-flow: column;

        column-gap: 20px;
        row-gap: 10px;
        padding: 16px;
        background-color: #fffaf9;
        border-bottom: 1px solid #f48264;

        overflow-x: auto; 
    }

    #shopContent a {
        display: inline-block;
        font-size: 16px;
        text-decoration: none;
        color: black;
        font-weight: 500;
    }

    #shopContent a:hover {
        color: #f48264;
        text-decoration: underline;
    }

    #shopContent a.fw-700 {
        font-weight: 700;
    }

    .txt-not-hid {
        display: none;
    }

    @media (max-width: 699px) {

        .filter-buttons {
            width: 100%;
            padding: 10px;
            display: flex;
            justify-content: start;
            flex-wrap: nowrap;
            overflow-x: auto;
        }

        .btn {
            font-size: 16px;
            margin: 0 8px;
           
        }

        .filter-buttons img {
            display: block;
            width: 50px;
            height: auto;
            padding: 0;
            margin: 0;
        }

        /* Contenedor de enlaces filtrados en 3 columnas */
        /*
        #shopContent {
            width: 100%;
            max-width: 500px;
            display: flex;
            flex-direction: row;
            justify-content: start;
            align-items: center;
            gap: 3px;
            padding: 0 10px 10px 10px;
            overflow-x: auto;
        }

        .column {
            width: 200px !important;
            display: flex;
            flex-direction: column;
            gap: 3px;
            flex: 1;
            background-color: greenyellow;
        }


        .column a {
            font-size: 16px;
            text-align: center;
        }
        */

        #shopContent {
            padding: 10px 8px 10px 8px;
            grid-template-rows: repeat(10, auto); /* 15 */
            column-gap: 12px;
            justify-content: space-around;
            overflow-x: auto;
        }

        #shopContent a {
            width: 180px;
            font-size: 15px;
        }

        .txt-not-hid {
            display: block;
            font-size: 14px;
            font-weight: 400;
            text-align: center;
            color: #a1a1a1;
        }
    }