/* Style the Google Maps Autocomplete dropdown */
.pac-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: "Inter", system-ui, sans-serif;
  z-index: 10000; /* ensure it stays above checkout overlays */
}

/* Individual suggestion item */
.pac-item {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

/* Highlighted on hover */
.pac-item:hover {
  background-color: #f7f7f7;
}

/* The main place name (bold) */
.pac-item-query {
  font-weight: 600;
  color: #333;
}

/* Subtext (city, country, etc.) */
.pac-matched {
  color: #777;
}

/* Optional: adjust size on mobile */
@media (max-width: 600px) {
  .pac-container {
    font-size: 0.95rem;
  }
}
