/* ================================================================
   aiConciergeOS™ — Pages Extension
   Auth · Dashboard · Submit Listing · Directory · Listing Detail
   Extends: css/style.css (import after)
   ================================================================ */

/* ================================
   PAGE SHELL (shared across inner pages)
================================ */
.page-shell {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
}

.page-main {
  flex: 1;
  padding: var(--sp-60) var(--page-x);
}

.page-main--narrow {
  max-width: 520px;
  margin: 0 auto;
}

.page-main--wide {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Page header block */
.page-header {
  margin-bottom: var(--sp-60);
}

.page-header__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--sp-12);
  display: block;
}

.page-header__headline {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 200;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--bone);
  margin-bottom: var(--sp-18);
}

.page-header__body {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
  max-width: 52ch;
}

/* ================================
   AUTH PAGES
================================ */
.auth-wrap {
  padding: var(--sp-96) var(--page-x) var(--sp-60);
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: var(--sp-36);
}

.auth-card__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--sp-18);
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-card__headline {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--bone);
  margin-bottom: var(--sp-36);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-18);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  margin: var(--sp-6) 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.auth-divider span {
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-switch {
  font-size: 13px;
  color: var(--smoke);
  text-align: center;
  margin-top: var(--sp-24);
}

.auth-switch a {
  color: var(--violet);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.auth-switch a:hover { opacity: 0.75; }

.auth-card__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-36);
  text-decoration: none;
}

.auth-card__logo-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.02em;
}

/* Password strength */
.password-strength {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}

.strength-bar {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.strength-bar--weak   { background: #ff6b6b; }
.strength-bar--fair   { background: var(--amber); }
.strength-bar--strong { background: var(--lichen); }

.password-hint {
  font-size: 11px;
  color: var(--smoke);
  margin-top: 6px;
  letter-spacing: 0.025em;
}

/* Forgot password link */
.form-field__aux {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.form-aux-link {
  font-size: 11px;
  color: var(--smoke);
  letter-spacing: 0.025em;
  transition: color 0.2s;
}
.form-aux-link:hover { color: var(--violet); }

/* ================================
   DASHBOARD
================================ */
.dash-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-60) var(--page-x);
}

.dash-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--sp-24);
  margin-bottom: var(--sp-60);
  padding-bottom: var(--sp-36);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}

.dash-header__greeting {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: var(--sp-12);
}

.dash-header__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--bone);
}

/* Stats row */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-18);
  margin-bottom: var(--sp-60);
}

.dash-stat {
  padding: var(--sp-24);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.dash-stat__number {
  font-size: 36px;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--bone);
  line-height: 1;
}

.dash-stat__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* Section title */
.dash-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: var(--sp-24);
}

/* Listing cards in dashboard */
.dash-listings {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.dash-listing-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--sp-24);
  align-items: center;
  padding: var(--sp-24);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.01);
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  cursor: pointer;
}
.dash-listing-card:hover {
  border-color: rgba(128,82,255,0.3);
  background: rgba(128,82,255,0.02);
}

.dash-listing-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-listing-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dash-listing-card__logo-placeholder {
  font-size: 20px;
  color: var(--smoke);
  opacity: 0.4;
}

.dash-listing-card__info { min-width: 0; }

.dash-listing-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-listing-card__meta {
  font-size: 13px;
  color: var(--smoke);
  letter-spacing: 0.025em;
  display: flex;
  gap: var(--sp-12);
  flex-wrap: wrap;
}

.dash-listing-card__actions {
  display: flex;
  gap: var(--sp-12);
  flex-shrink: 0;
}

/* Status badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-badge::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-badge--draft    { background: rgba(255,255,255,0.06); color: var(--smoke); }
.status-badge--draft::before { background: var(--smoke); }

.status-badge--pending  { background: rgba(255,184,41,0.12); color: var(--amber); }
.status-badge--pending::before { background: var(--amber); }

.status-badge--approved { background: rgba(21,132,110,0.14); color: var(--lichen); }
.status-badge--approved::before { background: var(--lichen); }

.status-badge--rejected { background: rgba(255,107,107,0.12); color: #ff8080; }
.status-badge--rejected::before { background: #ff8080; }

/* Empty state */
.empty-state {
  padding: var(--sp-96) var(--sp-36);
  text-align: center;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius);
}

.empty-state__icon {
  font-size: 40px;
  opacity: 0.2;
  margin-bottom: var(--sp-24);
}

.empty-state__headline {
  font-size: 20px;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: var(--sp-12);
}

.empty-state__body {
  font-size: 14px;
  color: var(--smoke);
  margin-bottom: var(--sp-30);
}

/* ================================
   MULTI-STEP FORM WIZARD
================================ */
.wizard-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-60) var(--page-x);
}

/* Step indicator */
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--sp-60);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.wizard-steps::-webkit-scrollbar { display: none; }

.wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wizard-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--smoke);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.wizard-step__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
  transition: color 0.3s;
}

.wizard-step--active .wizard-step__num {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--bone);
}
.wizard-step--active .wizard-step__label { color: var(--bone); }

.wizard-step--done .wizard-step__num {
  background: rgba(128,82,255,0.15);
  border-color: var(--violet);
  color: var(--violet);
}
.wizard-step--done .wizard-step__label { color: var(--ash); }

.wizard-connector {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 4px;
  transition: background 0.3s;
}
.wizard-connector--done { background: var(--violet); opacity: 0.4; }

/* Wizard panel */
.wizard-panel {
  display: none;
  animation: panelFadeIn 0.35s ease;
}
.wizard-panel--active { display: block; }

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard-panel__headline {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone);
  margin-bottom: var(--sp-6);
}

.wizard-panel__sub {
  font-size: 14px;
  color: var(--ash);
  line-height: 1.6;
  margin-bottom: var(--sp-36);
}

/* Wizard form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-18);
}

.form-grid--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.form-grid--full {
  grid-column: 1 / -1;
}

/* Wizard navigation */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-36);
  padding-top: var(--sp-36);
  border-top: 1px solid rgba(255,255,255,0.06);
  gap: var(--sp-18);
}

.wizard-progress {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* Upload dropzone */
.dropzone {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: var(--sp-36);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
  position: relative;
}
.dropzone:hover,
.dropzone--over {
  border-color: rgba(128,82,255,0.5);
  background: rgba(128,82,255,0.04);
}
.dropzone--over { border-style: solid; }

.dropzone__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.dropzone__icon {
  font-size: 28px;
  opacity: 0.3;
  margin-bottom: var(--sp-12);
}

.dropzone__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ash);
  margin-bottom: 4px;
}

.dropzone__hint {
  font-size: 12px;
  color: var(--smoke);
  letter-spacing: 0.025em;
}

.dropzone__hint span { color: var(--violet); }

/* Photo preview grid */
.photo-previews {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-12);
  margin-top: var(--sp-18);
}

.photo-preview {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  background: rgba(255,255,255,0.03);
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-preview__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  background: rgba(0,0,0,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 10px;
  color: var(--bone);
  border: none;
  line-height: 1;
  transition: background 0.2s;
}
.photo-preview__remove:hover { background: rgba(255,107,107,0.8); }

/* Amenity tag picker */
.amenity-picker {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.amenity-tag {
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--smoke);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  min-height: 36px;
  display: flex;
  align-items: center;
  user-select: none;
}
.amenity-tag:hover {
  border-color: rgba(128,82,255,0.4);
  color: var(--ash);
}
.amenity-tag--selected {
  border-color: var(--violet);
  background: rgba(128,82,255,0.12);
  color: var(--violet);
}

/* Star rating picker */
.star-picker {
  display: flex;
  gap: 6px;
  margin-top: var(--sp-12);
}

.star-btn {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.15);
  transition: color 0.15s, transform 0.15s;
  padding: 2px;
  line-height: 1;
}
.star-btn:hover,
.star-btn--active { color: var(--amber); }
.star-btn:hover   { transform: scale(1.15); }

/* Review panel */
.review-section {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: var(--sp-30);
  margin-bottom: var(--sp-18);
}

.review-section__title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--sp-18);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-edit-link {
  font-size: 11px;
  color: var(--smoke);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s;
}
.review-edit-link:hover { color: var(--violet); }

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12) var(--sp-36);
}

.review-field__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 4px;
}

.review-field__value {
  font-size: 14px;
  color: var(--ash);
  letter-spacing: 0.025em;
}

/* ================================
   DIRECTORY PAGE
================================ */
.dir-header {
  padding: calc(var(--nav-h) + var(--sp-60)) var(--page-x) var(--sp-36);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 100%;
}

.dir-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.dir-headline {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.93;
  color: var(--bone);
  margin-bottom: var(--sp-12);
}

.dir-body {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: var(--sp-30);
}

/* Search bar */
.dir-search {
  display: flex;
  gap: var(--sp-12);
  max-width: 720px;
  margin-bottom: var(--sp-30);
}

.dir-search__input {
  flex: 1;
}

/* Filter row */
.dir-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-12);
  align-items: center;
}

.dir-filter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-right: var(--sp-6);
}

.dir-filter-select {
  padding: 8px 36px 8px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239a9a9a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--smoke);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  min-height: 40px;
  -webkit-appearance: none;
  appearance: none;
}
.dir-filter-select:focus {
  outline: none;
  border-color: rgba(128,82,255,0.5);
  color: var(--ash);
}
.dir-filter-select option { background: #111; }

/* Main layout */
.dir-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-36) var(--page-x) var(--sp-60);
}

.dir-results-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: var(--sp-24);
}

/* Listing cards grid */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-18);
  margin-bottom: var(--sp-36);
}

.listing-card {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.01);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.listing-card:hover {
  border-color: rgba(128,82,255,0.3);
  background: rgba(128,82,255,0.02);
  transform: translateY(-2px);
}

.listing-card__image {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.listing-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.listing-card:hover .listing-card__image img { transform: scale(1.03); }

.listing-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  opacity: 0.1;
}

.listing-card__body {
  padding: var(--sp-24);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.listing-card__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 8px;
}

.listing-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.listing-card__location {
  font-size: 13px;
  color: var(--smoke);
  letter-spacing: 0.025em;
  margin-bottom: var(--sp-18);
}

.listing-card__stars {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: var(--sp-12);
}

.listing-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.listing-card__amenity-tag {
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--smoke);
}

/* Featured badge */
.listing-card__badge {
  position: absolute;
  top: var(--sp-12);
  right: var(--sp-12);
  padding: 4px 10px;
  background: var(--violet);
  border-radius: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bone);
}

/* Pagination */
.dir-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  padding-top: var(--sp-36);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.page-btn {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--smoke);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  background: none;
  font-family: var(--font);
}
.page-btn:hover { border-color: rgba(128,82,255,0.4); color: var(--ash); }
.page-btn--active {
  background: var(--violet);
  border-color: var(--violet);
  color: var(--bone);
}

/* ================================
   SINGLE LISTING DETAIL
================================ */
.listing-detail {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + var(--sp-60)) var(--page-x) var(--sp-60);
}

.listing-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: var(--sp-36);
  transition: color 0.2s;
  text-decoration: none;
}
.listing-detail__back:hover { color: var(--violet); }

.listing-detail__hero {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-36);
  align-items: start;
  margin-bottom: var(--sp-60);
}

.listing-detail__left {
  display: flex;
  flex-direction: column;
  gap: var(--sp-36);
  min-width: 0;
}

.listing-detail__gallery {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.04);
}

.listing-detail__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-detail__gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.08;
}

.listing-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-18);
}

.listing-detail__info-card {
  padding: var(--sp-30);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}

.listing-detail__type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--sp-12);
  display: block;
}

.listing-detail__name {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 200;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--bone);
  margin-bottom: var(--sp-12);
}

.listing-detail__location {
  font-size: 14px;
  color: var(--ash);
  margin-bottom: var(--sp-18);
}

.listing-detail__stars {
  color: var(--amber);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: var(--sp-24);
}

.listing-detail__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: var(--sp-18) 0;
}

.listing-detail__meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: var(--sp-6) 0;
}

.listing-detail__meta-label {
  color: var(--smoke);
  letter-spacing: 0.025em;
}

.listing-detail__meta-value {
  color: var(--ash);
  font-weight: 600;
  letter-spacing: 0.025em;
  word-break: break-all;
  text-align: right;
  max-width: 60%;
}

/* Description */
.listing-detail__body {
  margin-bottom: var(--sp-36);
}

.listing-detail__body-headline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: var(--sp-18);
}

.listing-detail__description {
  font-size: 15px;
  color: var(--ash);
  line-height: 1.75;
}

/* Amenities */
.listing-detail__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-top: var(--sp-18);
}

/* Inquiry form in sidebar */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-18);
}

.inquiry-form__headline {
  font-size: 14px;
  font-weight: 600;
  color: var(--bone);
  letter-spacing: 0.01em;
  margin-bottom: var(--sp-12);
}

/* ================================
   LOADER / SKELETON STATES
================================ */
.skeleton {
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

.skeleton--text { height: 16px; margin-bottom: 8px; }
.skeleton--title { height: 28px; margin-bottom: 12px; width: 70%; }
.skeleton--card {
  height: 280px;
  border-radius: var(--radius);
}

/* ================================
   TOAST NOTIFICATIONS
================================ */
.toast-container {
  position: fixed;
  bottom: var(--sp-24);
  right: var(--sp-24);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
  pointer-events: none;
}

.toast {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--bone);
  pointer-events: auto;
  animation: toastIn 0.3s ease;
  max-width: 340px;
  border: 1px solid transparent;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.toast--success {
  background: rgba(21,132,110,0.9);
  border-color: rgba(21,132,110,0.5);
  backdrop-filter: blur(8px);
}

.toast--error {
  background: rgba(200,50,50,0.9);
  border-color: rgba(200,50,50,0.5);
  backdrop-filter: blur(8px);
}

.toast--info {
  background: rgba(128,82,255,0.9);
  border-color: rgba(128,82,255,0.5);
  backdrop-filter: blur(8px);
}

/* ================================
   FORM VALIDATION STATES
================================ */
.form-input--error { border-color: rgba(255,107,107,0.55) !important; }
.field-error {
  font-size: 11px;
  color: #ff8080;
  letter-spacing: 0.025em;
  margin-top: 4px;
}

/* ================================
   NAV ADDITIONS for inner pages
================================ */
.nav__link--active { color: var(--bone); }

/* ================================
   RESPONSIVE — PAGES
================================ */
@media (max-width: 1100px) {
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-stats   { grid-template-columns: repeat(2, 1fr); }
  .listing-detail__hero { grid-template-columns: 1fr; }
  .listing-detail__gallery { order: -1; }
  .listing-detail__sidebar { order: 1; }

@media (max-width: 900px) {
  .form-grid     { grid-template-columns: 1fr; }
  .form-grid--3  { grid-template-columns: 1fr 1fr; }
  .review-grid   { grid-template-columns: 1fr; }
  .photo-previews { grid-template-columns: repeat(4, 1fr); }
  .dash-listing-card { grid-template-columns: auto 1fr; }
  .dash-listing-card__actions { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .auth-wrap  { padding: var(--sp-60) var(--page-x); align-items: flex-start; }
  .auth-card  { padding: var(--sp-24); }
  .listing-grid { grid-template-columns: 1fr; }
  .wizard-steps { gap: 0; }
  .wizard-step__label { display: none; }
  .wizard-connector { width: 24px; }
  .photo-previews { grid-template-columns: repeat(3, 1fr); }
  .dir-search { flex-direction: column; }
}

@media (max-width: 480px) {
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .form-grid--3 { grid-template-columns: 1fr; }
  .photo-previews { grid-template-columns: repeat(2, 1fr); }
  .dash-listing-card { grid-template-columns: 1fr; }
  .dash-listing-card__logo { display: none; }
}
