#carta {

    width: 100%;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    column-gap: 10px;

    row-gap: 10px;
}

#main-nav {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.galeriaProducto {
    position: relative;
    display: inline-block;
    animation-name: aparecerDer;
    animation-duration: 0.2s;
    animation-fill-mode: forwards;
}

.imgPortadaB {
    transform: translateX(0px);
    opacity: 1;
    transition: all .25s ease;
}

.imgPortadaB.cambiando {
    transform: translateX(-50%);
    opacity: 0;
}

.imgPortadaB.cambiando-rev {
    transform: translateX(50%);
    opacity: 0;
}

.galeriaContador {
    text-align: center;
    margin-top: 8px;
    color: #666;
    font-size: .9rem;
    font-weight: 600;
    user-select: none;
}

.galeriaAnterior,
.galeriaSiguiente {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.galeriaAnterior {
    left: 10px;
}

.galeriaSiguiente {
    right: 10px;
}



.title2 {

    display: flex;

    padding: 10px;

    border-radius: 20px;

    width: 100%;

    justify-content: space-between;

    background: white;

    align-items: center;

    align-content: center;

}




.destacado {

    box-shadow: inset 0px 0px 40px rgb(255, 50, 2);





}



.tipo .icon {

    width: 64px;

}



.imgPortada {

    width: 100%;

    aspect-ratio: 1/1;

    object-fit: contain;

    border-radius: 4px;



}

.producto h4 {

    font-size: 10pt;
    color: red;
    font-weight: bold;

}

.tipo h2,

.productoProfile h4,

.producto h2,

.tipo h4 {

    margin: 0px;

    width: 100%;

    font-size: 12pt;

    text-align: center;
    color: red;

}






.imgPortadaB {

    max-width: 300px;

}

.productoInline {
    width: 100%;
    background: #e4e4e7;
    display: flex;
    align-items: center;
    align-content: center;
    position: relative;
    column-gap: 10px;
    padding: 5px;
    border-bottom: var(--fondoBotones);
}

.categoriaWraper {
    border-radius: 25px;
    display: flex;
    flex-wrap: wrap;
    max-width: 350px;
    background-color: var(--fondoBotones);
    margin-bottom: 25px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.productoInline a {
    text-decoration: none;
    color: black;
    font-size: 9pt;
}


.categoriaInline {
    text-decoration: none;
    text-align: center;
    color: white;
    width: 100%;

}


.productoInline img {
    object-fit: scale-down;
}

.productoInline .body {
    text-align: left;
    width: calc(100% - 80px);
    background-color: white;
    padding: 20px 10px;
    border-radius: 5px;
    position: relative;
    height: 100%;
}



.productoInline .body h4,
.productoInline .body p {
    text-align: left;
    color: black;
    font-size: 9pt;
}

.productoInline .precioWrapper {
    color: black;
    width: calc(64px);
    position: absolute;
    bottom: 5px;
    left: 5px;
}

.productoInline .btnAdd {
    color: black;
    font-weight: bold;
    position: absolute;
    border: none;
    bottom: 5px;
    padding: 5px;
    right: 5px;
    background-color: var(--fondoSuccess);
    border-radius: 10px;
    font-size: 9pt;
}


.ocultarTipos {
    left: calc(-100% + 120px) !important;
}