.shop-cards-section {
    display: flex; 
    justify-content: space-between;
    padding: 20px 20px; 
    margin: 0;
    gap: 0px;
  }
  
  .shop-card {
    position: relative;
    overflow: hidden;
    width: calc(100% / 3);
    max-width: none;
    height: 500px;
    margin: 0; 
    padding: 0; 
    flex: none;
  }
  .shop-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .shop-card:hover img {
    transform: scale(1.05);
  }
  
  .shop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
    color: #fff;
    transition: background-color 0.3s ease;
  }
  
  .shop-card:hover .shop-overlay {
    background-color: rgba(0, 0, 0, 0.4); 
  }
  
  .shop-overlay h3 {
    font-size: 15px;
    font-weight: 100;
    margin-bottom: 30px;
  }
/* السكشن العاشر */
@media (max-width: 768px) {
    .shop-cards-section {
      flex-direction: column;
      gap: 20px;
      padding: 20px 10px;
    }
  
    .shop-card {
      width: 100%;
      height: 300px; /* أصغر شوي عشان الموبايل */
    }
  
    .shop-overlay {
      padding-bottom: 25px;
    }
  
    .shop-overlay h3 {
      font-size: 13px;
      margin-bottom: 10px;
    }
  }