/* ==============================> PIE DE PAGINA */

.scrollToTop {
    right: 32px !important;
    bottom: 112px !important;
}


/* ==============================> FIRMA DE PERDURACION */

.firma_pdp {
    position: relative;
    font-weight: 800;
    transition: 0.5s all ease-in-out;
}

.firma_pdp:hover {
    margin-left: 10px;
}

.firma_pdp::before,
.firma_pdp::after {
    content: '';
    position: absolute;
    bottom: 2px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease, right 0.3s ease;
}

.firma_pdp::before {
    content: '{';
    left: -15px;
}

.firma_pdp::after {
    content: '}';
    right: -15px;
}

.firma_pdp:hover::before {
    opacity: 1;
    left: -9px;
}

.firma_pdp:hover::after {
    opacity: 1;
    right: -9px;
}


/* ==============================> ESTILOS LISTA DE CATEGORÍAS EN PIE DE PAGINA */

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper {
    display: grid;
    grid-template-columns: repeat(var(--wcc-grid-cols, 2), 1fr);
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper .wcc-cat-link {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper .wcc-cat-link .wcc-cat-text {
    font-size: 14px;
    line-height: 17px;
    color: #fff;
    opacity: 0.8;
    font-weight: 400;
    position: relative;
    transition: padding-left 0.3s ease;
}

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper .wcc-cat-link .wcc-cat-text:hover {
    opacity: 1;
    transform: translateX(2px);
}

.wcc-lista-de-categorias-en-pie-de-pagina-wrapper .wcc-cat-link:hover .wcc-cat-text {
    padding-left: 5px;
}

/* -> Tablet (max 1024px) */
@media screen and (max-width: 1024px) {
    .wcc-lista-de-categorias-en-pie-de-pagina-wrapper {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px;
    }
}

/* -> Móvil (max 768px) */
@media screen and (max-width: 768px) {
    .wcc-lista-de-categorias-en-pie-de-pagina-wrapper {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
}

/* -> Móvil (max 480px) */
@media screen and (max-width: 480px) {
    .wcc-lista-de-categorias-en-pie-de-pagina-wrapper {
        grid-template-columns: 1fr !important;
    }
}