/* H&C Address Autocomplete — Frontend Styles
 *
 * Overrides the default Google Places autocomplete dropdown
 * to match the Aleatory "Rose Confident" glassmorphism aesthetic.
 */

/* Dropdown container */
.pac-container {
  font-family: "Newsreader", serif;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-top: 6px;
  padding: 4px;
  overflow: hidden;
  z-index: 99999;
}

/* Remove the Google logo row */
.pac-container::after {
  display: none !important;
  height: 0 !important;
}

/* Each result row */
.pac-item {
  padding: 10px 16px;
  cursor: pointer;
  border-top: none;
  border-radius: 8px;
  color: #333;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pac-item:hover,
.pac-item-selected {
  background: rgba(0, 0, 0, 0.04) !important;
}

/* Icon (map pin) */
.pac-icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  flex-shrink: 0;
  margin: 0;
  opacity: 0.6;
}

/* Main text (street) */
.pac-item-query {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-right: 4px;
}

/* Secondary text (city, country) */
.pac-matched {
  font-weight: 700;
  color: inherit;
}

