/* ── ADMIN MOBILE SIDEBAR TOGGLE ── */
.admin-sidebar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: .4rem .8rem;
  border-radius: 4px;
  font-size: .82rem;
  cursor: pointer;
  transition: all .3s;
}
.admin-sidebar-toggle:hover { border-color: var(--gold); color: var(--gold); }

@media(max-width:768px) {
  .admin-sidebar-toggle { display: block; }
  .admin-sidebar {
    position: fixed;
    left: -240px;
    top: 0;
    bottom: 0;
    z-index: 400;
    transition: left .3s var(--r);
    padding-top: 4rem;
    display: flex !important;
  }
  .admin-sidebar.open { left: 0; }
  .sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 399;
  }
  .sidebar-backdrop.open { display: block; }
}

/* ── PRICE HIGHLIGHT ── */
.price-big {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
}

/* ── STATUS PILL ── */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: .2rem .7rem;
  border-radius: 12px;
}
.status-pill.live   { background: rgba(74,122,40,.2); color: #7dca5e; border: 1px solid rgba(74,122,40,.3); }
.status-pill.hidden { background: rgba(192,57,43,.15); color: #e07070; border: 1px solid rgba(192,57,43,.3); }

/* ── DRAG HANDLE ── */
.drag-handle {
  cursor: grab;
  color: var(--muted);
  font-size: 1.1rem;
  padding: 0 .5rem;
  user-select: none;
}
.drag-handle:active { cursor: grabbing; }

/* ── IMAGE COUNT BADGE ── */
.img-count {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .72rem;
  color: var(--muted);
  background: var(--panel);
  border: 1px solid var(--border);
  padding: .15rem .6rem;
  border-radius: 10px;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}
.empty-state .empty-icon { font-size: 3rem; opacity: .3; margin-bottom: 1rem; }
.empty-state p { font-size: .9rem; max-width: 280px; margin: 0 auto; line-height: 1.7; }

/* ── SECTION SEPARATOR ── */
.section-sep {
  height: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

/* ── SETTINGS SAVE BAR (sticky) ── */
.settings-save-bar {
  position: sticky;
  bottom: 0;
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 10;
}
.settings-save-bar span {
  font-size: .78rem;
  color: var(--muted);
}

/* ── GALLERY CATEGORY FILTER ── */
.cat-filters {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cat-filter {
  padding: .3rem .9rem;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 20px;
  cursor: pointer;
  transition: all .25s;
}
.cat-filter.active, .cat-filter:hover {
  background: var(--gold);
  color: #1A1208;
  border-color: var(--gold);
}

/* ── ROOM SORT ORDER ── */
.sort-input {
  width: 60px !important;
  text-align: center;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.breadcrumb span { color: var(--border); }

/* ── RESPONSIVE TABLE ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
th { text-align: left; font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: .6rem 1rem; border-bottom: 1px solid var(--border); font-weight: 600; }
td { padding: .7rem 1rem; border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: middle; }
tr:hover td { background: rgba(255,255,255,.02); }
