/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #f5f6fa;
  color: #1a1a2e;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== VARIABLES ===== */
:root {
  --navy:   #0d1b3e;
  --blue:   #1a3a6b;
  --gold:   #c9922a;
  --gold-l: #f0b942;
  --white:  #ffffff;
  --gray:   #f0f2f8;
  --gray-m: #d0d5e8;
  --text:   #1a1a2e;
  --muted:  #6b7280;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,27,62,0.10);
  --shadow-lg: 0 8px 40px rgba(13,27,62,0.18);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold-l); }
.nav-logo svg { width: 32px; height: 32px; }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  color: #c9d4f0; font-size: 0.92rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-links a.active { color: var(--gold-l); }
.nav-cta { display: flex; gap: 10px; }
.btn { display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px; border-radius: 8px; font-weight: 600;
  font-size: 0.9rem; border: none; cursor: pointer; transition: all 0.15s; }
.btn-outline { background: transparent; border: 1.5px solid #4a6fa5; color: #c9d4f0; }
.btn-outline:hover { border-color: var(--gold-l); color: var(--gold-l); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-l); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,146,42,0.4); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: #1e4d96; transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-xl { padding: 16px 40px; font-size: 1.05rem; border-radius: 12px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #0d2d5c 100%);
  padding: 80px 32px 60px;
  text-align: center;
  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-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,146,42,0.18); border: 1px solid rgba(240,185,66,0.35);
  color: var(--gold-l); font-size: 0.82rem; font-weight: 600;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  color: #fff; line-height: 1.15; margin-bottom: 16px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--gold-l); }
.hero p {
  font-size: 1.1rem; color: #9baed0; max-width: 560px;
  margin: 0 auto 36px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Search bar */
.hero-search {
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 800px;
  margin: 48px auto 0;
  box-shadow: var(--shadow-lg);
  display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end;
}
.search-field { flex: 1; min-width: 160px; }
.search-field label { display: block; font-size: 0.78rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 6px; }
.search-field input, .search-field select {
  width: 100%; padding: 10px 14px; border-radius: 8px;
  border: 1.5px solid var(--gray-m); font-size: 0.95rem; color: var(--text);
  background: var(--gray); outline: none; transition: border 0.15s;
}
.search-field input:focus, .search-field select:focus { border-color: var(--blue); background: #fff; }
.search-btn { flex-shrink: 0; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--gray-m);
  padding: 20px 32px;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-size: 1.7rem; font-weight: 800; color: var(--navy); }
.stat-num span { color: var(--gold); }
.stat-lbl { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ===== SECTION ===== */
.section { padding: 60px 32px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 44px; }
.section-tag {
  display: inline-block; background: rgba(26,58,107,0.08);
  color: var(--blue); font-size: 0.78rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--navy);
  line-height: 1.2; margin-bottom: 10px;
}
.section-header p { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }

/* ===== PROPERTY CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.prop-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prop-img {
  position: relative; height: 200px; overflow: hidden;
  background: linear-gradient(135deg, #c5cfe0, #8fa3c5);
  display: flex; align-items: center; justify-content: center;
}
.prop-img .img-placeholder { font-size: 3.5rem; opacity: 0.4; }
.badge-featured {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-new {
  position: absolute; top: 12px; right: 12px;
  background: #16a34a; color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px;
}
.badge-type {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(13,27,62,0.75); color: #fff; backdrop-filter: blur(4px);
  font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 6px;
}
.prop-body { padding: 18px 20px; }
.prop-price {
  font-size: 1.5rem; font-weight: 800; color: var(--navy);
  margin-bottom: 4px;
}
.prop-price small { font-size: 0.8rem; color: var(--muted); font-weight: 500; }
.prop-title { font-size: 0.97rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.prop-loc {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.85rem; color: var(--muted); margin-bottom: 12px;
}
.prop-specs {
  display: flex; gap: 14px; padding-top: 12px;
  border-top: 1px solid var(--gray);
  font-size: 0.83rem; color: var(--muted); font-weight: 500;
}
.prop-spec { display: flex; align-items: center; gap: 4px; }

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step-card {
  background: #fff; border-radius: var(--radius); padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: transform 0.2s;
}
.step-card:hover { transform: translateY(-3px); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold-l);
  font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step-icon { font-size: 2rem; margin-bottom: 10px; }
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-card p { font-size: 0.88rem; color: var(--muted); }

/* ===== MEMBERSHIP ===== */
.membership-section {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 70px 32px;
}
.membership-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.membership-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800;
  color: #fff; margin-bottom: 14px; line-height: 1.2;
}
.membership-text h2 em { font-style: normal; color: var(--gold-l); }
.membership-text p { color: #9baed0; font-size: 0.97rem; margin-bottom: 24px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: center; gap: 10px;
  color: #c5d4f0; font-size: 0.92rem;
}
.feature-list li::before {
  content: '✓'; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,146,42,0.2); color: var(--gold-l);
  font-weight: 800; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.price-card {
  background: #fff; border-radius: 20px; padding: 36px 32px;
  text-align: center; box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}
.price-card .tag {
  display: inline-block; background: rgba(201,146,42,0.12);
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 1px;
}
.price-card .price-amount {
  font-size: 2.8rem; font-weight: 900; color: var(--navy); line-height: 1;
}
.price-card .price-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.price-card .price-period { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.price-divider { border: none; border-top: 1px solid var(--gray-m); margin: 20px 0; }
.price-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.price-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: var(--text);
}
.price-features li .chk { color: #16a34a; font-weight: 800; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff; border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow); display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--gold-l); font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.service-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.service-card p { font-size: 0.83rem; color: var(--muted); }

/* ===== TESTIMONIALS / TRUST ===== */
.trust-bar {
  background: var(--gray); padding: 36px 32px; text-align: center;
  border-top: 1px solid var(--gray-m); border-bottom: 1px solid var(--gray-m);
}
.trust-bar p { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.trust-logos { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.trust-logo { color: #b0b8cc; font-weight: 800; font-size: 1.1rem; letter-spacing: 1px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(90deg, var(--gold) 0%, #e0a020 100%);
  padding: 48px 32px; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 0.97rem; margin-bottom: 24px; }
.btn-white { background: #fff; color: var(--gold); font-weight: 800; }
.btn-white:hover { background: #fff8ee; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy); color: #9baed0;
  padding: 48px 32px 24px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { margin-bottom: 12px; font-size: 1.1rem; }
.footer-brand p { font-size: 0.87rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.87rem; color: #9baed0; transition: color 0.15s; }
.footer-col ul li a:hover { color: var(--gold-l); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); color: #9baed0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: background 0.15s, color 0.15s;
}
.social-btn:hover { background: var(--gold); color: #fff; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold-l); }

/* ===== LISTING PAGE ===== */
.listing-layout {
  display: grid; grid-template-columns: 280px 1fr; gap: 28px;
  max-width: 1200px; margin: 0 auto; padding: 32px;
}
.filters-panel {
  background: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); align-self: start;
  position: sticky; top: 84px;
}
.filters-panel h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 18px; display: flex; justify-content: space-between; }
.filters-panel h3 a { font-size: 0.8rem; font-weight: 500; color: var(--gold); }
.filter-group { margin-bottom: 22px; }
.filter-group label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 8px; }
.filter-group select, .filter-group input[type=text], .filter-group input[type=number] {
  width: 100%; padding: 9px 12px; border-radius: 8px;
  border: 1.5px solid var(--gray-m); font-size: 0.9rem;
  background: var(--gray); outline: none; transition: border 0.15s;
}
.filter-group select:focus, .filter-group input:focus { border-color: var(--blue); background: #fff; }
.price-range { display: flex; gap: 8px; align-items: center; }
.price-range span { color: var(--muted); font-size: 0.85rem; }
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.checkbox-item input { accent-color: var(--blue); width: 16px; height: 16px; }
.checkbox-item span { font-size: 0.88rem; color: var(--text); }
.btn-filter { width: 100%; margin-top: 4px; justify-content: center; background: var(--navy); color: #fff; }
.btn-filter:hover { background: var(--blue); }

.listing-main {}
.listing-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.listing-header h2 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.listing-header h2 span { color: var(--muted); font-weight: 500; font-size: 0.95rem; }
.sort-select { padding: 8px 12px; border-radius: 8px; border: 1.5px solid var(--gray-m); font-size: 0.88rem; background: #fff; }
.tab-pills { display: flex; gap: 6px; margin-bottom: 20px; }
.pill {
  padding: 7px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600;
  border: 1.5px solid var(--gray-m); background: #fff; cursor: pointer;
  transition: all 0.15s; color: var(--muted);
}
.pill.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.pill:hover:not(.active) { border-color: var(--blue); color: var(--blue); }

/* ===== DETAIL PAGE ===== */
.detail-layout {
  max-width: 1100px; margin: 0 auto; padding: 32px;
  display: grid; grid-template-columns: 1fr 360px; gap: 28px;
}
.detail-gallery {
  background: linear-gradient(135deg, #c5cfe0, #8fa3c5);
  border-radius: var(--radius); height: 380px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.detail-thumbs { display: flex; gap: 10px; }
.thumb {
  width: 80px; height: 60px; border-radius: 8px;
  background: linear-gradient(135deg, #c5cfe0, #8fa3c5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; cursor: pointer; opacity: 0.7;
  border: 2px solid transparent; transition: all 0.15s;
}
.thumb.active { opacity: 1; border-color: var(--blue); }
.detail-info {}
.detail-price { font-size: 2.2rem; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.detail-title { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.detail-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.tag-chip {
  background: var(--gray); color: var(--text);
  font-size: 0.8rem; font-weight: 600; padding: 4px 12px; border-radius: 20px;
}
.detail-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px;
}
.spec-box {
  background: var(--gray); border-radius: 10px; padding: 14px 16px;
}
.spec-box .lbl { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.spec-box .val { font-size: 0.97rem; font-weight: 700; color: var(--navy); }

.detail-sidebar {}
.sidebar-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow); margin-bottom: 16px;
}
.sidebar-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--gray);
  font-size: 0.9rem; color: var(--text);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-size: 1.1rem; width: 24px; text-align: center; }
.addon-list { display: flex; flex-direction: column; gap: 10px; }
.addon-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border-radius: 10px; background: var(--gray);
  font-size: 0.88rem;
}
.addon-item .addon-name { font-weight: 600; color: var(--text); }
.addon-item .addon-price { font-weight: 700; color: var(--gold); }
.btn-addon { margin-top: 4px; font-size: 0.82rem; padding: 6px 12px; background: var(--navy); color: #fff; border-radius: 6px; cursor: pointer; border: none; transition: background 0.15s; }
.btn-addon:hover { background: var(--blue); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: #fff; border-bottom: 1px solid var(--gray-m);
  padding: 12px 32px; font-size: 0.85rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb span { color: var(--muted); }

/* ===== REGISTER/LOGIN MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  z-index: 200; align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: 20px; padding: 36px;
  width: 100%; max-width: 440px; box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.modal h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.modal p { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 6px; }
.form-row input, .form-row select {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid var(--gray-m); font-size: 0.95rem; outline: none;
  transition: border 0.15s;
}
.form-row input:focus, .form-row select:focus { border-color: var(--blue); }
.modal-close { float: right; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .membership-inner { grid-template-columns: 1fr; }
  .listing-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .navbar { padding: 0 16px; }
  .nav-links { display: none; }
  .hero { padding: 50px 16px 40px; }
  .hero-search { flex-direction: column; }
  .stats-bar { gap: 24px; }
  .section { padding: 40px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .listing-layout, .detail-layout { padding: 16px; }
  .breadcrumb { padding: 12px 16px; }
}
