
:root {
  --primary: #FF385C;
  --primary-dark: #E0305A;
  --sec: #2333FF;
  --text: #222222;
  --muted: #717171;
  --border: #DDDDDD;
  --bg: #FFFFFF;
  --bg-light: #F7F7F7;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow: 0 2px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); line-height: 1.5; -webkit-font-smoothing: antialiased; min-height: 100vh; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── BRAND ── */
.brand { display: inline-flex; align-items: center; gap: 0; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; }
.brand .resolve { color: #222; }
.brand .sec { color: #2333FF; }
.brand .sfx { color: #222; }

/* ── NAV ── */
.bnb-nav {
  position: sticky; top: 0; z-index: 200; background: #fff;
  border-bottom: 1px solid var(--border);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 16px; padding: 0 24px; height: 80px;
}
.nav-search-pill {
  display: flex; align-items: stretch; border: 1px solid var(--border);
  border-radius: 40px; box-shadow: var(--shadow-sm); max-width: 500px;
  width: 100%; margin: 0 auto; overflow: hidden; height: 48px;
  transition: box-shadow 0.18s;
}
.nav-search-pill:hover { box-shadow: var(--shadow); }
.search-seg {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 0 16px; cursor: pointer; border: none; background: none;
  border-right: 1px solid var(--border); min-width: 0;
}
.search-seg:last-of-type { border-right: none; flex: 0 0 auto; padding: 0 8px; }
.s-label { font-size: 10px; font-weight: 700; color: var(--text); white-space: nowrap; }
.s-val { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.s-val input, .s-val select { border: none; outline: none; background: none; font-size: 12px; color: var(--muted); width: 100%; cursor: pointer; padding: 0; }
.search-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; margin: 4px; transition: background 0.18s; }
.search-btn:hover { background: var(--primary-dark); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 13px; font-weight: 500; padding: 8px 12px; border-radius: 20px; color: var(--text); transition: background 0.18s; white-space: nowrap; }
.nav-link:hover { background: var(--bg-light); }
.btn-signup { font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 20px; background: var(--text); color: #fff; transition: opacity 0.18s; }
.btn-signup:hover { opacity: 0.85; }
.avatar-menu { position: relative; }
.avatar-btn { display: flex; align-items: center; gap: 8px; padding: 4px 8px 4px 12px; border: 1px solid var(--border); border-radius: 20px; background: #fff; transition: box-shadow 0.18s; }
.avatar-btn:hover { box-shadow: var(--shadow); }
.avatar-thumb { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.avatar-fallback { width: 30px; height: 30px; border-radius: 50%; background: #484848; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 600; }
.avatar-dropdown { position: absolute; top: calc(100% + 8px); right: 0; min-width: 200px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); overflow: hidden; display: none; z-index: 300; }
.avatar-menu.open .avatar-dropdown { display: block; }
.avatar-dropdown a { display: block; padding: 10px 16px; font-size: 13px; color: var(--text); transition: background 0.18s; }
.avatar-dropdown a:hover { background: var(--bg-light); }
.avatar-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* ── CATEGORIES BAR ── */
.cats-bar { display: flex; overflow-x: auto; padding: 0 24px; border-bottom: 1px solid var(--border); scrollbar-width: none; position: sticky; top: 80px; z-index: 100; background: #fff; }
.cats-bar::-webkit-scrollbar { display: none; }
.cat-item { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 16px; min-width: 72px; color: var(--muted); font-size: 11px; font-weight: 500; border-bottom: 2px solid transparent; transition: color 0.18s, border-color 0.18s; white-space: nowrap; flex-shrink: 0; }
.cat-item:hover { color: var(--text); border-bottom-color: var(--text); }
.cat-item.active { color: var(--text); border-bottom-color: var(--text); }
.cat-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.cat-icon svg { width: 24px; height: 24px; }

/* ── LISTINGS GRID ── */
.listings-section { padding: 24px 24px 48px; max-width: 1400px; margin: 0 auto; }
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.listing-card { display: block; text-decoration: none; color: inherit; transition: transform 0.18s; }
.listing-card:hover { transform: translateY(-2px); }
.listing-photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--bg-light); }
.listing-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.listing-card:hover .listing-photo img { transform: scale(1.03); }
.listing-heart { position: absolute; top: 10px; right: 10px; z-index: 2; background: none; border: none; cursor: pointer; padding: 4px; filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3)); color: white; transition: transform 0.15s; }
.listing-heart:hover { transform: scale(1.15); }
.listing-heart.saved { color: var(--primary); filter: none; }
.listing-superhost { position: absolute; top: 10px; left: 10px; background: white; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 700; }
.listing-info { padding: 10px 0 0; }
.listing-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.listing-loc { font-size: 14px; font-weight: 600; color: var(--text); flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.listing-rating { display: flex; align-items: center; gap: 3px; font-size: 13px; font-weight: 500; flex-shrink: 0; }
.listing-dates { font-size: 13px; color: var(--muted); margin-top: 2px; }
.listing-price { margin-top: 4px; font-size: 14px; }
.listing-price strong { font-weight: 600; }
.listing-price span { color: var(--muted); }

/* ── HERO ── */
.hero { background: linear-gradient(135deg, #FF385C 0%, #D93B5F 50%, #2333FF 100%); padding: 64px 24px; text-align: center; color: white; }
.hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; margin-bottom: 12px; }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
.hero-cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.btn-hero-primary { background: white; color: var(--primary); font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 8px; transition: transform 0.18s; }
.btn-hero-primary:hover { transform: translateY(-2px); }
.btn-hero-secondary { background: rgba(255,255,255,0.15); color: white; font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3); transition: background 0.18s; }
.btn-hero-secondary:hover { background: rgba(255,255,255,0.25); }

/* ── SEARCH LAYOUT ── */
.search-layout { display: flex; gap: 24px; padding: 24px; max-width: 1400px; margin: 0 auto; align-items: flex-start; }
.search-filters { width: 280px; flex-shrink: 0; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 152px; }
.filter-section { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; }
.filter-title { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 8px; cursor: pointer; }
.filter-option input { cursor: pointer; }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-field { display: flex; align-items: center; flex: 1; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.price-prefix { padding: 0 6px; font-size: 12px; color: var(--muted); background: var(--bg-light); border-right: 1px solid var(--border); white-space: nowrap; }
.price-field .price-input { border: none; border-radius: 0; flex: 1; min-width: 0; padding: 8px 6px; }
.price-sep { color: var(--muted); flex-shrink: 0; }
.price-input { flex: 1; padding: 8px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; outline: none; }
.price-input:focus { border-color: var(--text); }
.btn-apply-filters { width: 100%; padding: 10px; background: var(--text); color: white; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; margin-top: 8px; transition: opacity 0.18s; }
.btn-apply-filters:hover { opacity: 0.8; }
.search-results { flex: 1; min-width: 0; }
.search-results-title { font-size: 14px; color: var(--muted); margin-bottom: 16px; }

/* ── PROPERTY PAGE ── */
.property-page { max-width: 1120px; margin: 0 auto; padding: 24px 24px 64px; }
.property-header { margin-bottom: 16px; }
.property-back { font-size: 14px; font-weight: 500; color: var(--text); padding: 0; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.property-back:hover { text-decoration: underline; }
.property-title { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.property-meta-row { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 14px; }
.rating-stars { font-weight: 600; }
.meta-dot { color: var(--muted); }
.superhost-badge { font-weight: 600; }
.photo-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 200px 200px; gap: 8px; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.photo-grid .photo-main { grid-row: span 2; }
.photo-grid img, .photo-grid .photo-main img { width: 100%; height: 100%; object-fit: cover; }
.photo-grid-single { height: 400px; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.property-body { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: flex-start; }
.property-info { min-width: 0; }
.property-info h2 { font-size: 20px; font-weight: 700; margin: 28px 0 12px; padding-top: 28px; border-top: 1px solid var(--border); }
.property-info h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.host-row { display: flex; align-items: center; gap: 16px; padding-bottom: 24px; }
.host-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.host-name { font-size: 18px; font-weight: 600; }
.host-meta { font-size: 14px; color: var(--muted); margin-top: 2px; }
.property-desc { font-size: 15px; color: #444; line-height: 1.7; }
.amenities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.amenity { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.amenity-icon { font-size: 20px; width: 24px; text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review-card { padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); }
.reviewer-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-date { font-size: 12px; color: var(--muted); }
.review-stars { color: var(--text); font-size: 13px; margin-bottom: 6px; }
.review-text { font-size: 14px; color: #444; line-height: 1.6; }
.booking-widget { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 100px; }
.widget-price-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.widget-price { font-size: 22px; font-weight: 700; }
.widget-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.widget-rating { font-size: 13px; text-align: right; }
.date-grid { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 0; }
.date-cell { padding: 10px 14px; border-right: 1px solid var(--border); }
.date-cell:last-child { border-right: none; }
.dc-label { font-size: 10px; font-weight: 700; margin-bottom: 3px; }
.date-cell input, .guests-cell select { border: none; outline: none; font-size: 13px; width: 100%; padding: 0; cursor: pointer; }
.guests-cell { padding: 10px 14px; border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius-sm) var(--radius-sm); margin-bottom: 12px; }
.btn-reserve { width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: opacity 0.18s; margin-bottom: 8px; }
.btn-reserve:hover { opacity: 0.9; }
.btn-reserve:disabled { opacity: 0.5; cursor: not-allowed; }
.no-charge-note { text-align: center; font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.widget-breakdown { border-top: 1px solid var(--border); padding-top: 16px; }
.breakdown-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; }
.breakdown-row.total { font-weight: 700; font-size: 15px; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
.widget-login-cta { text-align: center; padding: 20px 0; }
.widget-login-cta p { font-size: 15px; margin-bottom: 12px; }
.btn-login-book { display: inline-block; padding: 12px 24px; background: var(--primary); color: white; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; }
.btn-login-book:hover { background: var(--primary-dark); }

/* ── DASHBOARD ── */
.dash-page { max-width: 900px; margin: 0 auto; padding: 32px 24px 64px; }
.dash-title { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.dash-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; margin-top: 20px; }
.dash-tab { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--muted); border-bottom: 2px solid transparent; transition: color 0.18s; background: none; border-top: none; border-left: none; border-right: none; cursor: pointer; }
.dash-tab:hover { color: var(--text); }
.dash-tab.active { color: var(--text); border-bottom-color: var(--text); font-weight: 600; }
.booking-list { display: flex; flex-direction: column; gap: 16px; }
.booking-item { display: flex; gap: 20px; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; align-items: flex-start; }
.booking-item-img { width: 100px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.booking-item-info { flex: 1; min-width: 0; }
.booking-item-title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.booking-item-meta { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
.booking-item-status { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.status-confirmed, .status-completed { background: #E8F5E9; color: #2E7D32; }
.status-pending { background: #FFF8E1; color: #F57F17; }
.status-cancelled { background: #FFEBEE; color: #C62828; }
.booking-item-ref { font-size: 12px; color: var(--muted); margin-top: 6px; }
.btn-sm { display: inline-block; padding: 6px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; text-align: center; cursor: pointer; background: none; }
.btn-sm-outline { border: 1px solid var(--border); color: var(--text); }
.btn-sm-outline:hover { background: var(--bg-light); }
.empty-state { text-align: center; padding: 64px 0; }
.empty-state-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.btn-primary { display: inline-block; padding: 10px 20px; background: var(--primary); color: white; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; }
.btn-primary:hover { background: var(--primary-dark); }

/* ── HOST DASHBOARD ── */
.host-dash { max-width: 960px; margin: 0 auto; padding: 32px 24px 64px; }
.host-dash-title { font-size: 28px; font-weight: 800; }
.host-dash-subtitle { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.host-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.stat-value { font-size: 28px; font-weight: 800; margin-bottom: 2px; }
.stat-sub { font-size: 12px; color: var(--muted); }
.host-section-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.host-property-list { display: flex; flex-direction: column; gap: 12px; }
.host-property-item { display: flex; gap: 16px; align-items: center; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; }
.host-property-item img { width: 80px; height: 60px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.host-property-item > div { flex: 1; min-width: 0; }
.host-property-name { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.host-property-meta { font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.host-property-actions { display: flex; gap: 8px; flex-shrink: 0; }
.host-bookings { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.host-booking-row { display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13px; flex-wrap: wrap; }
.host-booking-row:last-child { border-bottom: none; }
.hbr-prop { font-weight: 600; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hbr-guest, .hbr-dates { color: var(--muted); flex-shrink: 0; }
.hbr-value { font-weight: 600; flex-shrink: 0; }

/* ── PROFILE ── */
.profile-page { max-width: 640px; margin: 0 auto; padding: 32px 24px 64px; }
.profile-avatar-section { display: flex; align-items: center; gap: 20px; margin-bottom: 32px; }
.profile-avatar-lg { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); }
.profile-avatar-fallback { width: 80px; height: 80px; border-radius: 50%; background: #484848; display: flex; align-items: center; justify-content: center; color: white; font-size: 28px; font-weight: 700; flex-shrink: 0; }
.profile-section { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 24px; }
.profile-section-title { font-size: 17px; font-weight: 700; margin-bottom: 16px; }
.profile-field { margin-bottom: 16px; }
.profile-field .form-label { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; display: block; }
.profile-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.badge-superhost { background: #FFF8E1; color: #F57F17; }
.badge-elite { background: #F3E5F5; color: #7B1FA2; }
.badge-basic { background: var(--bg-light); color: var(--muted); }

/* ── AUTH ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--bg-light); padding: 24px; }
.auth-card { background: white; border-radius: 16px; padding: 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow-lg); }
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-logo .brand { justify-content: center; margin-bottom: 6px; }
.auth-logo p { color: var(--muted); font-size: 14px; margin-top: 6px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-input { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; outline: none; transition: border-color 0.18s, box-shadow 0.18s; background: white; color: var(--text); }
.form-input:focus { border-color: var(--text); box-shadow: 0 0 0 3px rgba(34,34,34,0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pass-wrap { position: relative; }
.pass-wrap .form-input { padding-right: 44px; }
.pass-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); display: flex; align-items: center; }
.btn-auth { width: 100%; padding: 14px; border-radius: var(--radius-sm); background: var(--primary); color: white; font-size: 15px; font-weight: 700; border: none; cursor: pointer; transition: background 0.18s; margin-top: 4px; }
.btn-auth:hover { background: var(--primary-dark); }
.btn-auth:disabled { opacity: 0.6; cursor: not-allowed; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-top: 1px solid var(--border); }
.social-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-social { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; background: white; color: var(--text); transition: background 0.18s; cursor: pointer; }
.btn-social:hover { background: var(--bg-light); }
.auth-footer { text-align: center; margin-top: 20px; font-size: 13px; color: var(--muted); }
.auth-footer a { color: var(--text); font-weight: 600; text-decoration: underline; }
.alert { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 14px; }
.alert-error { background: #FFF0F0; color: #D93B5F; border: 1px solid #FFD0D0; }
.alert-success { background: #F0FFF4; color: #2D6A4F; border: 1px solid #B7E4C7; }

/* ── STATIC PAGES ── */
.page-wrap { max-width: 760px; margin: 48px auto; padding: 0 24px 64px; }
.page-wrap h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.page-wrap .page-date { color: var(--muted); font-size: 13px; margin-bottom: 32px; }
.page-wrap h2 { font-size: 18px; font-weight: 700; margin: 32px 0 12px; }
.page-wrap p { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 12px; }
.page-wrap ul { padding-left: 20px; margin-bottom: 12px; }
.page-wrap li { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 6px; }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--border); padding: 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 13px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); text-decoration: underline; }
.footer-brand { font-weight: 700; }
.footer-brand .sec { color: #2333FF; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .property-body { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .host-stats { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .bnb-nav { grid-template-columns: auto auto; height: auto; padding: 12px 16px; }
  .nav-search-pill { display: none; }
  .listings-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .listings-section { padding: 16px 16px 40px; }
  .cats-bar { top: 64px; }
  .form-row { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .search-layout { flex-direction: column; }
  .search-filters { width: 100%; position: static; }
  .photo-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .photo-grid > *:not(.photo-main) { display: none; }
  .amenities-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .listings-grid { grid-template-columns: 1fr; }
  .social-btns { grid-template-columns: 1fr; }
  .host-stats { grid-template-columns: 1fr 1fr; }
}
