/* Truqo 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-link.white { color: #fff; }
.nav-link.white:hover { color: var(--lz-accent-light); }

.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); }

/* HAMBURGER MENU (mobile, logged-in only) */
.nav-mobile {
  display: none;
  align-items: center;
  gap: 12px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lz-text);
  transition: all 0.3s;
  border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(13,15,20,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--lz-border);
  flex-direction: column;
  z-index: 99;
  animation: navSlideDown 0.3s ease-out;
}

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

.nav-menu.active {
  display: flex;
}

.nav-menu a {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
  color: var(--lz-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-menu a:hover {
  background: rgba(249,115,22,0.1);
  color: var(--lz-text);
}

.nav-menu a.nav-menu-danger {
  color: var(--lz-danger);
}
.nav-menu a.nav-menu-danger:hover {
  background: rgba(239,68,68,0.1);
}

/* 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;
}

/* GEO FILTER */
.geo-filter-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.geo-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: 10px;
  padding: 8px 12px;
  min-width: 200px;
  flex: 1;
  max-width: 320px;
  color: var(--lz-muted);
}

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

.geo-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: 10px;
  margin-top: 4px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  overflow: hidden;
}

.geo-suggestion-item {
  padding: 10px 14px;
  font-size: 0.88rem;
  color: var(--lz-text);
  cursor: pointer;
  border-bottom: 1px solid var(--lz-border);
  transition: background 0.15s;
}
.geo-suggestion-item:last-child { border-bottom: none; }
.geo-suggestion-item:hover { background: rgba(249,115,22,0.08); color: var(--lz-accent-light); }


.radius-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.radius-select {
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.4);
  color: var(--lz-accent-light);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  cursor: pointer;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.btn-clear-geo {
  background: transparent;
  border: 1px solid var(--lz-border);
  color: var(--lz-muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.btn-clear-geo:hover { border-color: #ef4444; color: #ef4444; }


.listing-card-distance {
  display: inline-block;
  background: rgba(249,115,22,0.15);
  color: var(--lz-accent-light);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 4px;
  vertical-align: middle;
}

/* 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-forgot {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 4px;
  font-size: 0.85rem;
}
.auth-forgot a { color: var(--lz-muted); text-decoration: none; }
.auth-forgot a:hover { color: var(--lz-accent); text-decoration: underline; }

.form-success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  color: #4ade80;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

/* 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: #FF6B00; color: #fff; font-weight: 600; }
.tab-btn:hover:not(.active) { color: var(--lz-text); background: rgba(255,107,0,0.08); }

.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; flex-wrap: wrap; }

/* 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); }
.badge-inactive { background: rgba(156,163,175,0.15); color: #9ca3af; }

.btn-outline-danger { padding: 6px 14px; font-size: 0.8rem; border-radius: 8px; cursor: pointer; background: transparent; color: var(--lz-danger); border: 1px solid var(--lz-danger); transition: background 0.15s; }
.btn-outline-danger:hover { background: rgba(239,68,68,0.1); }
.btn-outline-success { padding: 6px 14px; font-size: 0.8rem; border-radius: 8px; cursor: pointer; background: transparent; color: var(--lz-green); border: 1px solid var(--lz-green); transition: background 0.15s; }
.btn-outline-success:hover { background: rgba(34,197,94,0.1); }
.btn-outline-blue { padding: 6px 14px; font-size: 0.8rem; border-radius: 8px; cursor: pointer; background: transparent; color: var(--lz-blue); border: 1px solid var(--lz-blue); transition: background 0.15s; text-decoration: none; display: inline-block; font-weight: 500; }
.btn-outline-blue:hover { background: rgba(59,130,246,0.1); }

.list-item--inactive { opacity: 0.7; border-style: dashed; }

/* 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: 12px 16px; }
  .nav-links { gap: 8px; }
  .nav-link { padding: 8px 10px; font-size: 0.85rem; white-space: nowrap; }
  .nav-btn { padding: 8px 14px; font-size: 0.85rem; white-space: nowrap; }
  .nav-btn-ghost { padding: 8px 10px; font-size: 0.85rem; white-space: nowrap; }
  #nav-auth { display: flex; align-items: center; gap: 8px; }

  /* Logged-in mobile: hide full nav, show hamburger + Publier CTA */
  body.logged-in #nav-links { display: none; }
  body.logged-in .nav-mobile { display: flex; }

  .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; }
  .geo-filter-section { flex-direction: column; align-items: stretch; }
  .geo-input-wrap { max-width: 100%; }
.radius-wrap { justify-content: space-between; }
  .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 { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .dashboard-tabs::-webkit-scrollbar { display: none; }
  .tab-btn { flex: 0 0 auto; white-space: nowrap; font-size: 0.85rem; padding: 10px 14px; }
  .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);
}

/* HOW IT WORKS PAGE */
.hiw-hero {
  text-align: center;
  padding: 20px 0 60px;
}
.hiw-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.hiw-hero .subtitle {
  font-size: 1.1rem;
  color: var(--lz-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

.hiw-section {
  margin-bottom: 60px;
}

.hiw-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--lz-accent);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hiw-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}

.hiw-step {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.hiw-step:hover {
  border-color: rgba(249,115,22,0.25);
  transform: translateY(-3px);
}

.hiw-step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  user-select: none;
}

.hiw-step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.hiw-step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.hiw-step p {
  font-size: 0.88rem;
  color: var(--lz-muted);
  line-height: 1.65;
}

.hiw-divider {
  border: none;
  border-top: 1px solid var(--lz-border);
  margin: 16px 0 56px;
}

/* FAQ */
.hiw-faq {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
}

.hiw-faq h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

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

.faq-item {
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius);
  padding: 20px;
}

.faq-item .faq-q {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--lz-text);
  margin-bottom: 6px;
}

.faq-item .faq-a {
  font-size: 0.85rem;
  color: var(--lz-muted);
  line-height: 1.5;
}
.faq-item .faq-a strong {
  color: var(--lz-accent);
}

/* CTA BOTTOM */
.hiw-cta {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(135deg, rgba(249,115,22,0.08) 0%, rgba(59,130,246,0.06) 100%);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.hiw-cta h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 10px;
}
.hiw-cta p {
  color: var(--lz-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.hiw-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hiw-steps { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .hiw-faq { padding: 28px 20px; }
  .hiw-cta { padding: 40px 16px; }
}

/* ==================== FAVORITES ==================== */

/* Wrapper is transparent — just provides a block context */
.listing-card-wrap {
  display: contents;
}

/* Make image container position:relative so heart button can overlay */
.listing-card-img {
  position: relative;
}

/* Heart button on listing cards */
.fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s, color 0.15s, transform 0.15s;
  padding: 0;
  flex-shrink: 0;
}
.fav-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
.fav-btn:hover {
  background: rgba(0,0,0,0.65);
  color: #ff4d6d;
  transform: scale(1.1);
}
.fav-btn:hover svg { transform: scale(1.15); }
.fav-btn:active { transform: scale(0.95); }

/* Active (favorited) state */
.fav-btn--active {
  color: #ff4d6d;
  background: rgba(255,77,109,0.18);
}
.fav-btn--active:hover {
  background: rgba(255,77,109,0.28);
}

/* Dimmed card for unavailable listings */
.listing-card--dim {
  opacity: 0.55;
}
.listing-card--dim:hover { transform: none; }

/* Unavailable badge overlay */
.listing-card-unavailable {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.75);
  color: #e2e8f0;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

/* Larger heart button for listing detail page */
.fav-btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--lz-border);
  border-radius: 10px;
  color: var(--lz-muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.15s, border-color 0.15s, transform 0.15s;
  margin: 12px 0 16px;
  font-family: 'DM Sans', sans-serif;
}
.fav-btn-detail:hover {
  background: rgba(255,77,109,0.12);
  border-color: rgba(255,77,109,0.35);
  color: #ff4d6d;
  transform: translateY(-1px);
}
.fav-btn-detail--active,
.fav-btn-detail.fav-btn--active {
  background: rgba(255,77,109,0.15);
  border-color: rgba(255,77,109,0.4);
  color: #ff4d6d;
}

/* Remove from favorites button in dashboard */
.fav-remove-btn {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--lz-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  transition: color 0.15s;
}
.fav-remove-btn:hover { color: #ff4d6d; }

/* ==================== DEPOSIT / CAUTION STYLES ==================== */
.btn-warning { background: #f59e0b; color: #fff; border: none; padding: 6px 14px; border-radius: 8px; font-size: 0.8rem; cursor: pointer; }
.btn-warning:hover { background: #d97706; }

.deposit-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 5px;
}
.deposit-tag.deposit-pending { background: rgba(249,115,22,0.12); color: #fb923c; border: 1px solid rgba(249,115,22,0.25); }
.deposit-tag.deposit-ok { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.deposit-tag.deposit-claimed { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.25); }
.deposit-tag.deposit-captured { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.2); }
.deposit-tag.deposit-disputed { background: rgba(139,92,246,0.1); color: #a78bfa; border: 1px solid rgba(139,92,246,0.2); }

/* ==================== MESSAGING STYLES ==================== */

/* Nav messages badge */
.nav-messages-link { position: relative; display: inline-flex; align-items: center; gap: 4px; }
.nav-unread-badge {
  position: absolute; top: -6px; right: -10px;
  min-width: 18px; height: 18px;
  background: var(--lz-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Dashboard tab unread badge */
.unread-badge {
  min-width: 16px; height: 16px;
  background: var(--lz-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 8px;
  padding: 0 3px;
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Messages layout: 2-column on desktop, stacked on mobile */
.messages-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--lz-surface);
  height: 500px;
}
.messages-layout--full {
  height: calc(100vh - 220px);
  min-height: 400px;
  max-height: 720px;
}

/* Conversations panel (left) */
.conversations-panel {
  border-right: 1px solid var(--lz-border);
  overflow-y: auto;
  background: var(--lz-card);
}

/* Conversation item */
.conv-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--lz-border);
  transition: background .15s;
  position: relative;
}
.conv-item:hover { background: rgba(255,255,255,0.04); }
.conv-item--active { background: rgba(249,115,22,0.1) !important; border-left: 3px solid var(--lz-accent); }
.conv-item--unread .conv-item-preview { color: var(--lz-text); }

.conv-item-img {
  width: 44px; height: 44px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.conv-item-img img { width: 100%; height: 100%; object-fit: cover; }

.conv-item-body { flex: 1; min-width: 0; }
.conv-item-header { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 2px; }
.conv-item-name { font-weight: 600; font-size: .9rem; color: var(--lz-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-item-time { font-size: .75rem; color: var(--lz-muted); flex-shrink: 0; }
.conv-item-listing { font-size: .78rem; color: var(--lz-muted); margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-item-preview { font-size: .82rem; color: var(--lz-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-item-preview--bold { color: var(--lz-text); font-weight: 600; }

.conv-unread-dot {
  min-width: 20px; height: 20px;
  background: var(--lz-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 10px;
  padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  align-self: center;
}

.conv-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; padding: 32px 16px;
}

/* Thread / conversation view (right) */
.conversation-view {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--lz-surface);
}

.conversation-empty {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--lz-muted);
}
.conversation-empty-icon { font-size: 3rem; margin-bottom: 12px; }

/* Thread header */
.thread-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--lz-border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-shrink: 0;
  background: var(--lz-card);
}
.thread-header-info { display: flex; align-items: center; gap: 12px; min-width: 0; }
.thread-header-img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.thread-header-img-placeholder { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.thread-header-title { font-weight: 600; font-size: .95rem; color: var(--lz-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thread-header-sub { font-size: .78rem; color: var(--lz-muted); }
.thread-booking-link { flex-shrink: 0; }

/* Messages scroll area */
.thread-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px 8px;
  display: flex; flex-direction: column; gap: 4px;
}

/* Date divider */
.msg-date-divider {
  text-align: center;
  margin: 12px 0 8px;
}
.msg-date-divider span {
  background: rgba(255,255,255,0.06);
  color: var(--lz-muted);
  font-size: .75rem;
  padding: 3px 12px;
  border-radius: 10px;
}

/* Message bubbles */
.msg-bubble-wrap { display: flex; margin-bottom: 6px; }
.msg-bubble-wrap--mine { justify-content: flex-end; }

.msg-bubble {
  max-width: 72%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: .9rem;
  line-height: 1.5;
}
.msg-bubble--theirs {
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  border-bottom-left-radius: 4px;
  color: var(--lz-text);
}
.msg-bubble--mine {
  background: var(--lz-accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.msg-content { white-space: pre-wrap; word-break: break-word; }
.msg-meta { font-size: .72rem; margin-top: 4px; opacity: .7; }
.msg-bubble--mine .msg-meta { text-align: right; }

.no-messages {
  text-align: center;
  color: var(--lz-muted);
  font-size: .9rem;
  margin: 40px auto;
}

/* Message input area */
.thread-input {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--lz-border);
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
  background: var(--lz-card);
}
.msg-textarea {
  flex: 1;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: 12px;
  color: var(--lz-text);
  font-family: inherit;
  font-size: .9rem;
  padding: 10px 14px;
  resize: none;
  outline: none;
  transition: border-color .2s;
  min-height: 40px;
  max-height: 120px;
}
.msg-textarea:focus { border-color: var(--lz-accent); }
.msg-textarea::placeholder { color: var(--lz-muted); }

.msg-send-btn {
  width: 42px; height: 42px;
  background: var(--lz-accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s, transform .1s;
}
.msg-send-btn:hover { background: var(--lz-accent-light); }
.msg-send-btn:active { transform: scale(.95); }
.msg-send-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Mobile: stack conversations on top of thread */
@media (max-width: 700px) {
  .messages-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    max-height: none;
  }
  .conversations-panel {
    border-right: none;
    border-bottom: 1px solid var(--lz-border);
    max-height: 200px;
    overflow-y: auto;
  }
  .conversation-view {
    min-height: 350px;
  }
  .messages-layout--full {
    height: auto;
    max-height: none;
  }
  .thread-messages {
    max-height: 320px;
  }
  .msg-bubble { max-width: 88%; }
}
.deposit-tag.deposit-released { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }

/* ==================== NAV UNREAD BADGE ==================== */
.nav-unread-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ef4444;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  padding: 0 4px;
  margin-left: 4px;
  line-height: 1;
  vertical-align: middle;
}

/* ==================== CONTACT OWNER BUTTON ==================== */
.btn-contact-owner {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  margin: 16px 0 0;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border: 1.5px solid rgba(99, 102, 241, 0.35);
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-contact-owner:hover {
  background: rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.6);
  color: #a5b4fc;
}
.btn-contact-owner:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ==================== NEW MESSAGES PAGE UI ==================== */

.page-container.lz-messages-page {
  padding: 24px 24px 0;
  max-width: 1280px;
}

.lz-msg-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  height: calc(100vh - 130px);
  min-height: 500px;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: 16px;
  overflow: hidden;
}

/* Sidebar: conversation list */
.lz-msg-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--lz-border);
  overflow: hidden;
}
.lz-msg-sidebar-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--lz-border);
  flex-shrink: 0;
}
.lz-msg-sidebar-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
#lz-conv-items {
  flex: 1;
  overflow-y: auto;
}

/* Conversation item */
.lz-conv-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--lz-border);
  transition: background .15s;
  position: relative;
}
.lz-conv-item:hover { background: rgba(255,255,255,0.04); }
.lz-conv-item--active { background: rgba(99,102,241,0.1); }
.lz-conv-item--unread .lz-conv-preview { color: var(--lz-text); }

.lz-conv-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.lz-conv-body { flex: 1; min-width: 0; }
.lz-conv-row1 { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; }
.lz-conv-name { font-weight: 600; color: var(--lz-text); font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.lz-conv-time { font-size: .72rem; color: var(--lz-muted); flex-shrink: 0; }
.lz-conv-listing { font-size: .75rem; color: var(--lz-accent); margin: 2px 0 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lz-conv-preview { font-size: .82rem; color: var(--lz-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lz-conv-preview--bold { font-weight: 600; color: var(--lz-text); }

.lz-unread-dot {
  min-width: 20px; height: 20px;
  background: #6366f1;
  color: #fff;
  border-radius: 10px;
  font-size: .7rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  flex-shrink: 0;
}

/* Thread panel */
.lz-msg-thread {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--lz-dark);
}
.lz-msg-thread-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--lz-muted);
  font-size: .95rem;
  text-align: center;
}

/* Thread header */
.lz-thread-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--lz-border);
  background: var(--lz-surface);
  flex-shrink: 0;
}
.lz-thread-back {
  color: var(--lz-muted);
  cursor: pointer;
  display: none; /* shown on mobile */
  padding: 4px;
}
.lz-thread-back:hover { color: var(--lz-text); }
.lz-thread-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lz-thread-info { flex: 1; min-width: 0; }
.lz-thread-name { font-weight: 600; color: #fff; font-size: .95rem; }
.lz-thread-listing { font-size: .78rem; color: var(--lz-accent); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.lz-thread-listing-link {
  color: var(--lz-muted);
  text-decoration: none;
  padding: 6px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  flex-shrink: 0;
}
.lz-thread-listing-link:hover { color: var(--lz-text); background: rgba(255,255,255,0.06); }

/* Messages area */
.lz-thread-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lz-msg-date {
  text-align: center;
  margin: 12px 0 8px;
}
.lz-msg-date span {
  background: rgba(255,255,255,0.06);
  color: var(--lz-muted);
  font-size: .72rem;
  padding: 3px 12px;
  border-radius: 10px;
}

.lz-msg-row {
  display: flex;
  margin-bottom: 4px;
}
.lz-msg-row--mine { justify-content: flex-end; }

.lz-msg-bubble {
  max-width: 70%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: .9rem;
  line-height: 1.5;
}
.lz-msg-bubble--theirs {
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  border-bottom-left-radius: 4px;
  color: var(--lz-text);
}
.lz-msg-bubble--mine {
  background: #4f46e5;
  color: #fff;
  border-bottom-right-radius: 4px;
}
.lz-msg-text { white-space: pre-wrap; word-break: break-word; }
.lz-msg-time {
  font-size: .68rem;
  opacity: .65;
  margin-top: 4px;
  text-align: right;
}

/* Thread input */
.lz-thread-input {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid var(--lz-border);
  background: var(--lz-surface);
  flex-shrink: 0;
}
.lz-msg-textarea {
  flex: 1;
  background: var(--lz-dark);
  border: 1px solid var(--lz-border);
  border-radius: 12px;
  color: var(--lz-text);
  font-family: inherit;
  font-size: .9rem;
  padding: 10px 14px;
  resize: none;
  outline: none;
  transition: border-color .2s;
  min-height: 42px;
  max-height: 120px;
}
.lz-msg-textarea:focus { border-color: #6366f1; }
.lz-msg-textarea::placeholder { color: var(--lz-muted); }

.lz-send-btn {
  width: 44px; height: 44px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s, transform .1s;
}
.lz-send-btn:hover { background: #4338ca; }
.lz-send-btn:active { transform: scale(.95); }
.lz-send-btn:disabled { opacity: .5; cursor: not-allowed; }

/* Mobile layout */
.lz-hidden-mobile { display: none !important; }

@media (max-width: 700px) {
  .lz-msg-layout {
    grid-template-columns: 1fr;
    height: calc(100vh - 100px);
  }

  .lz-msg-sidebar {
    border-right: none;
  }

  .lz-msg-thread {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
    display: none;
  }
  .lz-msg-thread.lz-mobile-visible {
    display: flex;
  }
  .lz-thread-back { display: block; }

  .lz-msg-bubble { max-width: 85%; }
}

@media (min-width: 701px) {
  .lz-msg-sidebar.lz-hidden-mobile,
  .lz-msg-thread.lz-hidden-mobile {
    display: flex !important;
  }
}

/* ==================== RESERVATION REQUESTS ==================== */

/* Status badges */
.res-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.badge-res-pending   { background: rgba(251,191,36,0.15);  color: #fbbf24; }
.badge-res-accepted  { background: rgba(34,197,94,0.15);   color: #22c55e; }
.badge-res-rejected  { background: rgba(239,68,68,0.15);   color: #ef4444; }
.badge-res-cancelled { background: rgba(148,163,184,0.15); color: #94a3b8; }
.badge-res-confirmed { background: rgba(59,130,246,0.15);  color: #3b82f6; }

/* Section title */
.res-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lz-text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

/* List */
.res-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.res-card {
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.res-card:hover { border-color: rgba(255,255,255,0.12); }

.res-card-link {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  text-decoration: none;
  color: inherit;
}
.res-card-link:hover { background: rgba(255,255,255,0.02); }

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

.res-card-body {
  flex: 1;
  min-width: 0;
}
.res-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lz-text);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.res-card-dates {
  font-size: 0.82rem;
  color: var(--lz-muted);
  margin-bottom: 4px;
}
.res-card-counterparty {
  font-size: 0.82rem;
  color: var(--lz-muted);
  margin-bottom: 4px;
}
.res-card-message {
  font-size: 0.82rem;
  color: var(--lz-muted);
  font-style: italic;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.res-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--lz-border);
  gap: 12px;
  flex-wrap: wrap;
}

.res-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.res-btn-accept {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.res-btn-accept:hover { background: rgba(34,197,94,0.25); }
.res-btn-accept:disabled { opacity: 0.5; cursor: not-allowed; }

.res-btn-reject {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.25);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.res-btn-reject:hover { background: rgba(239,68,68,0.2); }
.res-btn-reject:disabled { opacity: 0.5; cursor: not-allowed; }

.res-btn-cancel {
  background: rgba(148,163,184,0.1);
  color: var(--lz-muted);
  border: 1px solid rgba(148,163,184,0.2);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.res-btn-cancel:hover { background: rgba(148,163,184,0.2); }
.res-btn-cancel:disabled { opacity: 0.5; cursor: not-allowed; }

.res-btn-pay {
  background: rgba(249,115,22,0.15);
  color: #f97316;
  border: 1px solid rgba(249,115,22,0.3);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.res-btn-pay:hover { background: rgba(249,115,22,0.25); }
.res-btn-pay:disabled { opacity: 0.5; cursor: not-allowed; }

.res-btn-review {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.35);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.res-btn-review:hover { background: rgba(245,158,11,0.25); }
.res-btn-review:disabled { opacity: 0.5; cursor: not-allowed; }

/* Listing reviews section on detail page */
.listing-reviews-section {
  max-width: 720px;
  margin: 32px auto 0;
  padding: 24px;
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius);
}
.review-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--lz-border);
}
.review-item:last-child { border-bottom: none; }
.review-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.review-author {
  font-weight: 600;
  color: var(--lz-text);
  font-size: .9rem;
}
.review-stars {
  color: #f59e0b;
  font-size: .95rem;
  letter-spacing: 1px;
}
.review-date {
  color: var(--lz-muted);
  font-size: .78rem;
  margin-left: auto;
}
.review-comment {
  color: var(--lz-muted);
  font-size: .88rem;
  margin: 0;
  line-height: 1.5;
}

/* Empty state */
.res-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--lz-muted);
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius);
}

/* Summary inside reservation form */
.res-summary {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--lz-border);
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 12px;
}

@media (max-width: 480px) {
  .res-card-link { gap: 12px; }
  .res-card-thumb { width: 64px; height: 64px; }
  .res-card-footer { flex-direction: column; align-items: flex-start; }
}

/* ==================== DEVENIR LOUEUR PAGE ==================== */

.dl-page {
  overflow-x: hidden;
}

/* ---- EARLY ADOPTER BAR (top of page) ---- */
.dl-early-bar {
  background: linear-gradient(135deg, #c2410c 0%, #f97316 60%, #fb923c 100%);
  padding: 0 24px;
}

.dl-early-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.dl-early-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.dl-early-badge {
  flex-shrink: 0;
  background: rgba(0,0,0,0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}

.dl-early-text {
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.4;
}

.dl-early-text strong { color: #fff; }

.dl-early-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.dl-early-progress-wrap {
  width: 100px;
  height: 6px;
  background: rgba(0,0,0,0.2);
  border-radius: 99px;
  overflow: hidden;
}

.dl-early-bar-fill {
  height: 100%;
  background: #fff;
  border-radius: 99px;
  transition: width 0.6s ease;
}

.dl-early-count {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.dl-early-cta {
  flex-shrink: 0;
  background: #fff;
  color: #c2410c;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s;
}
.dl-early-cta:hover { background: #fff7ed; }

@media (max-width: 640px) {
  .dl-early-bar-right { display: none; }
  .dl-early-cta { display: none; }
  .dl-early-text { font-size: 0.88rem; }
}

/* ---- TESTIMONIALS SECTION ---- */
.dl-testimonials-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--lz-border);
  background: rgba(255,255,255,0.015);
}

.dl-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dl-testi-card {
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.dl-testi-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-2px); }

.dl-testi-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--lz-accent);
  opacity: 0.35;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.dl-testi-text {
  font-size: 0.95rem;
  color: var(--lz-text);
  line-height: 1.65;
  margin-bottom: 20px;
}

.dl-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dl-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,115,22,0.25), rgba(249,115,22,0.1));
  border: 1px solid rgba(249,115,22,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--lz-accent);
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}

.dl-testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--lz-text);
}

.dl-testi-meta {
  font-size: 0.78rem;
  color: var(--lz-muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .dl-testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .dl-testimonials-grid { grid-template-columns: 1fr; }
  .dl-testimonials-section { padding: 52px 0; }
}

/* ---- FAQ ACCORDION ---- */
.dl-faq-accordion { gap: 0; border: 1px solid var(--lz-border); border-radius: var(--radius-lg); overflow: hidden; }

.dl-acc-item {
  border-bottom: 1px solid var(--lz-border);
}
.dl-acc-item:last-child { border-bottom: none; }

.dl-acc-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--lz-text);
  font-family: 'Space Grotesk', sans-serif;
  transition: background 0.15s;
}
.dl-acc-trigger:hover { background: rgba(249,115,22,0.04); }
.dl-acc-item.dl-acc-open .dl-acc-trigger { background: rgba(249,115,22,0.05); color: var(--lz-accent); }

.dl-acc-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--lz-accent);
  line-height: 1;
  transition: transform 0.2s;
}
.dl-acc-item.dl-acc-open .dl-acc-icon { transform: rotate(45deg); }

.dl-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.dl-acc-body p {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--lz-muted);
  line-height: 1.65;
  margin: 0;
}
.dl-acc-body p strong { color: var(--lz-text); }

/* ---- STICKY MOBILE CTA ---- */
.dl-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px 20px;
  background: linear-gradient(to top, var(--lz-bg) 60%, transparent);
  transition: transform 0.3s ease;
}

.dl-sticky-cta-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--lz-accent), var(--lz-accent-light));
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 20px;
  border-radius: var(--radius);
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(249,115,22,0.4);
}

/* Shared inner wrapper */
.dl-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.dl-section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lz-accent);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

.dl-section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--lz-text);
  margin-bottom: 48px;
  line-height: 1.2;
}

/* ---- HERO ---- */
.dl-hero {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(249,115,22,0.12) 0%, transparent 70%),
              linear-gradient(180deg, rgba(249,115,22,0.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--lz-border);
  padding: 80px 0 72px;
  text-align: center;
}

.dl-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.dl-hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lz-accent);
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 20px;
  padding: 5px 16px;
  margin-bottom: 28px;
}

.dl-hero-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--lz-text);
  margin-bottom: 20px;
}

.dl-hero-accent {
  background: linear-gradient(135deg, var(--lz-accent), var(--lz-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dl-hero-subtitle {
  font-size: 1.15rem;
  color: var(--lz-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

.dl-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--lz-accent), var(--lz-accent-light));
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 18px rgba(249,115,22,0.25);
  margin-bottom: 32px;
}
.dl-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.38); }

.dl-cta-btn-sm {
  font-size: 0.9rem;
  padding: 12px 22px;
  margin-bottom: 0;
}

.dl-cta-btn-lg {
  font-size: 1.15rem;
  padding: 18px 36px;
}

.dl-cta-arrow {
  transition: transform 0.2s ease;
}
.dl-cta-btn:hover .dl-cta-arrow { transform: translateX(4px); }

.dl-hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--lz-muted);
}

/* ---- STEPS SECTION ---- */
.dl-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--lz-border);
}

.dl-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.dl-step {
  flex: 1;
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.dl-step:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-3px); }

.dl-step-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}

.dl-step-num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--lz-accent);
  opacity: 0.7;
  font-family: 'Space Grotesk', sans-serif;
}

.dl-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--lz-text);
  margin-bottom: 10px;
}

.dl-step p {
  font-size: 0.9rem;
  color: var(--lz-muted);
  line-height: 1.6;
}

.dl-step-connector {
  width: 40px;
  flex-shrink: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lz-accent), rgba(249,115,22,0.2));
  align-self: center;
  margin: 0 -1px;
  position: relative;
  z-index: 1;
}

/* ---- TRUST SECTION ---- */
.dl-trust-section {
  padding: 72px 0;
  background: rgba(255,255,255,0.015);
  border-bottom: 1px solid var(--lz-border);
}

.dl-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dl-trust-card {
  background: var(--lz-card);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.dl-trust-card:hover { border-color: rgba(249,115,22,0.25); transform: translateY(-2px); }

.dl-trust-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}

.dl-trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lz-text);
  margin-bottom: 8px;
}

.dl-trust-card p {
  font-size: 0.88rem;
  color: var(--lz-muted);
  line-height: 1.65;
}

/* ---- ESTIMATE SECTION ---- */
.dl-estimate-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--lz-border);
}

.dl-estimate-card {
  background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, rgba(249,115,22,0.02) 100%);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: 24px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.dl-estimate-text .dl-section-label { margin-bottom: 12px; }
.dl-estimate-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--lz-text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.dl-estimate-text p {
  font-size: 0.95rem;
  color: var(--lz-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.dl-estimate-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dl-estimate-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--lz-border);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.dl-estimate-item:hover { border-color: rgba(249,115,22,0.3); }

.dl-estimate-emoji { font-size: 1.5rem; }

.dl-estimate-label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--lz-text);
}

.dl-estimate-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lz-accent);
  font-family: 'Space Grotesk', sans-serif;
}

/* ---- FAQ ---- */
.dl-faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dl-faq-item {
  background: var(--lz-surface);
  border: 1px solid var(--lz-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color 0.2s;
}
.dl-faq-item:hover { border-color: rgba(249,115,22,0.25); }

.dl-faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lz-text);
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.dl-faq-a {
  font-size: 0.9rem;
  color: var(--lz-muted);
  line-height: 1.65;
}

.dl-faq-a strong { color: var(--lz-text); }

/* ---- FINAL CTA ---- */
.dl-final-cta {
  padding: 80px 0 72px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(249,115,22,0.08) 0%, transparent 70%);
}

.dl-final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--lz-text);
  margin-bottom: 16px;
}

.dl-final-cta p {
  font-size: 1.05rem;
  color: var(--lz-muted);
  margin-bottom: 36px;
}

.dl-final-note {
  font-size: 0.8rem;
  color: var(--lz-muted);
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  opacity: 0.7;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .dl-trust-grid { grid-template-columns: 1fr 1fr; }
  .dl-estimate-card { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .dl-hero { padding: 56px 0 52px; }
  .dl-steps { flex-direction: column; gap: 16px; }
  .dl-step-connector { display: none; }
  .dl-trust-grid { grid-template-columns: 1fr; }
  .dl-estimate-card { padding: 36px 24px; }
  .dl-section { padding: 52px 0; }
  .dl-trust-section { padding: 52px 0; }
  .dl-estimate-section { padding: 52px 0; }
  .dl-final-cta { padding: 60px 0 52px; }
  .dl-hero-trust { flex-direction: column; gap: 8px; align-items: center; }
}
