.shops-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
    margin: 20px 0;

}
/* utolsó elem ne kapjon jobbra margin-t */
.shops-container .shop-card:nth-child(2n) {
  margin-right: 0;
}


.shop-card {
  background: #fff;

  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  flex: 1 1 45%; /* két kártya egymás mellett, mobilon lesz 100% */
  box-sizing: border-box;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;

 margin-bottom: 20px; /* függőleges távolság */
  margin-right: 20px;  /* vízszintes távolság */
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.shop-card figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.shop-title h6 {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #333;
}

.shop-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
}

.shop-card ul li span {
  font-weight: bold;
color: #555;
}

.shop-card ul li a {
  color: #333;       /* sötétszürke szöveg */
  text-decoration: none; /* opcionális: eltünteti az aláhúzást */
}