.show s {
    text-decoration: line-through;
}

 .button1{
    display: flex;
    justify-content: space-around;
}

.button1 .button{
    display: none;
    margin-top: 1rem;
    padding: 0.8rem 1rem; 
    font-size:1.5rem;
}

.show:hover .button {
    display: flex;
    justify-content: space-around;
}

.show .product:hover{
    box-shadow: var(--box-shadow); 
    border: 1px solid;
}

.center {
    display: grid;
    align-items: center;
    font-weight: bold;
}

.product-name {
    margin-bottom: 1px;
    /* text-transform: uppercase; */
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-price {
    margin-bottom: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
}


