.mapContainer {
  width: 100%;
  margin: 30px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.storeList {
  margin-top: 50px;
  width: 100%;
}

.storeListTitle {
  color: #c8e6c9;
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.storeGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.storeCard {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.storeCard:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #66bb6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
}

.storeCard.selected {
  background: rgba(102, 187, 106, 0.2);
  border-color: #66bb6a;
  box-shadow: 0 0 20px rgba(102, 187, 106, 0.5);
}

.storeName {
  color: #c8e6c9;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.storeAddress {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.directionsLink {
  color: #66bb6a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.directionsLink:hover {
  color: #4caf50;
  text-decoration: underline;
}

.popupContent {
  text-align: center;
  min-width: 200px;
}

.popupContent h3 {
  color: #2c5530;
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.popupContent p {
  color: #555;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.popupContent .directionsLink {
  color: #4caf50;
  font-size: 0.85rem;
}

/* Leaflet popup styling override - moved to global CSS */

/* Mobile responsive */
@media (max-width: 768px) {
  .mapContainer {
    margin: 20px 0;
  }

  .storeListTitle {
    font-size: 1.5rem;
  }

  .storeGrid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .storeCard {
    padding: 15px;
  }

  .storeName {
    font-size: 1.1rem;
  }
}

