/* ============================================================
   HORIZON HOME — v2 Design System
   Blue/White theme derived from logo
   Primary:  #1565C0 (logo blue)
   Deep:     #0D47A1 (hero / nav)
   Sky:      #E3F2FD (section tints)
   Accent:   #FF6B35 (CTAs — warm orange, single bold contrast)
   Paper:    #F5F7FA (page background)
   Ink:      #1A2332 (body text)
   Soft:     #5C6E82 (secondary text)
   Line:     #D8E3EE (borders)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary:   #1565C0;
  --deep:      #0D47A1;
  --primary-light: #1976D2;
  --sky:       #E3F2FD;
  --sky2:      #BBDEFB;
  --accent:    #FF6B35;
  --accent-dark: #E55A26;
  --paper:     #F5F7FA;
  --white:     #FFFFFF;
  --ink:       #1A2332;
  --soft:      #5C6E82;
  --line:      #D8E3EE;
  --success:   #1E8A4C;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 8px rgba(21,101,192,0.08);
  --shadow:    0 6px 24px rgba(21,101,192,0.12);
  --shadow-lg: 0 16px 48px rgba(21,101,192,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 15px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Utilities ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }
.tag-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.tag-rent  { background: #E3F2FD; color: #1565C0; }
.tag-sale  { background: #FFF3E0; color: #E65100; }
.tag-new   { background: #E8F5E9; color: #1B5E20; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; border: none; cursor: pointer; border-radius: var(--radius-sm);
  font-family: inherit; font-weight: 600; font-size: 14px;
  padding: 11px 20px; transition: all 0.18s ease; text-decoration: none;
}
.btn-accent   { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary  { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--deep); transform: translateY(-1px); }
.btn-outline  { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white    { background: #fff; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--sky); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ============================================================
   HEADER / NAV
============================================================ */
header {
  background: var(--deep);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.nav-inner {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 20px; max-width: 1200px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.brand img { height: 40px; width: auto; border-radius: 6px; }
.brand-text { line-height: 1.1; }
.brand-text .name {
  font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.3px;
}
.brand-text .tagline {
  font-size: 10px; color: #90CAF9; letter-spacing: 2px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; margin-left: auto;
}
.nav-links a {
  color: #CBD5E1; font-size: 13px; font-weight: 500;
  padding: 7px 12px; border-radius: 6px; transition: all 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-post {
  background: var(--accent); color: #fff !important; font-weight: 700 !important;
  border-radius: var(--radius-sm) !important;
}
.nav-post:hover { background: var(--accent-dark) !important; }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(135deg, var(--deep) 0%, #1565C0 50%, #1976D2 100%);
  padding: 56px 20px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  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 {
  max-width: 1200px; margin: 0 auto; text-align: center; position: relative;
}
.hero-eyebrow {
  display: inline-block; background: rgba(255,255,255,0.15);
  color: #90CAF9; font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(28px, 4.5vw, 50px); font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 12px;
}
.hero h1 span { color: #90CAF9; }
.hero-sub {
  color: #BBDEFB; font-size: 16px; margin-bottom: 36px; max-width: 580px; margin-inline: auto;
}

/* Search bar */
.search-bar {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: stretch;
  max-width: 860px; margin: 0 auto 28px;
}
.search-bar .sb-field {
  flex: 1; min-width: 160px; padding: 16px 18px;
  border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 3px;
}
.search-bar .sb-field:last-of-type { border-right: none; }
.sb-field label {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--soft);
}
.sb-field select, .sb-field input {
  border: none; outline: none; font-family: inherit;
  font-size: 14px; font-weight: 600; color: var(--ink); background: transparent;
  cursor: pointer; padding: 0;
}
.search-btn {
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  padding: 0 28px; font-size: 15px; font-weight: 700; font-family: inherit;
  display: flex; align-items: center; gap: 8px; transition: background 0.15s;
  min-width: 130px; justify-content: center;
}
.search-btn:hover { background: var(--accent-dark); }

.hero-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-top: 8px;
}
.hero-stats .stat strong {
  display: block; font-size: 24px; font-weight: 800; color: #fff;
}
.hero-stats .stat span { font-size: 11px; color: #90CAF9; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================================
   FILTER BAR (below hero)
============================================================ */
.filter-strip {
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm); position: sticky; top: 64px; z-index: 100;
}
.filter-inner {
  max-width: 1200px; margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.filter-chip {
  display: flex; align-items: center; gap: 6px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 7px 14px; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all 0.15s; white-space: nowrap;
}
.filter-chip select {
  border: none; background: transparent; font-family: inherit;
  font-size: 13px; font-weight: 500; cursor: pointer; outline: none; color: var(--ink);
}
.filter-chip.active { background: var(--sky); border-color: var(--primary); color: var(--primary); }
.filter-results { margin-left: auto; font-size: 13px; color: var(--soft); font-weight: 500; }

/* ============================================================
   MAIN LAYOUT (listings + sidebar)
============================================================ */
.listings-layout {
  max-width: 1200px; margin: 0 auto; padding: 28px 20px 60px;
  display: grid; grid-template-columns: 1fr 300px; gap: 24px;
}
@media (max-width: 900px) {
  .listings-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}

/* ── Property card ── */
.prop-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; transition: all 0.18s ease;
  box-shadow: var(--shadow-sm);
}
.prop-card:hover {
  box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--sky2);
}
.prop-card .card-img {
  width: 240px; flex-shrink: 0; position: relative; overflow: hidden; background: var(--sky);
}
.prop-card .card-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease;
}
.prop-card:hover .card-img img { transform: scale(1.04); }
.prop-card .img-badges {
  position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px;
}
.prop-card .card-body { flex: 1; padding: 18px 20px; display: flex; flex-direction: column; }
.prop-card .card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.prop-card .price-block .price {
  font-size: 22px; font-weight: 800; color: var(--primary); line-height: 1;
}
.prop-card .price-block .price-note { font-size: 12px; color: var(--soft); margin-top: 2px; }
.prop-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 8px 0 4px; }
.prop-card .location { font-size: 13px; color: var(--soft); display: flex; align-items: center; gap: 4px; }
.prop-card .specs {
  display: flex; gap: 16px; margin: 12px 0; flex-wrap: wrap;
}
.prop-card .spec {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--ink); font-weight: 500;
}
.prop-card .spec .s-icon { font-size: 15px; }
.prop-card .card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line);
}
.prop-card .posted { font-size: 12px; color: var(--soft); }
.prop-card .card-actions { display: flex; gap: 8px; }

/* grid of cards */
.cards-list { display: flex; flex-direction: column; gap: 16px; }

@media (max-width: 640px) {
  .prop-card { flex-direction: column; }
  .prop-card .card-img { width: 100%; height: 200px; }
}

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.sidebar-box h3 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.sidebar-box .sb-stat {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 13px;
}
.sidebar-box .sb-stat:last-child { border-bottom: none; }
.sidebar-box .sb-stat strong { color: var(--primary); font-weight: 700; }

/* ============================================================
   HOW IT WORKS SECTION
============================================================ */
.how-section {
  background: var(--deep); padding: 60px 20px; text-align: center;
}
.how-section .section-head { color: #fff; font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.how-section .section-sub { color: #90CAF9; margin-bottom: 40px; }
.how-steps {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px;
}
.how-step {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 28px 20px; position: relative;
}
.how-step .step-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent);
  color: #fff; font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
}
.how-step h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.how-step p { color: #90CAF9; font-size: 13px; line-height: 1.5; }

/* ============================================================
   BROKERAGE SECTION
============================================================ */
.brokerage-section {
  background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
  padding: 60px 20px; text-align: center;
}
.brokerage-card {
  max-width: 700px; margin: 0 auto;
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-lg);
}
.brokerage-card .b-icon { font-size: 48px; margin-bottom: 16px; }
.brokerage-card h2 { font-size: 26px; font-weight: 800; color: var(--deep); margin-bottom: 10px; }
.brokerage-card p { color: var(--soft); margin-bottom: 20px; font-size: 15px; }
.brokerage-points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; text-align: left;
}
.b-point {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--sky); border-radius: var(--radius-sm); padding: 12px;
}
.b-point .b-check { color: var(--primary); font-size: 16px; flex-shrink: 0; }
.b-point p { font-size: 13px; color: var(--ink); font-weight: 500; }
@media (max-width: 500px) { .brokerage-points { grid-template-columns: 1fr; } }

/* ============================================================
   POST PROPERTY PAGE
============================================================ */
.post-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--primary) 100%);
  padding: 48px 20px; text-align: center;
}
.post-hero h1 { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.post-hero p { color: #BBDEFB; font-size: 16px; }

.post-form-wrap {
  max-width: 720px; margin: -30px auto 60px; padding: 0 20px;
}
.form-card {
  background: #fff; border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-section-title {
  font-size: 16px; font-weight: 700; color: var(--primary);
  border-bottom: 2px solid var(--sky2); padding-bottom: 10px; margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--ink); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 14px; color: var(--ink); background: var(--paper);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-note-box {
  background: var(--sky); border: 1px solid var(--sky2);
  border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 20px; font-size: 13px; color: var(--ink);
}
.form-note-box strong { color: var(--primary); }

/* ============================================================
   AGREEMENT MODAL
============================================================ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(13,71,161,0.6);
  display: none; align-items: flex-start; justify-content: center;
  padding: 30px 16px; overflow-y: auto; z-index: 500;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #fff; border-radius: var(--radius-lg); max-width: 640px; width: 100%;
  padding: 32px; position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; font-size: 22px; cursor: pointer; color: var(--soft);
  line-height: 1; font-weight: 700;
}
.modal-box h2 { font-size: 20px; font-weight: 800; color: var(--deep); margin-bottom: 6px; }
.modal-box .modal-sub { font-size: 13px; color: var(--soft); margin-bottom: 20px; }
.agreement-text {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px; font-size: 12.5px; color: var(--ink); line-height: 1.7;
  max-height: 220px; overflow-y: auto; margin-bottom: 16px;
}
.agree-check {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px;
  font-size: 13px; color: var(--ink);
}
.agree-check input { margin-top: 3px; accent-color: var(--primary); }

/* ============================================================
   PROPERTY DETAIL PAGE
============================================================ */
.detail-hero {
  background: var(--deep); padding: 28px 20px 20px;
}
.detail-hero .breadcrumb {
  font-size: 12px; color: #90CAF9; margin-bottom: 10px;
}
.detail-hero .breadcrumb a { color: #90CAF9; }
.detail-hero h1 { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.detail-hero .d-meta { display: flex; gap: 14px; flex-wrap: wrap; color: #BBDEFB; font-size: 13px; }

.detail-body {
  max-width: 1200px; margin: 0 auto; padding: 28px 20px 60px;
  display: grid; grid-template-columns: 1fr 340px; gap: 28px;
}
@media (max-width: 860px) { .detail-body { grid-template-columns: 1fr; } }

.photo-gallery {
  border-radius: var(--radius); overflow: hidden;
  background: var(--sky); margin-bottom: 20px;
  position: relative;
}
.photo-gallery .main-photo { width: 100%; height: 340px; object-fit: cover; }
.photo-gallery .photo-count {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(0,0,0,0.6); color: #fff; font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}

.detail-section {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; margin-bottom: 16px; box-shadow: var(--shadow-sm);
}
.detail-section h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 16px; }
.specs-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px;
}
.spec-item {
  background: var(--paper); border-radius: var(--radius-sm); padding: 12px;
}
.spec-item .s-label { font-size: 11px; color: var(--soft); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.spec-item .s-val { font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 3px; }

.enquiry-sticky {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); position: sticky; top: 80px;
}
.enquiry-sticky .price-big { font-size: 28px; font-weight: 900; color: var(--primary); }
.enquiry-sticky .price-note { font-size: 13px; color: var(--soft); margin-bottom: 20px; }
.enquiry-sticky h3 { font-size: 15px; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.whatsapp-btn {
  background: #25D366; color: #fff; border: none; border-radius: var(--radius-sm);
  padding: 12px; width: 100%; font-family: inherit; font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px; transition: background 0.15s;
}
.whatsapp-btn:hover { background: #1EBE5C; }

/* ============================================================
   ADMIN PAGE
============================================================ */
.admin-header-bar {
  background: var(--deep); padding: 14px 20px; display: flex;
  align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.admin-header-bar .brand { display: flex; align-items: center; gap: 10px; }
.admin-header-bar img { height: 36px; border-radius: 6px; }
.admin-header-bar h1 { font-size: 16px; font-weight: 700; color: #fff; }
.admin-wrap { max-width: 1000px; margin: 0 auto; padding: 28px 20px 70px; }
.admin-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--line); margin-bottom: 24px;
}
.admin-tab {
  padding: 10px 20px; font-size: 14px; font-weight: 600; cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px; color: var(--soft);
  transition: all 0.15s;
}
.admin-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table th { background: var(--deep); color: #fff; text-align: left; padding: 12px 16px; font-size: 13px; font-weight: 600; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 13px; vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--sky); }
.admin-table .td-actions { display: flex; gap: 6px; }
.badge-rent { background: #E3F2FD; color: #1565C0; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }
.badge-sale { background: #FFF3E0; color: #E65100; padding: 3px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--deep); color: #90CAF9;
}
.footer-main {
  max-width: 1200px; margin: 0 auto; padding: 48px 20px 32px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
}
@media (max-width: 700px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .footer-main { grid-template-columns: 1fr; } }
.footer-brand .brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand img { height: 38px; border-radius: 6px; }
.footer-brand .name { font-size: 17px; font-weight: 800; color: #fff; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-col a { display: block; font-size: 13px; color: #90CAF9; margin-bottom: 8px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 20px;
  max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px;
}
.footer-bottom a { color: #90CAF9; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .search-bar { flex-direction: column; }
  .search-bar .sb-field { border-right: none; border-bottom: 1px solid var(--line); }
  .search-btn { padding: 14px; }
  .nav-links .nav-link-hide { display: none; }
}
