.suggested-products {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    width: 150px;
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.product-name {
    font-size: 14px;
    font-weight: bold;
}

.product-price {
    color: #e44d26;
    font-weight: bold;
}
