/* ============================================================
   RESET
   ============================================================ */
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}
body {
  background: #ffffff;
}

/* ============================================================
   NAVBAR BASE
   ============================================================ */
.logo-img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}

.ojahub-navbar {
  background: #ffffff;
  /* padding: 18px 0; */
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
}

/* ============================================================
   NAV CONTAINER
   ============================================================ */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between; /* keeps logo left + nav right */
  height: 72px; /* ensures perfect straight line */
}

/* ============================================================
   LOGO
   ============================================================ */
.ojahub-logo {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-blue {
  color: #0d6efd;
}

.logo-orange {
  color: #ff7a00;
}

/* ============================================================
   DESKTOP NAV WRAPPER
   ============================================================ */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;

  margin-left: auto; /* pushes nav to the right */
}

/* ============================================================
   NAV LINKS
   ============================================================ */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center; /* perfect straight line */
  gap: 28px;
}

.nav-link {
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;

  display: flex;
  align-items: center; /* fixes vertical alignment */
  line-height: 1;

  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #111111;
}

.nav-link.active {
  color: #0d6efd;
  font-weight: 600;
}

/* ============================================================
   ACTION BUTTONS
   ============================================================ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.browse-btn,
.cta-btn {
  display: flex;
  align-items: center; /* fixes straight line alignment */
  line-height: 1;
  white-space: nowrap;
}

/* Browse button */
.browse-btn {
  background: #f3f4f6;
  color: #333333;
  border-radius: 8px;
  padding: 16px 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition: all 0.25s ease;
}

.browse-btn:hover {
  background: #0d6efd;
  color: #ffffff;
}

/* CTA button */
.cta-btn {
  background: #ff7a00;
  color: #ffffff;
  border-radius: 8px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  transition: background 0.25s ease;
}

.cta-btn:hover {
  background: #f88623;
}

/* ============================================================
   HAMBURGER — PUSHED TO RIGHT
   ============================================================ */
/* ============================================================
   HAMBURGER BASE
   ============================================================ */
.hamburger {
  display: none;
  margin-left: auto;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  z-index: 1002;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: #333333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ============================================================
   HAMBURGER OPEN → X STATE
   ============================================================ */
.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   OVERLAY
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none; /* ADD THIS */
}

/* Only allow clicks when visible */
.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   MOBILE MENU (hidden for now)
   ============================================================ */
.mobile-menu {
  display: none;
}

/* ============================================================
   TABLET
   ============================================================ */
@media (max-width: 992px) {
  .desktop-nav {
    gap: 20px;
  }

  .nav-links {
    gap: 18px;
  }

  .browse-btn {
    padding: 8px 14px;
  }

  .cta-btn {
    padding: 9px 14px;
  }
}

/* ============================================================
   MOBILE — 768px
   Here we HIDE desktop nav, SHOW hamburger + mobile drawer
   ============================================================ */
@media (max-width: 768px) {
  /* Hide desktop nav */
  .desktop-nav {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Show overlay (block so transition works) */
  .nav-overlay {
    display: block;
    pointer-events: none; /* ADD THIS */
  }

  .nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* Mobile drawer — slides in from the right */
  .mobile-menu {
    display: block; /* always in DOM, just off-screen */
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 999;
    padding: 90px 24px 40px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .mobile-menu ul {
    padding-left: 0;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  /* Mobile links list */
  .mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    border-top: 1px solid #f3f4f6;
    padding-top: 30px;
  }

  .mobile-nav-links li {
    border-bottom: 1px solid #f3f4f6;
  }

  .mobile-nav-links .nav-link {
    display: block;
    width: 100%;
    padding: 16px 4px;
    font-size: 16px;
    color: #374151;
  }

  .mobile-nav-links .nav-link:hover {
    color: #0d6efd;
  }
  .mobile-nav-links .nav-link.active {
    color: #0d6efd;
    font-weight: 600;
  }

  /* Mobile action buttons */
  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }

  .mobile-nav-actions .browse-btn,
  .mobile-nav-actions .cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 15px;
  }
}

/* ============================================================
   SMALL MOBILE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .nav-container {
    padding: 0 12px;
  }
  .ojahub-logo {
    font-size: 20px;
  }
  .mobile-menu {
    width: 100%;
    max-width: 100%;
    padding: 80px 20px 36px;
  }
}

/* ===== HERO SECTION CSS ===== */

.hero {
  background: #f8faff;
  padding: 40px 0 60px;
  overflow: hidden;
  font-family: "Sora", "Inter", sans-serif;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 7rem;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ---- LEFT SIDE ---- */
.hero-left {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 22px;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.07);
}

.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.13;
  margin: 0 0 18px;
  letter-spacing: -1px;
}

.hero-headline-accent {
  color: #ff7a00;
}

#cursor {
  animation: blink 0.7s infinite;
  color: #0f172a;
}

#cursor.accent-cursor {
  color: #ff7a00;
}

.typing-complete #cursor {
  animation: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.hero-description {
  font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 440px;
  font-family: "Inter", sans-serif;
}

/* Search bar */
.search-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 35px 0;
}

.search-box {
  width: 100%;
  background: #ffffff;
  border-radius: 22px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 35px rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.08);
}

.search-input-area {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 2px solid rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  padding: 0 18px;
  min-height: 62px;
  transition: 0.3s ease;
  overflow: hidden;
}

.search-input-area:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.search-input-area input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 16px;
  color: #111827;
  width: 100%;
}

.search-input-area input::placeholder {
  color: #94a3b8;
}

.search-divider {
  width: 1px;
  height: 28px;
  background: #e5e7eb;
}

.search-input-area select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #374151;
  cursor: pointer;
  min-width: 160px;
}

.search-btn {
  border: none;
  outline: none;
  background: #ff7a00;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  white-space: nowrap;
}

.search-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

.search-input-area svg {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .search-box {
    flex-direction: column;
    padding: 12px;
    border-radius: 20px;
  }

  .search-input-area {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }

  .search-divider {
    display: none;
  }

  .search-input-area select {
    width: 100%;
    min-width: 100%;
    border-top: 1px solid #e5e7eb;
    padding-top: 14px;
  }

  .search-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .search-input-area {
    min-height: auto;
  }

  .search-input-area input,
  .search-input-area select {
    font-size: 14px;
  }

  .search-btn {
    font-size: 15px;
    padding: 16px 20px;
  }
}

/* .hero-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  max-width: 480px;
  margin-bottom: 22px;
  transition: border-color 0.2s;
}

.hero-search:focus-within {
  border-color: #2563eb;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0 14px;
  gap: 10px;
}

.search-icon {
  flex-shrink: 0;
}

.search-input {
  border: none;
  outline: none;
  font-size: 14.5px;
  color: #1e293b;
  background: transparent;
  width: 100%;
  padding: 15px 0;
  font-family: "Inter", sans-serif;
}

.search-input::placeholder {
  color: #94a3b8;
}

.search-btn {
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 0 28px;
  height: 52px;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s;
  font-family: "Sora", sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.search-btn:hover {
  background: #e06b00;
} */

/* CTA Buttons */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563eb;
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.18s,
    transform 0.15s;
  font-family: "Sora", sans-serif;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

.btn-arrow {
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: #0f172a;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #cbd5e1;
  transition:
    border-color 0.18s,
    color 0.18s,
    transform 0.15s;
  font-family: "Sora", sans-serif;
}

.btn-outline:hover {
  border-color: #ff7a00;
  color: #ff7a00;
  transform: translateY(-1px);
}

/* Trust icons */
.hero-trust-icons {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  text-align: center;
  font-family: "Inter", sans-serif;
}

.trust-item svg {
  flex-shrink: 0;
}

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.avatars .avatar:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  max-width: 260px;
  font-family: "Inter", sans-serif;
}

/* ---- RIGHT SIDE — CAROUSEL ---- */
.hero-right {
  flex: 0 0 480px;
  max-width: 480px;
}

.carousel-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3.6;
  background: #eef3fd;
  box-shadow:
    0 24px 60px rgba(37, 99, 235, 0.14),
    0 6px 20px rgba(0, 0, 0, 0.08);
}

#carouselTrack {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1.03);
  transition:
    opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.85s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.carousel-slide.exit {
  opacity: 0;
  transform: scale(0.97);
  z-index: 1;
}

.carousel-slide img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    width 0.25s;
}

.dot.active {
  background: #ff7a00;
  width: 22px;
  border-radius: 4px;
}

/* Floating badge */
.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: #2563eb;
  color: #fff;
  border-radius: 12px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
}

.floating-badge svg {
  flex-shrink: 0;
}

.floating-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: "Sora", sans-serif;
}

.floating-badge strong {
  font-size: 13px;
  font-weight: 700;
}

.floating-badge span {
  font-size: 11.5px;
  opacity: 0.82;
  font-family: "Inter", sans-serif;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-right {
    flex: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 40px;
  }

  .hero-container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 4rem;
  }

  .hero-search {
    max-width: 100%;
  }

  .hero-trust-icons {
    gap: 18px;
  }

  .trust-item {
    font-size: 11px;
  }

  @media (max-width: 640px) {
    .carousel-wrapper {
      aspect-ratio: 4 / 3.8;
      border-radius: 18px;
    }
  }

  @media (max-width: 430px) {
    .btn-primary {
      padding: 14px 18px;
    }

    .btn-outline {
      padding: 14px 18px;
    }
  }

  @media (max-width: 404px) {
    .btn-primary {
      padding: 14px 18px;
    }

    .btn-outline {
      padding: 14px 18px;
    }
  }

  @media (max-width: 379px) {
    .btn-primary {
      padding: 14px 10px;
    }

    .btn-outline {
      padding: 14px 10px;
    }
  }
}
/* ===== END HERO SECTION CSS ===== */

/* CATEGORY */

.category-section {
  /* padding: 80px 0; */
  background: #f9fafb;
}

.categories-section .container {
  padding: 3rem 1rem;
}

/* HEADER */
.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.category-header p {
  color: #6b7280;
  margin-top: 8px;
}

.category-header .section-tag {
  color: #ff6b00;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* GRID */
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* CARD */
.category-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #eee;
  transition: all 0.25s ease;
  cursor: pointer;
}

/* ICON */
.category-icon {
  width: 45px;
  height: 45px;
  margin: 0 auto 12px;
  background: #e8f0ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* TEXT */
.category-card h3 {
  font-size: 15px;
  margin-bottom: 5px;
}

.category-card span {
  font-size: 13px;
  color: #6b7280;
}

/* HOVER */
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #dbeafe;
}

/* VIEW ALL */
.view-all {
  text-align: center;
  margin-top: 30px;
}

.view-all a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.view-all a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Featured Vendors Section */
.section {
  padding: 36px 40px 48px;
  background: #f9fafb;
}

.featured-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 2rem;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-header p {
  color: var(--muted);
  font-size: 0.875rem;
}

.section-header .btn-outline {
  background: #ff7a00;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

/* ──Featured Vendors Grid ── */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ── Featured Vendors Card ── */
.featured-vendors-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.featured-vendors-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.featured-vendors-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: var(--border);
}
/* placeholder gradient when no img */
.featured-vendors-card-img-placeholder {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #e8e6e0 0%, #d0cdc5 100%);
}

.featured-vendors-card p {
  margin: 0;
}

.featured-vendors-card-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 6px;
  padding: 4px 9px;
  white-space: nowrap;
  width: fit-content;
}

.verified-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.featured-vendors-card-name {
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2px;
}
.featured-vendors-card-category {
  font-size: 0.8rem;
  color: var(--muted);
}
.featured-vendors-card-location {
  font-size: 0.8rem;
  color: #88898a;
  display: flex;
  align-items: center;
  gap: 4px;
}
.featured-vendors-card-location svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.featured-vendors-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--tag-txt);
  background: var(--tag-bg);
  border-radius: 20px;
  padding: 3px 10px;
}

.replies-tag {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.price-tag {
  background: #f7ebe4;
  color: #0e0e0e;
  border: 1px solid #f4b183;
}

.featured-vendors-card-footer {
  padding: 0 18px 16px;
}

.btn-veiw-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 42px;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  background: #ff7a00;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s ease;
}

.btn-veiw-details i {
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-veiw-details:hover {
  opacity: 0.82;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* nav {
    padding: 0 20px;
    gap: 16px;
  } */
  .section {
    padding: 28px 20px;
  }
  .hero-strip {
    padding: 24px 20px;
  }
  .nav-links {
    display: none;
  }
  .search-wrap input {
    width: 140px;
  }
}
@media (max-width: 560px) {
  .vendor-grid {
    grid-template-columns: 1fr;
  }
  .hero-strip h1 {
    font-size: 1.5rem;
  }
}

/* ── FADE-IN ANIMATION ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.featured-vendors-card {
  opacity: 0;
  animation: fadeUp 0.45s ease forwards;
}
.featured-vendors-card:nth-child(1) {
  animation-delay: 0.05s;
}
.featured-vendors-card:nth-child(2) {
  animation-delay: 0.12s;
}
.featured-vendors-card:nth-child(3) {
  animation-delay: 0.19s;
}
.featured-vendors-card:nth-child(4) {
  animation-delay: 0.26s;
}
.featured-vendors-card:nth-child(5) {
  animation-delay: 0.33s;
}
.featured-vendors-card:nth-child(6) {
  animation-delay: 0.4s;
}

/* How it works */

/* SECTION */
.how-it-works {
  padding: 90px 0;
  background: #ffffff;
}

.simple-process {
  text-align: center;
  margin-bottom: 4rem;
}

/* HEADER */
.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
  background: #f3f4f6;
  padding: 7rem 0 4rem 0;
}

.how-it-works-header h2 {
  font-size: 30px;
  font-weight: 700;
}

/* STEPS WRAPPER */
.how-steps {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* EACH STEP */
.how-step {
  text-align: center;
  max-width: 260px;
}

/* ICON */
.how-icon {
  width: 55px;
  height: 55px;
  background: #e8f0ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  color: #2563eb;
}

/* STEP LABEL */
.step-label {
  display: block;
  color: #f97316;
  font-size: 13px;
  margin-bottom: 5px;
}

/* TITLE */
.how-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* TEXT */
.how-step p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .section-header p {
    width: 60%;
  }

  .section-header .btn-outline {
    text-align: center;
  }
}

/* WHY USE OJAHUB */

/* SECTION */
.why-section {
  padding: 90px 0;
  background: #f9fafb;
}

/* HEADER */
.why-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-header h2 {
  font-size: 30px;
  font-weight: 700;
}

/* GRID */
.why-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  width: 280px;
  border: 1px solid #eee;
  transition: 0.3s;
}

/* ICON */
.why-icon {
  width: 50px;
  height: 50px;
  background: #fff3e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 20px;
  color: #ff7a00;
}

/* TEXT */
.why-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: #6b7280;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .why-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* BROWSE ANDLIST */

/* SECTION */
.cta-section {
  padding: 50px 0;
}

/* GRID */
.cta-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  /* flex-wrap: wrap; */
}

/* GRID */
.cta-grid {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* CARD BASE */
.cta-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 35px 25px;
  border-radius: 20px;
  color: #fff;
  min-height: 220px;
  box-sizing: border-box;
  text-align: center;
}

/* BLUE CARD */
.cta-blue {
  background: linear-gradient(135deg, #1a5cff, #002f9e);
}

/* ORANGE CARD */
.cta-orange {
  background: linear-gradient(135deg, #ff7a00, #e56700);
}

/* TEXT */
.cta-card h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-card p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 380px;
}

/* BUTTON */
.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

.cta-btn-white:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .cta-card {
    width: 100%;
    min-height: 260px;
    padding: 30px 20px;
    box-sizing: border-box;
    justify-content: space-between;
  }

  .cta-card h2 {
    font-size: 22px;
  }

  .cta-card p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .cta-btn-white {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    white-space: nowrap;
  }
}

/* Help us improve */

/* SECTION */
.feedback-section {
  padding: 100px 0;
  background: #f9fafb;
  text-align: center;
}

/* HEADER */
.feedback-header h2 {
  font-size: 28px;
  font-weight: 700;
}

.feedback-header p {
  color: #6b7280;
  margin-top: 10px;
}

/* BOX */
.feedback-box {
  margin: 40px auto;
  max-width: 500px;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: left;
}

.feedback-card {
  cursor: pointer;
  transition: 0.3s;
}

.feedback-card.active {
  border: 2px solid #25d366;
  background: #f0fff4;
}

#feedbackMessage {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  margin-top: 20px;
  border-radius: 10px;
  border: 2px solid #ffcc80; /* light orange border */
  outline: none;
  resize: none;
  background: #fffaf3;
}

#feedbackMessage:focus {
  border-color: #ffb74d;
  box-shadow: 0 0 5px rgba(255, 183, 77, 0.4);
}

/* ITEMS */
.feedback-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  cursor: pointer;
}

.feedback-item input {
  cursor: pointer;
}

/* BUTTON */
.feedback-btn {
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.feedback-btn:hover {
  background: #e56700;
}

/* FOOTER */
.footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #fff;
  padding: 70px 0 40px;
}

/* GRID */
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* COLUMN */
.footer-col {
  min-width: 180px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* LINKS */
.footer-col a {
  display: block;
  color: #cbd5f5;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
}

.footer-desc {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.footer-small {
  font-size: 12px;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto 15px;
}

.footer-copy {
  font-size: 12px;
  color: #64748b;
}

.footer-copy a {
  text-decoration: none;
  color: #64748b;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 30px;
  }

  .footer-col {
    text-align: center;
  }
}

/* ALL PAGES CSS */

/* GENERAL PAGE STYLE */
.page-section {
  padding: 80px 0;
  background: #ffffff;
}

/* HEADER */
.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 700;
}

.page-header p {
  color: #6b7280;
  margin-top: 8px;
}

/* CONTENT */
.page-content {
  max-width: 800px;
  margin: auto;
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
}

/* LISTS */
.page-content ul,
.page-content ol {
  padding-left: 20px;
}

.page-content li {
  margin-bottom: 10px;
}

/* ABOUT SECTION */
.about-section {
  font-family: "DM Sans", sans-serif;
  background: #ffffff;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

/* CONTAINER  */
.about-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 3rem;
}

/* LEFT COLUMN */
.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
}

.about-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e56700;
  display: inline-block;
}

.about-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #111111;
  margin: 0;
}

.about-heading em {
  color: #2563eb;
}

.about-tagline {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
  margin: 0;
  max-width: 380px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #e56700;
  text-decoration: none;
  margin-top: 0.5rem;
  width: fit-content;
}

.about-cta-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #e56700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.about-cta:hover .about-cta-arrow {
  background: #e56700;
  color: white;
  transform: translateX(3px);
}

/* STATS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 0.5rem;
}

.about-stat {
  background: #f5f5f4;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}

.about-stat-number {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #e56700;
  display: block;
  line-height: 1;
}

.about-stat-label {
  font-size: 11px;
  color: #888888;
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* RIGHT COLUMN */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-body {
  font-size: 1rem;
  color: #555555;
  line-height: 1.8;
  margin: 0;
}

/* FEATURES LIST */
.about-features {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.75rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 1rem 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e1f5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-label {
  font-size: 15px;
  font-weight: 500;
  color: #111111;
  margin: 0;
}

.about-feature-sub {
  font-size: 12px;
  color: #888888;
  margin: 2px 0 0;
}

/* RESPONSIVE */
@media (max-width: 700px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-section {
    padding: 3.5rem 1.25rem;
  }
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #ffffff;
  /* padding: 5rem 1.5rem; */
}

.how-it-works-container {
  max-width: 1000px;
  margin: 0 auto;
}

.how-it-works-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff7a00;
  margin-bottom: 1rem;
}

.how-it-works-eyebrow-line {
  width: 24px;
  height: 1.5px;
  background: #ff7a00;
  display: inline-block;
}

.how-it-works-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.how-it-works-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

/* STEPS GRID */
.how-it-works-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: #e2e8f0;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  margin: 7rem 1rem 4rem 1rem;
}

.how-it-works-step {
  background: #ffffff;
  padding: 2rem 2rem 2rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: background 0.2s;
}

.how-it-works-step:hover {
  background: #fafafa;
}

/* STEP LEFT (number + connector + icon) */
.how-it-works-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.how-it-works-step-number {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  font-family: "Syne", sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-step-line {
  width: 1.5px;
  flex: 1;
  min-height: 20px;
  background: #e2e8f0;
}

.how-it-works-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* STEP BODY */
.how-it-works-step-body {
  padding-top: 6px;
}

.how-it-works-step-title {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 6px;
}

.how-it-works-step-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* NOTE BANNER */
.how-it-works-note {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 5rem 1rem 4rem 1rem;
}

.how-it-works-note-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #e56700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-it-works-note-title {
  font-size: 14px;
  font-weight: 600;
  color: #9a3412;
  margin: 0 0 4px;
}

.how-it-works-note-text {
  font-size: 13px;
  color: #c2410c;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  /* .how-it-works-section {
    padding: 4rem 1.25rem;
  } */

  .how-it-works-header {
    margin-bottom: 2.5rem;
  }

  .how-it-works-steps {
    grid-template-columns: 1fr;
  }
}

/* HELP US IMPROVE OJA HUB */
.help-us-improve {
  padding: 50px 20px;
  background: #f9fafb;
}

/* Reuse from previous section for consistency */
.section-tag {
  color: #ff6b00;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #0f172a;
}

.section-subtitle {
  max-width: 500px;
  margin: 10px auto 40px;
  color: #6b7280;
}

/* OPTIONS GRID */
.feedback-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* CARD STYLE */
.feedback-card {
  background: #f0f7ff;
  padding: 20px;
  border-radius: 12px;
  flex: 1 1 200px;
  max-width: 260px;
  cursor: pointer;
  transition: 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
}

.feedback-card i {
  font-size: 24px;
  color: #ff6b00;
  margin-bottom: 10px;
}

.feedback-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #374151;
}

/* HOVER EFFECT */
.feedback-card:hover {
  background: #fff;
  border: 1px solid #ff6b00;
  transform: translateY(-5px);
}

/* BUTTON */
.feedback-btn {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 12px 25px;
  margin-top: 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.feedback-btn i {
  margin-right: 8px;
}

.feedback-btn:hover {
  background: #1ebe5d;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .feedback-options {
    gap: 15px;
  }

  .feedback-card {
    padding: 15px;
  }

  /* .feedback-btn {
    width: 100%;
    max-width: 300px;
  } */
}

/* CONTACT SECTION */
.contact-hero {
  background: #f3f4f6;
  text-align: center;
  padding: 7rem 0 4rem 0;
}

.contact-hero .eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ff6b00;
  margin-bottom: 12px;
}

.contact-hero h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.contact-hero p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto;
}

.contact-body {
  background: #fff;
  padding: 64px 24px 72px;
}

/* Channel cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 40px;
}

.contact-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 26px 26px;
  background: #fff;
}

.icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fef0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: #d4700a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  font-weight: 500;
  color: #ff6b00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.15s;
}

.card-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* Info strip */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}

.info-card {
  background: #f7f8fa;
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-card svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: #2563eb;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.info-card strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.info-card span {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .response-time span {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .contact-hero {
    padding-top: 7rem;
  }

  .contact-hero p {
    width: 80%;
  }

  .contact-body {
    padding: 40px 16px 48px;
  }

  .cards-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* BUYING SAFE SECTION */
.buying-safe-hero {
  background: #f3f4f6;
  text-align: center;
  padding: 7rem 0 4rem 0;
}

.buying-safe-hero p {
  width: 90%;
}

.buying-safe-hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ff6b00;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.buying-safe-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.buying-safe-hero p {
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards section */
.buying-safe-cards-section {
  background: #fff;
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.buying-safe-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .buying-safe-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .buying-safe-cards-grid {
    grid-template-columns: 1fr;
  }
}

.buying-safe-card {
  background: #fff;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  padding: 28px 24px;
}

.buying-safe-card-icon {
  width: 52px;
  height: 52px;
  background: #fff4ec;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.buying-safe-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ff6b00;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.buying-safe-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.buying-safe-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Reminder */
.reminder-wrap {
  background: #fff;
  padding: 0 24px 80px;
}

.reminder {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff9f5;
  border: 1px solid #ffdcc4;
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}

.reminder h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.reminder p {
  font-size: 15px;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* MARKETPLACE SECTION */
.marketplace-section {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.marketplace-container {
  max-width: 1000px;
  margin: 0 auto;
}

.marketplace-hero {
  text-align: center;
}

.marketplace-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ff6b00;
  margin-bottom: 12px;
}

.marketplace-hero h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.marketplace-hero p {
  font-size: 15px;
  color: #555;
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto;
}

.marketplace-body {
  background: #fff;
  padding: 64px 24px 72px;
}

.mp-wrapper {
  padding: 20px;
}

/* ================= SEARCH ================= */
.mp-search-section {
  margin-bottom: 15px;
}

.mp-search-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

/* ================= CATEGORY BAR ================= */
.mp-category-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.mp-category-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  background: #eee;
  color: #333;
  white-space: nowrap;
  transition: 0.3s;
}

.mp-category-btn.active {
  background: #2563eb;
  color: #fff;
}

/* ================= GRID ================= */
.mp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

/* ================= CARD ================= */
.mp-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  cursor: pointer;
}

.mp-card:hover {
  transform: translateY(-3px);
}

.mp-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.mp-card-body {
  padding: 15px;
}

.mp-card-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.mp-card-meta {
  font-size: 13px;
  color: #666;
  margin: 5px 0;
}

.mp-view-btn {
  display: inline-block;
  margin-top: 10px;
  color: #2563eb;
  font-size: 13px;
  cursor: pointer;
}

/* ================= EXPANDED ================= */
.mp-expanded {
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  animation: mpFade 0.3s ease-in-out;
}

.mp-card.open .mp-expanded {
  display: block;
}

@keyframes mpFade {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= BUTTONS ================= */
.mp-whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #ff7a00;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
}

/* ================= LOAD MORE ================= */
.mp-loadmore-wrap {
  text-align: center;
  margin-top: 20px;
}

.mp-loadmore-btn {
  padding: 10px 20px;
  border: none;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .mp-card-img {
    height: 130px;
  }
}

/* .vendor-filter {
  padding: 20px;
  background: #fff;
}

#searchInput {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
} */

/* Categories */
/* .categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-btn {
  padding: 8px 15px;
  border: none;
  border-radius: 20px;
  background: #eee;
  cursor: pointer;
}

.category-btn.active {
  background: #2563eb;
  color: #fff;
} */

/* GRID */
/* .vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 30px;
} */

.vendors-section h2 {
  margin: 0 30px;
}

/* CARD */
.vendor-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

  display: flex;
  flex-direction: column;

  height: 100%;
}

/* VENDORS GRID */
.vendors-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 30px;
  padding-top: 20px;
}

/* VENDOR CARD */
.vendor-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;

  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);

  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
}

.vendor-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.vendor-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */

/* CATEGORY TAG */
.card-content-tag {
  background: #ff7a00;
  color: white;

  padding: 5px 12px;

  border-radius: 999px;

  font-size: 12px;

  width: fit-content;

  margin-bottom: 10px;
}

/* TITLE */
.card-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

/* DESCRIPTION */
.tagline {
  font-size: 14px;
  color: #666;

  margin-bottom: 10px;
}

/* LOCATION */
.location {
  font-size: 13px;
  color: #777;

  margin-bottom: 16px;
}

/* BUTTON */
.view-btn {
  margin-top: auto;

  width: 100%;

  border: none;

  background: #2563eb;

  color: white;

  padding: 12px;

  border-radius: 10px;

  font-weight: 600;

  cursor: pointer;
}

/* TABLET */
@media (max-width: 992px) {
  .vendors-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .vendors-scroll {
    grid-template-columns: 1fr;
  }
}
/* 
.contact-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
}

.contact-btn:hover {
  background: #1ebe5d;
}

.contact-btn.disabled {
  background: grey;
  cursor: not-allowed;
}  */

.vendor-card:hover {
  transform: translateY(-5px);
}

.vendor-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f3f4f6;
}

.card-content {
  padding: 15px;

  display: flex;
  flex-direction: column;

  flex: 1;
}

.card-content-tag {
  background: #ff6b00;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  align-self: flex-start;
  display: inline-block;
}

.tagline {
  font-size: 13px;
  color: #555;
}

.location {
  font-size: 12px;
  color: #777;
}

.view-btn {
  margin-top: auto;
  width: 100%;
  padding: 10px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
}

/* DETAIL VIEW */
/* DETAIL PAGE */
.hidden {
  display: none;
}

.vendor-detail {
  padding: 30px;
  background: #f8fafc;
}

/* BACK BUTTON */
#backBtn {
  border: none;
  background: #2563eb;
  color: white;

  padding: 12px 18px;

  border-radius: 10px;

  cursor: pointer;

  margin-bottom: 25px;

  font-weight: 600;
}

/* CARD */
.detail-card {
  max-width: 1200px;

  margin: auto;

  background: white;

  border-radius: 20px;

  overflow: hidden;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  display: grid;

  grid-template-columns: 420px 1fr;
}

/* IMAGE */
.detail-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  min-height: 500px;

  background: #f3f4f6;
}

/* CONTENT */
.detail-content {
  padding: 30px;

  display: flex;

  flex-direction: column;
}

/* TITLE */
.detail-content h1 {
  font-size: 38px;

  margin: 15px 0 10px;
}

/* DESCRIPTION */
.detail-content p {
  color: #555;

  line-height: 1.7;
}

/* PRODUCTS TITLE */
.product-grid h3 {
  margin-top: 30px;
}

/* PRODUCT CARD */

.product-card h4 {
  font-size: 18px;

  margin: 10px 15px;
}

.product-card .price {
  color: #2563eb;

  font-weight: 700;

  margin: 0 15px 10px;
}

.product-card .desc {
  margin: 0 15px 15px;

  font-size: 14px;

  color: #666;
}

/* WHATSAPP BUTTON */
.chat-btn {
  margin: auto 14px 16px;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  background: #22c55e;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.chat-btn:hover {
  background: #16a34a;
}

.chat-btn.disabled {
  background: #d1d5db;
  cursor: not-allowed;
}

/* MOBILE */
@media (max-width: 900px) {
  .detail-card {
    grid-template-columns: 1fr;
  }

  .detail-card img {
    min-height: 300px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* CLAIM BUTTON */
.claim-btn {
  display: inline-block;

  margin-top: 20px;
  margin-bottom: 30px;

  background: #ff7a00;
  color: white;

  padding: 12px 18px;

  border-radius: 10px;

  text-decoration: none;

  font-weight: 700;

  width: fit-content;

  transition: 0.3s ease;
}

.claim-btn:hover {
  background: #e56d00;
}

/* PRODUCTS SECTION SPACING */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 25px;
}

/* PRODUCT CARD CONTENT */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition: 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* PRODUCT IMAGE */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f3f4f6;
}

/* PRODUCT TAG */
.product-tag {
  display: inline-block;
  margin: 14px 14px 0;
  background: #eff6ff;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* PRODUCT CONTENT */

.product-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 14px 14px 8px;
  color: #111827;
}

.product-card .price {
  font-size: 20px;
  font-weight: 800;
  color: #2563eb;
  margin: 0 14px 10px;
}

.product-card .desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 14px 18px;
}
/* CATEGORIES PAGE */
.categories-section,
.info-section {
  width: 100%;
  /* padding: 80px 20px; */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.categories-hero {
  background: #f3f4f6;
  padding: 7rem 0 3rem 0;
}

.section-label {
  color: #ff7a00;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 500;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.section-text {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
  color: #6c757d;
  font-size: 1rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-grid a span {
  color: #ff6b00;
}

.category-card {
  text-decoration: none;
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 24px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e5e7eb;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(13, 110, 253, 0.2);
  box-shadow: 0 16px 35px rgba(13, 110, 253, 0.12);
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(13, 110, 253, 0.1),
    rgba(255, 122, 0, 0.12)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.category-card p {
  color: #6c757d;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.category-link {
  color: #ff6b00;
  font-weight: 700;
  font-size: 0.95rem;
}

.info-section {
  background: #f8fafc;
}

.info-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 4rem 1rem;
}

.info-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 18px;
}

.info-content p {
  color: #6c757d;
  margin-bottom: 24px;
}

.benefits {
  display: grid;
  gap: 18px;
}

.benefit-item {
  background: #ffffff;
  border-left: 4px solid #ff7a00;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.benefit-item h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.92rem;
}

.stats-box {
  background: linear-gradient(135deg, #0d6efd, #ff7a00);
  background-size: 200% 200%;

  color: white;
  padding: 40px 28px;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.18);

  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: left center;
  }

  50% {
    background-position: right center;
  }

  100% {
    background-position: left center;
  }
}

.stats-box h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.stat {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:last-child {
  border-bottom: none;
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.claim-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 18px;
  background: #ff8a1f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
}

.claim-btn:hover {
  background: #e67610;
  color: #fff;
}

@media (max-width: 991px) {
  .category-grid,
  .info-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-wrapper {
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }

  .section-text {
    width: 90%;
  }

  .category-grid,
  .info-wrapper {
    grid-template-columns: 1fr;
  }

  .category-card {
    padding: 24px 20px;
  }

  .stats-box {
    padding: 28px 22px;
  }

  .stats-box h3 {
    font-size: 1.4rem;
  }
}

/* ===========================
   OJAHUB MARKETPLACE STYLES
   =========================== */
/* ===== SEARCH BAR ===== */

/* === BOOTSTRAP OVERRIDE — paste at bottom of style.css === */
.search-bar {
  display: flex !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 96px 16px 32px !important;
}
.search-wrap {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 auto !important;
  display: flex !important;
  position: relative;
  align-items: center;
  box-sizing: border-box !important;
}
.search-input {
  width: 100% !important;
  box-sizing: border-box !important;
}
@media (min-width: 769px) {
  .search-wrap {
    max-width: 600px !important;
    margin: 0 auto !important;
  }
}

/* ICON */
.search-icon {
  position: absolute;
  left: 16px;
  font-size: 14px;
  color: #6b7280;
}

/* INPUT */
.search-input {
  width: 100%;
  padding: 14px 18px 14px 44px;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: #ffffff;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

/* HOVER */
.search-input:hover {
  border-color: #d1d5db;
}

/* FOCUS */
.search-input:focus {
  border-color: #1a56db;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.08);
}

/* PLACEHOLDER */
.search-input::placeholder {
  color: #9ca3af;
}

/* ===== HERO STRIP ===== */
.hero-strip {
  background: linear-gradient(135deg, #1a56db 0%, #1340b0 60%, #0f2d8a 100%);
  color: white;
  text-align: center;
  padding: 48px 24px 52px;
  position: relative;
  overflow: hidden;
}

.hero-strip::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.hero-strip::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}

.hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.hero-title .accent {
  color: #f97316;
}

.hero-sub {
  font-size: 1rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

/* ===== CATEGORIES BAR ===== */
.categories-bar {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.categories-bar::-webkit-scrollbar {
  display: none;
}

.cat-btn {
  flex-shrink: 0;
  padding: 8px 18px;
  border: 1.5px solid #e5e7eb;
  border-radius: 999px;
  background: transparent;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cat-btn:hover {
  border-color: #1a56db;
  color: #1a56db;
}

.cat-btn.active {
  background: #1a56db;
  border-color: #1a56db;
  color: #ffffff;
}

/* ===== RESULTS BAR ===== */
.results-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.results-count {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6b7280;
}

.sort-select {
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
  background: #ffffff;
  color: #111827;
  transition: border-color 0.2s;
}

.sort-select:focus {
  border-color: #1a56db;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f4f6;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .card-img {
  transform: scale(1.06);
}

.card-body {
  padding: 14px 16px 16px;
}

.card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a56db;
  background: #eff6ff;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-vendor {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-vendor span {
  color: #f97316;
  font-weight: 600;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
}

.card-view-btn {
  background: #1a56db;
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.card-view-btn:hover {
  background: #1340b0;
}

/* ===== SKELETON LOADERS ===== */
.skeleton-card {
  background: #ffffff;
  border-radius: 14px;
  height: 340px;
  overflow: hidden;
  position: relative;
}

.skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

.skeleton-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(#e5e7eb 55%, transparent 55%),
    linear-gradient(#e5e7eb 10px, transparent 10px) 16px 68%,
    linear-gradient(#e5e7eb 10px, transparent 10px) 16px 77%,
    linear-gradient(#e5e7eb 10px, transparent 10px) 16px 87%;
  background-repeat: no-repeat;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  width: 100%;
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.empty-state h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.empty-state p {
  color: #6b7280;
  margin-bottom: 24px;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-box {
  background: #ffffff;
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f8f9fc;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: #e5e7eb;
}

.modal-inner {
  display: flex;
  gap: 0;
}

.modal-img-wrap {
  width: 45%;
  flex-shrink: 0;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  background: #f3f4f6;
  min-height: 360px;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  padding: 32px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a56db;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

.modal-title {
  font-family: "Syne", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

.modal-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: #f97316;
}

.modal-desc {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.6;
  flex: 1;
}

.modal-vendor {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid #e5e7eb;
}

.vendor-label {
  font-size: 0.82rem;
  color: #6b7280;
}

.vendor-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #22c55e;
  color: white;
  text-decoration: none;
  padding: 13px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: auto;
}

.whatsapp-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */

/* DESKTOP — cap search width */
@media (min-width: 769px) {
  /* .search-wrap {
    max-width: 600px !important;
  } */

  .categories-bar {
    padding: 14px 24px;
  }
}

/* TABLETS & MOBILE */
@media (max-width: 768px) {
  /* .search-bar {
    padding: 88px 16px 24px;
  } */

  /* search-wrap inherits width:100% with no max-width cap — fills bar */

  .search-input {
    padding: 15px 18px 15px 46px;
    font-size: 15px;
  }

  .categories-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 12px 16px;
  }

  .cat-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }

  .modal-inner {
    flex-direction: column;
  }

  .modal-img-wrap {
    width: 100%;
    min-height: 240px;
    border-radius: 20px 20px 0 0;
  }

  .hero-title {
    font-size: 1.6rem;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  /* .search-bar {
    padding: 84px 12px 20px;
  } */

  .search-input {
    padding: 15px 16px 15px 44px;
    font-size: 15px;
  }

  .categories-bar {
    gap: 6px;
    padding: 10px 12px;
  }

  .cat-btn {
    padding: 7px 11px;
    font-size: 11px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card-body {
    padding: 10px 12px 12px;
  }

  .card-name {
    font-size: 0.85rem;
  }

  .card-price {
    font-size: 0.95rem;
  }
}

/* =========================
   BASE ANIMATION STATE
   ========================= */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

/* When element becomes visible */
.anim.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   VARIANTS
   ========================= */

/* Fade up (default already) */
.anim-up {
  transform: translateY(30px);
}

/* Fade left */
.anim-left {
  transform: translateX(-30px);
}

/* Fade right */
.anim-right {
  transform: translateX(30px);
}

/* Zoom in */
.anim-zoom {
  transform: scale(0.95);
}

/* =========================
   DELAYS (optional)
   ========================= */
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* =========================
   REDUCED MOTION
   ========================= */
@media (prefers-reduced-motion: reduce) {
  .anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   MARKETPLACE — VENDOR CARDS (homepage-style)
   Add these rules to your style.css
   ═══════════════════════════════════════════════════ */

/* ── Grid / scroll container ─────────────────────── */
.vendors-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  padding: 0 0 40px;
}

/* ── Card shell ──────────────────────────────────── */
.vendor-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  cursor: pointer;
}

.vendor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ── Card image ──────────────────────────────────── */
.vendor-card-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.vendor-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.vendor-card:hover .vendor-card-img {
  transform: scale(1.04);
}

/* ── Card content area ───────────────────────────── */
.card-content {
  padding: 16px 18px 20px;
}

/* ── Verified badge ──────────────────────────────── */
.card-badges {
  margin-bottom: 8px;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff8f0;
  border: 1px solid #ffe0b2;
  color: #e65100;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.badge-verified i {
  color: #ff6d00;
  font-size: 11px;
}

/* ── Business name ───────────────────────────────── */
.card-business-name {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 6px 0 2px;
  line-height: 1.3;
}

/* ── Category + sub-category ─────────────────────── */
.card-meta {
  font-size: 13px;
  color: #666;
  margin: 0 0 4px;
}

/* ── Location ────────────────────────────────────── */
.card-location {
  font-size: 13px;
  color: #888;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-location i {
  color: #ff6d00;
  font-size: 12px;
}

/* ── WhatsApp + price tags row ───────────────────── */
.card-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid #25d366;
  color: #128c3e;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f0fff4;
}

.tag-whatsapp i {
  color: #25d366;
  font-size: 13px;
}

.tag-price {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #ddd;
  color: #444;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fafafa;
}

.tag-no-wa {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #ddd;
  color: #999;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fafafa;
}

/* ── View Details button ─────────────────────────── */
.view-btn {
  width: 100%;
  padding: 12px;
  background: #ff6d00;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
}

.view-btn:hover {
  background: #e65100;
  transform: translateY(-1px);
}

.view-btn:active {
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   VENDOR DETAIL PAGE
   ═══════════════════════════════════════════════════ */

.vendor-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 60px;
}

.vendor-detail.hidden {
  display: none;
}

/* ── Back button ─────────────────────────────────── */
#backBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ff6d00;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 28px;
  transition: background 0.2s ease;
}

#backBtn:hover {
  background: #e65100;
}

/* ── Detail card layout ──────────────────────────── */
.detail-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

@media (max-width: 768px) {
  .detail-card {
    grid-template-columns: 1fr;
  }
}

/* ── Detail image (vendor logo/banner) ───────────── */
#detailImg {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* ── Detail content ──────────────────────────────── */
.detail-content {
  padding: 28px 32px 28px 0;
}

@media (max-width: 768px) {
  .detail-content {
    padding: 20px 20px 28px;
  }
}

/* ── Category tag in detail ──────────────────────── */
#detailTag {
  display: inline-block;
  background: #ff6d00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

/* ── Detail headings ─────────────────────────────── */
#detailName {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin: 0 0 8px;
  line-height: 1.2;
}

#detailLocation {
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

#detailLocation i {
  color: #ff6d00;
}

#detailDesc {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── WhatsApp button in detail ───────────────────── */
#detailWhatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-bottom: 12px;
}

#detailWhatsapp:hover {
  background: #128c3e;
}

#detailWhatsapp.hidden {
  display: none;
}

/* ── Claim button in detail ──────────────────────── */
.claim-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #ff6d00;
  border: 2px solid #ff6d00;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.2s ease;
}

.claim-btn:hover {
  background: #ff6d00;
  color: #fff;
}

/* ═══════════════════════════════════════════════════
   PRODUCTS SECTION (inside detail view)
   ═══════════════════════════════════════════════════ */

#productsWrap {
  margin-top: 48px;
  grid-column: 1 / -1; /* span full width inside detail-card if needed */
}

/* Put productsWrap BELOW the detail-card by placing it outside */
/* (see HTML note below) */

.products-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.products-section-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin: 0;
}

.products-count {
  background: #ff6d00;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
}

.no-products-msg {
  color: #999;
  font-size: 15px;
  padding: 20px 0;
}

/* ── Product cards grid ──────────────────────────── */
.products-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* ── Single product card ─────────────────────────── */
.product-card-clean {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card-clean:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ── Product image ───────────────────────────────── */
.product-card-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card-clean:hover .product-card-img {
  transform: scale(1.04);
}

/* ── Category badge on image ─────────────────────── */
.product-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 109, 0, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Product body ────────────────────────────────── */
.product-card-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 0 0 6px;
  line-height: 1.3;
}

.product-card-price {
  font-size: 18px;
  font-weight: 800;
  color: #ff6d00;
  margin: 0 0 8px;
}

.product-card-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1;

  /* Clamp to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── WhatsApp button on product card ─────────────── */
.product-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: #25d366;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: auto;
}

.product-wa-btn:hover {
  background: #128c3e;
}

.product-wa-btn.disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ── Error message ───────────────────────────────── */
.error-msg {
  text-align: center;
  color: #e53935;
  padding: 40px;
  font-size: 15px;
}

/* removes all the clamping and lets the full description show */
/* .product-card-desc {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
  max-height: none;
} */

.product-card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  max-height: none;
}

/* ── Vendor Detail Tags ───────────────────── */
.vendor-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.vd-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.vd-tag--category {
  background: #fff3e0;
  color: #e65100;
  border: 1.5px solid #ffcc80;
}

.vd-tag--location {
  background: #e3f2fd;
  color: #1565c0;
  border: 1.5px solid #90caf9;
}

.vd-tag--wa {
  background: #f0fff4;
  color: #128c3e;
  border: 1.5px solid #b7ebc9;
}

.vd-tag--no-wa {
  background: #f5f5f5;
  color: #999;
  border: 1.5px solid #ddd;
}

.vd-tag--verified {
  background: #f3e8ff;
  color: #6a1b9a;
  border: 1.5px solid #ce93d8;
}

/* ═══════════════════════════════════════════
   PAGE TRANSITION LOADER
   ═══════════════════════════════════════════ */
#oja-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 99999;
  opacity: 1;
  transition: opacity 0.35s ease;
}

#oja-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.oja-loader-logo {
  font-size: 22px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #1565c0;
  letter-spacing: -0.5px;
}

.oja-loader-logo span {
  color: #e65100;
}

.oja-loader-spinner {
  width: 36px;
  height: 36px;
  border: 3.5px solid #f0f0f0;
  border-top-color: #ff6d00;
  border-radius: 50%;
  animation: oja-spin 0.7s linear infinite;
}

.oja-loader-text {
  font-size: 13px;
  color: #999;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

@keyframes oja-spin {
  to {
    transform: rotate(360deg);
  }
}
