:root{
  --blue:#1f3fb5;
  --blue2:#263eaa;
  --orange:#f59e0b;
  --orange2:#f48c06;
  --bg:#f6f2ef;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --shadow: 0 8px 24px rgba(16,24,40,.08);
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
}

/* ========== NAVBAR FIXES ========== */
.topnav{
  position:sticky;
  top:0;
  z-index:9999;
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.ojahub-navbar{ background:transparent !important; }

/* remove bootstrap brand spacing */
.navbar-brand{
  margin:0 !important;
  padding:0 !important;
  display:flex;
  align-items:center;
}

/* make brand area tight */
.navbar .container-fluid{
  padding-left: 12px;
  padding-right: 16px;
}

/* logo size (adjust if you want bigger) */
.nav-logo{
  height: 44px;   /* try 50px if you want bigger */
  width: auto;
  display:block;
}

/* dropdown always visible above page */
.dropdown-menu{
  z-index: 999999 !important;
  border-radius: 14px;
  padding: 8px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.dropdown-item{
  font-weight:700;
  border-radius: 10px;
  padding: 10px 12px;
}
.dropdown-item:hover{
  background: rgba(245,158,11,.15);
}

/* ========== PAGE ========== */
.page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px;
}
.backlink{
  display:inline-block;
  margin: 14px 0 10px;
  color:#4b5563;
  text-decoration:none;
  font-weight:600;
}
.backlink:hover{ text-decoration:underline; }

.pagehead h1{
  margin:0;
  font-size: 34px;
  letter-spacing:-.6px;
}
.pagehead p{
  margin:6px 0 0;
  color:var(--muted);
  font-size: 15px;
}

/* SEARCH */
.searchbar{
  margin-top:14px;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow: 0 6px 18px rgba(16,24,40,.05);
}
.searchicon{ opacity:.75; }
.searchbar input{
  border:none;
  outline:none;
  width:100%;
  font-size:15px;
  background:transparent;
}

/* LAYOUT */
.layout{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:18px;
  align-items:start;
}

/* LEFT LIST */
.list{ display:flex; flex-direction:column; gap:14px; }

.vendor-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.vendor-mini{
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  display:flex;
  gap:12px;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .08s ease, background .08s ease;
}
.vendor-mini:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.92);
}
.vendor-mini.active{
  outline: 2px solid rgba(245,158,11,.35);
  background: rgba(255,255,255,.95);
}

.thumb{
  width: 86px;
  height: 86px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.05);
}
.mini-info h3{
  margin:0;
  font-size: 15px;
  font-weight: 800;
}
.mini-meta{
  margin:4px 0 0;
  color:#374151;
  font-size: 13px;
}
.mini-loc{
  margin:6px 0 0;
  color:var(--muted);
  font-size: 12.5px;
}
.mini-chip{ margin-top:8px; }

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid var(--line);
  background: #fff;
  color:#111827;
}
.chip.ok{
  border-color: rgba(34,197,94,.25);
  background: rgba(34,197,94,.08);
}
.chip.ghost{
  background: rgba(255,255,255,.75);
}

/* PROMO */
.promo{
  background: linear-gradient(90deg, rgba(245,158,11,.95), rgba(244,140,6,.95));
  border-radius: 18px;
  padding: 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  box-shadow: 0 10px 26px rgba(245,158,11,.25);
}
.promo h4{
  margin:0;
  font-size: 16px;
  font-weight: 900;
  color:#111827;
}
.promo p{
  margin:6px 0 0;
  color:#1f2937;
  opacity:.9;
  font-weight:700;
}
.promo-btn{
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  color:#fff;
  text-decoration:none;
  font-weight:900;
  padding: 10px 14px;
  border-radius: 12px;
  white-space:nowrap;
}

/* RIGHT DETAILS */
.detail{
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.detail-hero{
  height: 210px;
  background: #e5e7eb;
}
.detail-hero img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.detail-body{ padding: 16px; }
.detail-body h2{
  margin:0;
  font-size: 26px;
  letter-spacing:-.4px;
}
.detail-verified{
  margin-top: 8px;
  display:flex;
  align-items:center;
  gap:8px;
  color:#374151;
  font-weight:700;
}
.badge-verified{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  font-size: 13px;
  font-weight:800;
}
.dot{ opacity:.6; }
.detail-cat{
  margin:10px 0 0;
  color:#374151;
  font-weight:800;
}
.detail-loc{ margin:10px 0 0; color:#374151; }
.muted{ color: var(--muted); font-weight:700; }

.sep{
  border:none;
  border-top: 1px solid var(--line);
  margin: 14px 0;
}
.detail-desc{
  margin:0;
  color:#374151;
  line-height: 1.55;
  font-weight:600;
}
.detail-chips{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.whatsapp-btn{
  margin-top: 16px;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--orange), var(--orange2));
  color:#111827;
  text-decoration:none;
  font-weight:900;
  font-size: 16px;
  box-shadow: 0 12px 26px rgba(245,158,11,.35);
}
.wa-icon{ width:22px; height:22px; display:grid; place-items:center; }

/* sticky details on desktop */
@media (min-width: 981px){
  .detail{ position: sticky; top: 86px; }
}

/* RESPONSIVE */
@media (max-width: 980px){
  .layout{ grid-template-columns: 1fr; }
  .vendor-grid{ grid-template-columns: 1fr; }
}