.dd-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px;
  align-items: flex-end;
}
.dd-search {
  flex: 1 1 240px;
  min-width: 0;
  display: grid;
  gap: 6px;
}
.dd-search label,
.dd-sort label {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.dd-search input,
.dd-sort select {
  width: 100%;
  min-height: 44px;
  border: 2px solid rgba(143, 164, 200,.28);
  border-radius: 4px;
  padding: 0 12px;
  background: rgba(6,26,35,.65);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}
.dd-search input:focus,
.dd-sort select:focus {
  outline: none;
  border-color: var(--purple-2);
  box-shadow: 0 0 0 3px rgba(61, 95, 154,.2);
}
.dd-sort {
  flex: 0 1 220px;
  display: grid;
  gap: 6px;
}
.dd-sort select {
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--purple-2) 50%),
    linear-gradient(135deg, var(--purple-2) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.dd-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1 1 100%;
}
.dd-count {
  color: var(--ink-soft);
  font-size: .86rem;
  font-weight: 800;
  margin: 0 0 12px;
}
.dd-table-wrap {
  overflow: auto;
  border: 2px solid rgba(143, 164, 200,.22);
  border-radius: 4px;
  background: rgba(6,26,35,.45);
}
.dd-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.dd-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(8, 36, 48, .97);
  border-bottom: 2px solid rgba(143, 164, 200,.28);
  text-align: left;
  padding: 12px 14px;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.dd-table thead th button {
  all: unset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.dd-table thead th button:hover,
.dd-table thead th button:focus-visible {
  color: var(--purple-2);
}
.dd-table thead th button .dd-sort-ind {
  font-size: .7rem;
  opacity: .45;
}
.dd-table thead th button.is-active {
  color: var(--purple-2);
}
.dd-table thead th button.is-active .dd-sort-ind {
  opacity: 1;
}
.dd-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(143, 164, 200,.12);
  vertical-align: middle;
}
.dd-table tbody tr:last-child td {
  border-bottom: none;
}
.dd-table tbody tr:hover td {
  background: rgba(61, 95, 154,.1);
}
.dd-table tbody tr.is-hidden {
  display: none;
}
.dd-name {
  font-weight: 950;
  font-size: .98rem;
  line-height: 1.25;
}
.dd-note {
  display: block;
  margin-top: 3px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.dd-tags {
  display: inline-flex;
  gap: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.dd-tag {
  display: inline-flex;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(240,192,112,.18);
  border: 1px solid rgba(240,192,112,.4);
  color: #f0c070;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dd-booths {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.dd-booth-pill {
  display: inline-flex;
  min-width: 28px;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 99px;
  background: rgba(61, 95, 154,.2);
  border: 1px solid rgba(143, 164, 200,.35);
  color: var(--purple-2);
  font-size: .78rem;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}
.dd-zone {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dd-zone.main { color: #c4a5e8; }
.dd-zone.adult { color: #f0a0c8; }
.dd-zone.boutique { color: #7ec8e8; }
.dd-zone.night { color: #f0c070; }
.dd-zone.service { color: #a8d0a0; }
.dd-empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--ink-soft);
  font-weight: 800;
}
@media (max-width: 640px) {
  .dd-table thead th:nth-child(3),
  .dd-table tbody td:nth-child(3) {
    /* keep zone visible but tighter */
  }
  .dd-table thead th,
  .dd-table tbody td {
    padding: 10px 10px;
  }
}