/* Papyrus Caffe Product List Style Override */
.page-container > .content .item.product-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: block; /* Override any existing flex properties on the item itself */
}

.page-container > .content .item.product-item > a {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Align items to the top */
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.item.product-item .product-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.item.product-item .product-details {
    flex: 1; /* Allow details to take up remaining space */
    display: flex;
    flex-direction: column;
}

.item.product-item .product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 8px;
}

.item.product-item .product-title {
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    margin-right: 10px;
    flex-grow: 1;
    line-height: 1.3;
}

.item.product-item .product-price {
    background-color: #2e7d32;
    color: #fff;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 1em;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.item.product-item .product-description {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    line-height: 1.4;
}
/* End of Papyrus Caffe Override */
