/* Locazone Design System - matches landing page tokens */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --lz-dark: #0d0f14;
  --lz-surface: #161922;
  --lz-card: #1c2030;
  --lz-accent: #f97316;
  --lz-accent-light: #fb923c;
  --lz-green: #22c55e;
  --lz-blue: #3b82f6;
  --lz-text: #e2e8f0;
  --lz-muted: #94a3b8;
  --lz-border: rgba(255,255,255,0.06);
  --lz-danger: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--lz-dark);
  color: var(--lz-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; }

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}
.glow-orb.orange { background: var(--lz-accent); width: 500px; height: 500px; top: -150px; right: -100px; }
.glow-orb.blue { background: var(--lz-blue); width: 400px; height: 400px; top: 300px; left: -200px; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,15,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lz-border);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--lz-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link {
  color: var(--lz-muted);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }

.nav-btn {
  background: var(--lz-accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}
.nav-btn:hover { background: var(--lz-accent-light); }

.nav-btn-ghost {
  background: transparent;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
}
.nav-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

/* LAYOUT */
main {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.page-container.narrow { max-width: 640px; }

.page-header { margin-bottom: 40px; }
.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
}
.subtitle {
  color: var(--lz-muted);
  font-size: 1.05rem;
  margin-top: 8px;
}

footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--lz-border);
  padding: 40px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--lz-muted);
}
footer span { color: var(--lz-accent); }

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--lz-accent), var(--lz-accent-light));
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,0.3); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-secondary {
  background: var(--lz-surface);
  color: var(--lz-text);
  border: 1px solid var(--lz-border);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.15); background: var(--lz-card); }

.btn-small {
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 8px;
}

.btn-danger { background: var(--lz-danger); color: #fff; border: none; padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; cursor: pointer; }
.btn-success { background: var(--lz-green); color: #fff; border: none; padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; cursor: pointer; }

.full-width { width: 100%; }

/* SEARCH BAR */
.search-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  align-items: center;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 2;
  color: var(--lz-muted);
}

.search-input, .location-input {
  background: transparent;
  border: none;
  color: var(--lz-text);
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}
.search-input::placeholder, .location-input::placeholder { color: var(--lz-muted); }

.location-input {
  flex: 1;
  border-left: 1px solid var(--lz-border);
  padding-left: 12px;
}

/* FILTERS */
.filter-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.cat-pill {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  color: var(--lz-muted);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.cat-pill:hover { border-color: rgba(249,115,22,0.3); color: var(--lz-text); }
.cat-pill.active { background: rgba(249,115,22,0.15); border-color: rgba(249,115,22,0.4); color: var(--lz-accent-light); }

.price-filter {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-input {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  color: var(--lz-text);
  padding: 8px 12px;
  border-radius: 8px;
  width: 100px;
  font-size: 0.85rem;
  outline: none;
  font-family: 'DM Sans', sans-serif;
}
.price-input:focus { border-color: var(--lz-accent); }
.price-sep { color: var(--lz-muted); }

/* LISTINGS GRID */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.listing-card {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.listing-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-4px); }

.listing-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--lz-card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lz-muted);
  font-size: 3rem;
}
.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-card-body { padding: 20px; }

.listing-card-cat {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--lz-accent-light);
  background: rgba(249,115,22,0.1);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.listing-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.listing-card-location {
  font-size: 0.85rem;
  color: var(--lz-muted);
  margin-bottom: 12px;
}

.listing-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.listing-card-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.listing-card-price span {
  font-size: 0.8rem;
  color: var(--lz-muted);
  font-weight: 400;
}

.listing-card-owner {
  font-size: 0.8rem;
  color: var(--lz-muted);
}

/* LISTING DETAIL */
.listing-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.listing-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
}
.listing-gallery img, .listing-gallery .gallery-placeholder {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: var(--lz-card);
  color: var(--lz-muted);
}
.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
}
.gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--lz-accent); }

.listing-info {
  position: sticky;
  top: 100px;
}

.listing-info-card {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.listing-info-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--lz-accent-light);
  background: rgba(249,115,22,0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.listing-info-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.listing-info-location {
  color: var(--lz-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.listing-info-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.listing-info-price span { font-size: 1rem; color: var(--lz-muted); font-weight: 400; }

.listing-info-desc {
  color: var(--lz-muted);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid var(--lz-border);
  border-bottom: 1px solid var(--lz-border);
}

.listing-owner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.listing-owner-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lz-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--lz-accent);
  font-family: 'Space Grotesk', sans-serif;
}
.listing-owner-info { font-size: 0.9rem; }
.listing-owner-info strong { color: #fff; }
.listing-owner-info p { color: var(--lz-muted); font-size: 0.8rem; }

/* BOOKING FORM */
.booking-form { margin-top: 24px; }
.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.booking-summary {
  background: var(--lz-card);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.booking-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}
.booking-row.total {
  border-top: 1px solid var(--lz-border);
  padding-top: 8px;
  margin-top: 8px;
  font-weight: 600;
  color: #fff;
}
.booking-row .label { color: var(--lz-muted); }
.booking-row .owner-info { color: var(--lz-green); font-size: 0.8rem; }

/* FORMS */
.form-card, .auth-card {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.auth-card { max-width: 440px; margin: 0 auto; }
.auth-card h1 { font-size: 1.8rem; color: #fff; margin-bottom: 8px; }

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--lz-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"],
textarea, select {
  width: 100%;
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  color: var(--lz-text);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'DM Sans', sans-serif;
}
input:focus, textarea:focus, select:focus { border-color: var(--lz-accent); }
input::placeholder, textarea::placeholder { color: rgba(148,163,184,0.6); }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

select option { background: var(--lz-card); color: var(--lz-text); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  color: var(--lz-danger);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  color: var(--lz-muted);
  font-size: 0.9rem;
}
.auth-switch a { color: var(--lz-accent); text-decoration: none; }
.auth-switch a:hover { text-decoration: underline; }

/* AUTH GATE */
.auth-gate {
  text-align: center;
  padding: 60px 20px;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
}
.auth-gate p {
  color: var(--lz-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* PHOTO UPLOAD */
.photo-upload-area {
  background: var(--lz-card);
  border: 2px dashed var(--lz-border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 120px;
}

.photo-previews {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.photo-preview {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
}
.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-preview .remove-photo {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  background: rgba(0,0,0,0.7);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-add-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: 8px;
  color: var(--lz-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.photo-add-btn:hover { border-color: var(--lz-accent); color: var(--lz-accent); }

/* COMMISSION INFO */
.commission-info {
  background: rgba(249,115,22,0.06);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--lz-muted);
}
.commission-info strong { color: var(--lz-accent); }
.earn-preview {
  margin-top: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--lz-green);
  font-weight: 600;
}

/* DASHBOARD */
.dashboard-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: var(--lz-surface);
  border-radius: var(--radius);
  padding: 4px;
  border: 1px solid var(--lz-border);
}

.tab-btn {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  color: var(--lz-muted);
  font-size: 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.tab-btn.active { background: var(--lz-card); color: #fff; }
.tab-btn:hover:not(.active) { color: var(--lz-text); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.tab-header h2 { font-size: 1.2rem; color: #fff; }

/* LISTINGS LIST (dashboard) */
.listings-list, .bookings-list { display: flex; flex-direction: column; gap: 12px; }

.list-item {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.list-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--lz-card);
  flex-shrink: 0;
}
.list-item-img-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: var(--lz-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.list-item-body { flex: 1; }
.list-item-body h3 { font-size: 1rem; color: #fff; margin-bottom: 4px; }
.list-item-body p { font-size: 0.85rem; color: var(--lz-muted); }

.list-item-actions { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }

/* STATUS BADGES */
.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}
.badge-pending { background: rgba(251,191,36,0.15); color: #fbbf24; }
.badge-confirmed { background: rgba(34,197,94,0.15); color: var(--lz-green); }
.badge-cancelled { background: rgba(239,68,68,0.15); color: var(--lz-danger); }
.badge-active { background: rgba(34,197,94,0.15); color: var(--lz-green); }

/* PROFILE */
.profile-value {
  font-size: 1.05rem;
  color: #fff;
}

/* STRIPE CONNECT SECTION */
.stripe-section {
  margin-top: 24px;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.stripe-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #fff;
}
.stripe-section-header h2 {
  font-size: 1.15rem;
  font-weight: 600;
}
.stripe-section-header svg { color: var(--lz-accent); }

.stripe-loading {
  text-align: center;
  padding: 16px;
  color: var(--lz-muted);
  font-size: 0.9rem;
}

.stripe-status {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.stripe-status-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stripe-status-icon.pending {
  background: rgba(251,191,36,0.12);
  color: #fbbf24;
}
.stripe-status-icon.connected {
  background: rgba(34,197,94,0.12);
  color: var(--lz-green);
}

.stripe-status-text {
  flex: 1;
  min-width: 180px;
}
.stripe-status-label {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.stripe-status-desc {
  color: var(--lz-muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

.btn-stripe {
  background: linear-gradient(135deg, #635bff, #7c3aed);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-stripe:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(99,91,255,0.35); }
.btn-stripe:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-stripe-outline {
  background: transparent;
  color: #a78bfa;
  border: 1px solid rgba(167,139,250,0.3);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-stripe-outline:hover { background: rgba(167,139,250,0.08); border-color: rgba(167,139,250,0.5); }
.btn-stripe-outline:disabled { opacity: 0.5; cursor: not-allowed; }

@media (max-width: 768px) {
  .stripe-status { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-stripe, .btn-stripe-outline { width: 100%; justify-content: center; }
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--lz-border);
  background: var(--lz-surface);
  color: var(--lz-muted);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.page-btn:hover { border-color: var(--lz-accent); color: var(--lz-text); }
.page-btn.active { background: var(--lz-accent); border-color: var(--lz-accent); color: #fff; }

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--lz-muted);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { color: #fff; margin-bottom: 8px; font-size: 1.1rem; }
.empty-state p { font-size: 0.9rem; margin-bottom: 20px; }

/* LOADING */
.loading-spinner {
  text-align: center;
  padding: 40px;
  color: var(--lz-muted);
}

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  color: var(--lz-text);
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  animation: slideIn 0.3s ease;
}
.toast.success { border-color: rgba(34,197,94,0.4); }
.toast.error { border-color: rgba(239,68,68,0.4); }

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

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 16px 16px; }
  .page-container { padding: 24px 16px 60px; }
  .search-bar { flex-direction: column; }
  .location-input { border-left: none; border-top: 1px solid var(--lz-border); padding: 8px 0 0; }
  .filter-section { flex-direction: column; align-items: stretch; }
  .listings-grid { grid-template-columns: 1fr; }
  .listing-detail { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-dates { grid-template-columns: 1fr; }
  .dashboard-tabs { flex-direction: column; }
  .list-item { flex-direction: column; text-align: center; }
  .list-item-actions { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .category-pills { gap: 4px; }
  .cat-pill { padding: 6px 12px; font-size: 0.8rem; }
}

/* CGU PAGE */
.cgu-page {
  padding: 40px 0 60px;
}

.cgu-page h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cgu-updated {
  color: var(--lz-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.cgu-page section {
  margin-bottom: 32px;
}

.cgu-page h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lz-accent);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lz-border);
}

.cgu-page p {
  color: var(--lz-text);
  line-height: 1.7;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.cgu-page ul {
  list-style: none;
  padding: 0;
}

.cgu-page ul li {
  color: var(--lz-text);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 6px 0 6px 20px;
  position: relative;
}

.cgu-page ul li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--lz-accent);
  font-weight: 700;
}

.cgu-footer-actions {
  display: flex;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--lz-border);
  flex-wrap: wrap;
}

/* CGU CHECKBOX */
.cgu-checkbox-group {
  margin-top: 4px;
}

.cgu-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--lz-text);
  line-height: 1.5;
  font-weight: normal;
}

.cgu-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--lz-accent);
  cursor: pointer;
  border-radius: 4px;
}

.cgu-link {
  color: var(--lz-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cgu-link:hover {
  color: var(--lz-accent-light);
}
