:root {
  --ink: #212121;
  --muted: #687078;
  --green: #212121;
  --green-2: #333;
  --mint: #e9f6fc;
  --cream: #f4f5f5;
  --paper: #fff;
  --line: #dfe3e5;
  --red: #0c9448;
  --gold: #d7d823;
  --blue: #165da7;
  --sky: #209cd8;
  --shadow: 0 18px 50px rgba(20, 29, 35, 0.12);
  --radius: 24px;
  --font: "Segoe UI", "Noto Sans Georgian", Arial, sans-serif;
}

.store-map-logo {
  pointer-events: none;
  user-select: none;
}
.store-tooltip-layer {
  pointer-events: none;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: #e8ece9;
}
body {
  overflow: hidden;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
  color: inherit;
}
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(255, 0, 0, 0.24);
  outline-offset: 2px;
}
.app-shell {
  height: 100vh;
  display: grid;
  grid-template-rows: 82px 1fr;
  background: var(--cream);
}
.topbar {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 30px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.brand-button {
  border: 0;
  background: none;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  min-width: 224px;
  text-align: left;
}
.brand-button span:last-child,
.brand {
  display: flex;
  flex-direction: column;
}
.brand-logo {
  width: 104px;
  height: 62px;
  display: block;
  object-fit: contain;
}
.brand-logo-light {
  filter: brightness(0) invert(1);
  width: 112px;
  height: 66px;
}
.brand-button b,
.brand b {
  font-size: 18px;
  line-height: 1;
}
.brand-button small,
.brand small {
  font-size: 9px;
  letter-spacing: 2.2px;
  margin-top: 5px;
  color: var(--muted);
}
.brand-mark {
  display: grid !important;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  box-shadow: 0 7px 18px rgba(255, 0, 0, 0.2);
}
.topbar-center {
  display: flex;
  gap: 10px;
  margin-right: auto;
}
.status-pill,
.kiosk-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f1f5f2;
  border: 1px solid var(--line);
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 12px;
}
.kiosk-pill[hidden] {
  display: none;
}
.status-pill i {
  width: 7px;
  height: 7px;
  background: #0c9448;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(12, 148, 72, 0.12);
}
.language-switcher {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.language-switcher button {
  border: 0;
  border-right: 1px solid var(--line);
  background: #fff;
  padding: 9px 10px;
  font-size: 11px;
  font-weight: 700;
}
.language-switcher button:last-child {
  border-right: 0;
}
.language-switcher button.is-active {
  color: #fff;
  background: var(--green);
}
.clock-wrap {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 62px;
}
.clock-wrap strong {
  font-size: 18px;
}
.clock-wrap small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1px;
}
.main-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
}
.side-nav {
  background: var(--green);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-button {
  min-height: 72px;
  border: 0;
  background: transparent;
  color: #c6d8d1;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: 0.2s;
}
.nav-button span {
  font-size: 24px;
  line-height: 1;
}
.nav-button small {
  font-size: 10px;
  max-width: 82px;
}
.nav-button:hover,
.nav-button.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.nav-button.is-active {
  box-shadow: inset 3px 0 0 var(--gold);
}
.content-panel {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.view {
  display: none;
  height: 100%;
  overflow: auto;
  padding: 28px 32px 40px;
}
.view.is-active {
  display: block;
}
.map-view.is-active {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 0;
  overflow: hidden;
}
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--red);
  margin: 0 0 8px;
}
.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  min-height: 360px;
  background: var(--green);
  border-radius: 30px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 48px 52px;
}
.hero-copy h1 {
  font-family: Georgia, "Noto Serif Georgian", serif;
  font-size: 46px;
  line-height: 1.13;
  margin: 0 0 26px;
  font-weight: 500;
}
.hero-copy .eyebrow {
  color: #f0d28d;
}
.search-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  color: var(--ink);
  position: relative;
}
.search-box span {
  font-size: 22px;
}
.search-box input {
  width: 100%;
  height: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}
.search-input-custom-clear::-webkit-search-cancel-button {
  display: none;
  -webkit-appearance: none;
  appearance: none;
}
.search-input-custom-clear::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}
.clear-search {
  border: 0;
  background: transparent;
  font-size: 24px;
  color: var(--muted);
  padding: 8px;
}
.search-suggestions {
  position: absolute;
  z-index: 40;
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-top: 7px;
  width: min(600px, calc(100% - 104px));
  max-height: 280px;
  overflow: auto;
  display: none;
}
.search-suggestions.is-open {
  display: block;
}
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.suggestion-item:last-child {
  border-bottom: 0;
}
.suggestion-icon {
  width: 36px;
  height: 36px;
  background: var(--mint);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
}
.suggestion-item small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}
.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.quick-actions button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  min-height: 95px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 14px;
  text-align: left;
}
.quick-actions button:hover {
  background: rgba(255, 255, 255, 0.15);
}
.quick-actions span {
  font-size: 24px;
}
.quick-actions b {
  font-size: 13px;
  margin-top: 7px;
}
.quick-actions small {
  opacity: 0.62;
  font-size: 9px;
  margin-top: 4px;
}
.hero-visual {
  position: relative;
  background: linear-gradient(145deg, #184c40, #0a2c26);
  overflow: hidden;
}
.hero-visual:before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  top: -40px;
  right: -80px;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
}
.hero-floor-lines {
  position: absolute;
  left: 45px;
  right: 45px;
  top: 65px;
  height: 210px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 39px,
    rgba(255, 255, 255, 0.14) 40px 41px
  );
  transform: perspective(500px) rotateX(56deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-badge {
  position: absolute;
  top: 52px;
  right: 52px;
  text-align: right;
}
.hero-badge span {
  font-family: Georgia, serif;
  font-size: 76px;
  color: #f0d28d;
  display: block;
  line-height: 0.9;
}
.hero-badge small {
  letter-spacing: 3px;
}
.hero-location {
  position: absolute;
  bottom: 42px;
  left: 44px;
  right: 44px;
  background: rgba(3, 17, 14, 0.45);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 16px 18px;
  border-radius: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
}
.hero-location[hidden],
.hero-location span[hidden],
.hero-location b[hidden] {
  display: none !important;
}
.hero-location.is-frame-hidden {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.hero-location i {
  grid-row: 1/3;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(201, 50, 45, 0.18);
  align-self: center;
}
.hero-location span {
  font-size: 9px;
  letter-spacing: 1px;
  opacity: 0.75;
}
.hero-location b {
  font-size: 14px;
  margin-top: 3px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 28px 2px 14px;
}
.section-heading h2 {
  font-size: 22px;
  margin: 0;
}
.text-button {
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 700;
}
.promo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.promo-card {
  min-height: 145px;
  padding: 22px;
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.promo-card:after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  right: -28px;
  top: -28px;
}
.promo-card small {
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.75;
}
.promo-card h3 {
  font-size: 20px;
  margin: 12px 0 8px;
}
.promo-card p {
  font-size: 11px;
  max-width: 70%;
  opacity: 0.8;
  margin: 0;
}
.promo-card button {
  position: absolute;
  right: 17px;
  bottom: 17px;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  z-index: 1;
}
.map-toolbar {
  min-height: 92px;
  padding: 19px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.map-toolbar h1,
.panel-heading h1 {
  margin: 0;
  font-size: 28px;
}
.map-actions {
  display: flex;
  gap: 10px;
}
.outline-button,
.primary-button {
  min-height: 44px;
  border-radius: 12px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 12px;
}
.outline-button.is-active {
  background: var(--mint);
  border-color: #8bbdac;
  color: var(--green);
}
.primary-button {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.map-workspace {
  min-height: 0;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr) 0;
  background: #eef1ee;
  position: relative;
  transition: grid-template-columns 0.25s;
}
.map-workspace.has-route {
  grid-template-columns: 126px minmax(0, 1fr) 340px;
}
.floor-rail {
  padding: 18px 14px;
  background: #fff;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.floor-rail > small {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.3;
  margin-bottom: 12px;
}
.floor-rail > div:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.floor-button {
  height: 54px;
  border: 1px solid var(--line);
  background: #f7f9f7;
  border-radius: 13px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
}
.floor-button.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.floor-button.is-route:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--red);
  right: 8px;
  top: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.floor-route-direction {
  align-self: center;
  display: grid;
  place-items: center;
  flex: 0 0 16px;
  width: 24px;
  height: 16px;
  margin: -8px 0;
  color: var(--red);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  text-shadow: 0 1px 0 #fff;
  z-index: 1;
}
.you-are-here-card {
  margin-top: auto;
  background: #f7f9f7;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 14px 9px;
  text-align: center;
}
.pin-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  margin: 0 auto 9px;
  box-shadow: 0 0 0 6px rgba(201, 50, 45, 0.12);
}
.you-are-here-card small {
  font-size: 8px;
  color: var(--muted);
  display: block;
}
.you-are-here-card b {
  font-size: 11px;
  display: block;
  margin-top: 4px;
}
.map-canvas-wrap {
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 55% 45%, #f8faf8, #e4e9e5);
}
.mall-map {
  width: 100%;
  height: 100%;
  touch-action: none;
  user-select: none;
}
.mall-shell {
  fill: #fff;
  stroke: #ccd7d0;
  stroke-width: 4;
  filter: url(#mapShadow);
}
.corridor {
  fill: #f2efe8;
}
.atrium {
  fill: #e8eee9;
  stroke: #cbd8d1;
  stroke-width: 2;
  stroke-dasharray: 6 6;
}
.atrium-label {
  font-size: 15px;
  letter-spacing: 3px;
  fill: #8c9994;
}
.store-shape {
  stroke: #fff;
  stroke-width: 4;
  cursor: pointer;
  transition: 0.18s;
}
.store-shape:hover,
.store-group.is-selected .store-shape {
  stroke: var(--red);
  stroke-width: 7;
  filter: url(#pinShadow);
}
.store-label {
  font-size: 17px;
  font-weight: 800;
  fill: #172a25;
  pointer-events: none;
}
.store-unit {
  font-size: 9px;
  fill: #65746e;
  pointer-events: none;
}
.amenity-marker circle {
  fill: var(--green);
  stroke: #fff;
  stroke-width: 3;
}
.amenity-marker text {
  fill: #fff;
  font-size: 11px;
  font-weight: 800;
  pointer-events: none;
}
.route-line-bg {
  fill: none;
  stroke: #fff;
  stroke-width: 15;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.route-line {
  fill: none;
  stroke: var(--red);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 14 10;
  animation: routeMove 1s linear infinite;
  marker-end: url(#routeArrow);
}
@keyframes routeMove {
  to {
    stroke-dashoffset: -24;
  }
}
.you-marker .pulse {
  fill: rgba(201, 50, 45, 0.16);
  animation: pulse 1.6s ease-out infinite;
}
.you-marker .core {
  fill: var(--red);
  stroke: #fff;
  stroke-width: 4;
  filter: url(#pinShadow);
}
.you-marker text {
  font-size: 12px;
  font-weight: 800;
  fill: #7f1d1d;
}
.destination-marker circle {
  fill: var(--green);
  stroke: #fff;
  stroke-width: 4;
  filter: url(#pinShadow);
}
.destination-marker path {
  fill: #fff;
}
.destination-marker text {
  font-size: 12px;
  font-weight: 800;
  fill: var(--green);
}
.route-endpoint-marker {
  pointer-events: none;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.28));
}
.route-endpoint-marker .route-endpoint-halo {
  stroke: none;
}
.route-start-marker .route-endpoint-halo {
  fill: rgba(12, 148, 72, 0.2);
}
.route-end-marker .route-endpoint-halo {
  fill: rgba(12, 148, 72, 0.16);
}
.route-endpoint-marker .route-endpoint-core {
  stroke: #fff;
  stroke-width: 4;
}
.route-start-marker .route-endpoint-core {
  fill: var(--red);
}
.route-end-marker .route-endpoint-core {
  fill: var(--green);
}
.route-endpoint-destination-arrow {
  fill: var(--route-green-line-color, var(--green));
  stroke: #fff;
  stroke-width: 4;
  stroke-linejoin: round;
}
@keyframes pulse {
  0% {
    r: 13;
    opacity: 0.8;
  }
  100% {
    r: 36;
    opacity: 0;
  }
}
.map-zoom-controls {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(22, 40, 35, 0.12);
}
.map-zoom-controls button {
  width: 44px;
  height: 42px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  font-size: 20px;
}
.map-zoom-controls button:last-child {
  border: 0;
  font-size: 16px;
}
.map-zoom-controls .map-accessibility-toggle {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.map-zoom-controls .map-accessibility-toggle.is-active {
  background: var(--mint);
  color: var(--green);
}
.map-zoom-controls .map-accessibility-toggle:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--green);
  outline-offset: -2px;
}
.map-legend {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 16px;
  padding: 10px 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  font-size: 9px;
}
.map-legend > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-legend i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.map-workspace.has-route .you-are-here-card,
.map-workspace.has-route .map-legend-you {
  display: none;
}
.legend-you {
  background: var(--red);
}
.legend-store {
  background: #b9d7ca;
}
.legend-route {
  background: var(--red);
  width: 18px !important;
  height: 3px !important;
  border-radius: 2px !important;
}
.route-panel {
  display: none;
  background: #fff;
  border-left: 1px solid var(--line);
  overflow: auto;
}
.has-route .route-panel {
  display: block;
}
.route-head {
  padding: 24px 22px 18px;
  background: var(--green);
  color: #fff;
}
.route-head-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.route-head h2 {
  font-size: 25px;
  margin: 5px 0 0;
}
.close-route {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 18px;
}
.route-summary {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.route-points {
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 12px;
  row-gap: 2px;
}
.route-points .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 4px;
}
.route-points .dot.end {
  background: var(--green);
}
.route-points .line {
  width: 1px;
  height: 22px;
  background: #cad4cf;
  margin-left: 4px;
}
.route-points small {
  color: var(--muted);
  font-size: 9px;
}
.route-points b {
  font-size: 12px;
}
.route-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.route-stat {
  background: #f3f6f4;
  border-radius: 11px;
  padding: 10px;
}
.route-stat small {
  display: block;
  color: var(--muted);
  font-size: 8px;
}
.route-stat b {
  font-size: 16px;
}
.route-accessible {
  margin-top: 12px;
  color: #276749;
  font-size: 10px;
  font-weight: 700;
}
.route-floor-tabs {
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
}
.route-floor-tabs small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-bottom: 8px;
}
.route-floor-tabs div {
  display: flex;
  gap: 7px;
}
.route-floor-tabs button {
  width: 38px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  font-weight: 800;
}
.route-floor-tabs button.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.directions {
  padding: 8px 22px;
}
.direction-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
}
.direction-row:last-child {
  border: 0;
}
.direction-icon {
  font-size: 22px;
}
.direction-row b {
  font-size: 11px;
}
.direction-row span:last-child {
  font-size: 9px;
  color: var(--muted);
}
.route-actions {
  padding: 15px 22px 22px;
  display: grid;
  gap: 8px;
}
.route-actions button {
  width: 100%;
}
.panel-heading {
  margin-bottom: 22px;
}
.search-view,
.amenities-view,
.offers-view,
.info-view,
.accessibility-view {
  padding: 34px 40px 50px;
}
.search-box-large {
  max-width: 760px;
}
.category-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
}
.category-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
}
.category-chip.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.results-meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  margin: 22px 0 12px;
}
.search-correction {
  color: var(--red);
}
.store-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 14px;
}
.store-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 18px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(16, 45, 37, 0.04);
}
.store-logo {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--mint);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 15px;
}
.store-card h3 {
  font-size: 16px;
  margin: 0 0 5px;
}
.store-card p {
  color: var(--muted);
  font-size: 10px;
  margin: 0;
}
.store-card-actions {
  display: flex;
  gap: 7px;
  margin-top: auto;
  padding-top: 15px;
}
.store-card-actions button {
  flex: 1;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 10px;
  font-weight: 700;
}
.store-card-actions button:last-child {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.amenity-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  min-height: 135px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}
.amenity-card:hover {
  border-color: #93b6a9;
  box-shadow: var(--shadow);
}
.amenity-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mint);
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 20px;
  font-weight: 800;
  flex: 0 0 auto;
}
.amenity-card b {
  font-size: 13px;
}
.amenity-card small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.offer-card {
  border-radius: 24px;
  min-height: 340px;
  padding: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offer-card:before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  right: -90px;
  top: -90px;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.04);
}
.offer-card .offer-store {
  margin-top: auto;
  font-size: 11px;
  opacity: 0.72;
}
.offer-card h2 {
  font-family: Georgia, serif;
  font-size: 31px;
  line-height: 1.05;
  margin: 18px 0 12px;
  max-width: 80%;
}
.offer-card p {
  max-width: 75%;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.8;
}
.offer-card button {
  align-self: flex-start;
  margin-top: 18px;
  background: #fff;
  color: var(--ink);
  border: 0;
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 10px;
  font-weight: 800;
  z-index: 1;
}
.info-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
}
.info-main {
  grid-row: 1/3;
}
.info-main h1 {
  font-size: 33px;
  margin: 0 0 18px;
}
.info-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  max-width: 600px;
}
.info-main dl {
  margin: 28px 0 0;
}
.info-main dl > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.info-main dt {
  font-size: 10px;
  color: var(--muted);
}
.info-main dd {
  margin: 0;
  font-weight: 700;
  font-size: 13px;
}
.transport-icon,
.help-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--mint);
  border-radius: 15px;
  color: var(--green);
  font-size: 24px;
}
.info-card h2 {
  margin: 16px 0 8px;
  font-size: 19px;
}
.info-card p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}
.access-hero {
  background: var(--green);
  color: #fff;
  border-radius: 25px;
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.access-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 35px;
}
.access-hero h1 {
  margin: 0 0 7px;
}
.access-hero p {
  margin: 0;
  opacity: 0.7;
  font-size: 12px;
}
.switch input {
  display: none;
}
.switch span {
  display: block;
  width: 64px;
  height: 34px;
  border-radius: 999px;
  background: #5c756e;
  position: relative;
  transition: 0.2s;
}
.switch span:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  top: 4px;
  left: 4px;
  transition: 0.2s;
}
.switch input:checked + span {
  background: var(--red);
}
.switch input:checked + span:before {
  transform: translateX(30px);
}
.access-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 18px;
}
.access-option {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 22px;
}
.access-option span {
  font-size: 27px;
}
.access-option h3 {
  font-size: 15px;
}
.access-option p {
  font-size: 11px;
  color: var(--muted);
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 17, 14, 0.42);
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  transition: 0.25s;
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer,
.search-overlay {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(460px, 94vw);
  background: #fff;
  z-index: 70;
  transform: translateX(102%);
  transition: 0.3s;
  box-shadow: -20px 0 60px rgba(4, 25, 20, 0.2);
  overflow: auto;
}
.drawer.is-open,
.search-overlay.is-open {
  transform: translateX(0);
}
.drawer-hero {
  padding: 26px;
  color: #fff;
  min-height: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.drawer-close {
  position: absolute;
  right: 18px;
  top: 18px;
  border: 0;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 20px;
}
.drawer-logo {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 14px;
}
.drawer-hero h2 {
  font-size: 29px;
  margin: 0;
}
.drawer-hero p {
  margin: 6px 0 0;
  opacity: 0.76;
}
.drawer-body {
  padding: 24px;
}
.drawer-body dl {
  margin: 0;
}
.drawer-body dl > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.drawer-body dt {
  font-size: 10px;
  color: var(--muted);
}
.drawer-body dd {
  font-size: 11px;
  font-weight: 700;
  margin: 0;
  overflow-wrap: anywhere;
}
.drawer-description {
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.drawer-offer {
  background: #fff5f4;
  border: 1px solid #f2d2cf;
  border-radius: 14px;
  padding: 14px;
  color: #872b27;
  font-size: 11px;
  margin: 15px 0;
}
.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 20px;
}
.drawer-actions button {
  min-height: 48px;
}
.drawer-actions:has([data-store-action="source"]) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.store-card-actions [data-store-action="source"] {
  color: #0c9448;
  border-color: #b9dfca;
  background: #f3fbf6;
}
@media (max-width: 620px) {
  .drawer-actions:has([data-store-action="source"]) {
    grid-template-columns: 1fr;
  }
}
.overlay-head {
  height: 82px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.overlay-head h2 {
  font-size: 22px;
}
.overlay-head button {
  border: 0;
  background: #f1f4f2;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-size: 20px;
}
.search-overlay > .search-box {
  margin: 20px;
}
.store-list {
  padding: 0 20px 20px;
}
.store-list-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.store-list-logo {
  width: 44px;
  height: 44px;
  background: var(--mint);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.store-list-item > div:nth-child(2) {
  flex: 1;
}
.store-list-item b {
  font-size: 13px;
}
.store-list-item small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 4px;
}
.store-list-item button {
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 9px 11px;
  border-radius: 9px;
  font-size: 9px;
  font-weight: 700;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  transform: translate(-50%, 30px);
  opacity: 0;
  background: #122b25;
  color: #fff;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 11px;
  box-shadow: var(--shadow);
  transition: 0.25s;
  pointer-events: none;
}
.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.attract-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(145deg, #071d19, #0b3a31 65%, #133a31);
  color: #fff;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s;
  overflow: hidden;
}
.attract-screen.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.attract-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.attract-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.attract-orb-a {
  width: 650px;
  height: 650px;
  right: -190px;
  top: -180px;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.02),
    0 0 0 180px rgba(255, 255, 255, 0.015);
}
.attract-orb-b {
  width: 350px;
  height: 350px;
  left: -100px;
  bottom: -160px;
}
.attract-header {
  position: absolute;
  left: 50px;
  right: 50px;
  top: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-light {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.brand-light small {
  color: #b8cdc5;
}
.attract-meta {
  display: flex;
  gap: 22px;
  font-size: 13px;
}
.attract-content {
  position: absolute;
  left: 8%;
  top: 50%;
  transform: translateY(-52%);
  max-width: 720px;
}
.attract-content .eyebrow {
  color: #f0d28d;
}
.attract-content h1 {
  font-family: Georgia, "Noto Serif Georgian", serif;
  font-size: clamp(46px, 5.2vw, 82px);
  font-weight: 500;
  line-height: 1.08;
  margin: 14px 0 16px;
}
.attract-subtitle {
  letter-spacing: 5px;
  color: #b7ccc5;
  font-size: 12px;
}
.touch-start {
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 16px;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  animation: touchGlow 2s ease-in-out infinite;
}
.touch-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  font-size: 22px;
}
@keyframes touchGlow {
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.035);
  }
}
.attract-promo {
  position: absolute;
  right: 6%;
  bottom: 15%;
  width: 330px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}
.attract-promo small {
  color: #f0d28d;
  letter-spacing: 1px;
}
.attract-promo h3 {
  font-size: 23px;
  margin: 10px 0 7px;
}
.attract-promo p {
  font-size: 11px;
  opacity: 0.65;
  margin: 0;
  line-height: 1.5;
}
.attract-languages {
  position: absolute;
  right: 50px;
  top: 35px;
  transform: translateY(52px);
  display: flex;
  gap: 5px;
}
.attract-languages button {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.14);
  color: #fff;
  border-radius: 8px;
  padding: 7px 9px;
  font-size: 9px;
}
.attract-languages button.is-active {
  background: #fff;
  color: var(--green);
}
.attract-creator {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: max(24px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.attract-creator:hover,
.attract-creator:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 1150px) {
  .topbar {
    padding: 0 18px;
  }
  .brand-button {
    min-width: 175px;
  }
  .topbar-center {
    display: none;
  }
  .store-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .amenity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .map-workspace.has-route {
    grid-template-columns: 105px minmax(0, 1fr) 310px;
  }
  .floor-rail {
    padding: 12px 10px;
  }
  .quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-card {
    grid-template-columns: 1fr 330px;
  }
  .hero-copy {
    padding: 38px;
  }
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  body {
    overflow: auto;
  }
  .app-shell {
    min-height: 100vh;
    height: auto;
    grid-template-rows: 70px 1fr;
  }
  .topbar {
    position: sticky;
    top: 0;
  }
  .brand-button small,
  .clock-wrap,
  .kiosk-pill {
    display: none;
  }
  .brand-button {
    min-width: auto;
  }
  .brand-button b {
    font-size: 14px;
  }
  .brand-mark {
    width: 38px;
    height: 38px;
  }
  .language-switcher button {
    padding: 8px 7px;
  }
  .main-layout {
    grid-template-columns: 1fr;
    padding-bottom: 74px;
  }
  .side-nav {
    position: fixed;
    z-index: 50;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 5px;
    background: var(--green);
  }
  .nav-button {
    min-height: 58px;
    gap: 3px;
  }
  .nav-button span {
    font-size: 19px;
  }
  .nav-button small {
    font-size: 7px;
  }
  .view {
    min-height: calc(100vh - 140px);
    padding: 18px;
  }
  .hero-card {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 30px 24px;
  }
  .hero-copy h1 {
    font-size: 36px;
  }
  .hero-visual {
    display: none;
  }
  .promo-strip,
  .store-grid,
  .amenity-grid,
  .offers-grid,
  .access-options {
    grid-template-columns: 1fr;
  }
  .map-view.is-active {
    height: calc(100vh - 140px);
    min-height: 600px;
  }
  .map-toolbar {
    padding: 12px 16px;
  }
  .map-actions span:last-child {
    display: none;
  }
  .map-workspace,
  .map-workspace.has-route {
    grid-template-columns: 72px 1fr;
  }
  .floor-rail {
    padding: 8px;
  }
  .floor-rail > small,
  .you-are-here-card {
    display: none;
  }
  .floor-button {
    height: 48px;
  }
  .route-panel {
    position: absolute;
    z-index: 20;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(340px, 88vw);
    box-shadow: -15px 0 40px rgba(0, 0, 0, 0.18);
  }
  .search-view,
  .amenities-view,
  .offers-view,
  .info-view,
  .accessibility-view {
    padding: 24px 18px;
  }
  .info-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .info-main {
    grid-row: auto;
  }
  .attract-content {
    left: 8%;
    right: 8%;
    top: 45%;
  }
  .attract-promo {
    left: 8%;
    right: 8%;
    bottom: 8%;
    width: auto;
  }
  .attract-header {
    left: 24px;
    right: 24px;
  }
  .attract-languages {
    right: 24px;
  }
  .drawer {
    bottom: 70px;
  }
  .quick-actions button {
    min-height: 82px;
  }
}

@media (orientation: portrait) and (min-width: 821px) {
  .hero-card {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 260px;
  }
  .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promo-strip {
    grid-template-columns: 1fr;
  }
  .map-workspace.has-route {
    grid-template-columns: 110px 1fr;
  }
  .route-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 340px;
    z-index: 20;
    box-shadow: -14px 0 40px rgba(0, 0, 0, 0.2);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Batumi Mall brand and real-plan overlay */
.hero-card {
  background: var(--red);
}
.hero-copy .eyebrow,
.attract-content .eyebrow,
.attract-promo small {
  color: var(--gold);
}
.hero-visual {
  background: linear-gradient(145deg, var(--blue), var(--sky));
}
.attract-screen {
  background: linear-gradient(145deg, #0c9448, #087a3b 66%, #065f2e);
}
.plan-backdrop {
  fill: #fff;
  stroke: #d9dfe2;
  stroke-width: 2;
  filter: url(#mapShadow);
}
.floor-plan-image {
  opacity: 1;
  filter: none;
  pointer-events: none;
}
.store-group {
  cursor: pointer;
}
.store-area {
  fill: rgba(12, 148, 72, 0.02);
  stroke: transparent;
  stroke-width: 5;
  cursor: pointer;
  transition:
    fill 0.16s,
    stroke 0.16s,
    filter 0.16s;
  pointer-events: all;
}
.store-group:hover .store-area,
.store-group.is-selected .store-area {
  fill: rgba(12, 148, 72, 0.16);
  stroke: #0c9448;
  filter: url(#pinShadow);
}
.store-area-tooltip {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s;
}
.store-area-tooltip.is-visible {
  opacity: 1;
}
.store-area-tooltip rect,
.store-area-tooltip path {
  fill: #172a25;
  stroke: none;
}
.store-area-tooltip text {
  fill: #fff;
  font-size: 12px;
  font-weight: 800;
  paint-order: normal;
}
.map-data-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(33, 33, 33, 0.84);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  pointer-events: none;
}
.legend-store {
  background: var(--sky);
}
.route-head {
  background: var(--blue);
}
.you-marker .pulse {
  fill: rgba(12, 148, 72, 0.18);
}
.you-marker text {
  fill: #065f2e;
  paint-order: stroke;
  stroke: #fff;
  stroke-width: 4px;
}
.route-line {
  stroke: #0c9448;
}
.legend-route {
  background: #0c9448 !important;
}
.touch-icon {
  background: var(--blue);
}
.side-nav {
  background: #212121;
}
@media (max-width: 820px) {
  .brand-logo {
    width: 84px;
    height: 52px;
  }
  .map-data-badge {
    display: none;
  }
}

/* Logo-green interaction palette */
button:focus-visible,
input:focus-visible {
  outline-color: rgba(12, 148, 72, 0.28);
}
.brand-mark {
  box-shadow: 0 7px 18px rgba(12, 148, 72, 0.22);
}
.hero-location i {
  box-shadow: 0 0 0 8px rgba(12, 148, 72, 0.2);
}
.pin-dot {
  box-shadow: 0 0 0 6px rgba(12, 148, 72, 0.14);
}
.drawer-offer {
  background: #edf9f1;
  border-color: #c7e8d2;
  color: #075f30;
}
.attract-promo {
  background: rgba(4, 64, 31, 0.34);
}
.attract-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

/* Reliable touch activation in portrait and landscape layouts */
button,
[role="button"],
[data-store-action],
[data-amenity],
[data-route-floor],
[data-close-route],
[data-share-route],
[data-restart] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.drawer-actions button,
.store-card-actions button,
.store-list-item button,
.route-actions button {
  min-height: 48px;
  user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 820px) {
  .route-panel,
  .drawer,
  .search-overlay {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .route-panel {
    touch-action: pan-y;
  }
  .drawer-actions {
    position: relative;
    z-index: 2;
  }
}
@supports (height: 100dvh) {
  @media (max-width: 820px) {
    .app-shell {
      min-height: 100dvh;
    }
    .map-view.is-active {
      height: calc(100dvh - 140px);
    }
  }
}

/* v1.4: supplied welcome typeface, map gestures and responsive navigation */
@font-face {
  font-family: "BPG Banner QuadroSquare Caps";
  src: url("../fonts/BPG-Banner-QuadroSquare-Caps.ttf") format("truetype");
  font-display: swap;
}
html[lang="ka"] .attract-content h1 {
  font-family: "BPG Banner QuadroSquare Caps", "Noto Sans Georgian", sans-serif;
  font-size: clamp(52px, 5.8vw, 20px);
  font-weight: 400;
  line-height: 1.05;
}
.route-head-buttons {
  display: flex;
  gap: 7px;
}
.hide-route {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-size: 20px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.route-panel-toggle {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 25;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  min-height: 44px;
  padding: 0 15px;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.route-panel-toggle[hidden] {
  display: none;
}
.route-panel-hidden {
  grid-template-columns: 126px minmax(0, 1fr) 0 !important;
}
.route-panel-hidden .route-panel {
  display: none;
}
.route-panel-hidden .route-panel-toggle {
  display: block;
}

@media (max-width: 820px) {
  .topbar {
    gap: 6px;
    padding: 0 10px;
  }
  .brand-button {
    margin-right: auto;
  }
  .brand-logo {
    width: 62px;
    height: 48px;
  }
  .language-switcher button {
    padding: 7px 6px;
    font-size: 9px;
  }
  .clock-wrap {
    display: flex;
    min-width: 40px;
    padding-left: 6px;
  }
  .clock-wrap strong {
    font-size: 13px;
  }
  .clock-wrap small {
    font-size: 7px;
    letter-spacing: 0;
  }
  .side-nav {
    display: grid;
    grid-template-columns: repeat(7, minmax(72px, 1fr));
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .side-nav::-webkit-scrollbar {
    display: none;
  }
  .nav-button {
    min-width: 72px;
    scroll-snap-align: start;
  }
  .attract-screen {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .attract-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 8%;
    padding-top: 210px;
    max-width: none;
  }
  .attract-promo {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 30px 8% 42px;
  }
  .touch-start {
    position: relative;
    z-index: 2;
    margin-top: 28px;
  }
  .attract-languages {
    top: 34px;
  }
  .attract-meta {
    margin-top: 72px;
  }
  html[lang="ka"] .attract-content h1 {
    font-size: clamp(44px, 14vw, 20px);
    line-height: 1.08;
  }
  .map-workspace.has-route,
  .map-workspace.route-panel-hidden {
    grid-template-columns: 72px 1fr !important;
  }
  .route-panel-hidden .route-panel {
    display: none;
  }
  .route-panel-toggle {
    right: 10px;
    top: 10px;
    max-width: calc(100% - 92px);
  }
}
@media (max-width: 390px) {
  .language-switcher button {
    padding: 7px 5px;
    font-size: 8px;
  }
  .clock-wrap {
    padding-left: 4px;
  }
  .clock-wrap strong {
    font-size: 12px;
  }
  .brand-logo {
    width: 54px;
  }
}
.route-panel-toggle {
  display: none;
}
.route-panel-hidden .route-panel-toggle {
  display: block;
}

/* v1.5: single welcome scroller, compact accessibility and mouse-scrollable nav */
body.attract-active {
  overflow: hidden !important;
}
body.attract-active .app-shell,
body.attract-active .modal-backdrop,
body.attract-active .drawer,
body.attract-active .search-overlay,
body.attract-active .toast {
  visibility: hidden !important;
  pointer-events: none !important;
}
.attract-screen.is-visible {
  z-index: 2147483647;
}
.side-nav.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.side-nav.is-dragging .nav-button {
  pointer-events: none;
}
.route-panel-hidden .route-panel-toggle {
  position: static;
  width: 44px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  box-shadow: none;
}

@media (max-width: 900px) {
  .attract-header {
    left: 24px;
    right: 24px;
    top: 18px;
    align-items: flex-start;
  }
  .attract-meta {
    margin-top: 0 !important;
    gap: 16px;
    font-size: 12px;
  }
  .attract-languages {
    right: 24px;
    top: 18px;
    transform: translateY(44px);
  }
  .brand-logo-light {
    width: 92px;
    height: 56px;
  }
  .attract-screen {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .attract-content {
    padding-top: 170px;
  }
  .attract-promo {
    margin-bottom: 32px;
  }
  .access-hero {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 15px;
    border-radius: 18px;
    overflow: hidden;
    background: #212121;
  }
  .access-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    font-size: 24px;
  }
  .access-hero > div {
    min-width: 0;
  }
  .access-hero .eyebrow {
    font-size: 8px;
    margin: 0 0 4px;
    letter-spacing: 1.2px;
  }
  .access-hero h1 {
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 5px;
    overflow-wrap: anywhere;
  }
  .access-hero p {
    font-size: 10px;
    line-height: 1.35;
    max-width: 100%;
  }
  .access-hero .switch span {
    width: 48px;
    height: 26px;
  }
  .access-hero .switch span:before {
    width: 18px;
    height: 18px;
  }
  .access-hero .switch input:checked + span:before {
    transform: translateX(22px);
  }
}

@media (min-width: 821px) and (max-width: 900px) {
  .app-shell {
    grid-template-rows: 70px 1fr;
  }
  .topbar {
    padding: 0 14px;
  }
  .topbar-center {
    display: none;
  }
  .main-layout {
    grid-template-columns: 1fr;
    padding-bottom: 74px;
  }
  .side-nav {
    position: fixed;
    z-index: 50;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(7, minmax(90px, 1fr));
    gap: 0;
    padding: 5px;
    background: #212121;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }
  .side-nav::-webkit-scrollbar {
    display: none;
  }
  .nav-button {
    min-width: 90px;
    min-height: 58px;
    scroll-snap-align: start;
  }
  .nav-button span {
    font-size: 19px;
  }
  .nav-button small {
    font-size: 7px;
  }
  .content-panel {
    min-height: 0;
  }
  .view {
    min-height: calc(100vh - 144px);
  }
}

@media (max-width: 900px) {
  .route-panel-hidden .map-zoom-controls .route-panel-toggle {
    display: grid;
    width: 44px;
    max-width: none;
    place-items: center;
    align-self: stretch;
    text-align: center;
    line-height: 1;
    margin: 0;
  }
}
.store-logo.has-image,
.suggestion-icon.has-image,
.drawer-logo.has-image,
.store-list-logo.has-image {
  background: #fff !important;
  overflow: hidden;
  padding: 5px;
}
.store-logo.has-image img,
.suggestion-icon.has-image img,
.drawer-logo.has-image img,
.store-list-logo.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.store-card-actions [data-store-action="detail"] {
  position: relative;
  z-index: 2;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

/* v1.6.6: viewport-locked welcome with one content-only scroller */
.attract-scroll {
  display: contents;
}
html.attract-active,
html:has(body.attract-active),
body.attract-active {
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden !important;
  overscroll-behavior: none;
  background: #0c9448;
}
body.attract-active {
  position: fixed;
  inset: 0;
  width: 100%;
}
body.attract-active .attract-screen {
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  background-color: #0c9448;
}
@media (max-width: 900px) {
  body.attract-active .attract-scroll {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 118px;
    bottom: 0;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-gutter: stable;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    background: transparent;
  }
  body.attract-active .attract-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 8%;
    padding-top: 42px;
    max-width: none;
  }
  body.attract-active .attract-promo {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 30px 8% 0;
  }
}

/* v1.6.7: restore v1.6.5 full welcome scrolling; keep viewport/background locks */
@media (max-width: 900px) {
  body.attract-active .attract-screen {
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }
  body.attract-active .attract-scroll {
    display: contents;
  }
  body.attract-active .attract-content {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 8%;
    padding-top: 170px;
    max-width: none;
  }
  body.attract-active .attract-promo {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 30px 8% 42px;
  }
  body.attract-active .attract-creator {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: block;
    width: max-content;
    margin: -16px auto max(24px, env(safe-area-inset-bottom));
  }
}
.store-website-link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  touch-action: manipulation;
}

/* v1.8.21: slimmer calibrated route treatment */
.route-line-bg {
  stroke-width: 10;
}
.route-line {
  stroke-width: 5.5;
  stroke-dasharray: 12 9;
  animation-duration: 1s;
}

/* v1.8.22: clean photorealistic interaction and fine route treatment */
.store-area,
.store-group:hover .store-area,
.store-group.is-selected .store-area,
.store-group.is-tooltip-visible .store-area {
  fill: transparent !important;
  stroke: transparent !important;
  filter: none !important;
}
.route-line-bg {
  display: block !important;
  stroke: #fff;
  stroke-width: 5;
}
.route-line {
  stroke-width: 2;
  stroke-dasharray: 7 7;
  animation-duration: 0.9s;
}
.amenity-marker {
  display: none !important;
}

/* Route style parameters — change only these values when tuning the route. */
:root {
  --route-white-line-color: #fff;
  --route-white-line-width: 15;
  --route-green-line-color: #0c9448;
  --route-green-line-width: 8;
  --route-dash-pattern: 14 10;
  --route-animation-duration: 1s;
}

/* v1.8.30: configurable v1.5 route-line treatment; arrow size stays smaller. */
.route-line-bg {
  display: block !important;
  fill: none;
  stroke: var(--route-white-line-color);
  stroke-width: var(--route-white-line-width);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.route-line {
  fill: none;
  stroke: var(--route-green-line-color);
  stroke-width: var(--route-green-line-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--route-dash-pattern);
  animation-duration: var(--route-animation-duration);
  marker-end: url(#routeArrow);
}


/* v1.8.40 — visible Amenity emoji markers and inactive Amenity support. */
.amenity-marker {
  display: block !important;
  cursor: pointer;
  filter: drop-shadow(0 4px 7px rgba(0, 0, 0, 0.24));
  touch-action: manipulation;
}
.amenity-marker circle {
  fill: rgba(255, 255, 255, 0.96);
  stroke: var(--green);
  stroke-width: 3;
}
.amenity-marker text {
  fill: #172a25;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 18px;
  font-weight: 400;
  pointer-events: none;
}

/* v1.8.42 — centered amenity emoji, configurable kiosk pulse and 90% map expansion */
.amenity-marker .amenity-icon-object,
.amenity-marker .amenity-icon-content {
  pointer-events: none;
}
.amenity-marker .amenity-icon-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  overflow: visible;
  color: #172a25;
  font-weight: 800;
}
.you-marker .pulse {
  fill: var(--kiosk-pulse-color, rgba(12, 148, 72, 0.18));
  transform-box: fill-box;
  transform-origin: center;
  animation: kioskPulse 1.6s ease-out infinite;
}
.you-marker .core {
  fill: var(--kiosk-core-color, #0c9448);
}
.you-marker text {
  fill: var(--kiosk-text-color, #065f2e);
}
@keyframes kioskPulse {
  0% {
    transform: scale(0.72);
    opacity: 0.82;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.map-fullscreen-toggle {
  position: absolute;
  z-index: 8;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(22, 40, 35, 0.14);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
}
.map-fullscreen-toggle:hover,
.map-fullscreen-toggle:focus-visible {
  border-color: var(--green);
  outline: none;
}
.map-canvas-wrap .map-zoom-controls {
  top: 78px;
}
body.map-expanded {
  overflow: hidden;
}
body.map-expanded::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(5, 18, 14, 0.72);
  backdrop-filter: blur(3px);
}
.map-canvas-wrap.is-expanded {
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  width: 90vw;
  height: 90vh;
  min-height: 0;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}
.map-canvas-wrap.is-expanded .mall-map {
  width: 100%;
  height: 100%;
}
.map-canvas-wrap.is-expanded .map-fullscreen-toggle {
  font-size: 28px;
}

@media (max-width: 820px) {
  .map-fullscreen-toggle {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
  .map-canvas-wrap .map-zoom-controls {
    top: 62px;
    right: 10px;
  }
  .map-canvas-wrap.is-expanded {
    width: 94vw;
    height: 90vh;
    border-radius: 16px;
  }
}


/* v1.8.43 — responsive fullscreen guidance and empty promotion states */
.map-fullscreen-hint {
  position: absolute;
  z-index: 12;
  left: 50%;
  top: 22px;
  max-width: min(620px, calc(100% - 170px));
  transform: translate(-50%, -16px);
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(18, 43, 37, 0.96);
  color: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.map-fullscreen-hint.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.map-canvas-wrap.is-expanded .map-data-badge {
  display: none !important;
}
.promotion-empty-state {
  grid-column: 1 / -1;
  min-height: 145px;
  display: grid;
  place-items: center;
  padding: 24px;
  border: 1px dashed #c9d5ce;
  border-radius: 20px;
  background: #f8faf8;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}
.promotion-empty-state-large {
  min-height: 280px;
  border-radius: 24px;
}
.promotion-empty-inline {
  min-height: 90px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  font-weight: 800;
  color: rgba(255,255,255,.88);
}
body.map-expanded .toast {
  z-index: 1002;
}
@media (max-width: 820px) {
  .map-canvas-wrap.is-expanded {
    left: 0;
    top: 0;
    width: 100vw;
    height: 100dvh;
    max-height: 100vh;
    transform: none;
    border: 0;
    border-radius: 0;
  }
  .map-canvas-wrap.is-expanded .map-fullscreen-hint {
    top: 12px;
    max-width: calc(100% - 130px);
    padding: 10px 12px;
    font-size: 11px;
  }
}

/* v1.8.44 — fullscreen details, floor controls and route-toggle cleanup */
.fullscreen-floor-rail {
  display: none;
}
.map-canvas-wrap.is-expanded .fullscreen-floor-rail {
  position: absolute;
  z-index: 10;
  left: 20px;
  top: 76px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 68px;
  padding: 10px;
  border: 1px solid rgba(204, 216, 210, 0.95);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(7, 25, 20, 0.18);
  backdrop-filter: blur(8px);
}
.map-canvas-wrap.is-expanded .fullscreen-floor-rail > small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.25;
  text-align: center;
}
.map-canvas-wrap.is-expanded .fullscreen-floor-rail > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.map-canvas-wrap.is-expanded .fullscreen-floor-rail .floor-button {
  width: 48px;
  height: 46px;
  border-radius: 12px;
  font-size: 18px;
}
.map-canvas-wrap.is-expanded .fullscreen-floor-rail .floor-route-direction {
  flex-basis: 14px;
  height: 14px;
  margin: -7px 0;
  font-size: 18px;
}
.map-canvas-wrap.is-expanded .route-panel-toggle {
  display: none !important;
}
body.map-expanded .drawer {
  z-index: 1004;
  top: calc(5vh + 76px);
  bottom: calc(5vh + 16px);
  border-radius: 20px 0 0 20px;
}
body.map-expanded .toast {
  z-index: 1006;
}
.amenity-drawer-hero {
  background: linear-gradient(145deg, #0d5b45, #163d34);
}
.amenity-drawer-icon {
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 34px;
}

@media (max-width: 820px) {
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail {
    left: 10px;
    top: 10px;
    width: 52px;
    padding: 6px;
    border-radius: 13px;
  }
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail > small {
    display: none;
  }
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail .floor-button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 16px;
  }
  body.map-expanded .drawer {
    top: 62px;
    bottom: 8px;
    width: min(420px, 92vw);
    border-radius: 18px 0 0 18px;
  }
}


/* v1.8.45 — hidden fullscreen details, horizontal mobile floors and reliable first touch */
body.map-expanded #detailDrawer {
  z-index: 997;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 820px) {
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail {
    left: 50%;
    right: auto;
    top: 10px;
    width: max-content;
    max-width: calc(100vw - 96px);
    padding: 5px 7px;
    transform: translateX(-50%);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
  }
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail > div {
    width: auto;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail .floor-route-direction {
    flex: 0 0 14px;
    width: 14px;
    margin: 0 -5px;
    transform: rotate(-90deg);
    transform-origin: center;
  }
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail > div::-webkit-scrollbar {
    display: none;
  }
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail .floor-button {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
  .map-canvas-wrap.is-expanded .map-fullscreen-hint {
    top: 64px;
    max-width: calc(100% - 24px);
  }
}


/* v1.8.46 — single fullscreen hint, standard mobile first-touch drawer and clear route-floor numbers */
@media (max-width: 820px) {
  .map-canvas-wrap.is-expanded .fullscreen-floor-rail .floor-button.is-route::after {
    width: 5px;
    height: 5px;
    right: 3px;
    top: 3px;
    border-width: 1px;
  }
}


/* v1.8.51 — fullscreen adapted-route control and content-sized mobile floor rail */


/* v1.8.52 — show adapted-route map control only in fullscreen */
.map-canvas-wrap:not(.is-expanded) .map-zoom-controls .map-accessibility-toggle {
  display: none;
}
.map-canvas-wrap.is-expanded .map-zoom-controls .map-accessibility-toggle {
  display: grid;
  place-items: center;
}


/* v1.8.57 — fullscreen route cancellation control */
.map-route-cancel {
  display: none !important;
  color: #b42318;
  font-size: 21px;
  font-weight: 900;
}
.map-canvas-wrap.is-expanded .map-route-cancel:not([hidden]) {
  display: grid !important;
  place-items: center;
}
.map-canvas-wrap.is-expanded .map-route-cancel:hover,
.map-canvas-wrap.is-expanded .map-route-cancel:focus-visible {
  background: #fff3f1;
  color: #8f1b12;
  outline: none;
}


/* v1.8.64: Google Maps action in mall information */
.info-card a.primary-button { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; }
.info-main dd a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* v1.9.0 — Westfield-style location-to-location journey planner */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.map-toolbar {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(150px, auto) minmax(430px, 760px) auto;
  gap: 20px;
}
.location-route-planner {
  width: 100%;
  min-width: 0;
}
.location-route-form {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 38px minmax(150px, 1fr) auto;
  align-items: center;
  gap: 7px;
  width: 100%;
}
.location-route-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 50px;
  padding: 0 34px 0 38px;
  border: 1px solid #d5ded9;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 5px 16px rgba(17, 53, 43, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.location-route-field:focus-within,
.location-route-field.is-open {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(12, 148, 72, 0.12);
}
.location-route-field input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 11px;
  font-weight: 750;
  text-overflow: ellipsis;
}
.location-route-field input::-webkit-search-cancel-button {
  display: none;
}
.location-route-field input::placeholder {
  color: #74817c;
  font-weight: 600;
}
.location-route-dot {
  position: absolute;
  left: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(12, 148, 72, 0.09);
}
.location-route-dot-start {
  background: var(--green);
}
.location-route-dot-end {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(208, 43, 52, 0.09);
}
.location-route-clear {
  position: absolute;
  right: 7px;
  top: 50%;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #7d8984;
  font-size: 16px;
}
.location-route-clear:hover,
.location-route-clear:focus-visible {
  background: #f0f4f2;
  color: var(--ink);
}
.location-route-swap {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--green);
  font-size: 20px;
  font-weight: 900;
}
.location-route-swap:hover,
.location-route-swap:focus-visible {
  border-color: var(--green);
  background: var(--mint);
}
.location-route-submit {
  min-width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid var(--red);
  border-radius: 13px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(208, 43, 52, 0.18);
}
.location-route-submit > span:first-child {
  font-size: 19px;
}
.location-route-suggestions {
  position: absolute;
  z-index: 80;
  left: 0;
  right: 0;
  top: calc(100% + 9px);
  display: none;
  max-height: min(390px, 56vh);
  overflow-y: auto;
  padding: 7px;
  border: 1px solid #d5ded9;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 20px 46px rgba(11, 37, 29, 0.18);
  overscroll-behavior: contain;
}
.location-route-field.is-open .location-route-suggestions {
  display: block;
}
.location-route-option {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.location-route-option:hover,
.location-route-option.is-highlighted,
.location-route-option[aria-selected="true"] {
  background: #edf7f1;
}
.location-route-option-icon {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #eef5f1;
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
}
.location-route-option-icon.has-image {
  padding: 4px;
  background: #fff;
  border: 1px solid #e6ece9;
}
.location-route-option-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.location-route-option-copy {
  min-width: 0;
}
.location-route-option-copy b,
.location-route-option-copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.location-route-option-copy b {
  font-size: 11px;
}
.location-route-option-copy small,
.location-route-option-floor {
  margin-top: 2px;
  color: var(--muted);
  font-size: 9px;
}
.location-route-empty {
  padding: 18px 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1380px) {
  .map-toolbar {
    grid-template-columns: minmax(130px, auto) minmax(390px, 1fr) auto;
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .location-route-submit {
    width: 50px;
    min-width: 50px;
    padding: 0;
  }
  .location-route-submit-label {
    display: none;
  }
}

@media (max-width: 1080px) {
  .map-toolbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .location-route-planner {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

@media (max-width: 620px) {
  .map-toolbar {
    gap: 9px;
  }
  .location-route-form {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 7px;
  }
  .location-route-field {
    grid-column: 1;
  }
  .location-route-field[data-journey-field="from"] {
    grid-row: 1;
  }
  .location-route-field[data-journey-field="to"] {
    grid-row: 2;
  }
  .location-route-swap {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    transform: rotate(90deg);
  }
  .location-route-submit {
    grid-column: 2;
    grid-row: 2;
    width: 42px;
    min-width: 42px;
    height: 50px;
  }
  .location-route-suggestions {
    right: -49px;
  }
}

/* v1.9.1 — compact map-tab interface, preserving header, map canvas and floor buttons */
.map-view .map-toolbar {
  min-height: 72px;
  padding: 10px 18px;
  gap: 12px;
}
.map-view .map-toolbar .eyebrow {
  margin-bottom: 3px;
  font-size: 9px;
  line-height: 1.1;
  letter-spacing: 1.4px;
}
.map-view .map-toolbar h1 {
  font-size: 22px;
  line-height: 1.1;
}
.map-view .location-route-form {
  grid-template-columns: minmax(140px, 1fr) 32px minmax(140px, 1fr) auto;
  gap: 5px;
}
.map-view .location-route-field {
  height: 40px;
  padding-right: 29px;
  padding-left: 31px;
  border-radius: 11px;
}
.map-view .location-route-field input {
  font-size: 10px;
}
.map-view .location-route-dot {
  left: 12px;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px rgba(12, 148, 72, 0.08);
}
.map-view .location-route-dot-end {
  box-shadow: 0 0 0 4px rgba(208, 43, 52, 0.08);
}
.map-view .location-route-clear {
  right: 4px;
  width: 23px;
  height: 23px;
  border-radius: 7px;
  font-size: 14px;
}
.map-view .location-route-swap {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  font-size: 17px;
}
.map-view .location-route-submit {
  min-width: 42px;
  height: 40px;
  padding: 0 11px;
  border-radius: 11px;
  font-size: 10px;
  box-shadow: 0 5px 14px rgba(208, 43, 52, 0.15);
}
.map-view .location-route-submit > span:first-child {
  font-size: 17px;
}
.map-view .location-route-suggestions {
  top: calc(100% + 6px);
  max-height: min(330px, 52vh);
  padding: 5px;
  border-radius: 12px;
}
.map-view .location-route-option {
  min-height: 46px;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 5px 7px;
  border-radius: 9px;
}
.map-view .location-route-option-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 15px;
}
.map-view .location-route-option-copy b {
  font-size: 10px;
}
.map-view .location-route-option-copy small,
.map-view .location-route-option-floor {
  font-size: 8px;
}
.map-view .location-route-empty {
  padding: 13px 10px;
  font-size: 10px;
}
.map-view .map-actions {
  gap: 6px;
}
.map-view .map-actions .outline-button {
  min-height: 38px;
  padding: 0 11px;
  border-radius: 10px;
  font-size: 10px;
}
.map-view .floor-rail {
  padding-top: 12px;
  padding-bottom: 12px;
}
.map-view .floor-rail > small {
  margin-bottom: 7px;
  font-size: 8px;
}
.map-view .you-are-here-card {
  padding: 10px 7px;
  border-radius: 11px;
}
.map-view .you-are-here-card .pin-dot {
  width: 10px;
  height: 10px;
  margin-bottom: 6px;
}
.map-view .you-are-here-card small {
  font-size: 7px;
}
.map-view .you-are-here-card b {
  margin-top: 2px;
  font-size: 10px;
}
.map-view .map-data-badge {
  left: 13px;
  top: 13px;
  padding: 5px 8px;
  font-size: 7px;
  letter-spacing: 0.8px;
}
.map-view .map-legend {
  left: 13px;
  bottom: 13px;
  gap: 11px;
  padding: 7px 10px;
  border-radius: 10px;
  font-size: 8px;
}
.map-view .map-legend > span {
  gap: 5px;
}
.map-view .map-legend i {
  width: 8px;
  height: 8px;
}
.map-view .legend-route {
  width: 15px !important;
}
.map-view .map-fullscreen-toggle {
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 19px;
}
.map-view .map-canvas-wrap .map-zoom-controls {
  top: 62px;
  right: 14px;
  border-radius: 10px;
}
.map-view .map-zoom-controls button {
  width: 40px;
  height: 36px;
  font-size: 18px;
}
.map-view .map-zoom-controls button:last-child {
  font-size: 14px;
}
.map-view .route-head {
  padding: 17px 17px 13px;
}
.map-view .route-head h2 {
  margin-top: 3px;
  font-size: 21px;
}
.map-view .route-head-buttons {
  gap: 5px;
}
.map-view .close-route,
.map-view .hide-route {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 16px;
}
.map-view .route-summary {
  padding: 13px 17px;
}
.map-view .route-points {
  grid-template-columns: 12px 1fr;
  column-gap: 9px;
}
.map-view .route-points .dot {
  width: 8px;
  height: 8px;
}
.map-view .route-points .line {
  height: 17px;
  margin-left: 3px;
}
.map-view .route-points small {
  font-size: 8px;
}
.map-view .route-points b {
  font-size: 11px;
}
.map-view .route-stats {
  gap: 6px;
  margin-top: 11px;
}
.map-view .route-stat {
  padding: 8px;
  border-radius: 9px;
}
.map-view .route-stat small {
  font-size: 7px;
}
.map-view .route-stat b {
  font-size: 14px;
}
.map-view .route-accessible {
  margin-top: 8px;
  font-size: 9px;
}
.map-view .route-floor-tabs {
  padding: 10px 17px;
}
.map-view .route-floor-tabs small {
  margin-bottom: 6px;
  font-size: 8px;
}
.map-view .route-floor-tabs div {
  gap: 5px;
}
.map-view .route-floor-tabs button {
  width: 34px;
  height: 30px;
  border-radius: 8px;
  font-size: 11px;
}
.map-view .directions {
  padding: 5px 17px;
}
.map-view .direction-row {
  min-height: 48px;
  grid-template-columns: 26px 1fr auto;
  gap: 7px;
}
.map-view .direction-icon {
  font-size: 19px;
}
.map-view .direction-row b {
  font-size: 10px;
}
.map-view .direction-row span:last-child {
  font-size: 8px;
}
.map-view .route-actions {
  gap: 6px;
  padding: 11px 17px 16px;
}
.map-view .route-actions button {
  min-height: 40px;
  font-size: 10px;
}

@media (max-width: 1380px) {
  .map-view .map-toolbar {
    padding-left: 15px;
    padding-right: 15px;
    gap: 9px;
  }
  .map-view .location-route-submit {
    width: 42px;
    min-width: 42px;
  }
}

@media (max-width: 1080px) {
  .map-view .map-toolbar {
    padding-top: 8px;
    padding-bottom: 8px;
    row-gap: 7px;
  }
}

@media (max-width: 820px) {
  .map-view .map-toolbar {
    padding: 7px 10px;
    gap: 6px;
  }
  .map-view .map-toolbar .eyebrow {
    margin-bottom: 1px;
    font-size: 7px;
  }
  .map-view .map-toolbar h1 {
    font-size: 18px;
  }
  .map-view .map-actions {
    gap: 4px;
  }
  .map-view .map-actions .outline-button {
    min-width: 36px;
    min-height: 34px;
    padding: 0 8px;
    border-radius: 9px;
    font-size: 9px;
  }
  .map-view .location-route-form {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 5px;
  }
  .map-view .location-route-field {
    height: 38px;
    padding-left: 29px;
    padding-right: 27px;
  }
  .map-view .location-route-field input {
    font-size: 9px;
  }
  .map-view .location-route-swap {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .map-view .location-route-submit {
    width: 36px;
    min-width: 36px;
    height: 38px;
    padding: 0;
  }
  .map-view .location-route-suggestions {
    right: -41px;
    max-height: min(290px, 46vh);
  }
  .map-view .floor-rail {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .map-view .map-legend {
    left: 8px;
    bottom: 8px;
    gap: 7px;
    padding: 6px 8px;
    font-size: 7px;
  }
  .map-view .map-fullscreen-toggle {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  .map-view .map-canvas-wrap .map-zoom-controls {
    top: 58px;
    right: 10px;
  }
  .map-view .map-zoom-controls button {
    width: 40px;
    height: 38px;
  }
  .map-view .route-head {
    padding: 14px 15px 11px;
  }
  .map-view .route-head h2 {
    font-size: 19px;
  }
  .map-view .route-summary,
  .map-view .route-floor-tabs {
    padding-left: 15px;
    padding-right: 15px;
  }
  .map-view .directions {
    padding-left: 15px;
    padding-right: 15px;
  }
  .map-view .route-actions {
    padding-left: 15px;
    padding-right: 15px;
  }
}


/* v1.9.17 — promotion/event loading states shown while central data is pending. */
.promotion-loading-state,
.promotion-loading-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}
.promotion-loading-state {
  grid-column: 1 / -1;
  min-height: 145px;
  padding: 24px;
  border: 1px solid #d8e2dc;
  border-radius: 20px;
  background: #f8faf8;
  color: var(--green);
}
.promotion-loading-state-large {
  min-height: 280px;
  border-radius: 24px;
}
.promotion-loading-inline {
  min-height: 90px;
  color: rgba(255, 255, 255, .92);
}
.promotion-loader-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border: 3px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: promotionLoaderSpin .72s linear infinite;
}
.attract-promo.is-loading {
  display: grid;
  place-items: center;
  min-height: 138px;
}
@keyframes promotionLoaderSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .promotion-loader-icon { animation-duration: 1.4s; }
}

/* v1.9.18 — independent home hero text and frame visibility controls. */
