:root {
  --text-100: #000000;
  --background: #F7F7F7;
  --border: rgba(0, 0, 0, 0.2);
  --text-60: rgba(0, 0, 0, 0.6);
  --text-80: rgba(0, 0, 0, 0.8);
  --text-70: rgba(0, 0, 0, 0.75);
  --text-03: rgba(0, 0, 0, 0.03);
  --primary: #0651E6;
  --primary-rgb: rgba(6, 81, 230, 0.93);
  --primary-darkened: #0647c1;
  --primary-contrast: #F7F7F7;
  --primary-btn-contrast: #F7F7F7;
  --primary-contrast-80: rgba(247, 247, 247, 0.8);
}

.blue-theme {
  --text-100: #F7F7F7;
  --border: rgba(247, 247, 247, 0.2);
  --text-60: rgba(247, 247, 247, 0.6);
  --text-80: rgba(247, 247, 247, 0.8);
  --text-70: rgba(247, 247, 247, 0.7);
  --text-03: rgba(247, 247, 247, 0.03);
  --background: #0651E6;
  --primary: #F7F7F7;
  --primary-rgb: rgba(247, 247, 247, 0.93);
  --primary-darkened: #dddddd;
  --primary-contrast: #000000;
  --primary-btn-contrast: #0651E6;
  --primary-contrast-80: rgba(0, 0, 0, 0.8);
}

.prices-body {
  align-items: stretch;
  overflow: hidden;
}

.prices-layout {
  display: grid;
  width: 100%;
  height: 100svh;
  grid-template-columns: 529px 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "topbar map" "panel  map";
}

/* Shared pill used by the view switcher, the details nav and Open in. */
.tag {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  height: 46px;
  padding-inline: 16px;
  border-radius: 8px;
  background: #F0F0F0;
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--text-100) !important;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s;
}
.tag .lucide-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.tag:hover {
  background: #E4E4E4;
}
.tag.active {
  background: #000000;
  color: #FFFFFF !important;
}
.tag.active:hover {
  background: #000000;
}
.tag .tag-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000000;
  color: #FFFFFF;
  font-size: 12px;
}

.prices-topbar {
  grid-area: topbar;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  padding: 20px 16px;
}
.prices-topbar .logo-container img {
  width: 139px;
  height: 36px;
  display: block;
}
.prices-topbar .prices-topbar-links {
  display: flex;
  align-items: center;
  column-gap: 24px;
  font-size: 16px;
}
.prices-topbar .prices-lang-btn {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.prices-topbar .prices-lang-btn img {
  width: 24px;
  height: 24px;
}

.prices-list {
  grid-area: panel;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  row-gap: 17px;
  padding: 16px;
  overflow-y: auto;
}

.prices-empty {
  padding: 20px 9px;
  font-size: 15px;
  color: var(--text-60);
}

.price-card {
  border: 1px solid #E9E9E9;
  border-radius: 16px;
  background: #FFFFFF;
  padding: 14px 9px 9px;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.price-card:hover, .price-card.selected {
  background: rgba(0, 0, 0, 0.03);
  border-color: #D0D0D0;
}
.price-card .price-card-title {
  display: inline-block;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}
.price-card .icon-car {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.price-card .price-card-distance {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  line-height: 18px;
  color: var(--text-100);
}
.price-card .price-card-distance img {
  width: 18px;
  height: 18px;
}
.price-card .price-card-tariffs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 16px;
  margin-top: 24px;
}
.price-card .price-tariff-label {
  font-size: 13px;
  line-height: 17px;
  color: #666666;
}
.price-card .price-tariff-value {
  margin-top: 6px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #007120;
}
.price-card .price-card-details {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  margin-top: 20px;
  border-radius: 8px;
  background: #F0F0F0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-100);
  transition: background-color 0.2s;
}
.price-card .price-card-details:hover {
  background: #E4E4E4;
}

.prices-map {
  grid-area: map;
  position: relative;
  height: 100%;
  width: 100%;
  background: var(--background);
  z-index: 0;
}

.prices-locate {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 500;
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  border: 1px solid #D0D0D0;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  color: var(--text-100);
  cursor: pointer;
}
.prices-locate img {
  width: 18px;
  height: 18px;
}
.prices-locate:hover {
  background: #F0F0F0;
}

/* Where the visitor is, shown only once location access is granted. */
.user-marker .user-marker-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0651E6;
  border: 3px solid #FFFFFF;
  box-shadow: 0 0 0 2px rgba(6, 81, 230, 0.35);
}

/* Map pins come straight from the design assets: the plain pin by default and
   the roofed pin for the selected zone. */
.parking-marker {
  width: 44px;
  height: 55px;
  transition: transform 0.15s;
  transform-origin: 50% 100%;
}
.parking-marker.selected {
  transform: scale(1.05);
}

/* Details panel: shares the grid slot with the list and replaces it. */
.prices-details {
  grid-area: panel;
  background: #FFFFFF;
  padding: 16px;
  overflow-y: auto;
  display: none;
}
.prices-details .details-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  margin-bottom: 24px;
}
.prices-details .details-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: var(--primary);
}
.prices-details .details-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 16px;
  row-gap: 8px;
  margin-top: 16px;
}
.prices-details .details-meta .details-meta-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-top: 0;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-100);
}
.prices-details .details-meta .lucide-icon, .prices-details .details-meta .icon-car {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.prices-details .details-section {
  margin-top: 32px;
}
.prices-details .details-section-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: var(--text-100);
  padding-bottom: 12px;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 16px;
}
.prices-details .details-row {
  display: flex;
  justify-content: space-between;
  column-gap: 16px;
  padding-block: 6px;
  font-size: 15px;
  line-height: 20px;
  color: var(--text-100);
}
.prices-details .details-row .details-row-value {
  font-weight: 600;
  color: #007120;
}
.prices-details .details-open-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8px;
}
.prices-details .details-open-in .tag {
  text-decoration: none;
}

body.view-details .prices-list {
  display: none;
}
body.view-details .prices-details {
  display: block;
}

/* Mobile only: one panel at a time, chosen by the bottom switcher. */
.prices-switcher {
  grid-area: switcher;
  display: none;
  column-gap: 16px;
  padding: 16px;
  background: #FFFFFF;
  border-top: 1px solid #E9E9E9;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
}
.prices-switcher .tag {
  flex: 1;
}

@media (max-width: 900px) {
  .prices-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "topbar" "panel" "switcher";
  }
  .prices-map {
    grid-area: panel;
  }
  .prices-switcher {
    display: flex;
  }
  body.view-list .prices-map,
  body.view-details .prices-map {
    display: none;
  }
  body.view-map .prices-list {
    display: none;
  }
  body.view-details .prices-switcher {
    display: none;
  }
  .prices-topbar {
    padding: 14px 16px;
  }
  .prices-topbar .logo-container img {
    width: 110px;
    height: 28px;
  }
  .prices-topbar .prices-topbar-links {
    column-gap: 16px;
    font-size: 15px;
  }
  .prices-list {
    padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
    row-gap: 14px;
  }
  .price-card .price-card-title {
    font-size: 18px;
    line-height: 24px;
  }
  .price-card .price-tariff-value {
    font-size: 21px;
    line-height: 25px;
  }
  .price-card .price-card-tariffs {
    margin-top: 18px;
  }
  .price-card .price-card-details {
    height: 42px;
    margin-top: 16px;
  }
}
/* Chooser shown when the address is tapped. */
.directions-dialog {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.directions-dialog .directions-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.directions-dialog .directions-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: min(380px, 100%);
  padding: 24px;
  border-radius: 20px;
  background: #FFFFFF;
}
.directions-dialog .directions-panel .btn {
  width: 100%;
  justify-content: center;
}
.directions-dialog .directions-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--text-100);
}
.directions-dialog .directions-target {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 19px;
  color: var(--text-60);
}
.directions-dialog .directions-cancel {
  padding-top: 4px;
  text-align: center;
  font-size: 14px;
  color: var(--text-60);
  cursor: pointer;
}

@media (max-width: 900px) {
  .directions-dialog {
    align-items: flex-end;
    padding: 0;
  }
  .directions-dialog .directions-panel {
    width: 100%;
    border-radius: 20px 20px 0 0;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/*# sourceMappingURL=prices.css.map */
