/* Listing status tags — liquid glass (matches nav) */
.elist-status {
  z-index: 2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52) 0%, rgba(255, 255, 255, 0.18) 100%);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 -1px 0 rgba(255, 255, 255, 0.06) inset,
    0 8px 22px -10px rgba(3, 7, 18, 0.45);
}

.elist-status {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(3, 7, 18, 0.3);
}

html[dir="rtl"] .elist-status {
  left: auto;
  right: 8px;
}

.elist-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.elist-status.is-dp::before {
  background: #f5a623;
}

.elist-status.is-deposit::before {
  background: #60a5fa;
}

.elist-status.is-reserved::before {
  background: #f87171;
}

.elist-status.is-sold::before {
  background: rgba(255, 255, 255, 0.55);
}

.elist-status.is-sold {
  color: rgba(255, 255, 255, 0.78);
}
