.hf-venteliste-form {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  font-family: system-ui, sans-serif;
}

.hf-venteliste-form .hf-row {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.hf-venteliste-form label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.hf-venteliste-form input[type="text"],
.hf-venteliste-form input[type="email"],
.hf-venteliste-form input[type="tel"],
.hf-venteliste-form input:not([type="checkbox"]) {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hf-venteliste-form input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

.hf-consent {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #444;
  display: flex;
  align-items: flex-start;
}

.hf-consent input[type="checkbox"] {
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}

.hf-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  background: #2563eb;
  color: white;
  transition: background 0.2s, transform 0.1s;
}

.hf-btn:hover {
  background: #1e4ed8;
}

.hf-btn:active {
  transform: scale(0.98);
}

.hf-msg {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #16a34a;
}

.hf-msg.error {
  color: #dc2626;
}

.hf-selected-address {
  background: #f3f4f6;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.hf-selected-address strong {
  color: #111;
}

.hf-change-address {
  margin-left: 0.5rem;
  font-size: 0.85rem;
  color: #2563eb;
  text-decoration: underline;
  cursor: pointer;
}

.hf-venteliste-form input[readonly] {
  display: none !important;
}

.hf-suggestlist {
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.25rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  list-style: none;
  padding: 0;
  max-height: 250px;
  overflow-y: auto;
  z-index: 9999;
  font-size: 0.95rem;
}

.hf-suggestlist li {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  flex-direction: column;
}

.hf-suggestlist li:hover,
.hf-suggestlist li[aria-selected="true"] {
  background: #f3f4f6;
}

.hf-suggestlist li div:first-child {
  font-weight: 500;
  color: #111;
}

.hf-suggestlist li .muted {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.hf-consent {
  font-weight: 400;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.hf-consent input[type="checkbox"] {
  margin: 0.2rem 0 0 0;
  accent-color: #2563eb;
  flex: 0 0 auto;
}

.hf-consent span {
  line-height: 1.5;
  font-size: 0.95rem;
}

.hf-consent a {
  color: #2563eb;
  text-decoration: underline;
}

.hf-consent a:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

