.stores {
  padding: 40px;
  background: #f7f7f7;
}

.stores .container {
  display: flex;
  gap: 20px;
}

/* SOL PANEL */
.sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.sidebar input,
.sidebar select {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

/* SAĞ TARAF */
.content {
  flex: 1;
}

/* ÜST BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.view-buttons button {
  padding: 10px 15px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.view-buttons .active {
  background: #380175;
  color: white;
}

/* HARİTA */
#map {
  height: 500px;
  border-radius: 15px;
  margin-top: 15px;
}

/* LİSTE */
.hidden {
  display: none;
}

.store-card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  margin-top: 10px;
}

.store-card {
  display: flex;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* RESİM */
.store-img img {
  width: 90px;
  height: 90px;
  border-radius: 10px;
  object-fit: cover;
  transition: 0.3s;
}

.store-img img:hover {
  transform: scale(1.1);
}

/* TEXT */
.store-info h4 {
  margin: 0;
  font-size: 16px;
  color: #380175;
}

.store-info p {
  margin: 4px 0;
  font-size: 13px;
  color: #555;
}

.store-info span {
  font-size: 13px;
  color: #ffb400;
  font-weight: 600;
}

#lightbox {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.8);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

#lightbox img {
  max-width:90%;
  max-height:90%;
  border-radius:10px;
}
/* MOBİL */
@media (max-width: 768px) {

  .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .content {
    width: 100%;
  }

}
@media (max-width: 768px) {

  #map {
    height: 300px !important;
  }

}

@media (max-width: 768px) {

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .view-buttons {
    width: 100%;
    display: flex;
    gap: 10px;
  }

  .view-buttons button {
    flex: 1;
  }

}

@media (max-width: 768px) {

  .store-card {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .store-img img {
    width: 70px;
    height: 70px;
  }

  .store-info h4 {
    font-size: 14px;
  }

  .store-info p {
    font-size: 12px;
  }

}