/* =========================================================
   BahayKo — Main Stylesheet
   Aesthetic: Warm minimal · earthy tones · editorial feel
   ========================================================= */

:root {
  --cream:    #faf7f2;
  --warm-50:  #f5efe6;
  --warm-100: #e8d9c4;
  --accent:   #c4622d;      /* terracotta */
  --accent-d: #a34e21;
  --accent-l: #e8906b;
  --green:    #3d6b4f;
  --text:     #1c1710;
  --text-2:   #5a4f3e;
  --text-3:   #9e8f7a;
  --border:   #e0d5c5;
  --white:    #ffffff;
  --shadow-sm: 0 1px 4px rgba(28,23,16,.06);
  --shadow:    0 4px 16px rgba(28,23,16,.10);
  --shadow-lg: 0 12px 40px rgba(28,23,16,.14);
  --radius:    12px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
input, select, textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}

/* ─── NAVBAR ────────────────────────────────────────────── */
#navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 24px;
  padding: 0 40px;
  height: 64px;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700;
  color: var(--text); text-decoration: none;
}
.brand-icon { font-size: 1.5rem; }
.nav-links { display: flex; gap: 24px; margin-left: auto; }
.nav-links a { color: var(--text-2); font-weight: 500; font-size: 14px; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-auth { display: flex; align-items: center; gap: 10px; margin-left: 16px; }
#userGreeting { font-size: 13px; color: var(--text-2); margin-right: 4px; }
.badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 600;
  width: 18px; height: 18px; border-radius: 50%;
  margin-left: 4px; vertical-align: middle;
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; padding: 9px 20px;
  border: none; border-radius: 8px; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  transition: all .18s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: #fff;
}
.btn-primary:hover { background: var(--accent-d); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(196,98,45,.3); }
.btn-ghost {
  background: transparent; color: var(--text-2);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: var(--warm-50); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: #2d5038; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-danger { background: #c0392b; color: #fff; }
.btn-danger:hover { background: #992d22; }
.w-full { width: 100%; }

/* ─── PAGES ─────────────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }
#app { min-height: calc(100vh - 64px); }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 40px;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px 60px;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-head); font-size: 3.6rem; font-weight: 900;
  line-height: 1.1; color: var(--text); margin-bottom: 20px;
}
.hero-title em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 16px; color: var(--text-2); margin-bottom: 32px; max-width: 420px; }
.hero-search {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.hero-search input, .hero-search select {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--white);
  outline: none; transition: border-color .2s;
}
.hero-search input { flex: 1; min-width: 180px; }
.hero-search input:focus, .hero-search select:focus { border-color: var(--accent); }
.hero-graphic {
  position: relative; height: 380px;
  background: linear-gradient(135deg, var(--warm-100) 0%, var(--warm-50) 100%);
  border-radius: 24px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-graphic::before {
  content: '🏡'; font-size: 120px; opacity: .3;
}
.floating-card {
  position: absolute;
  background: var(--white); border-radius: 12px;
  padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--text);
  animation: float 4s ease-in-out infinite;
}
.floating-card strong { color: var(--accent); font-size: 14px; }
.card-1 { top: 30px; left: 20px; animation-delay: 0s; }
.card-2 { top: 50px; right: 20px; animation-delay: 1.3s; }
.card-3 { bottom: 40px; left: 30px; animation-delay: 2.6s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fc-icon { font-size: 20px; }

/* ─── SECTION CONTAINER ─────────────────────────────────── */
.section-container { max-width: 1200px; margin: 0 auto; padding: 40px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-header h2 { font-family: var(--font-head); font-size: 1.8rem; }
.see-all { font-size: 14px; color: var(--accent); font-weight: 500; }

/* ─── LISTINGS GRID ──────────────────────────────────────── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.listing-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s, box-shadow .22s;
  cursor: pointer;
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img {
  width: 100%; height: 190px; object-fit: cover;
  background: var(--warm-100);
}
.card-img-placeholder {
  width: 100%; height: 190px;
  background: linear-gradient(135deg, var(--warm-100), var(--warm-50));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.card-body { padding: 16px; }
.card-badges { display: flex; gap: 6px; margin-bottom: 8px; }
.badge-type {
  font-size: 11px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 4px;
}
.badge-regular { background: var(--warm-100); color: var(--text-2); }
.badge-expensive { background: #fef3c7; color: #92400e; }
.badge-available { background: #d1fae5; color: #065f46; font-size: 10px; }
.card-title {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  margin-bottom: 6px; color: var(--text);
}
.card-location { font-size: 13px; color: var(--text-3); margin-bottom: 10px; }
.card-location::before { content: '📍 '; }
.card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.card-price { font-size: 1.1rem; font-weight: 600; color: var(--accent); }
.card-price span { font-size: 12px; font-weight: 400; color: var(--text-3); }
.card-rating { font-size: 13px; color: var(--text-2); }
.card-rating::before { content: '⭐ '; }

/* Skeleton */
.skeleton-card {
  height: 320px; background: var(--warm-50);
  border-radius: var(--radius); border: 1px solid var(--border);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0%,100% { opacity: 1; } 50% { opacity: .5; }
}

/* ─── SEARCH PAGE ────────────────────────────────────────── */
.search-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 32px; max-width: 1200px; margin: 0 auto; padding: 40px;
}
.filter-panel {
  background: var(--white); border-radius: var(--radius);
  padding: 24px; height: fit-content;
  border: 1px solid var(--border); position: sticky; top: 84px;
}
.filter-panel h3 { font-family: var(--font-head); margin-bottom: 20px; }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); margin-bottom: 8px; }
.filter-group input, .filter-group select {
  width: 100%; padding: 9px 12px; border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--white); outline: none;
}
.filter-group input:focus { border-color: var(--accent); }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input { flex: 1; }
.price-range span { color: var(--text-3); }
.toggle-group { display: flex; gap: 6px; flex-wrap: wrap; }
.toggle-btn {
  padding: 6px 14px; border: 1.5px solid var(--border);
  border-radius: 20px; background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--text-2); transition: all .18s;
}
.toggle-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
#resultsCount { font-size: 14px; color: var(--text-2); }
#sortSelect { padding: 7px 12px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--white); }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.page-btn { padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--white); cursor: pointer; font-family: var(--font-body); font-size: 14px; color: var(--text-2); }
.page-btn.active, .page-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── LISTING DETAIL ─────────────────────────────────────── */
.listing-detail-container { max-width: 1100px; margin: 0 auto; padding: 40px; }
.listing-back { margin-bottom: 20px; font-size: 14px; color: var(--accent); cursor: pointer; }
.listing-header { margin-bottom: 28px; }
.listing-title { font-family: var(--font-head); font-size: 2.2rem; margin-bottom: 8px; }
.listing-meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; font-size: 14px; color: var(--text-2); }
.listing-photos { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; height: 360px; }
.listing-photos img { width: 100%; height: 100%; object-fit: cover; }
.listing-photos .photo-main { grid-row: 1/3; }

/* ── Gallery (multi-photo organized view) ── */
.listing-gallery { margin-bottom: 32px; }
.gallery-hero { border-radius: var(--radius) var(--radius) 0 0; overflow: hidden; height: 340px; }
.gallery-hero img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.gallery-hero:hover img { opacity: .93; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 6px; }
.gallery-thumb { border-radius: 6px; overflow: hidden; height: 100px; position: relative; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; transition: opacity .2s; }
.gallery-thumb:hover img { opacity: .85; }
.gallery-thumb-more img { filter: brightness(0.45); }
.gallery-more-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; font-weight: 700; pointer-events: none; text-shadow: 0 2px 6px rgba(0,0,0,.5); }
.listing-body { display: grid; grid-template-columns: 1fr 360px; gap: 40px; }
.listing-info h3 { font-family: var(--font-head); font-size: 1.1rem; margin: 24px 0 12px; }
.listing-info p { color: var(--text-2); font-size: 15px; }
.amenity-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.amenity-tag { padding: 5px 12px; background: var(--warm-50); border: 1px solid var(--border); border-radius: 20px; font-size: 13px; color: var(--text-2); }
.booking-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  position: sticky; top: 84px; height: fit-content;
  box-shadow: var(--shadow);
}
.booking-card-price { font-size: 1.6rem; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.booking-card-price span { font-size: 14px; font-weight: 400; color: var(--text-3); }

/* Calendar */
.calendar-container { margin: 16px 0; }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cal-header strong { font-family: var(--font-head); }
.cal-nav { background: none; border: none; cursor: pointer; font-size: 18px; color: var(--text-2); padding: 4px 8px; }
.cal-nav:hover { color: var(--accent); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; font-size: 12px; }
.cal-day-name { text-align: center; padding: 6px 0; font-weight: 600; color: var(--text-3); }
.cal-day {
  text-align: center; padding: 6px 4px; border-radius: 6px;
  cursor: pointer; transition: background .15s;
}
.cal-day:hover { background: var(--warm-100); }
.cal-day.blocked { background: #fde8e8; color: #c0392b; cursor: not-allowed; text-decoration: line-through; }
.cal-day.today { font-weight: 700; color: var(--accent); }
.cal-day.selected { background: var(--accent); color: #fff; }
.cal-day.empty { cursor: default; }

/* ─── DASHBOARD ──────────────────────────────────────────── */
.dashboard-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 0; max-width: 100%; margin: 0;
  min-height: calc(100vh - 64px);
}
.dash-sidebar {
  background: linear-gradient(180deg, #0d1b2a 0%, #112236 60%, #0d1b2a 100%);
  padding: 28px 0 40px;
  position: sticky; top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
}
.dash-sidebar::-webkit-scrollbar { width: 4px; }
.dash-sidebar::-webkit-scrollbar-track { background: transparent; }
.dash-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }
.dash-user-info {
  padding: 0 20px 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 20px;
}
.dash-user-info .avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #7c3aed 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 14px;
  border: 3px solid rgba(255,255,255,.12);
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  overflow: hidden;
}
.dash-user-info strong { font-size: 15px; color: #fff; display: block; font-weight: 600; }
.dash-user-info p { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 4px; }
.dash-role-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; padding: 5px 14px; border-radius: 20px; margin-top: 12px;
}
.dash-role-badge.landlord {
  background: rgba(251,191,36,.15); color: #fbbf24;
  border: 1px solid rgba(251,191,36,.25);
}
.dash-role-badge.boarder {
  background: rgba(52,211,153,.15); color: #34d399;
  border: 1px solid rgba(52,211,153,.25);
}
.dash-role-badge.landlord::before { content: '🏠'; font-size: 12px; }
.dash-role-badge.boarder::before  { content: '🧳'; font-size: 12px; }
.dash-nav { display: flex; flex-direction: column; gap: 3px; padding: 0 12px; }
.dash-nav-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(255,255,255,.25);
  padding: 0 16px; margin: 8px 0 6px;
}
.dash-link {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 16px; border-radius: 10px; font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,.6); transition: all .18s; text-decoration: none;
}
.dash-link:hover { color: #fff; background: rgba(255,255,255,.07); text-decoration: none; }
.dash-link.active {
  color: #fff; background: rgba(59,130,246,.22);
  box-shadow: inset 0 0 0 1px rgba(59,130,246,.3);
}
.dash-link .dl-icon { font-size: 16px; opacity: .85; flex-shrink: 0; }
.dash-tab { display: none; }
.dash-tab.active { display: block; }
.dash-content {
  background: #f1f5f9;
  padding: 40px 44px;
  min-height: calc(100vh - 64px);
}
.dash-tab-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.dash-tab-header h2 { font-family: var(--font-head); font-size: 1.75rem; color: #0d1b2a; margin: 0; }
.dash-tab h2 { font-family: var(--font-head); font-size: 1.75rem; margin-bottom: 28px; color: #0d1b2a; }
.dash-section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: #64748b; margin: 28px 0 14px;
}
.stat-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 36px; }
.stat-card {
  background: #fff; border-radius: 16px; padding: 22px 24px;
  border: none; box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
  position: relative; overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.stat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: 16px 16px 0 0;
}
.stat-card:nth-child(1)::after { background: linear-gradient(90deg,#3b82f6,#6366f1); }
.stat-card:nth-child(2)::after { background: linear-gradient(90deg,#10b981,#059669); }
.stat-card:nth-child(3)::after { background: linear-gradient(90deg,#f59e0b,#f97316); }
.stat-card:nth-child(4)::after { background: linear-gradient(90deg,#ef4444,#dc2626); }
.stat-card:nth-child(5)::after { background: linear-gradient(90deg,#8b5cf6,#7c3aed); }
.stat-card:nth-child(6)::after { background: linear-gradient(90deg,#06b6d4,#0891b2); }
.stat-card-icon { font-size: 24px; margin-bottom: 12px; }
.stat-card .stat-num { font-size: 2.4rem; font-weight: 800; color: #0d1b2a; line-height: 1; letter-spacing: -.02em; }
.stat-card .stat-label { font-size: 12px; color: #64748b; margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }

/* ─── MESSAGES ───────────────────────────────────────────── */
.messages-layout { display: grid; grid-template-columns: 300px 1fr; gap: 0; max-width: 1100px; margin: 40px auto; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); height: 620px; }
.conversations-list { background: var(--white); border-right: 1px solid var(--border); overflow-y: auto; }
.conv-header { padding: 20px; border-bottom: 1px solid var(--border); font-family: var(--font-head); font-size: 1.1rem; }
.conv-item { display: flex; align-items: center; gap: 12px; padding: 14px 20px; cursor: pointer; border-bottom: 1px solid var(--warm-50); transition: background .15s; }
.conv-item:hover { background: var(--warm-50); }
.conv-item.active { background: var(--warm-100); }
.conv-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--warm-100); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.conv-info { flex: 1; min-width: 0; }
.conv-name { font-weight: 600; font-size: 14px; }
.conv-time { font-size: 11px; color: var(--text-3); }
.conv-unread { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 10px; }
.chat-area { display: flex; flex-direction: column; background: var(--cream); }
.chat-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--text-3); font-size: 15px; }
.chat-messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-bubble { max-width: 70%; padding: 10px 14px; border-radius: 12px; font-size: 14px; }
.chat-bubble.mine { background: var(--accent); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.chat-bubble.theirs { background: var(--white); color: var(--text); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.chat-bubble .time { font-size: 10px; opacity: .7; margin-top: 4px; }
.chat-input-row { display: flex; gap: 10px; padding: 16px; border-top: 1px solid var(--border); background: var(--white); }
.chat-input-row input { flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px; outline: none; font-family: var(--font-body); font-size: 14px; }
.chat-input-row input:focus { border-color: var(--accent); }

/* ─── FORMS ──────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 8px; background: var(--white); outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { background: #fde8e8; color: #c0392b; padding: 10px 14px; border-radius: 8px; font-size: 13px; margin-bottom: 14px; }
.field-hint { font-size: 12px; color: var(--text-3); margin-top: 5px; line-height: 1.5; }
.req-list { list-style: none; padding: 0; margin: 5px 0 0; display: flex; flex-direction: column; gap: 3px; }
.req-item { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 5px; transition: color .2s; }
.req-item::before { content: '○'; font-size: 10px; flex-shrink: 0; }
.req-item.met { color: var(--green); }
.req-item.met::before { content: '✓'; }

/* ─── MODALS ──────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(28,23,16,.5); backdrop-filter: blur(4px);
}
.modal-overlay.active { display: block; }
.modal {
  display: none; position: fixed; z-index: 610;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--white); border-radius: 16px;
  padding: 36px; width: 420px; max-width: 96vw; max-height: 92vh;
  overflow-y: auto; box-shadow: var(--shadow-lg);
}
.modal.modal-wide { width: 680px; }
.modal.active { display: block; }
.modal h2 { font-family: var(--font-head); font-size: 1.6rem; margin-bottom: 6px; }
.modal-sub { color: var(--text-3); font-size: 14px; margin-bottom: 24px; }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text-3); line-height: 1; padding: 4px; }
.modal-close:hover { color: var(--text); }
.modal-footer-text { text-align: center; font-size: 13px; color: var(--text-3); margin-top: 16px; }

/* Booking confirmation box */
.booking-confirm-box { background: var(--warm-50); border: 1px solid var(--border); border-radius: 12px; padding: 20px; margin: 20px 0; }
.booking-confirm-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; }
.booking-confirm-row:last-child { margin-bottom: 0; border-top: 1px solid var(--border); padding-top: 10px; font-weight: 700; }
.payment-note { background: #fef9ec; border: 1px solid #fcd34d; border-radius: 8px; padding: 14px; font-size: 13px; color: #78350f; margin-bottom: 16px; }
.payment-note strong { display: block; margin-bottom: 4px; }

/* Booking row in dashboard */
.booking-row {
  background: #fff; border-radius: 14px; padding: 20px 22px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 2px 8px rgba(0,0,0,.04);
  border-left: 4px solid #e2e8f0;
  transition: box-shadow .2s, transform .2s;
}
.booking-row:hover { box-shadow: 0 4px 20px rgba(0,0,0,.09); transform: translateX(2px); }
.booking-row.bl-pending   { border-left-color: #f59e0b; }
.booking-row.bl-confirmed { border-left-color: #10b981; }
.booking-row.bl-cancelled { border-left-color: #ef4444; }
.booking-row.bl-completed { border-left-color: #6366f1; }
.booking-row-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.booking-row-title { font-weight: 700; font-size: 15px; color: #0d1b2a; }
.status-badge {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  padding: 4px 11px; border-radius: 20px; letter-spacing: .07em;
  display: inline-flex; align-items: center; gap: 4px;
}
.status-pending   { background: #fef9c3; color: #854d0e; border: 1px solid #fde68a; }
.status-confirmed { background: #dcfce7; color: #14532d; border: 1px solid #86efac; }
.status-cancelled { background: #fee2e2; color: #7f1d1d; border: 1px solid #fca5a5; }
.status-completed { background: #ede9fe; color: #3730a3; border: 1px solid #c4b5fd; }
.status-paid      { background: #dbeafe; color: #1e3a8a; border: 1px solid #93c5fd; }
.status-unpaid    { background: #f3f4f6; color: #374151; border: 1px solid #d1d5db; }
.booking-meta {
  display: flex; gap: 20px; font-size: 13px; color: #64748b; flex-wrap: wrap;
  background: #f8fafc; border-radius: 8px; padding: 10px 14px; margin-top: 10px;
}
.booking-meta span { display: flex; align-items: center; gap: 5px; }

/* Listing row in dashboard */
.listing-mgmt-card {
  background: #fff; border-radius: 14px; padding: 20px 22px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 2px 8px rgba(0,0,0,.04);
  border-left: 4px solid #3b82f6;
  transition: box-shadow .2s;
}
.listing-mgmt-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.09); }
.listing-mgmt-card.inactive { border-left-color: #94a3b8; opacity: .8; }
.listing-mgmt-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.listing-mgmt-title { font-weight: 700; font-size: 15px; color: #0d1b2a; margin-bottom: 3px; }
.listing-mgmt-location { font-size: 13px; color: #64748b; }
.listing-mgmt-meta { display: flex; gap: 16px; font-size: 13px; color: #64748b; margin: 10px 0 14px; flex-wrap: wrap; }
.listing-mgmt-meta strong { color: #0d1b2a; }
.listing-mgmt-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Empty state */
.empty-state { text-align: center; padding: 60px 20px; color: #94a3b8; background: #fff; border-radius: 16px; }
.empty-state .es-icon { font-size: 52px; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-head); font-size: 1.3rem; color: #475569; margin-bottom: 8px; }
.empty-state p { font-size: 14px; color: #94a3b8; }

/* Toast */
#toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  background: var(--text); color: var(--white);
  padding: 12px 20px; border-radius: 10px; font-size: 14px;
  box-shadow: var(--shadow-lg); display: none;
  max-width: 320px;
}
#toast.show { display: block; animation: fadeUp .3s ease; }
#toast.toast-error { background: #c0392b; }
#toast.toast-success { background: var(--green); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Listing form amenity checkboxes */
.amenity-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.amenity-check { display: none; }
.amenity-label {
  padding: 5px 12px; border: 1.5px solid var(--border); border-radius: 20px;
  font-size: 13px; cursor: pointer; transition: all .15s;
}
.amenity-check:checked + .amenity-label { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ─── FORM SUCCESS ───────────────────────────────────────── */
.form-success {
  background: #d1fae5; color: #065f46; padding: 10px 14px;
  border-radius: 8px; font-size: 13px; margin-bottom: 14px;
  border: 1px solid #6ee7b7;
}

/* ─── SETTINGS TABS ──────────────────────────────────────── */
.settings-tabs {
  display: flex; gap: 4px; margin-bottom: 24px;
  background: var(--warm-50); border-radius: 10px; padding: 4px;
}
.settings-tab {
  flex: 1; padding: 8px; border: none; border-radius: 7px;
  background: transparent; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--text-2); transition: all .18s;
}
.settings-tab.active { background: var(--white); color: var(--accent); box-shadow: var(--shadow-sm); }

/* ─── AVATAR UPLOAD ──────────────────────────────────────── */
.avatar-upload-area {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px; border: 2px dashed var(--border); border-radius: 12px;
  cursor: pointer; margin-bottom: 20px; transition: border-color .2s;
}
.avatar-upload-area:hover { border-color: var(--accent); }
.avatar-preview {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--warm-100); display: flex; align-items: center;
  justify-content: center; font-size: 32px; overflow: hidden;
  border: 2px solid var(--border);
}
.avatar-preview img { width: 100%; height: 100%; object-fit: cover; }
.avatar-upload-hint { font-size: 13px; color: var(--text-3); }

/* ─── PHOTO UPLOAD IN LISTING FORM ──────────────────────── */
.photo-upload-zone {
  border: 2px dashed var(--border); border-radius: 12px;
  padding: 24px; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s; margin-bottom: 16px;
}
.photo-upload-zone:hover { border-color: var(--accent); background: var(--warm-50); }
.photo-upload-zone .upload-icon { font-size: 32px; margin-bottom: 8px; }
.photo-upload-zone p { font-size: 14px; color: var(--text-3); margin: 0; }
.photo-upload-zone strong { color: var(--accent); }

.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px; margin-bottom: 16px;
}
.photo-thumb {
  position: relative; border-radius: 8px; overflow: hidden;
  aspect-ratio: 1; border: 2px solid var(--border); cursor: pointer;
  transition: border-color .15s;
}
.photo-thumb:hover { border-color: var(--accent); }
.photo-thumb.primary { border-color: var(--accent); }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb .primary-badge {
  position: absolute; bottom: 4px; left: 4px;
  background: var(--accent); color: #fff;
  font-size: 9px; font-weight: 700; padding: 2px 6px;
  border-radius: 4px; letter-spacing: .05em; text-transform: uppercase;
}
.photo-thumb .delete-btn {
  position: absolute; top: 4px; right: 4px;
  background: rgba(0,0,0,.55); color: #fff; border: none;
  width: 22px; height: 22px; border-radius: 50%; cursor: pointer;
  font-size: 12px; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .15s;
}
.photo-thumb:hover .delete-btn { opacity: 1; }

.photo-upload-progress {
  height: 4px; background: var(--warm-100); border-radius: 4px;
  margin-bottom: 12px; overflow: hidden; display: none;
}
.photo-upload-progress-bar {
  height: 100%; background: var(--accent); width: 0%;
  transition: width .3s ease; border-radius: 4px;
}

/* ─── FORGOT PASSWORD STEPS ──────────────────────────────── */
#forgotStep1, #forgotStep2 { transition: opacity .2s; }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-graphic { display: none; }
  .search-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .listing-body { grid-template-columns: 1fr; }
  .listing-photos { grid-template-columns: 1fr; height: 240px; }
  .listing-photos .photo-main { grid-row: auto; }
  .gallery-hero { height: 220px; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .gallery-thumb { height: 75px; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; height: auto; padding: 20px 0; }
  .dash-content { padding: 24px 20px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .messages-layout { grid-template-columns: 1fr; height: auto; }
  .conversations-list { border-right: none; border-bottom: 1px solid var(--border); height: 250px; }
  #navbar { padding: 0 20px; }
}
/* ═══════════════════════════════════════════════════════════
   SEARCH PAGE REDESIGN — paste this at the very end of
   frontend/css/style.css
   ═══════════════════════════════════════════════════════════ */

/* ─── Search Banner ──────────────────────────────────────── */
.search-banner {
  background: linear-gradient(150deg, #1c1710 0%, #2d5240 55%, #3d6b4f 100%);
  padding: 56px 40px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.search-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(168,213,181,.12) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 50%);
}
.search-banner::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 48px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.search-banner-inner { position: relative; z-index: 1; }
.search-banner h2 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.search-banner h2 em {
  color: #a8d5b5;
  font-style: italic;
}
.search-banner p {
  color: rgba(255,255,255,.6);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto;
}

/* ─── Search Layout ──────────────────────────────────────── */
.search-layout {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 36px 40px 64px;
}

/* ─── Filter Panel ───────────────────────────────────────── */
.filter-panel {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: sticky;
  top: 84px;
  height: fit-content;
}
.filter-panel-head {
  background: linear-gradient(135deg, #2d5240 0%, #3d6b4f 100%);
  padding: 20px 20px 18px;
}
.filter-panel-head h3 {
  color: #ffffff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 3px;
  letter-spacing: .01em;
}
.filter-panel-head p {
  color: #ffffff;
  font-size: 12px;
  margin: 0;
  font-weight: 500;
  opacity: 0.9;
}
.filter-panel-body {
  padding: 20px;
}
.filter-group {
  margin-bottom: 18px;
}
.filter-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--text-3);
  margin-bottom: 7px;
}
.filter-group input,
.filter-group select {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--warm-50);
  outline: none;
  transition: border-color .18s, background .18s;
  color: var(--text);
}
.filter-group input:focus,
.filter-group select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(61,107,79,.12);
}
.filter-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0 20px;
}
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input { flex: 1; }
.price-range span { color: var(--text-3); font-weight: 600; font-size: 13px; }

.toggle-group { display: flex; gap: 6px; }
.toggle-btn {
  flex: 1;
  padding: 7px 8px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--warm-50);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  transition: all .18s;
  text-align: center;
}
.toggle-btn:hover { border-color: var(--green); color: var(--green); background: var(--white); }
.toggle-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

.filter-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }

/* ─── Results Header ─────────────────────────────────────── */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
#resultsCount { font-size: 14px; font-weight: 600; color: var(--text); }
#sortSelect {
  padding: 7px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  font-weight: 500;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: border-color .18s;
}
#sortSelect:focus { border-color: var(--green); }

/* ─── Listings Grid ──────────────────────────────────────── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 20px;
}

/* ─── New Listing Card (.lc) ─────────────────────────────── */
.lc {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(28,23,16,.07);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
  position: relative;
}
.lc:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 44px rgba(28,23,16,.16);
}

/* Image wrapper */
.lc-img-wrap {
  position: relative;
  height: 215px;
  overflow: hidden;
  background: var(--warm-100);
}
.lc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.lc:hover .lc-img-wrap img { transform: scale(1.05); }

.lc-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--warm-100), var(--warm-50));
  font-size: 54px;
}

/* Gradient overlay on image */
.lc-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(28,23,16,.55) 0%,
    rgba(28,23,16,.1) 45%,
    transparent 65%);
  pointer-events: none;
}

/* Type badge (top-left on photo) */
.lc-badge {
  position: absolute;
  top: 11px; left: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.lc-badge-regular {
  background: rgba(255,255,255,.90);
  color: var(--text-2);
}
.lc-badge-premium {
  background: rgba(254,243,199,.96);
  color: #92400e;
}

/* Available indicator (top-right on photo) */
.lc-avail {
  position: absolute;
  top: 11px; right: 11px;
  background: rgba(22,163,74,.88);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Price chip (bottom-left on photo) */
.lc-price-chip {
  position: absolute;
  bottom: 13px; left: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 9px;
  line-height: 1.2;
}
.lc-price-chip small {
  font-size: 10px;
  font-weight: 400;
  opacity: .82;
}

/* Card body */
.lc-body { padding: 14px 15px 15px; }

.lc-title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lc-location {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}
.lc-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 10px;
}
.lc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lc-landlord {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-3);
  min-width: 0;
}
.lc-landlord img {
  width: 22px; height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.lc-landlord span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}
.lc-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--warm-50);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* ─── Skeleton cards (keep working) ─────────────────────── */
.skeleton-card {
  height: 320px;
  background: var(--warm-50);
  border-radius: 14px;
  border: 1px solid var(--border);
  animation: shimmer 1.5s infinite;
}

/* ─── Pagination ─────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 38px; height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-btn:hover { border-color: var(--green); color: var(--green); }
.page-btn.active { background: var(--green); border-color: var(--green); color: #fff; }

/* ─── Empty state ────────────────────────────────────────── */
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 72px 24px;
}
.empty-state .es-icon { font-size: 60px; margin-bottom: 16px; }
.empty-state h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--text);
}
.empty-state p { color: var(--text-3); font-size: 14px; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .search-layout {
    grid-template-columns: 1fr;
    padding: 24px 24px 48px;
  }
  .filter-panel { position: static; }
  .search-banner { padding: 44px 24px 42px; }
  .search-banner h2 { font-size: 1.9rem; }
}
@media (max-width: 640px) {
  .search-banner h2 { font-size: 1.55rem; }
  .listings-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lc-img-wrap { height: 155px; }
  .lc-title { font-size: .88rem; }
}
@media (max-width: 400px) {
  .listings-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════
   ROLE-SPECIFIC DASHBOARD REDESIGN
   Landlord: Dark Luxury Estate — deep navy, burnished gold, marble
   Boarder:  Fresh Lifestyle Hub — warm ivory, coral-rose, mint
   ═══════════════════════════════════════════════════════════════ */

/* ─── LANDLORD THEME VARIABLES ──────────────────────────────── */
body.role-landlord {
  --ll-bg:        #eef2ee;
  --ll-surface:   #ffffff;
  --ll-surface2:  #e4ece4;
  --ll-sidebar:   #1e3a2f;
  --ll-sidebar2:  #162d24;
  --ll-border:    #cddacd;
  --ll-green:     #1e3a2f;
  --ll-green-m:   #2d5c46;
  --ll-green-l:   #3d7a5e;
  --ll-gold:      #b8841e;
  --ll-gold-l:    #d4a030;
  --ll-text:      #1a2e22;
  --ll-text2:     #4a6358;
  --ll-text3:     #8aaa98;
  --ll-accent:    #1e3a2f;
  --ll-danger:    #c0392b;
  --ll-success:   #1e7a50;
}

/* ─── BOARDER THEME VARIABLES ───────────────────────────────── */
body.role-boarder {
  --bd-bg:        #fdf6f0;
  --bd-surface:   #ffffff;
  --bd-surface2:  #fff8f2;
  --bd-border:    #f0e4d8;
  --bd-coral:     #e86a4a;
  --bd-coral-l:   #ff9070;
  --bd-coral-d:   #c4502e;
  --bd-mint:      #2db89a;
  --bd-mint-l:    #4dd4b8;
  --bd-text:      #1a1410;
  --bd-text2:     #7a5a4e;
  --bd-text3:     #b89a8e;
  --bd-lavender:  #7c6cd8;
  --bd-yellow:    #f7c94e;
}

/* ═══════════════════ LANDLORD DASHBOARD ══════════════════════ */

body.role-landlord #page-dashboard {
  background: var(--ll-bg);
}

body.role-landlord .dashboard-layout {
  grid-template-columns: 280px 1fr;
}

/* ── Landlord Sidebar ── */
body.role-landlord .dash-sidebar {
  background: var(--ll-sidebar);
  border-right: none;
  position: relative;
  overflow: hidden;
}

/* Marble texture overlay */
body.role-landlord .dash-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      105deg,
      transparent 0px,
      transparent 40px,
      rgba(255,255,255,.025) 40px,
      rgba(255,255,255,.025) 41px
    ),
    repeating-linear-gradient(
      15deg,
      transparent 0px,
      transparent 60px,
      rgba(255,255,255,.015) 60px,
      rgba(255,255,255,.015) 61px
    );
  pointer-events: none;
}

/* Gold top accent line */
body.role-landlord .dash-sidebar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--ll-gold), var(--ll-gold-l), var(--ll-gold), transparent);
}

body.role-landlord .dash-user-info {
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 32px 24px 28px;
  position: relative;
}

body.role-landlord .dash-user-info .avatar {
  background: linear-gradient(135deg, var(--ll-gold-d), var(--ll-gold));
  border: 2px solid var(--ll-gold);
  box-shadow: 0 0 24px rgba(184,132,30,.35), 0 8px 24px rgba(0,0,0,.3);
  width: 80px; height: 80px;
}

body.role-landlord .dash-user-info strong {
  color: #ffffff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  letter-spacing: .01em;
}

body.role-landlord .dash-user-info p {
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

body.role-landlord .dash-role-badge.landlord {
  background: rgba(255,255,255,.12);
  color: var(--ll-gold-l);
  border: 1px solid rgba(184,132,30,.5);
  font-size: 10px;
  letter-spacing: .15em;
  padding: 5px 16px;
  border-radius: 2px;
}

body.role-landlord .dash-nav-label {
  color: rgba(255,255,255,.3);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 0 20px;
}

body.role-landlord .dash-link {
  color: rgba(255,255,255,.65);
  border-radius: 4px;
  margin: 0 8px;
  font-size: 13px;
  letter-spacing: .02em;
  transition: all .2s;
  border-left: 2px solid transparent;
}

body.role-landlord .dash-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,.09);
  border-left-color: var(--ll-gold-l);
  text-decoration: none;
}

body.role-landlord .dash-link.active {
  color: var(--ll-gold-l);
  background: rgba(184,132,30,.18);
  border-left: 2px solid var(--ll-gold-l);
  box-shadow: none;
}

body.role-landlord .dl-icon { font-size: 15px; }

/* ── Landlord Content Area ── */
body.role-landlord .dash-content {
  background: var(--ll-bg);
  padding: 44px 52px;
  min-height: calc(100vh - 64px);
  position: relative;
}

/* Subtle grid pattern background */
body.role-landlord .dash-content::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,58,47,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,47,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

body.role-landlord .dash-tab { position: relative; z-index: 1; }

/* Landlord page titles */
body.role-landlord .dash-tab h2,
body.role-landlord .dash-tab-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ll-text);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .02em;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 32px;
}

body.role-landlord .dash-tab h2::after,
body.role-landlord .dash-tab-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--ll-gold), transparent);
}

/* ── Landlord Stat Cards ── */
body.role-landlord .stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

body.role-landlord .stat-card {
  background: var(--ll-surface);
  border: 1px solid var(--ll-border);
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform .22s, border-color .22s, box-shadow .22s;
  box-shadow: none;
}

body.role-landlord .stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ll-gold), transparent);
  opacity: 0;
  transition: opacity .22s;
}

body.role-landlord .stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--ll-green-l);
  box-shadow: 0 12px 40px rgba(30,58,47,.14), 0 0 0 1px rgba(30,58,47,.08);
}

body.role-landlord .stat-card:hover::before {
  opacity: 1;
}

/* Remove default colored top bars */
body.role-landlord .stat-card::after { display: none; }

body.role-landlord .stat-card-icon {
  font-size: 20px;
  margin-bottom: 16px;
  opacity: .7;
}

body.role-landlord .stat-card .stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ll-gold);
  line-height: 1;
  letter-spacing: -.02em;
  text-shadow: none;
}

body.role-landlord .stat-card .stat-label {
  font-size: 10px;
  color: var(--ll-text3);
  margin-top: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
}

/* ── Landlord Booking Rows ── */
body.role-landlord .booking-row {
  background: var(--ll-surface);
  border: 1px solid var(--ll-border);
  border-left: 3px solid var(--ll-border);
  border-radius: 10px;
  padding: 22px 24px;
  margin-bottom: 10px;
  box-shadow: none;
  transition: border-color .2s, box-shadow .2s;
}

body.role-landlord .booking-row:hover {
  border-color: var(--ll-border);
  border-left-color: var(--ll-green-m);
  box-shadow: 0 8px 28px rgba(30,58,47,.12);
  transform: none;
}

body.role-landlord .booking-row.bl-pending   { border-left-color: var(--ll-gold); }
body.role-landlord .booking-row.bl-confirmed { border-left-color: var(--ll-success); }
body.role-landlord .booking-row.bl-cancelled { border-left-color: var(--ll-danger); }
body.role-landlord .booking-row.bl-completed { border-left-color: #6366f1; }

body.role-landlord .booking-row-title {
  color: var(--ll-text);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
}

body.role-landlord .booking-meta {
  background: var(--ll-surface2);
  border: 1px solid var(--ll-border);
  color: var(--ll-text2);
}

/* ── Landlord Listing Management Cards ── */
body.role-landlord .listing-mgmt-card {
  background: var(--ll-surface);
  border: 1px solid var(--ll-border);
  border-left: 3px solid var(--ll-green-m);
  border-radius: 10px;
  box-shadow: none;
  transition: all .2s;
}

body.role-landlord .listing-mgmt-card:hover {
  border-color: var(--ll-green-l);
  box-shadow: 0 8px 28px rgba(30,58,47,.12);
}

body.role-landlord .listing-mgmt-card.inactive {
  border-left-color: var(--ll-text3);
}

body.role-landlord .listing-mgmt-title {
  color: var(--ll-text);
}

body.role-landlord .listing-mgmt-location {
  color: var(--ll-text3);
}

body.role-landlord .listing-mgmt-meta {
  color: var(--ll-text2);
}

body.role-landlord .listing-mgmt-meta strong {
  color: var(--ll-green);
}

/* ── Landlord Section label ── */
body.role-landlord .dash-section-label {
  color: var(--ll-text3);
  font-size: 9px;
  letter-spacing: .16em;
  font-weight: 700;
}

/* ── Landlord Buttons ── */
body.role-landlord .btn-primary {
  background: linear-gradient(135deg, var(--ll-green), var(--ll-green-m));
  color: #ffffff;
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 3px;
  box-shadow: 0 4px 16px rgba(212,175,55,.25);
}
body.role-landlord .btn-primary:hover {
  background: linear-gradient(135deg, var(--ll-green-m), var(--ll-green-l));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(30,58,47,.3);
}

body.role-landlord .btn-ghost {
  background: transparent;
  color: var(--ll-text2);
  border: 1px solid var(--ll-border);
  border-radius: 8px;
}
body.role-landlord .btn-ghost:hover {
  border-color: var(--ll-green-l);
  color: var(--ll-green);
  background: rgba(30,58,47,.05);
}

body.role-landlord .btn-green {
  background: var(--ll-success);
  color: #ffffff;
  border: none;
  border-radius: 8px;
}
body.role-landlord .btn-green:hover {
  background: #25965f;
}

body.role-landlord .btn-danger {
  background: #fff0f0;
  color: var(--ll-danger);
  border: 1.5px solid #f5c6c6;
  border-radius: 8px;
}
body.role-landlord .btn-danger:hover {
  background: #fee2e2;
}

/* ── Landlord Empty States ── */
body.role-landlord .empty-state {
  background: var(--ll-surface);
  border: 2px dashed var(--ll-border);
  border-radius: 12px;
  color: var(--ll-text3);
}
body.role-landlord .empty-state h3 {
  color: var(--ll-text2);
}

/* ── Landlord Status Badges ── */
body.role-landlord .status-badge {
  font-size: 9px;
  letter-spacing: .08em;
  border-radius: 6px;
}

/* ── Landlord Tab header for listings page ── */
body.role-landlord .dash-tab-header {
  margin-bottom: 32px;
}

/* ── Section header 3 ── */
body.role-landlord h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ll-text);
}


/* ═══════════════════════ BOARDER DASHBOARD ═══════════════════ */

body.role-boarder #page-dashboard {
  background: var(--bd-bg);
}

/* ── Boarder Sidebar ── */
body.role-boarder .dash-sidebar {
  background: var(--bd-surface);
  border-right: 1px solid var(--bd-border);
  position: relative;
  overflow: hidden;
}

/* Dotted pattern */
body.role-boarder .dash-sidebar::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,106,74,.12) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  opacity: .5;
}

/* Coral top accent */
body.role-boarder .dash-sidebar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--bd-coral), var(--bd-mint), var(--bd-lavender));
}

body.role-boarder .dash-user-info {
  border-bottom: 2px dashed var(--bd-border);
  padding: 32px 24px 28px;
  background: linear-gradient(180deg, rgba(232,106,74,.04) 0%, transparent 100%);
}

body.role-boarder .dash-user-info .avatar {
  background: linear-gradient(135deg, var(--bd-coral), var(--bd-lavender));
  border: 3px solid var(--bd-border);
  box-shadow: 0 8px 24px rgba(232,106,74,.2);
  width: 80px; height: 80px;
}

body.role-boarder .dash-user-info strong {
  color: var(--bd-text);
  font-size: 16px;
  font-weight: 700;
}

body.role-boarder .dash-user-info p {
  color: var(--bd-text3);
  font-size: 12px;
}

body.role-boarder .dash-role-badge.boarder {
  background: linear-gradient(135deg, rgba(45,184,154,.15), rgba(45,184,154,.08));
  color: var(--bd-mint);
  border: 1.5px solid rgba(45,184,154,.3);
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: .1em;
  padding: 5px 14px;
}

body.role-boarder .dash-nav-label {
  color: var(--bd-text3);
  font-size: 10px;
  letter-spacing: .1em;
  padding: 0 20px;
}

body.role-boarder .dash-link {
  color: var(--bd-text2);
  border-radius: 12px;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

body.role-boarder .dash-link:hover {
  color: var(--bd-coral);
  background: rgba(232,106,74,.07);
  text-decoration: none;
  transform: translateX(3px);
}

body.role-boarder .dash-link.active {
  color: var(--bd-coral);
  background: linear-gradient(135deg, rgba(232,106,74,.12), rgba(232,106,74,.06));
  box-shadow: none;
}

/* ── Boarder Content Area ── */
body.role-boarder .dash-content {
  background: var(--bd-bg);
  padding: 44px 52px;
  min-height: calc(100vh - 64px);
  position: relative;
}

/* Subtle wavy background */
body.role-boarder .dash-content::before {
  content: '';
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background:
    radial-gradient(ellipse 800px 600px at 80% 20%, rgba(232,106,74,.04) 0%, transparent 60%),
    radial-gradient(ellipse 600px 800px at 20% 80%, rgba(45,184,154,.04) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 60% 60%, rgba(124,108,216,.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

body.role-boarder .dash-tab { position: relative; z-index: 1; }

/* Boarder page titles */
body.role-boarder .dash-tab h2,
body.role-boarder .dash-tab-header h2 {
  font-family: var(--font-head);
  color: var(--bd-text);
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 28px;
  position: relative;
  display: inline-block;
}

/* Highlight underline */
body.role-boarder .dash-tab h2::after,
body.role-boarder .dash-tab-header h2::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 8px;
  background: linear-gradient(90deg, rgba(232,106,74,.3), transparent);
  border-radius: 4px;
}

/* ── Boarder Stat Cards ── */
body.role-boarder .stat-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

body.role-boarder .stat-card {
  background: var(--bd-surface);
  border: 1.5px solid var(--bd-border);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  box-shadow: 0 2px 12px rgba(232,106,74,.06);
}

/* Color accent blobs */
body.role-boarder .stat-card::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  opacity: .12;
}
body.role-boarder .stat-card:nth-child(1)::before { background: var(--bd-coral); }
body.role-boarder .stat-card:nth-child(2)::before { background: var(--bd-mint); }
body.role-boarder .stat-card:nth-child(3)::before { background: var(--bd-lavender); }
body.role-boarder .stat-card:nth-child(4)::before { background: var(--bd-yellow); }

/* Remove default colored top bars */
body.role-boarder .stat-card::after { display: none; }

body.role-boarder .stat-card:hover {
  transform: translateY(-4px) rotate(-.3deg);
  box-shadow: 0 16px 40px rgba(232,106,74,.12);
}

body.role-boarder .stat-card-icon {
  font-size: 26px;
  margin-bottom: 14px;
}

body.role-boarder .stat-card .stat-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--bd-text);
  line-height: 1;
  letter-spacing: -.03em;
}

body.role-boarder .stat-card:nth-child(1) .stat-num { color: var(--bd-coral); }
body.role-boarder .stat-card:nth-child(2) .stat-num { color: var(--bd-mint); }
body.role-boarder .stat-card:nth-child(3) .stat-num { color: var(--bd-lavender); }
body.role-boarder .stat-card:nth-child(4) .stat-num { color: #c8991e; }

body.role-boarder .stat-card .stat-label {
  font-size: 11px;
  color: var(--bd-text3);
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Boarder Booking Rows ── */
body.role-boarder .booking-row {
  background: var(--bd-surface);
  border: 1.5px solid var(--bd-border);
  border-left: 4px solid var(--bd-border);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(232,106,74,.04);
  transition: all .22s;
}

body.role-boarder .booking-row:hover {
  border-color: rgba(232,106,74,.3);
  box-shadow: 0 8px 28px rgba(232,106,74,.1);
  transform: translateX(4px);
}

body.role-boarder .booking-row.bl-pending   { border-left-color: var(--bd-yellow); }
body.role-boarder .booking-row.bl-confirmed { border-left-color: var(--bd-mint); }
body.role-boarder .booking-row.bl-cancelled { border-left-color: #e05252; }
body.role-boarder .booking-row.bl-completed { border-left-color: var(--bd-lavender); }

body.role-boarder .booking-row-title {
  color: var(--bd-text);
  font-weight: 700;
  font-size: 15px;
}

body.role-boarder .booking-meta {
  background: var(--bd-surface2);
  border: 1px solid var(--bd-border);
  border-radius: 10px;
  color: var(--bd-text2);
}

/* ── Boarder Section label ── */
body.role-boarder .dash-section-label {
  color: var(--bd-text3);
  letter-spacing: .08em;
}

/* ── Boarder Buttons ── */
body.role-boarder .btn-primary {
  background: linear-gradient(135deg, var(--bd-coral-d), var(--bd-coral));
  color: #fff;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(232,106,74,.3);
}
body.role-boarder .btn-primary:hover {
  background: linear-gradient(135deg, var(--bd-coral), var(--bd-coral-l));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,106,74,.4);
}

body.role-boarder .btn-ghost {
  background: transparent;
  color: var(--bd-text2);
  border: 1.5px solid var(--bd-border);
  border-radius: 12px;
}
body.role-boarder .btn-ghost:hover {
  border-color: var(--bd-coral);
  color: var(--bd-coral);
  background: rgba(232,106,74,.05);
}

body.role-boarder .btn-green {
  background: linear-gradient(135deg, #1a9e86, var(--bd-mint));
  color: #fff;
  border: none;
  border-radius: 12px;
}
body.role-boarder .btn-green:hover {
  background: linear-gradient(135deg, var(--bd-mint), var(--bd-mint-l));
}

body.role-boarder .btn-danger {
  background: #fff0f0;
  color: #e05252;
  border: 1.5px solid #fca5a5;
  border-radius: 12px;
}
body.role-boarder .btn-danger:hover {
  background: #fee2e2;
}

/* ── Boarder Empty States ── */
body.role-boarder .empty-state {
  background: var(--bd-surface);
  border: 2px dashed rgba(232,106,74,.2);
  border-radius: 20px;
  color: var(--bd-text3);
}
body.role-boarder .empty-state h3 {
  color: var(--bd-text2);
}

/* ── Boarder Status Badges ── */
body.role-boarder .status-badge {
  border-radius: 20px;
}

/* ── Welcome card for boarder ── */
.boarder-welcome-card {
  background: linear-gradient(135deg, var(--bd-coral-d) 0%, var(--bd-coral) 50%, #f0835e 100%);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 28px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.boarder-welcome-card::before {
  content: '🏠';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 72px;
  opacity: .15;
}
.boarder-welcome-card h3 {
  font-family: var(--font-head);
  font-size: 1.65rem;
  margin-bottom: 8px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: .01em;
}
.boarder-welcome-card p {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

/* ── Welcome card for landlord ── */
.landlord-welcome-card {
  background: linear-gradient(135deg, #1e3a2f 0%, #2d5c46 60%, #3d7a5e 100%);
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(30,58,47,.2);
}
.landlord-welcome-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 50%, rgba(255,255,255,.06) 0%, transparent 55%);
  pointer-events: none;
}
.landlord-welcome-card::after {
  content: '🏛️';
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  font-size: 64px;
  opacity: .15;
}
.landlord-welcome-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 800;
  letter-spacing: .01em;
}
.landlord-welcome-card p {
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

/* ── Boarder h3 sub headers ── */
body.role-boarder h3 {
  color: var(--bd-text);
}


/* ── Landlord theme: final overrides ── */
body.role-landlord .dash-user-info .avatar {
  box-shadow: 0 6px 20px rgba(30,58,47,.25);
}
body.role-landlord .btn-primary {
  box-shadow: 0 4px 14px rgba(30,58,47,.25);
}
body.role-landlord .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(30,58,47,.35);
}
/* Stat card num in green theme */
body.role-landlord .stat-card .stat-num {
  color: var(--ll-green);
}
body.role-landlord .stat-card:nth-child(2) .stat-num { color: var(--ll-success); }
body.role-landlord .stat-card:nth-child(3) .stat-num { color: var(--ll-gold); }
body.role-landlord .stat-card:nth-child(4) .stat-num { color: var(--ll-danger); }
body.role-landlord .stat-card:nth-child(5) .stat-num { color: var(--ll-green-m); }
body.role-landlord .stat-card:nth-child(6) .stat-num { color: #6366f1; }

/* Stat card icon blobs (top-right) */
body.role-landlord .stat-card::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 72px; height: 72px;
  border-radius: 50%;
  opacity: .08;
}
body.role-landlord .stat-card:nth-child(1)::before { background: var(--ll-green); }
body.role-landlord .stat-card:nth-child(2)::before { background: var(--ll-success); }
body.role-landlord .stat-card:nth-child(3)::before { background: var(--ll-gold); }
body.role-landlord .stat-card:nth-child(4)::before { background: var(--ll-danger); }
body.role-landlord .stat-card:nth-child(5)::before { background: var(--ll-green-m); }
body.role-landlord .stat-card:nth-child(6)::before { background: #6366f1; }

/* Stat card top accent lines in green theme */
body.role-landlord .stat-card::after {
  display: block;
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 10px 10px 0 0;
}
body.role-landlord .stat-card:nth-child(1)::after { background: linear-gradient(90deg, var(--ll-green), var(--ll-green-l)); }
body.role-landlord .stat-card:nth-child(2)::after { background: linear-gradient(90deg, var(--ll-success), #34d399); }
body.role-landlord .stat-card:nth-child(3)::after { background: linear-gradient(90deg, var(--ll-gold), var(--ll-gold-l)); }
body.role-landlord .stat-card:nth-child(4)::after { background: linear-gradient(90deg, var(--ll-danger), #e57272); }
body.role-landlord .stat-card:nth-child(5)::after { background: linear-gradient(90deg, var(--ll-green-m), var(--ll-green-l)); }
body.role-landlord .stat-card:nth-child(6)::after { background: linear-gradient(90deg, #6366f1, #818cf8); }

/* h2 underline accent in green */
body.role-landlord .dash-tab h2::after,
body.role-landlord .dash-tab-header h2::after {
  background: linear-gradient(90deg, var(--ll-green-m), transparent);
}

/* Content area subtle pattern in green */
body.role-landlord .dash-content::before {
  background-image:
    linear-gradient(rgba(30,58,47,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,58,47,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
