body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #222;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: white;
}

.logo {
  font-size: 2em;
  font-weight: bold;
}

.tagline a { color: #fff; text-decoration: underline; }

.store-links img {
  width: 100px;
  margin-left: 10px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
  padding: 20px;
}

.city-box {
  height: 160px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

.city-box .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.4);
  color: #fff;
  text-align: center;
  padding: 10px;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex; justify-content: center; align-items: center;
}

.modal {
  background: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  animation: fadeIn 0.5s ease;
}

.form-step { display: none; }
.form-step.active { display: block; }

.progress-bar {
  background: #ddd;
  height: 5px;
  margin: 10px 0;
  border-radius: 5px;
}
.progress {
  height: 5px;
  width: 50%;
  background: #ff7e5f;
  border-radius: 5px;
  transition: width 0.3s ease;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: white;
  margin-top: 30px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
