﻿.list-tile-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    /*max-width: 500px;*/
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.list-tile {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

    .list-tile:last-child {
        border-bottom: none;
    }

    .list-tile:hover {
        background: #f8f8f8;
    }

.list-tile-leading {
    flex-shrink: 0;
    margin-right: 12px;
}

.list-tile-product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border:1px solid lightgray;
    border-radius: 60px;
}

.list-tile-content {
    flex: 1;
}

.list-tile-title {
    font-size: 16px;
    margin: 0;
}

.list-tile-subtitle {
    font-size: 13px;
    color: #666;
    margin: 2px 0 0 0;
}

.list-tile-trailing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.list-tile-product-price {
    font-weight: bold;
    color: #222;
    margin-bottom: 6px;
}

.list-tile-product-qty {
    width: 50px;
    padding: 4px;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-align: center;
}
