<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.product-grid {
    display: flex;
}
.product-grid .product {
    margin: 15px;
    width: 200px;
}
.product-grid .product .img {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    align-content: center;
    text-align: center;
    padding: 5px;
    background-color: rgba(0, 0, 0, .025);
}
.product-grid .product .img img {
    border-radius: .25rem;
    max-width: 100%;
    max-height: 100%;
}
.product-grid .product .name {
    margin-top: 5px;
    margin-bottom: 5px;
}
.product-grid .product .name a {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    font-weight: bold;
}
.product-grid .product .price {
    
}
.product-grid .product .price .unit {
    font-size: 12px;
}
.product-grid .product .price .value {
    font-weight: bold;
    font-size: 20px;
    color: #fa7116;
}
.product-grid.product-grid-wrap {
    flex-wrap: wrap;
}
.product-grid.product-grid-wrap .product {
    flex: 1;
}
.product-grid.product-grid-wrap .product .img {
    margin-left: auto;
    margin-right: auto;
}
.product-list .product {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    padding: 15px;
}
.product-list .product:last-child {
    border-bottom: none;
}
.product-list .product .img {
    width: 200px;
    height: 150px;
    overflow: hidden;
    align-content: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    padding: 5px;
    background-color: rgba(0, 0, 0, .025);
}
.product-list .product .img img {
    max-width: 100%;
    max-height: 100%;
}
.product-list .product .name {
    padding-left: 15px;
    padding-right: 15px;
}.product-list .product .tools {
    margin-top: 15px;
}
.featured-products .product {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}
.featured-products .product:last-child {
    border-bottom: none;
}
.featured-products .product .img {
    width: 80px;
    height: 60px;
    overflow: hidden;
    align-content: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
    padding: 5px;
    background-color: rgba(0, 0, 0, .025);
}
.featured-products .product .img img {
    max-width: 100%;
    max-height: 100%;
}
.featured-products .product .name {
    width: calc(100% - 95px);
    margin-left: 15px;
    font-size: 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    height: 59px;
}
.featured-products .product .price {
    font-size: 12px;
    font-weight: bold;
    color: #fa7116;
}</pre></body></html>