@charset "utf-8";
/* CSS Document */
<!-- ===================== STYLES ===================== -->
<style>
/* === GLOBAL LAYOUT === */
:root {
  --gold: #b48c20;
  --line: #e6e8ee;
  --text: #0d1b2a;
  --muted: #66758a;
  --field: #ffffff;
  --border: #dfe3ea;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  margin: 0;
  background: #fff;
}

/* Container */
.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* FORM & MAP */
.panel {
  width: 100%;
}

#map {
  width: 100%;
  min-height: 700px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

/* FORM ELEMENTS */
.row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.icon-col {
  display: flex;
  justify-content: center;
  position: relative;
}

.icon-bubble {
  background: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(180, 140, 32, .24);
}

.field {
  background: var(--field);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
}

.field input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 1rem;
  color: var(--text);
}

/* Label now as placeholder styling */
.label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 4px;
}

/* vertical line between icons */
.icon-col::after {
  content: "";
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--line);
  height: calc(100% - 56px);
}
.row:last-child .icon-col::after {
  display: none;
}

/* Buttons under Destination */
.btn {
  background: #fff;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn:hover {
  background: #fff8e8;
}

/* Rückfahrt-Chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--text);
}

/* Summary */
.summary {
  margin: 10px 0 10px 80px;
  font-weight: 600;
}
.sum-line {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* GOLD SECTIONS */
.goldener-balken {
  background: var(--gold);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 1rem;
  margin: 24px 0 14px 0;
}

/* VEHICLES */
.vehicles {
  display: grid;
  gap: 14px;
}
.veh-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
}
.veh input {
  accent-color: var(--gold);
  margin-right: 10px;
}
.veh-title {
  font-weight: 700;
}
.veh-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* OFFER BOX */
.offer {
  margin-top: 20px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 18px;
}
.offer-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-top: 10px;
}
.price {
  font-size: 1.8rem;
  font-weight: 800;
}
.btn-primary {
  width: 100%;
  background: var(--gold);
  border: 0;
  border-radius: 10px;
  padding: 14px;
  color: #fff;
  font-weight: 700;
  margin-top: 14px;
  text-transform: uppercase;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .page {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  #map {
    min-height: 480px;
  }
  .summary {
    margin-left: 0;
  }
}

</style>
