<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    margin: 0;
    font-family: Poppins;
}
.container-articles{
    width: 900px;
    margin: auto;
    max-width: 90vw;
    text-align: center;
    padding-top: 10px;
    transition: transform .5s;
}
#listProduct .item img{
    width: 100%;
}
#listProduct .item{
    background-color: #ffffff;
    padding: 20px;
    margin:1%;
    width: 100%;
}
#listProduct .item h2{
    font-weight: 500;
    font-size: large;
}
#listProduct .item button{
    border: none;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
}
#listProduct .item button:hover{
    background-color: #212529;
    transition: .5s;
}
.icon-cart{
    position: fixed;
    right: 15px;
    background-color: #c5a992;
    bottom: 30px;
}
#icon-cart-span{
    position: absolute;
    background-color: #ff0000bf;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25%;
    color: #fff;
    top: 0.5%;
    left: 74%;
}
#btn-cart {
    border: transparent;
    border-radius: 5px;
}
svg{
    width: 50px;
}
.diagonal-strike {
    position: relative;
    display: inline-block; 
    color: black; 
    font-size: 0.8em;
}
.diagonal-strike::before {
    content: ''; 
    position: absolute;
    top: 50%; 
    left: -10%; 
    width: 120%; 
    height: 2px; 
    background-color: red;
    transform: rotate(-20deg); 
    transform-origin: center;
    pointer-events: none; 
}

/* cart */
/* #listCart .image {
    width: 15%;
} */
#listCart .item img{
    width: 100%;
}
#listCart .item{
    display: grid;
    grid-template-columns: 0.5fr 1fr 0.2fr 0.5fr;
    gap: 5px;
    text-align: center;
    align-items: center;
}
#listCart .minus{
    display: inline-block;
    width: 20px;
    border-radius: 5px;
    cursor: pointer;
}
#listCart{
    overflow: auto;
}
#listCart::-webkit-scrollbar{
    width: 0;
}</pre></body></html>