/* Landrazo — main.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Landrazo brand colours (from logo) */
  --brand: #F5A623;          /* orange */
  --brand-dark: #d4891a;
  --brand-navy: #1B2F5B;     /* dark navy */
  --brand-navy-dark: #112047;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-surface: #f9fafb;
  --bg-alt: #f3f4f6;
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 1px 8px rgba(0,0,0,.05); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); text-decoration: none; padding: 8px 12px; border-radius: var(--radius-sm); transition: background .15s; }
.nav-links a:hover { background: var(--bg-alt); color: var(--text); }
.nav-links .btn { padding: 8px 18px; }

/* ── CONTAINER ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 48px 0; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; border: 1.5px solid transparent; transition: all .15s; }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-dark); }
.btn-outline:hover { background: var(--bg-alt); }
.btn-navy { background: var(--brand-navy); color: #fff; border-color: var(--brand-navy); }
.btn-navy:hover { background: var(--brand-navy-dark); }
.btn-success { background: #16a34a; color: #fff; border-color: #16a34a; }
.btn-success:hover { background: #15803d; }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.mt-8 { margin-top: 8px; }

/* ── HERO ── */
.hero { position: relative; min-height: 580px; display: flex; align-items: center; background: var(--brand-navy); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d1b35 0%, #1B2F5B 50%, #243d75 100%); }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 64px 24px; width: 100%; }
.hero h1 { font-size: 50px; font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 12px; max-width: 620px; }
.hero h1 span { color: var(--brand); }
.hero p { font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 32px; }

/* ── SEARCH BAR ── */
.search-bar { display: flex; align-items: stretch; background: #fff; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(0,0,0,.25); overflow: hidden; max-width: 860px; }
.search-field { display: flex; flex-direction: column; padding: 14px 20px; border-right: 1px solid var(--border); flex: 1; min-width: 0; }
.search-field:last-of-type { border-right: none; }
.search-field label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--brand-navy); margin-bottom: 4px; }
.search-field input, .search-field select { border: none; outline: none; font-size: 14px; font-weight: 500; background: transparent; font-family: inherit; }
.btn-search { padding: 0 32px; background: var(--brand); color: #fff; font-weight: 700; border: none; cursor: pointer; font-size: 15px; transition: background .15s; white-space: nowrap; letter-spacing: .02em; }
.btn-search:hover { background: var(--brand-dark); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--bg-surface); border-bottom: 1px solid var(--border); padding: 12px 0; }
.trust-bar-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
.trust-item i { color: var(--brand); font-size: 16px; }

/* ── PROPERTY TYPE FILTERS ── */
.type-filters { display: flex; gap: 8px; overflow-x: auto; padding: 20px 24px; scrollbar-width: none; }
.type-pill { display: flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1.5px solid var(--border); border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--text-muted); text-decoration: none; white-space: nowrap; transition: all .15s; }
.type-pill:hover, .type-pill.active { border-color: var(--brand-navy); color: var(--brand-navy); background: rgba(27,47,91,.05); }

/* ── SECTION HEADER ── */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.section-header h2 { font-size: 26px; font-weight: 700; color: var(--brand-navy); }
.see-all { color: var(--brand); font-weight: 600; text-decoration: none; font-size: 14px; }

/* ── LISTING CARDS ── */
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.listing-card { text-decoration: none; color: inherit; display: block; border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow .2s; }
.listing-card:hover { box-shadow: var(--shadow-lg); }
.listing-card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); background: var(--bg-alt); display: block; }
.listing-card-img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--text-light); }
.listing-card-body { padding: 12px 4px 0; }
.listing-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.listing-card-type { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
.listing-card-rating { font-size: 13px; font-weight: 600; }
.listing-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.listing-card-location { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.listing-card-price { font-size: 15px; font-weight: 700; color: var(--brand-navy); }
.listing-card-price span { font-weight: 400; color: var(--text-muted); font-size: 13px; }
.badge-instant { background: #e0f2fe; color: #0369a1; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; margin-left: 8px; }
.badge-verified-listing { background: rgba(245,166,35,.12); color: var(--brand-dark); font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; margin-left: 8px; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--bg-surface); padding: 80px 0; }
.how-it-works h2 { text-align: center; font-size: 34px; font-weight: 700; margin-bottom: 8px; color: var(--brand-navy); }
.how-it-works .section-sub { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 48px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.step { text-align: center; padding: 24px; }
.step-icon { width: 68px; height: 68px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; box-shadow: 0 4px 16px rgba(245,166,35,.3); }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--brand-navy); }
.step p { color: var(--text-muted); font-size: 14px; }

/* ── HOST CTA ── */
.host-cta { background: linear-gradient(135deg, #1B2F5B, #243d75); padding: 80px 0; text-align: center; color: #fff; }
.host-cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.host-cta p { font-size: 18px; color: rgba(255,255,255,.7); margin-bottom: 32px; }

/* ── LISTING PAGE ── */
.listing-page { padding: 32px 24px; }
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; border-radius: var(--radius-lg); overflow: hidden; height: 440px; margin-bottom: 32px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item-0 { grid-row: 1 / 3; }
.gallery-placeholder { grid-column: 1 / -1; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; font-size: 48px; color: var(--text-light); }
.listing-body { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.listing-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.listing-meta { font-size: 13px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.listing-header h1 { font-size: 28px; font-weight: 700; }
.listing-stats { display: flex; gap: 16px; font-size: 14px; color: var(--text-muted); margin-top: 8px; flex-wrap: wrap; }
.wishlist-btn { background: none; border: 1.5px solid var(--border-dark); border-radius: 50%; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; flex-shrink: 0; }
.wishlist-btn.active { color: var(--brand); border-color: var(--brand); }
hr { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.host-info { display: flex; align-items: center; gap: 16px; }
.host-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.host-avatar-initials { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-navy); color: #fff; font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.host-name { font-size: 16px; font-weight: 600; }
.badge-verified { background: #e0f2fe; color: #0369a1; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 100px; margin-left: 6px; }
.host-since { font-size: 13px; color: var(--text-muted); }
.listing-description h3, .amenities h3, .house-rules h3, .reviews-section h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--brand-navy); }
.amenities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.amenity-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.amenity-item i { font-size: 20px; color: var(--brand); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.review-card { padding: 16px; border: 1px solid var(--border); border-radius: var(--radius); }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.reviewer-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-navy); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.review-date { font-size: 12px; color: var(--text-muted); display: block; }

/* ── BOOKING WIDGET ── */
.booking-widget { position: sticky; top: 84px; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-md); }
.widget-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.widget-price .price { font-size: 26px; font-weight: 700; color: var(--brand-navy); }
.widget-price .per-night { font-size: 14px; color: var(--text-muted); }
.widget-rating { margin-left: auto; font-size: 13px; font-weight: 600; }
.date-picker-row { display: grid; grid-template-columns: 1fr 1fr; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 8px; }
.date-field { padding: 10px 12px; }
.date-field:first-child { border-right: 1.5px solid var(--border); }
.date-field label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.date-field input { width: 100%; border: none; outline: none; font-size: 14px; font-family: inherit; }
.guests-field { border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 8px; }
.guests-field label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.guests-field select { width: 100%; border: none; outline: none; font-size: 14px; font-family: inherit; background: transparent; }
.booking-widget textarea { width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px; font-family: inherit; font-size: 14px; resize: none; margin-bottom: 12px; }
.price-breakdown { font-size: 14px; margin-bottom: 12px; }
.breakdown-row { display: flex; justify-content: space-between; padding: 6px 0; }
.breakdown-row.total { font-weight: 700; font-size: 16px; border-top: 1px solid var(--border); margin-top: 8px; padding-top: 12px; }
.no-charge-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 8px; }
.cancellation-note { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.host-notice { background: var(--bg-alt); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 14px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* ── LISTINGS PAGE (browse) ── */
.listings-page { display: grid; grid-template-columns: 280px 1fr; gap: 32px; padding: 32px 24px; align-items: start; }
.filters-sidebar { position: sticky; top: 84px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.filters-sidebar h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--brand-navy); }
.filter-group { margin-bottom: 20px; }
.filter-group label:first-child { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 8px; }
.checkbox-label { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; padding: 4px 0; }
.price-range { display: flex; align-items: center; gap: 8px; }
.price-range input { flex: 1; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px; font-size: 14px; }
.filter-group select { width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px; font-size: 14px; font-family: inherit; }
.listings-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.results-count { font-size: 14px; color: var(--text-muted); }
.sort-select select { border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 8px 12px; font-size: 14px; font-family: inherit; }
.pagination { display: flex; gap: 8px; margin-top: 32px; justify-content: center; }
.page-btn { padding: 8px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; text-decoration: none; color: var(--text); }
.page-btn.active { background: var(--brand-navy); border-color: var(--brand-navy); color: #fff; }
.empty-results { text-align: center; padding: 80px 24px; color: var(--text-muted); }
.empty-results h3 { font-size: 20px; margin: 16px 0 8px; color: var(--text); }

/* ── FORMS ── */
.form-container { max-width: 800px; margin: 0 auto; padding: 40px 24px; }
.form-container h1 { font-size: 28px; font-weight: 700; margin-bottom: 32px; color: var(--brand-navy); }
.form-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 24px; }
.form-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); color: var(--brand-navy); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 14px; font-family: inherit; transition: border-color .15s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(245,166,35,.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-4 { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
.form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 24px; }
.amenities-checklist { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.amenity-group h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 8px; }
.existing-photos { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.photo-thumb { position: relative; width: 80px; height: 80px; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.cover-badge { position: absolute; bottom: 4px; left: 4px; background: rgba(0,0,0,.6); color: #fff; font-size: 9px; padding: 2px 5px; border-radius: 3px; }
.photo-delete { position: absolute; top: 3px; right: 3px; background: rgba(0,0,0,.6); color: #fff; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; font-size: 12px; text-decoration: none; }

/* ── AUTH PAGES ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f0f4ff 0%, #fef9f0 100%); padding: 24px; }
.auth-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 440px; box-shadow: 0 4px 32px rgba(27,47,91,.08); }
.auth-logo { text-align: center; margin-bottom: 24px; }
.auth-logo-img { height: 44px; width: auto; object-fit: contain; }
.auth-card h1 { font-size: 24px; font-weight: 700; margin-bottom: 4px; color: var(--brand-navy); text-align: center; }
.auth-card .auth-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; text-align: center; }
.auth-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-muted); }
.auth-footer a { color: var(--brand-navy); text-decoration: none; font-weight: 600; }
.auth-footer a:hover { color: var(--brand); }

/* ── STATUS BADGES ── */
.status-badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; text-transform: capitalize; }
.status-active    { background: #dcfce7; color: #16a34a; }
.status-confirmed { background: #dcfce7; color: #16a34a; }
.status-pending   { background: #fef3c7; color: #d97706; }
.status-draft     { background: #f3f4f6; color: #6b7280; }
.status-cancelled { background: #fee2e2; color: #dc2626; }
.status-suspended { background: #fee2e2; color: #dc2626; }
.status-paid      { background: #d1fae5; color: #059669; }
.status-host      { background: #ede9fe; color: #7c3aed; }
.status-guest     { background: rgba(27,47,91,.08); color: var(--brand-navy); }
.status-admin     { background: #fff7ed; color: #c2410c; }

/* ── EMPTY STATE ── */
.empty-state { text-align: center; padding: 60px 24px; }
.empty-state h3 { font-size: 18px; font-weight: 600; margin: 16px 0 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 16px; }

/* ── FOOTER ── */
.footer { background: #0d1b35; color: rgba(255,255,255,.7); padding: 60px 0 24px; margin-top: 80px; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 32px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 12px; letter-spacing: .04em; }
.footer-col a { display: block; color: rgba(255,255,255,.55); font-size: 13px; text-decoration: none; margin-bottom: 8px; transition: color .15s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; font-size: 13px; display: flex; justify-content: space-between; align-items: center; }

/* ── ALERTS ── */
.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; margin-bottom: 16px; display: flex; align-items: flex-start; gap: 8px; }
.alert-success { background: #dcfce7; color: #166534; border-left: 3px solid #16a34a; }
.alert-error   { background: #fee2e2; color: #991b1b; border-left: 3px solid #dc2626; }
.alert-info    { background: #e0f2fe; color: #075985; border-left: 3px solid #0369a1; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .listing-body { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .listings-page { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .search-bar { flex-direction: column; border-radius: var(--radius); }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); }
  .btn-search { padding: 14px; width: 100%; justify-content: center; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .gallery-item-0 { grid-row: auto; }
  .gallery-item:not(:first-child) { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
  .nav-inner { height: 60px; }
  .nav-logo-img { height: 32px; }
}
