tienda-producto {
    display: block;
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
}

tienda-producto-ubicacion {
    display: block;
    font-size: 120%;
    color: var(--rosado);
    margin-bottom: 3vh;
}

tienda-producto-ubicacion a {
    color: var(--rosado);
    text-decoration: none;
}

tienda-producto-ficha {
    display: flex;
    flex-wrap: nowrap;
    column-gap: 48px;
}

tienda-producto-ficha-imagen.ficha {
    /*
    Este es el marco, por eso tiene tamaño fijo
     */
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 650px;
    width: 450px;
    max-width: 80%;
}

tienda-producto-ficha-imagen.ficha img {
    object-fit: contain;
    height: 100%;
    /* Esto es para el zoom */
    cursor: crosshair;
    transition: transform 200ms ease;
    will-change: transform;
    transform-origin: 50% 50%;
    position: relative;
    z-index: 1;
}
tienda-producto-ficha-imagen-sel {
    top: -105px;
    position: relative;
    display: flex;
}
tienda-producto-ficha-imagen.ficha tienda-producto-ficha-imagen-sel img {
    position: relative;
    z-index: 3;
    cursor: pointer;
    width: 60px;
    height: auto;
}


tienda-producto-ficha-datos {
    display: flex;
    flex-direction: column;
}

tienda-producto-nombre {
    font-family: Banners, sans-serif;
    font-size: 300%;
    padding-bottom: 1rem;
    border-bottom: thin solid lightgray;
}

tienda-producto-codigo {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-family: Titulos, sans-serif;
    font-size: 150%;
    border-bottom: thin solid lightgray;
}

tienda-producto-precio {
    border-bottom: thin solid lightgray;
    font-family: Titulos, sans-serif;
    font-size: 200%;
    color: var(--rosado);
    padding-top: 1rem;
    padding-bottom: 1rem;
}
