#recent-purchases {
    display: flex;
    overflow-x: auto;
    gap: 10px;
  }
  
  .product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .product-image {
    width: 84px;
    height: 47px;
    object-fit: cover;
    margin-bottom: 5px;
    
  }
  
  .product-name {
    text-align: center;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  