.smart-products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}
.smart-product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #eaeaea;
}
.smart-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.product-card-image {
    width: 94px;
    min-width: 94px;
    height: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fafafa;
    border-right: 1px solid #eaeaea;
}
.product-card-info {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    flex-grow: 1;
}
.product-card-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
}
.product-card-subheader {
    margin: 0;
    font-size: 0.85rem;
    color: #666666;
    line-height: 1.3;
}
.smart-products-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgb(33, 81, 168);
    margin: 0 0 24px 0;
    line-height: 1.2;
}
