.booth-map {
  margin: 1rem 0 1.5rem;
  width: 100%;
}
.booth-map-legend {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
.booth-map-legend-keys {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #7A6B5A;
}
.booth-map-orient-note {
  font-size: 0.78rem;
  color: #7A6B5A;
  margin: 0 0 0.75rem;
  line-height: 1.35;
}
.booth-map-frame {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  max-width: 56rem;
}
.booth-map-mid {
  display: flex;
  align-items: stretch;
  gap: 0.4rem;
}
.booth-orient {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #3A3030;
  /* Neutral chrome — yellow is reserved for front/premium pads */
  background: rgba(58, 48, 48, 0.08);
  border: 2px solid rgba(58, 48, 48, 0.35);
  padding: 0.35rem 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  flex-shrink: 0;
}
.booth-orient-top,
.booth-orient-bottom {
  width: 100%;
  min-height: 1.75rem;
}
.booth-orient-left,
.booth-orient-right {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  min-width: 1.75rem;
  padding: 0.55rem 0.25rem;
}
.booth-orient-side {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  min-width: 2.25rem;
  padding: 0.75rem 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}
.booth-tier-std::before,
.booth-tier-front::before,
.booth-tier-taken::before {
  content: "";
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.35rem;
  vertical-align: middle;
  border: 1px solid #3A3030;
}
.booth-tier-std::before { background: #FEFBF0; }
.booth-tier-front::before { background: #F5D04E; }
.booth-tier-taken::before { background: rgba(58, 48, 48, 0.35); }
.booth-grid {
  display: grid;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
  width: 100%;
}
.booth-cell {
  aspect-ratio: 1;
  border: 2px solid rgba(58, 48, 48, 0.22);
  background: #FEFBF0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3A3030;
  padding: 0.25rem;
  cursor: default;
  min-height: 3.25rem;
}
button.booth-cell {
  cursor: pointer;
  font: inherit;
}
.booth-cell.is-taken {
  background-color: rgba(58, 48, 48, 0.14);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 0.28rem,
    rgba(58, 48, 48, 0.1) 0.28rem,
    rgba(58, 48, 48, 0.1) 0.55rem
  );
  border-color: rgba(58, 48, 48, 0.4);
  border-style: solid;
  color: rgba(58, 48, 48, 0.55);
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}
button.booth-cell.is-taken {
  /* Admin assign map: taken stalls stay clickable */
  pointer-events: auto;
  cursor: pointer;
}
.booth-cell.is-taken.booth-front {
  background-color: rgba(58, 48, 48, 0.18);
}
.booth-taken-tag {
  display: block;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.1rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 0.15rem;
}
/* Requested (not taken): dashed outline + corner fold — details on hover */
.booth-cell.has-demand {
  position: relative;
  border-style: dashed;
  border-color: rgba(58, 48, 48, 0.55);
  border-width: 2px;
}
.booth-cell.has-demand.booth-front {
  border-color: #3A3030;
}
.booth-cell.has-demand::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.9rem 0.9rem 0;
  border-color: transparent #3A3030 transparent transparent;
  pointer-events: none;
  z-index: 1;
}
.booth-cell.has-demand.is-selected {
  border-style: solid;
}
.booth-cell.has-demand.is-selected::before {
  border-color: transparent rgba(254, 251, 240, 0.95) transparent transparent;
}
.booth-cell.has-demand[data-tip]:hover::after,
.booth-cell.has-demand[data-tip]:focus-visible::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.4rem);
  transform: translateX(-50%);
  z-index: 30;
  width: max-content;
  max-width: 12rem;
  padding: 0.4rem 0.55rem;
  background: #3A3030;
  color: #FAF2DA;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: center;
  text-transform: none;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(58, 48, 48, 0.25);
}
.booth-tier-demand::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.35rem;
  vertical-align: middle;
  border: 2px dashed #3A3030;
  background: #FEFBF0;
  box-sizing: border-box;
}
.booth-tier-taken::before {
  background-color: rgba(58, 48, 48, 0.25);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 0.12rem,
    rgba(58, 48, 48, 0.45) 0.12rem,
    rgba(58, 48, 48, 0.45) 0.24rem
  );
}
button.booth-cell:hover {
  border-color: #3A3030;
  transform: translateY(-1px);
}
.booth-front {
  background: #F5D04E;
  border-color: #3A3030;
}
.booth-empty {
  border: none;
  background: transparent;
  pointer-events: none;
  min-height: 0;
}
.booth-cell.is-selected {
  background: #C2410C;
  border-color: #3A3030;
  color: #FEFBF0;
  outline: none;
  box-shadow: none;
}
.booth-id {
  line-height: 1.1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.booth-edge {
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  text-align: center;
  opacity: 0.85;
  max-width: 100%;
}

/* Indoor — two clusters, fills wide form (no vertical middle walkway) */
.booth-indoor-layout {
  /* 4 near-entrance pads vs 11 toward-garden pads → matching cell size */
  display: grid;
  grid-template-columns: auto minmax(0, 4fr) minmax(0, 11fr) auto;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
}
.booth-cluster {
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(58, 48, 48, 0.12);
  padding: 0.65rem;
  min-width: 0;
}
.booth-cluster-label {
  margin: 0 0 0.55rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7A6B5A;
}
.booth-cluster .booth-cell {
  min-height: 4.25rem;
  font-size: 0.75rem;
}
.booth-cluster .booth-id {
  font-size: 0.95rem;
}
.booth-indoor-layout .booth-cluster-left,
.booth-indoor-layout .booth-cluster-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
}
.booth-indoor-layout .booth-cluster-left {
  container-type: inline-size;
  container-name: indoor-left;
}
.booth-indoor-layout .booth-cluster-left > * {
  --indoor-gap: 0.35rem;
  --indoor-cell: calc((100cqw - 3 * var(--indoor-gap)) / 4);
}
.booth-indoor-layout .booth-cluster-right {
  justify-content: center;
}
.booth-indoor-layout .booth-cluster-label {
  flex: none;
  align-self: flex-start;
  width: 100%;
}
.booth-indoor-layout .booth-cluster-right .booth-cluster-label {
  margin-bottom: 0.75rem;
}
.booth-indoor-layout .booth-cluster-right .booth-indoor-rows {
  margin-block: auto;
}
.booth-indoor-rows {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}
.booth-indoor-layout .booth-grid {
  flex: none;
  display: grid !important;
  width: 100%;
  max-width: 100%;
  gap: 0.35rem;
  row-gap: 0;
}
.booth-indoor-layout .booth-cluster-left .booth-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}
.booth-indoor-layout .booth-cluster-right .booth-grid {
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}
.booth-indoor-layout .booth-cell,
.booth-indoor-layout .booth-empty {
  width: auto;
  height: auto;
  min-height: 0;
  min-width: 0;
  max-width: none;
  flex: none;
  aspect-ratio: 1;
  box-sizing: border-box;
  font-size: 0.62rem;
}
.booth-indoor-layout .booth-id {
  font-size: 0.72rem;
}
.booth-indoor-rows .booth-aisle-h {
  min-height: 1.65rem;
  writing-mode: horizontal-tb;
  transform: none;
  width: 100%;
}
.booth-indoor-rows .booth-aisle-h span {
  writing-mode: horizontal-tb;
  transform: none;
  letter-spacing: 0.2em;
}
.booth-indoor-machabar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
  gap: 0.25rem;
  margin: 0 0 0.4rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.booth-indoor-machabar .booth-gazebo-unit,
.booth-indoor-machabar .booth-gazebo-unit.is-double,
.booth-indoor-machabar .booth-gazebo-unit.is-cafe {
  flex: none;
  /* Two entrance pads + one gap, matching I-01–I-04 fluid cell width */
  width: calc(var(--indoor-cell) * 2 + var(--indoor-gap));
  max-width: calc(var(--indoor-cell) * 2 + var(--indoor-gap));
  align-self: flex-end;
  margin-left: auto;
}
.booth-indoor-machabar .booth-gazebo-unit.is-double {
  background: rgba(245, 208, 78, 0.22);
}
.booth-indoor-machabar .booth-gazebo-unit .booth-cell,
.booth-indoor-machabar .booth-macha-cafe {
  width: 100%;
  max-width: none;
  height: var(--indoor-cell);
  min-height: 0;
  aspect-ratio: auto;
  font-size: 0.62rem;
}
.booth-indoor-machabar-name {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A6B5A;
  text-align: left;
}
.booth-aisle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    -45deg,
    rgba(58, 48, 48, 0.04),
    rgba(58, 48, 48, 0.04) 6px,
    rgba(58, 48, 48, 0.09) 6px,
    rgba(58, 48, 48, 0.09) 12px
  );
  border: 2px dashed rgba(58, 48, 48, 0.2);
}
.booth-aisle span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(58, 48, 48, 0.55);
}

/* Gourmet — four clusters + Indoor-style cross walkways */
.booth-gourmet-layout {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
}
.booth-gourmet-mid {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: stretch;
}
.booth-gourmet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.75rem minmax(0, 1fr);
  grid-template-rows: auto 2.35rem auto;
  gap: 0.55rem;
  min-width: 0;
}
.booth-gourmet-grid .booth-grid {
  row-gap: 0.7rem;
}
.booth-map[data-area="Gourmet"] .booth-cell {
  min-height: 3.6rem;
  font-size: 0.75rem;
}
.booth-map[data-area="Gourmet"] .booth-id {
  font-size: 1rem;
}
/* Keep ← / → pointing sideways (vertical writing-mode otherwise rotates arrows). */
.booth-gourmet-layout .booth-orient-side {
  writing-mode: vertical-lr;
  transform: none;
  letter-spacing: 0.16em;
}
.booth-dir {
  writing-mode: horizontal-tb;
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
  margin-block-end: 0.35em;
}
.booth-gourmet-layout .booth-orient-side .booth-dir:last-child {
  margin-block-end: 0;
  margin-block-start: 0.35em;
}
.booth-aisle-h span {
  writing-mode: horizontal-tb;
  transform: none;
  letter-spacing: 0.18em;
}
.booth-aisle-cross {
  min-height: 0;
}

/* Jogolo / Puppy Land — compact, centred, not full-bleed */
.booth-jogolo-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
}
.booth-jogolo-main {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}
.booth-jogolo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.75rem minmax(0, 1fr);
  grid-template-rows: auto 2.25rem auto;
  gap: 0.55rem;
  min-width: 0;
}
.booth-jogolo-layout .booth-cell {
  min-height: 3.75rem;
  font-size: 0.75rem;
}
.booth-jogolo-layout .booth-id {
  font-size: 1rem;
}
.booth-jogolo-layout .booth-aisle-h {
  min-height: 0;
  padding: 0.3rem;
}
/* Keep ← pointing left (default side orient rotates 180° and flips arrows). */
.booth-jogolo-layout .booth-jogolo-bar {
  writing-mode: vertical-lr;
  transform: none;
  letter-spacing: 0.16em;
}

/* Gazebo — site schematic: left pad, Gourmet, Stage, picnic, Bar / Puppy Town */
.booth-gazebo-layout {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  width: 100%;
}
.booth-gazebo-orient-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 0.45rem;
  width: 100%;
}
.booth-gazebo-orient-bar,
.booth-gazebo-orient-puppy {
  min-height: 2.25rem;
  width: 100%;
}
.booth-gazebo-body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem;
  align-items: stretch;
}
.booth-gazebo-main {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.booth-gazebo-row {
  display: grid;
  gap: 0.55rem;
  align-items: stretch;
}
.booth-gazebo-row-top {
  grid-template-columns: minmax(3.5rem, 4.5rem) minmax(3.25rem, 0.35fr) minmax(0, 1.5fr) minmax(3.5rem, 4.5rem);
  min-height: 14rem;
}
.booth-gazebo-left,
.booth-gazebo-stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0.35rem;
  max-width: 4.5rem;
  align-self: stretch;
  min-height: 14rem;
}
.booth-gazebo-left .booth-gazebo-unit,
.booth-gazebo-stage .booth-gazebo-unit {
  flex: none;
  width: 100%;
  max-width: none;
}
.booth-gazebo-picnic-side {
  align-self: stretch;
  min-height: 14rem;
}
.booth-gazebo-landmark {
  writing-mode: horizontal-tb;
  transform: none;
  align-self: stretch;
  min-height: 14rem;
}
.booth-gazebo-path-h {
  min-height: 1.1rem;
  width: 100%;
  padding: 0.25rem 0.5rem;
}
.booth-gazebo-path-h span {
  writing-mode: horizontal-tb;
  transform: none;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
}
.booth-gazebo-tent,
.booth-gazebo-path,
.booth-gazebo-picnic {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(58, 48, 48, 0.22);
  background: repeating-linear-gradient(
    -45deg,
    rgba(58, 48, 48, 0.03),
    rgba(58, 48, 48, 0.03) 6px,
    rgba(58, 48, 48, 0.08) 6px,
    rgba(58, 48, 48, 0.08) 12px
  );
  padding: 0.45rem;
}
.booth-gazebo-tent {
  background: rgba(58, 48, 48, 0.07);
  border-style: solid;
  border-color: rgba(58, 48, 48, 0.35);
  min-height: 14rem;
}
.booth-gazebo-picnic {
  background: rgba(120, 160, 90, 0.18);
  border-color: rgba(80, 110, 60, 0.35);
  min-height: 14rem;
  padding: 0.45rem;
}
.booth-gazebo-tent span,
.booth-gazebo-path span,
.booth-gazebo-picnic span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(58, 48, 48, 0.7);
  text-align: center;
}
.booth-gazebo-path-h span,
.booth-gazebo-picnic-front span {
  writing-mode: horizontal-tb;
  transform: none;
  letter-spacing: 0.12em;
  font-size: 0.55rem;
}
.booth-gazebo-picnic-side span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.booth-gazebo-bottom {
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(58, 48, 48, 0.12);
  padding: 0.65rem;
}
.booth-gazebo-units {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
}
.booth-gazebo-unit {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}
.booth-gazebo-unit.is-double {
  flex: 2 1 0;
  max-width: none;
  border: 2px solid #3A3030;
  background: rgba(245, 208, 78, 0.12);
  padding: 0.35rem;
  position: relative;
}
.booth-gazebo-unit-tag {
  display: block;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7A6B5A;
  margin-bottom: 0.25rem;
  text-align: center;
}
.booth-gazebo-unit .booth-grid {
  gap: 0.35rem;
}
.booth-gazebo-layout .booth-cluster .booth-cell,
.booth-gazebo-unit .booth-cell {
  min-height: 3.5rem;
}

.booth-map[data-area="Gazebo"] .booth-cell {
  min-height: 3.5rem;
}

@media (max-width: 720px) {
  .booth-indoor-layout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  /* Keep 4 entrance pads the same size as 11 garden pads when stacked */
  .booth-indoor-layout .booth-cluster-left {
    width: calc(100% * 4 / 11);
    min-width: min(100%, 11rem);
    justify-self: start;
  }
  .booth-indoor-layout .booth-cluster-left,
  .booth-indoor-layout .booth-cluster-right {
    justify-content: flex-start;
    align-items: stretch;
  }
  .booth-indoor-layout .booth-cluster-right .booth-indoor-rows {
    margin-block: 0;
  }
  .booth-orient-side {
    writing-mode: horizontal-tb;
    transform: none;
    min-width: 0;
    min-height: 2rem;
    padding: 0.45rem 0.75rem;
  }
  .booth-aisle {
    min-height: 2.25rem;
  }
  .booth-aisle span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  /*
   * Gourmet / Jogolo: keep the 2×2 cross-aisle plan on mobile.
   * Stacking to one column destroyed left/right adjacency and made IDs look random.
   */
  .booth-gourmet-mid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35rem;
  }
  .booth-gourmet-mid > .booth-orient-side {
    display: none; /* cluster labels already name the sides */
  }
  .booth-gourmet-layout {
    gap: 0.35rem;
    max-width: none;
  }
  .booth-gourmet-grid {
    grid-template-columns: minmax(0, 1fr) 1.15rem minmax(0, 1fr);
    grid-template-rows: auto 1.15rem auto;
    gap: 0.3rem;
  }
  .booth-gourmet-grid .booth-grid {
    gap: 0.22rem;
    row-gap: 0.22rem;
  }
  .booth-gourmet-layout .booth-cluster {
    padding: 0.3rem;
  }
  .booth-gourmet-layout .booth-cluster-label {
    font-size: 0.55rem;
    letter-spacing: 0.06em;
    margin-bottom: 0.28rem;
    line-height: 1.2;
  }
  .booth-map[data-area="Gourmet"] .booth-cell {
    min-height: 0;
    padding: 0.12rem;
    font-size: 0.55rem;
    border-width: 1.5px;
  }
  .booth-map[data-area="Gourmet"] .booth-id {
    font-size: 0.68rem;
  }
  .booth-gourmet-grid .booth-aisle-v,
  .booth-gourmet-grid .booth-aisle-cross,
  .booth-gourmet-grid .booth-aisle-h {
    min-height: 0;
  }
  .booth-gourmet-grid .booth-aisle-v span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.42rem;
    letter-spacing: 0.1em;
  }
  .booth-gourmet-grid .booth-aisle-h span {
    font-size: 0.42rem;
    letter-spacing: 0.1em;
  }

  .booth-jogolo-layout {
    grid-template-columns: 1fr;
    max-width: none;
    gap: 0.35rem;
  }
  .booth-jogolo-layout .booth-jogolo-bar {
    writing-mode: horizontal-tb;
    transform: none;
    min-height: 1.5rem;
    padding: 0.3rem 0.45rem;
    font-size: 0.55rem;
  }
  .booth-jogolo-main {
    gap: 0.35rem;
  }
  .booth-jogolo-grid {
    grid-template-columns: minmax(0, 1fr) 1.15rem minmax(0, 1fr);
    grid-template-rows: auto 1.15rem auto;
    gap: 0.3rem;
  }
  .booth-jogolo-layout .booth-cell {
    min-height: 0;
    padding: 0.15rem;
    font-size: 0.55rem;
    border-width: 1.5px;
  }
  .booth-jogolo-layout .booth-id {
    font-size: 0.7rem;
  }
  .booth-jogolo-grid .booth-aisle-v,
  .booth-jogolo-grid .booth-aisle-cross,
  .booth-jogolo-grid .booth-aisle-h {
    min-height: 0;
  }
  .booth-jogolo-layout .booth-aisle-h {
    padding: 0;
  }
  .booth-jogolo-grid .booth-aisle-v span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.42rem;
    letter-spacing: 0.1em;
  }
  .booth-jogolo-grid .booth-aisle-h span {
    font-size: 0.42rem;
    letter-spacing: 0.1em;
  }
  .booth-orient-left,
  .booth-orient-right {
    writing-mode: horizontal-tb;
    transform: none;
    min-width: 0;
    padding: 0.35rem 0.4rem;
    font-size: 0.55rem;
  }
  .booth-map-mid {
    flex-direction: column;
  }
  .booth-edge {
    display: none;
  }
  .booth-gazebo-body {
    grid-template-columns: 1fr;
  }
  .booth-gazebo-row-top {
    grid-template-columns: 1fr;
  }
  .booth-gazebo-orient-top {
    grid-template-columns: 1fr;
  }
  .booth-gazebo-tent,
  .booth-gazebo-path,
  .booth-gazebo-picnic-side,
  .booth-gazebo-landmark,
  .booth-gazebo-left,
  .booth-gazebo-stage {
    min-height: 4.5rem;
  }
  .booth-gazebo-tent span,
  .booth-gazebo-path span,
  .booth-gazebo-picnic-side span {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .booth-gazebo-units {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .booth-gazebo-unit,
  .booth-gazebo-unit.is-double {
    flex: 1 1 calc(50% - 0.55rem);
    max-width: none;
  }
}
