.recommendations-section {
    padding: 4rem 10%;
    background-color: #fff;
    text-align: center;
  }
  
  .recommendation-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .recommendation-card {
    width: 180px;
    height: 180px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
  }
  
  .recommendation-card.show {
    opacity: 1;
    transform: translateY(0);
  }
  
  .recommendation-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }
  
  .recommendation-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .filter-bar {
    margin-bottom: 2rem;
  }
  