@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600&display=swap');
* { font-family: 'Archivo', sans-serif; }
.popup-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 10px;
}
.popup-content {
  background: #fff; padding: 20px; border-radius: 16px; width: 100%; max-width: 400px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2); animation: slideIn 0.4s ease-out;
}
@keyframes slideIn {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.popup-header h2 {
  margin-bottom: 10px; font-size: 22px; text-align: center; color: #7b4f2b; font-weight: 600;
}
.toggle-buttons { text-align: center; margin-bottom: 20px; }
.toggle-buttons button {
  margin: 0 5px; padding: 10px 20px; border: none; border-radius: 8px;
  font-weight: 600; background: #5c3a1d; color: #fff; cursor: pointer; transition: background 0.3s ease;
}
.toggle-buttons button:hover,
.toggle.active:hover {
  background: #A46F19 !important;
}
.toggle.active { background: #7b4f2b !important; color: #fff !important; }
.location-section label {
  display: block; margin-bottom: 6px; font-weight: 600; color: #444;
}
#location-select {
  width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 8px;
  font-size: 15px; margin-top: 5px; transition: border-color 0.2s;
}
#location-select:focus {
  outline: none; border-color: #7b4f2b;
  box-shadow: 0 0 0 2px rgba(123, 79, 43, 0.2);
}
.local-section {
  margin-top: 10px; background: #f9f9f9; padding: 10px;
  border-radius: 8px; border: 1px solid #eee;
}
.directions-btn {
  display: inline-block; margin-top: 10px; background: #7b4f2b; color: white;
  padding: 10px 16px; font-size: 14px; text-decoration: none; border-radius: 6px;
  transition: background 0.3s ease;
}
.directions-btn:hover { background: #A46F19; }
.popup-footer { text-align: center; margin-top: 20px; }
#popup-select-btn {
  padding: 12px 35px; background: #5c3a1d; color: white; font-weight: 600;
  border: none; border-radius: 25px; font-size: 16px; cursor: pointer; transition: background 0.3s ease; width: 100%;
}
#popup-select-btn:hover { background: #A46F19; }
@media screen and (max-width: 480px) {
  .popup-content { padding: 15px; }
  .toggle-buttons button { padding: 8px 16px; margin: 5px; }
  .directions-btn { padding: 8px 12px; font-size: 13px; }
}
