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

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

/* TOP NAV WRAPPER */
.topnav{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: transparent; /* Bootstrap nav has the background */
}

/* Remove bootstrap brand spacing */
.navbar-brand{
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove extra left padding from container */
.navbar .container-fluid{
  padding-left: 10px;   /* adjust to 0 if you want it tighter */
  padding-right: 20px;
}

/* Make logo sit properly */
.nav-logo{
  height: 54px;
  width: auto;
  display: block;
}


/* Bigger + clearer brand */


/* Your navbar background (keep your blue gradient) */
/* Kill bootstrap navbar vertical padding */
.ojahub-navbar{
  --bs-navbar-padding-y: 0rem;
  padding-top: 20px !important;
  padding-bottom: 0 !important;
  min-height: 80px; /* make navbar tall like Oraimo */
}

/* Remove container padding totally (tight like Oraimo) */
.ojahub-navbar .container-fluid{
  padding-left: 0 !important;
  padding-right: 10px !important;
}

/* Brand should touch left + no extra space */
.ojahub-navbar .navbar-brand{
  margin: 0 !important;
  padding: 20px !important;
  display: flex !important;
  align-items: center !important;
  height: 80px;         /* same as navbar height */
}
.ojahub-navbar .nav-logo{
  object-fit: contain;
  object-position: center; /* ✅ center inside the image box */
}

/* BIG LOGO like Oraimo + no space */
.ojahub-navbar .nav-logo{
  height: 72px;         /* ✅ BIG */
  width: auto;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain;
}

/* Make logo BIG like oraimo + remove “air” */
.ojahub-navbar .navbar-brand img.nav-logo{
  height: 72px;          /* ✅ increase logo size */
  width: auto;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: contain;
}

/* Reduce spacing between brand and first nav link */
.ojahub-navbar .navbar-nav{
  gap: 6px;
}

/* Make links look clean */
.ojahub-navbar .nav-link{
  font-weight: 600;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

/* Dropdown should show above everything */
.dropdown-menu{
  z-index: 99999 !important;
}

/* Fix dropdown looking hidden behind header */
.topnav{
  overflow: visible !important;
}
.topnav *{
  overflow: visible !important;
}

/* Mobile: make dropdown menu full width and readable */
@media (max-width: 991px){
  .ojahub-navbar{
    min-height: 70px;
  }

  .ojahub-navbar .navbar-collapse{
    background: linear-gradient(180deg, var(--blue), var(--blue2));
    padding: 12px 10px;
    border-radius: 0 0 14px 14px;
  }

  .ojahub-navbar .nav-link{
    padding: 12px 8px !important;
  }

  .dropdown-menu{
    width: 100%;
  }
}


/* 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: 700;
}
.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: 600;
  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: 800;
  color:#111827;
}
.promo p{
  margin:6px 0 0;
  color:#1f2937;
  opacity:.9;
  font-weight:600;
}
.promo-btn{
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  color:#fff;
  text-decoration:none;
  font-weight:800;
  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:600;
}
.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;
}
.dot{ opacity:.6; }

.detail-cat{
  margin:10px 0 0;
  color:#374151;
  font-weight:600;
}
.detail-loc{
  margin:10px 0 0;
  color:#374151;
}
.muted{ color: var(--muted); font-weight:600; }

.sep{
  border:none;
  border-top: 1px solid var(--line);
  margin: 14px 0;
}

.detail-desc{
  margin:0;
  color:#374151;
  line-height: 1.55;
}

.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;
}

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

@media (max-width: 520px){
  .topnav-inner{ gap:10px; }
  .navicon span{ display:none; }
  .pagehead h1{ font-size: 28px; }
}