/* ==========================================================================
   MENE.NG — MODERN VERIFIED DIRECT MARKETPLACE & ESCROW NETWORK
   Theme: Vibrant Royal Blue & Sapphire with Deep Navy and Verified Gold Accents
   Ultra-Responsive Mobile & Desktop Engine
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900&family=Space+Grotesk:wght@600;700;800&display=swap');

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --primary-light: rgba(37, 99, 235, 0.1);
  --primary-glow: rgba(37, 99, 235, 0.38);

  --dark-navy: #070d1e;
  --dark-hero: #050a18;
  --dark-surface: #0a1532;
  --dark-card: #0f1f4b;
  --dark-border: #182e66;

  --bg-page: #f8fafc;
  --surface-card: #ffffff;
  --surface-subtle: #f1f5f9;

  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;

  --border-light: #e2e8f0;

  --badge-gold: #d97706;
  --badge-gold-bg: #fef3c7;
  --badge-silver: #475569;
  --badge-silver-bg: #f1f5f9;
  --badge-basic: #2563eb;
  --badge-basic-bg: #eff6ff;
  --badge-verified: #10b981;
  --badge-verified-bg: #ecfdf5;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.15), 0 6px 16px -2px rgba(15, 23, 42, 0.06);

  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);
}

/* MODERN SLEEK MINIMALIST SCROLLBAR */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(100, 116, 139, 0.7);
}

::-webkit-scrollbar-button {
  display: none !important;
  width: 0;
  height: 0;
}

/* BASE RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.4) transparent;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

img, svg, video {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font: inherit;
}

.app-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GLOBAL BUTTON SYSTEM (.btn-step, .btn-dash-action) */
.btn-step, .btn-dash-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  border: 1.5px solid transparent;
  outline: none;
  text-decoration: none !important;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.btn-step--primary, .btn-dash-action--primary {
  background: #2563eb !important;
  color: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}
.btn-step--primary:hover, .btn-dash-action--primary:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.38);
}

.btn-step--secondary, .btn-dash-action--outline {
  background: #ffffff !important;
  color: #334155 !important;
  border-color: #cbd5e1 !important;
}
.btn-step--secondary:hover, .btn-dash-action--outline:hover {
  background: #f8fafc !important;
  border-color: #94a3b8 !important;
  color: #0f172a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-step--success {
  background: #059669 !important;
  color: #ffffff !important;
  border-color: #059669 !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.28);
}
.btn-step--success:hover {
  background: #047857 !important;
  border-color: #047857 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* ANIMATIONS & MICRO-INTERACTIONS */
@keyframes flamePulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 3px #ff5722); }
  50% { transform: scale(1.25); filter: drop-shadow(0 0 8px #ff7043); }
}

@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, 35px) scale(1.15); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.03); }
}

@keyframes tickerMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes slideDownSticky {
  from { transform: translateY(-100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

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

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

@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 0 0 6px rgba(37, 99, 235, 0); }
}

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

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Micro-interaction classes */
.animate-fade-in-up {
  animation: fadeInUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-sidebar-drawer.is-open .mobile-sidebar__link {
  animation: drawerItemSlide 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-sidebar-drawer.is-open .mobile-sidebar__link:nth-child(2) { animation-delay: 0.05s; }
.mobile-sidebar-drawer.is-open .mobile-sidebar__link:nth-child(3) { animation-delay: 0.09s; }
.mobile-sidebar-drawer.is-open .mobile-sidebar__link:nth-child(4) { animation-delay: 0.13s; }
.mobile-sidebar-drawer.is-open .mobile-sidebar__link:nth-child(5) { animation-delay: 0.17s; }
.mobile-sidebar-drawer.is-open .mobile-sidebar__link:nth-child(6) { animation-delay: 0.21s; }
.mobile-sidebar-drawer.is-open .mobile-sidebar__link:nth-child(7) { animation-delay: 0.25s; }
.mobile-sidebar-drawer.is-open .mobile-sidebar__link:nth-child(8) { animation-delay: 0.29s; }

.item-card {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease !important;
}

.item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1) !important;
}

.cat-tile {
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease !important;
}

.cat-tile:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12) !important;
}

.btn-sell-header, .btn-hero-action, .btn-hero-alt, .btn-sidebar-post {
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.2s ease !important;
}

.btn-sell-header:hover, .btn-hero-action:hover, .btn-sidebar-post:hover {
  transform: translateY(-1.5px) scale(1.02);
}

.btn-sell-header:active, .btn-hero-action:active, .btn-sidebar-post:active, .btn-hero-alt:active {
  transform: scale(0.97);
}

.footer-contact-item {
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-contact-item:hover {
  transform: translateX(3px);
}

.contact-icon-bubble {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease;
}

.footer-contact-item:hover .contact-icon-bubble {
  transform: scale(1.15);
  background: var(--primary);
}

/* ==========================================================================
   1. TOP NAVIGATION HEADER (STICKY NAVBAR)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 72px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo__img {
  height: 38px;
  max-height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.site-header .brand-logo__img {
  filter: brightness(0);
}

.site-header .brand-logo:hover .brand-logo__img {
  transform: scale(1.04);
}

.site-footer .brand-logo__img {
  height: 36px;
  filter: none;
}

.header-search {
  flex: 1;
  max-width: 520px;
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-full);
  padding: 4px 5px 4px 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.03);
}

.header-search:focus-within {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-light), 0 4px 16px rgba(37, 99, 235, 0.08);
}

.header-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 9px 10px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--text-main);
  outline: none;
  min-width: 80px;
}

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

.header-search__btn {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 3px 12px var(--primary-glow);
  white-space: nowrap;
}

.header-search__btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-link {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link--escrow {
  color: #10b981 !important;
  font-weight: 700;
}

.btn-sell-header {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-gradient);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13.5px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-sell-header:hover {
  transform: translateY(-2px);
}

.header-user-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
}

.header-user-btn:hover {
  background: #e2e8f0;
  color: var(--primary);
}

/* ==========================================================================
   2. HOT DEALS LIVE TICKER BAR
   ========================================================================== */
.deals-ticker-bar {
  background: #070e24;
  color: #fff;
  height: 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  border-bottom: 1px solid transparent;
  overflow: hidden;
  position: sticky;
  top: 72px;
  display: flex;
  align-items: center;
  z-index: 290;
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
}

.deals-ticker-bar.is-visible {
  height: 50px;
  max-height: 50px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border-bottom-color: #14234d;
}

.deals-ticker-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.ticker-lead {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 800;
  color: #38bdf8;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-lead svg {
  animation: flamePulse 1.8s infinite ease-in-out;
  flex-shrink: 0;
  color: #ff5722;
}

.ticker-scroll-area {
  display: flex;
  align-items: center;
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  animation: tickerMarquee 70s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 31, 75, 0.92);
  border: 1px solid #1e3a78;
  padding: 5px 14px 5px 6px;
  border-radius: var(--radius-full);
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ticker-chip:hover {
  border-color: var(--primary);
  background: #1d4ed8;
  color: #fff;
}

.ticker-chip__img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.ticker-chip__price {
  color: #4ade80;
  font-weight: 800;
}

.ticker-tag-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.ticker-tag-badge--silver { background: rgba(148, 163, 184, 0.28); color: #e2e8f0; }
.ticker-tag-badge--basic { background: rgba(59, 130, 246, 0.3); color: #93c5fd; }
.ticker-tag-badge--gold { background: rgba(245, 158, 11, 0.3); color: #fcd34d; }

.ticker-right-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-become-subscriber {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 3px 10px var(--primary-glow);
}

.btn-ticker-close {
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.btn-ticker-close:hover { color: #fff; }

/* Hide Feature Listing Here button on mobile to give 100% full view to hot drops */
@media (max-width: 768px) {
  .ticker-right-actions .btn-become-subscriber {
    display: none !important;
  }
  .deals-ticker-bar__inner {
    padding: 0 8px !important;
    gap: 6px !important;
  }
  .ticker-lead__text {
    font-size: 11px !important;
    font-weight: 800 !important;
  }
  .ticker-scroll-area {
    margin-right: 0 !important;
  }
}

/* 2.1 MOBILE DIRECTIONAL SCROLL (SEARCH ON SCROLL DOWN, NAVBAR ON SCROLL UP) */
.mobile-sticky-search { display: none !important; }

@media (max-width: 768px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 300;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    will-change: transform;
  }

  body.mobile-scrolling-down .site-header {
    transform: translateY(-100%);
    pointer-events: none;
  }

  body.mobile-scrolling-up .site-header {
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  .mobile-sticky-search {
    display: flex !important;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 52px;
    box-sizing: border-box;
    z-index: 320;
    background: #ffffff;
    padding: 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    will-change: transform, opacity;
  }

  body.mobile-scrolling-down .mobile-sticky-search {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-scrolling-up .mobile-sticky-search {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }
}

/* ==========================================================================
   3. HERO SLIDER AREA (SLEEK & PROPORTIONATE)
   ========================================================================== */
.hero-wrapper {
  background: var(--dark-hero);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-slide-stage {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-dot-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 1;
}

.hero-glow-orb {
  position: absolute;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(59, 130, 246, 0.1) 40%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
  z-index: 1;
  animation: orbDrift 12s infinite alternate ease-in-out;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  align-items: center;
  transform: scale(0.99);
  z-index: 2;
  width: 100%;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38);
}

.hero-slide__gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 9, 23, 0.97) 0%, rgba(4, 9, 23, 0.85) 50%, rgba(4, 9, 23, 0.4) 100%);
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1240px;
  padding: 56px 20px 105px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #93c5fd;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 18px;
  max-width: 100%;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  display: inline-block;
  flex-shrink: 0;
}

.hero-tag-mobile {
  display: none;
}

.hero-tag--promo {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
}

.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  max-width: 740px;
}

.hero-headline span {
  color: #38bdf8;
}

.hero-subhead {
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 12px;
  max-width: 640px;
}

.hero-paragraph {
  font-size: clamp(15px, 2vw, 16.5px);
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 24px;
  max-width: 620px;
}

/* Dual Omnisearch Box on Hero */
.hero-omni-search {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: var(--radius-full);
  padding: 6px 7px 6px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  max-width: 700px;
  margin-bottom: 18px;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  width: 100%;
}

.hero-omni-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow), 0 20px 48px rgba(0, 0, 0, 0.5);
}

.hero-omni-search__input-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hero-omni-search input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 14.5px;
  font-family: var(--font-sans);
  color: var(--text-main);
  outline: none;
}

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

.hero-omni-search__divider {
  width: 1px;
  height: 28px;
  background: #e2e8f0;
  margin: 0 12px;
  flex-shrink: 0;
}

.hero-omni-search__loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 4px 6px;
  flex-shrink: 0;
}

.hero-omni-search__loc-select {
  border: none;
  background: transparent;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  outline: none;
  cursor: pointer;
  max-width: 170px;
}

.hero-omni-search__btn {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s ease;
  box-shadow: 0 4px 16px var(--primary-glow);
  flex-shrink: 0;
  white-space: nowrap;
}

.hero-omni-search__btn:hover {
  transform: scale(1.03);
}

.hero-trending-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-trending-lbl {
  font-size: 13.5px;
  font-weight: 700;
  color: #cbd5e1;
}

.trending-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f1f5f9;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.trending-pill:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.hero-metrics-bar {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
}

.hero-metric-item {
  min-width: 0;
}

.metric-num {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1.1;
  margin-bottom: 3px;
}

.metric-lbl {
  font-size: 13.5px;
  color: #cbd5e1;
  white-space: nowrap;
}

/* FlexiPay Clean Step Chips */
.flexipay-steps-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  max-width: 100%;
}

.flexipay-step-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow {
  color: #38bdf8;
  font-weight: 800;
  font-size: 14px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-action {
  background: var(--primary-gradient);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  box-shadow: 0 6px 20px var(--primary-glow);
  transition: transform 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-hero-alt {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* FLOATING OVERLAY CAROUSEL CONTROLS */
.hero-controls-overlay {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(5, 10, 26, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}

.hero-ctrl-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.hero-ctrl-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-dots-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary);
}

.hero-progress-line {
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.hero-progress-line__fill {
  height: 100%;
  width: 0%;
  background: var(--primary);
  transition: width 0.1s linear;
}

/* ==========================================================================
   4. OVERLAPPING WHITE SHEET / CATEGORIES SECTION
   ========================================================================== */
.overlap-sheet {
  position: relative;
  z-index: 40;
  background: var(--surface-card);
  border-radius: 32px 32px 0 0;
  margin-top: -14px;
  padding: 42px 0 36px;
  box-shadow: 0 -14px 48px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head__title {
  font-family: var(--font-sans);
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.section-head__subtitle {
  font-size: clamp(13px, 1.8vw, 14.5px);
  color: var(--text-muted);
  margin-top: 4px;
}

.section-head__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  width: 100%;
}

@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 580px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.cat-tile {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 14px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
}

.cat-tile:hover {
  border-color: #2563eb;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
  transform: translateY(-4px);
}

.cat-tile__img-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 2px solid #f1f5f9;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
  background: #f8fafc;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.cat-tile:hover .cat-tile__img-wrap {
  transform: scale(1.1);
  border-color: #93c5fd;
}

.cat-tile__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cat-tile__title {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  line-height: 1.35;
  text-align: center;
}

.cat-tile__count {
  font-size: 11.5px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}

/* ==========================================================================
   4.1 MINIMALIST QUICK DEALS STRIP
   ========================================================================== */
.quick-deals-strip {
  margin: 18px 0 26px;
  width: 100%;
  position: relative;
}

.quick-deals-scroller {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.quick-deals-scroller::-webkit-scrollbar {
  display: none;
}

.quick-deal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 190px;
  max-width: 220px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quick-deal-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.1);
  border-color: #93c5fd;
}

.quick-deal-card__title {
  font-weight: 700;
  font-size: 13px;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 35px;
}

.quick-deal-card__price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.quick-deal-card__price {
  font-weight: 800;
  font-size: 15px;
  color: #e11d48;
  letter-spacing: -0.01em;
}

.quick-deal-card__neg {
  font-size: 10px;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 1px 6px;
  border-radius: 4px;
}

.quick-deal-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 11px;
}

.quick-deal-card__loc {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #475569;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.quick-deal-card__loc svg {
  color: #e11d48;
  flex-shrink: 0;
}

.quick-deal-card__tenure {
  color: #94a3b8;
  font-size: 10px;
}

/* ==========================================================================
   4.2 FRESH ON MENE.NG (RECENT LISTINGS SECTION)
   ========================================================================== */
.recent-listings-section {
  margin: 16px 0 clamp(32px, 5vw, 48px);
  width: 100%;
  content-visibility: auto;
  contain-intrinsic-size: 1px 650px;
}

.section-head--fresh {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}

.fresh-head-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.fresh-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1.5px solid #f97316;
  color: #ea580c;
  background: #fff7ed;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.fresh-badge-dot {
  background: #f97316;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  padding: 1px 5px;
  border-radius: 4px;
}

.fresh-main-title {
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 800;
  font-family: var(--font-display);
  color: #070d1e;
  margin: 0;
  letter-spacing: -0.02em;
}

.fresh-main-title span {
  color: var(--primary);
}

.fresh-count-pill {
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.fresh-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.btn-fresh-load-more {
  background: #ffffff;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-weight: 700;
  font-size: 13.5px;
  padding: 11px 28px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08);
  transition: all 0.22s ease;
}

.btn-fresh-load-more:hover {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.28);
  transform: translateY(-2px);
}

/* Card Additional Badges */
.pill-featured {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(245, 158, 11, 0.3);
}

.pill-condition {
  display: none !important;
}

.pill-easy-buy {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  box-shadow: 0 1px 5px rgba(5, 150, 105, 0.35);
  letter-spacing: 0.2px;
}

.pill-negotiable {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(30, 41, 59, 0.85);
  backdrop-filter: blur(4px);
  color: #e2e8f0;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

/* ==========================================================================
   5. SHOWCASE BANNERS & CATEGORY IMAGES
   ========================================================================== */
.showcase-block {
  margin: clamp(32px, 5vw, 52px) 0;
  width: 100%;
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}

.showcase-banner {
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.showcase-banner--fashion {
  background: linear-gradient(135deg, #600b55 0%, #86198f 35%, #a21caf 70%, #be185d 100%);
}

.showcase-banner--electronics {
  background: linear-gradient(135deg, #091224 0%, #172554 45%, #1d4ed8 100%);
}

.showcase-banner--phones {
  background: linear-gradient(135deg, #1e1b4b 0%, #311042 35%, #581c87 70%, #6b21a8 100%);
}

.showcase-banner--cars {
  background: linear-gradient(135deg, #022c22 0%, #064e3b 45%, #0f766e 100%);
}

.showcase-banner__left {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
  flex: 1;
}

.showcase-banner__icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.showcase-banner__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 2px 9px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.showcase-banner__title {
  font-family: var(--font-sans);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1.25;
}

.showcase-banner__subtitle {
  font-size: clamp(11.5px, 1.4vw, 13px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.showcase-banner__stats {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.showcase-stat-pill {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
}

.showcase-banner__right {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
  flex-shrink: 0;
}

.showcase-banner__visual {
  width: 110px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transform: rotate(1deg);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.showcase-banner:hover .showcase-banner__visual {
  transform: rotate(0deg) scale(1.04);
}

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

.btn-showcase-browse {
  background: var(--primary-gradient);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 12.5px;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 14px var(--primary-glow);
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-showcase-browse:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
}

/* ==========================================================================
   6. PRODUCT ITEM CARDS (6-COLUMN COMPACT GRID ON PC, RESPONSIVE DENSITY)
   ========================================================================== */
.showcase-cards-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  width: 100%;
}

@media (min-width: 1200px) {
  .showcase-cards-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
  }
}

@media (min-width: 960px) and (max-width: 1199px) {
  .showcase-cards-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}

@media (min-width: 720px) and (max-width: 959px) {
  .showcase-cards-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

@media (min-width: 480px) and (max-width: 719px) {
  .showcase-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
}

@media (max-width: 479px) {
  .showcase-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Dedicated Jobs Grid — Spacious 3-4 Column Professional Layout */
#showcase-grid-jobs {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  width: 100%;
}

@media (min-width: 1300px) {
  #showcase-grid-jobs {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 900px) {
  #showcase-grid-jobs {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 580px) {
  #showcase-grid-jobs {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

.item-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
  height: 100%;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  contain: layout paint;
}

.item-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 20px -2px rgba(37, 99, 235, 0.12), 0 2px 6px rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}

/* Gold tier frame */
.item-card--gold {
  border: 1.5px solid #e8c438;
  box-shadow: 0 0 0 1px rgba(232, 196, 56, 0.2), 0 2px 8px rgba(232, 196, 56, 0.1);
  background: linear-gradient(180deg, #fffef5 0%, #ffffff 35%);
}

.item-card--gold:hover {
  border-color: #d4a017;
  box-shadow: 0 0 0 1.5px rgba(212, 160, 23, 0.3), 0 8px 20px rgba(212, 160, 23, 0.18);
}

/* Silver tier frame */
.item-card--silver {
  border: 1px solid #cbd5e1;
}

.item-card__media {
  position: relative;
  width: 100%;
  height: 135px;
  background: #f8fafc;
  cursor: pointer;
  overflow: hidden;
}

.item-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  font-size: 0;
  color: transparent;
  transition: transform 0.3s ease;
}

.item-card:hover .item-card__img {
  transform: scale(1.05);
}

.item-card__top-pills {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.pill-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #10b981;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

.item-card__fav-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  transition: all 0.15s ease;
}

.item-card__fav-btn:hover, .item-card__fav-btn.active {
  color: var(--primary);
  transform: scale(1.1);
}

.item-card__body {
  padding: 8px 10px 9px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.item-card__stars-and-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 18px;
  margin-bottom: 3px;
}

.item-card__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  font-weight: 700;
  margin-left: auto;
}

.stars-gold {
  color: #f59e0b;
  letter-spacing: -1px;
}

.stars-num {
  color: #64748b;
  font-size: 10px;
  margin-left: 2px;
}

.item-card__tier-dot-row {
  margin-bottom: 3px;
}

.tier-dot-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
}

.tier-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}

.tier-dot-badge--basic { color: #ea580c; }
.tier-dot-badge--basic .tier-dot { background: #ea580c; }
.tier-dot-badge--silver { color: #64748b; }
.tier-dot-badge--silver .tier-dot { background: #64748b; }
.tier-dot-badge--gold { color: #d97706; }
.tier-dot-badge--gold .tier-dot { background: #d97706; }

.item-card__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 33px;
  height: 33px;
  cursor: pointer;
  word-break: break-word;
}

.item-card--job {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

@media (max-width: 640px) {
  .item-card--job {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px !important;
    margin-bottom: 10px !important;
  }

  .item-card--job .item-card__title {
    font-size: 15px !important;
    line-height: 1.4 !important;
    margin: 8px 0 !important;
  }
}

.item-card--job .item-card__title {
  height: auto !important;
  max-height: none !important;
  margin-bottom: 8px !important;
  display: block !important;
  overflow: visible !important;
  white-space: normal !important;
  line-height: 1.4 !important;
}

.item-card__title:hover {
  color: var(--primary);
}

.item-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.item-card__price {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 900;
  color: #ef4444;
}

.item-card__location {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  color: #475569;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item-card__tenure {
  font-size: 9.5px;
  color: #94a3b8;
  margin-top: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   7. PRE-FOOTER CALL TO ACTION
   ========================================================================== */
.pre-footer-cta {
  background: linear-gradient(135deg, #050a18 0%, #0c183a 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 6vw, 60px) clamp(20px, 5vw, 40px);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: clamp(36px, 6vw, 60px) 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.pre-footer-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.35);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 12px;
}

.pre-footer-title {
  font-family: var(--font-sans);
  font-size: clamp(22px, 4.5vw, 38px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.pre-footer-subtitle {
  font-size: clamp(13px, 2vw, 15.5px);
  color: #94a3b8;
  max-width: 540px;
  margin: 0 auto 22px;
  line-height: 1.6;
}

.pre-footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-pre-primary {
  background: var(--primary-gradient);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 20px var(--primary-glow);
  cursor: pointer;
  border: none;
}

.btn-pre-alt {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--dark-navy);
  color: #94a3b8;
  padding: clamp(36px, 5vw, 56px) 0 clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--dark-border);
  position: relative;
  width: 100%;
}

.footer-grid-top {
  display: grid;
  grid-template-columns: 2fr 1.3fr 1fr 1fr;
  gap: clamp(20px, 3.5vw, 36px);
  padding-bottom: 30px;
  border-bottom: 1px solid var(--dark-border);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #60a5fa;
  margin-bottom: 14px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #cbd5e1;
  text-decoration: none;
}

.contact-icon-bubble {
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s ease;
}

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

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 12px;
  color: #64748b;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================================
   9. MOBILE DOCK
   ========================================================================== */
.bottom-app-dock, .mobile-bottom-dock {
  display: none !important;
}

/* ==========================================================================
   10. MODALS & FORMS — UNIVERSAL BULLETPROOF SYSTEM
   ========================================================================== */
.modal-backdrop,
.mene-modal-overlay,
.lp-contact-overlay,
.lp-escrow-overlay,
.lp-overlay {
  position: fixed !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(4, 9, 23, 0.82) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  box-sizing: border-box !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.22s ease, visibility 0.22s ease !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

.modal-backdrop.is-open,
.modal-backdrop.active,
.modal-backdrop.open,
.mene-modal-overlay.is-open,
.mene-modal-overlay.active,
.mene-modal-overlay.open,
.lp-contact-overlay.is-open,
.lp-contact-overlay.active,
.lp-contact-overlay.open,
.lp-escrow-overlay.is-open,
.lp-escrow-overlay.active,
.lp-escrow-overlay.open,
.lp-overlay.is-open,
.lp-overlay.active,
.lp-overlay.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-window,
.mene-modal,
.lp-contact-modal,
.lp-escrow-modal,
.lp-overlay-card {
  background: #ffffff !important;
  color: #0f172a !important;
  border-radius: var(--radius-lg, 16px) !important;
  max-width: 580px;
  width: 100% !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35) !important;
  position: relative !important;
  z-index: 1000000 !important;
  transform: translateY(12px) scale(0.97);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
  margin: auto !important;
  pointer-events: auto !important;
  box-sizing: border-box !important;
}

.modal-backdrop.is-open .modal-window,
.modal-backdrop.active .modal-window,
.modal-backdrop.open .modal-window,
.mene-modal-overlay.is-open .mene-modal,
.mene-modal-overlay.active .mene-modal,
.mene-modal-overlay.open .mene-modal,
.lp-contact-overlay.open .lp-contact-modal,
.lp-escrow-overlay.open .lp-escrow-modal,
.lp-overlay.open .lp-overlay-card {
  transform: translateY(0) scale(1) !important;
}

/* Common Modal Elements */
.mene-modal__title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}
.mene-modal__message {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px;
}
.mene-modal__input,
.mene-modal__select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  outline: none;
  margin-bottom: 12px;
  background: #ffffff;
  color: #0f172a;
  transition: border-color 0.15s;
}
.mene-modal__input:focus,
.mene-modal__select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.mene-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 18px;
}
.mene-modal__btn {
  padding: 11px 20px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mene-modal__btn--primary {
  background: #2563eb;
  color: #ffffff;
}
.mene-modal__btn--primary:hover {
  background: #1d4ed8;
}
.mene-modal__btn--secondary {
  background: #f1f5f9;
  color: #475569;
}
.mene-modal__btn--secondary:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.modal-title {
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 18px 20px;
}

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-main); margin-bottom: 5px; }
.form-input, .form-textarea, .form-select-full {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select-full:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-primary-full {
  width: 100%;
  background: var(--primary-gradient);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--primary-glow);
}

/* --- Chat History Modal --- */
.chat-history-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: background 0.15s ease;
}
.chat-history-item:hover {
  background: #fafafa;
}
.chat-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.chat-info {
  flex: 1;
  min-width: 0;
}
.chat-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}
.chat-preview {
  font-size: 12px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}
.chat-time {
  font-size: 11px;
  color: #94a3b8;
}
.chat-badge {
  background: #f97316;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   11. DEDICATED LISTING DETAILS PAGE
   ========================================================================== */
.listing-details-page {
  background: #f8fafc;
}

.listing-breadcrumb-bar {
  padding: 14px 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
}

.back-link:hover { color: var(--primary); }

.listing-page-container {
  padding-bottom: 60px;
}

.listing-grid-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 24px;
  align-items: start;
}

.listing-gallery-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.gallery-main-wrap {
  position: relative;
  width: 100%;
  height: 500px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.gallery-badges-top-left {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.pill-verified-lg {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #10b981;
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 8px rgba(16, 185, 129, 0.3);
}

.gallery-counter-pill {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.gallery-badges-top-right {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.detail-tier-badge {
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
}

.detail-tier-badge--silver { background: #64748b; }
.detail-tier-badge--gold { background: #d97706; }

.detail-thumbs-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 5;
}

.gallery-nav-btn--prev { left: 14px; }
.gallery-nav-btn--next { right: 14px; }

.gallery-thumbs-row {
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  background: #ffffff;
  overflow-x: auto;
  border-top: 1px solid var(--border-light);
}

.gallery-thumb-item {
  width: 74px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  flex-shrink: 0;
}

.gallery-thumb-item.active, .gallery-thumb-item:hover {
  border-color: #ef4444;
  opacity: 1;
}

.gallery-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-info-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.listing-location-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 10px;
}

.listing-detail-title {
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.listing-detail-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.listing-detail-price {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  color: #ef4444;
}

.listing-neg-badge {
  background: #ecfdf5;
  color: #10b981;
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.listing-primary-actions-row {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-detail-action {
  padding: 11px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border: none;
}

.btn-detail-action--escrow {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 4px 14px var(--primary-glow);
  flex: 1.2;
}

.btn-detail-action--whatsapp {
  background: #25D366;
  color: #ffffff;
  flex: 1;
}

.btn-detail-action--call {
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid var(--border-light);
  flex: 1;
}

.listing-description-section {
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.detail-section-heading {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.detail-desc-text {
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 20px;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #f8fafc;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.spec-item__label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

.spec-item__val {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.seller-profile-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.seller-card-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.seller-avatar-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.seller-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.25;
}

.seller-badge-pills {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.seller-verified-tag, .seller-subscriber-tag {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.seller-verified-tag { background: #10b981; color: #fff; }
.seller-subscriber-tag { background: #ea580c; color: #fff; }

.seller-tenure {
  font-size: 11.5px;
  color: #64748b;
}

.btn-follow-seller {
  background: #ffffff;
  border: 1.5px solid #ef4444;
  color: #ef4444;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.btn-follow-seller.following { background: #ef4444; color: #fff; }

.seller-stats-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.seller-stat-num { font-size: 16px; font-weight: 900; color: var(--text-main); }
.seller-stat-lbl { font-size: 9.5px; font-weight: 700; color: #94a3b8; }
.seller-stat-divider { width: 1px; height: 24px; background: var(--border-light); }

.seller-chat-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.chat-card-title {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
}

.quick-inquiry-chips {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.chip-inquiry {
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  color: #475569;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.chat-textarea {
  width: 100%;
  height: 72px;
  padding: 10px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 13px;
  outline: none;
  resize: none;
  margin-bottom: 12px;
}

.btn-start-chat {
  width: 100%;
  background: #fed7aa;
  color: #c2410c;
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
}

.safety-tips-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.safety-tips-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
}

.safety-icon-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.safety-tips-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.safety-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: #475569;
  line-height: 1.4;
}

/* ==========================================================================
   12. ULTRA-OPTIMIZED MOBILE RESPONSIVENESS (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .app-container {
    padding: 0 12px;
  }

  /* Header */
  .site-header__inner {
    height: 56px;
  }
  .brand-logo {
    font-size: 20px;
    gap: 7px;
  }
  .brand-logo__cart-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .header-search { display: none; }
  .header-nav .nav-link { display: none; }
  .btn-sell-header { padding: 6px 12px; font-size: 12px; }
  /* Ticker Mobile - Hidden while inside hero, only displays after leaving hero */
  .deals-ticker-bar {
    display: none;
    height: 0;
    max-height: 0;
    opacity: 0;
    top: 56px;
    margin: 0;
    border: none;
    pointer-events: none;
    box-sizing: border-box;
  }

  body.mobile-past-hero .deals-ticker-bar {
    display: flex;
    align-items: center;
  }

  body.mobile-past-hero .deals-ticker-bar.is-visible {
    height: 42px;
    max-height: 42px;
    opacity: 1;
    border-bottom: 1px solid #14234d;
    pointer-events: auto;
  }

  body.mobile-past-hero.mobile-scrolling-down .deals-ticker-bar {
    top: 52px;
  }

  body.mobile-past-hero.mobile-scrolling-up .deals-ticker-bar {
    top: 56px;
  }

  .ticker-lead__text { display: none; }
  .ticker-lead svg { width: 18px; height: 18px; }
  .btn-become-subscriber { display: none; }

  /* Sticky Search Mobile */
  .mobile-sticky-search__inner {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .mobile-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-full);
    padding: 2px 3px 2px 10px;
    gap: 6px;
    height: 38px;
    box-sizing: border-box;
  }
  .mobile-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 5px 0;
    font-size: 13px;
    outline: none;
  }
  .mobile-search-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 12.5px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
  }

  /* Hero Section Mobile (Spacious, Clean & Executive Polish) */
  .hero-slide-stage {
    min-height: 570px;
  }
  .hero-slide__bg {
    object-position: center 10%;
    filter: brightness(0.64) contrast(1.08);
  }
  .hero-slide__gradient-overlay {
    background: linear-gradient(180deg, rgba(4, 9, 23, 0.40) 0%, rgba(4, 9, 23, 0.78) 50%, rgba(4, 9, 23, 0.98) 100%);
  }
  .hero-slide__content {
    padding: 36px 16px 78px;
  }
  .hero-tag {
    font-size: 11px;
    padding: 3.5px 10px;
    margin-bottom: 10px;
    max-width: fit-content;
    border-radius: var(--radius-full);
    font-weight: 700;
    letter-spacing: 0.04em;
    gap: 5px;
  }
  .hero-tag-dot {
    width: 5px;
    height: 5px;
  }
  .hero-tag-desktop { display: none; }
  .hero-tag-mobile { display: inline; }

  .hero-headline {
    font-size: clamp(23px, 5.8vw, 29px);
    margin-bottom: 10px;
    line-height: 1.22;
    letter-spacing: -0.02em;
  }
  .hero-subhead {
    font-size: 14.5px;
    line-height: 1.45;
    color: #cbd5e1;
    margin-bottom: 10px;
  }
  .hero-paragraph {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 14px;
    color: #cbd5e1;
    max-width: 100%;
  }

  .flexipay-steps-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 12px;
    gap: 4px;
    margin-bottom: 16px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-full);
  }
  .flexipay-step-chip {
    font-size: 12.5px;
    gap: 5px;
  }
  .step-num {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
  .step-arrow {
    font-size: 13px;
  }

  .hero-cta-group {
    display: flex;
    gap: 8px;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 6px;
  }
  .btn-hero-action, .btn-hero-alt {
    flex: 1;
    min-width: 130px;
    padding: 11px 14px;
    font-size: 13.5px;
    text-align: center;
    border-radius: 8px;
    justify-content: center;
  }

  .hero-omni-search {
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 14px;
    padding: 8px;
    gap: 8px;
    margin-bottom: 16px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
  }
  .hero-omni-search__input-group {
    width: 100%;
    padding: 6px 10px;
    gap: 8px;
    box-sizing: border-box;
  }
  .hero-omni-search input {
    width: 100%;
    font-size: 14.5px;
    font-weight: 500;
    color: #0f172a;
  }
  .hero-omni-search__divider { display: none; }
  .hero-omni-search__loc {
    width: 100%;
    box-sizing: border-box;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .hero-omni-search__loc-select {
    width: 100%;
    max-width: none;
    font-size: 13.5px;
    font-weight: 700;
    color: #1e293b;
  }
  .hero-omni-search__btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 9px;
    font-size: 14.5px;
    font-weight: 800;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hero-trending-row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 6px;
    margin-bottom: 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
    width: 100%;
  }
  .hero-trending-row::-webkit-scrollbar { display: none; }
  .hero-trending-lbl {
    font-size: 12.5px;
    white-space: nowrap;
    color: #cbd5e1;
    flex-shrink: 0;
  }
  .trending-pill {
    font-size: 12.5px;
    padding: 3px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f1f5f9;
  }

  .hero-controls-overlay {
    bottom: 22px;
    padding: 5px 12px;
    gap: 7px;
    background: rgba(7, 13, 30, 0.82);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  .hero-ctrl-btn { width: 24px; height: 24px; }
  .hero-dot { width: 6px; height: 6px; }
  .hero-dot.active { width: 18px; }

  .hero-metrics-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    text-align: center;
    padding-top: 2px;
  }
  .hero-metric-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 7px 8px;
  }
  .hero-metric-item:nth-child(3) {
    display: none;
  }
  .metric-num { font-size: 18px; font-weight: 900; margin-bottom: 2px; color: #38bdf8; }
  .metric-lbl { font-size: 12px; white-space: normal; color: #cbd5e1; font-weight: 600; }

  /* Overlapping Sheet */
  .overlap-sheet {
    margin-top: -10px;
    border-radius: 20px 20px 0 0;
    padding: 24px 0 16px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 14px;
  }

  /* Categories Grid Mobile */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cat-tile {
    padding: 12px 8px;
    border-radius: var(--radius-md);
  }
  .cat-tile__icon-box {
    width: 40px;
    height: 40px;
    margin-bottom: 4px;
  }
  .cat-tile__title { font-size: 12px; }
  .cat-tile__count { font-size: 10.5px; }

  /* Showcase Banners Mobile (Executive, Spacious & Premium) */
  .showcase-banner {
    display: flex;
    flex-direction: column;
    padding: 16px 14px;
    gap: 12px;
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  .showcase-banner__left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }
  .showcase-banner__icon-box {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }
  .showcase-banner__icon-box svg {
    width: 22px;
    height: 22px;
  }
  .showcase-banner__content {
    flex: 1;
    min-width: 0;
  }
  .showcase-banner__tag {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 800;
    padding: 2.5px 8px;
    border-radius: var(--radius-full);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .showcase-banner__title {
    font-size: 15.5px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 4px;
    white-space: normal;
    color: #ffffff;
  }
  .showcase-banner__subtitle {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 8px;
    line-height: 1.35;
  }
  .showcase-banner__stats {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  .showcase-stat-pill {
    font-size: 10.5px;
    font-weight: 700;
    padding: 2.5px 9px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
  }
  .showcase-banner__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 0;
  }
  .showcase-banner__visual {
    display: none;
  }
  .btn-showcase-browse {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 9px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  }

  /* 2-Column Vertical Card Grid Mobile */
  .showcase-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .item-card {
    border-radius: 9px;
  }
  .item-card__media {
    height: 125px;
  }
  .item-card__top-pills .pill-verified {
    font-size: 8.5px;
    padding: 1px 5px;
  }
  .item-card__fav-btn {
    width: 24px;
    height: 24px;
    top: 5px;
    right: 5px;
  }
  .item-card__body {
    padding: 6px 8px 7px;
  }
  .item-card__stars { font-size: 9.5px; }
  .item-card__tier-dot-row .tier-dot-badge { font-size: 8.5px; }
  .item-card__title {
    font-size: 11.5px;
    height: 28px;
    margin-bottom: 2px;
  }
  .item-card__price {
    font-size: 13.5px;
  }
  .item-card__location {
    font-size: 10px;
  }
  .item-card__tenure {
    font-size: 9px;
  }

  /* Pre-Footer */
  .pre-footer-cta {
    padding: 26px 14px;
    margin: 26px 0;
    border-radius: var(--radius-lg);
  }
  .pre-footer-actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .btn-pre-primary, .btn-pre-alt {
    width: 100%;
  }

  /* Footer Mobile */
  .footer-grid-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Listing Details Page Mobile */
  .listing-grid-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-main-wrap {
    height: 300px;
  }
  .gallery-thumb-item {
    width: 60px;
    height: 50px;
  }
  .listing-info-card {
    padding: 16px;
  }
  .listing-detail-title {
    font-size: 20px;
  }
  .listing-detail-price {
    font-size: 22px;
  }
  .listing-primary-actions-row {
    flex-direction: column;
    gap: 8px;
  }
  .btn-detail-action {
    width: 100%;
    flex: none;
  }
  .detail-specs-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  /* Bottom Dock Mobile */
  .bottom-app-dock {
    display: flex !important;
    position: fixed;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    background: rgba(5, 10, 26, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    align-items: center;
    gap: 8px;
    width: calc(100% - 24px);
    max-width: 420px;
    justify-content: space-around;
  }

  .dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }

  .dock-item.active, .dock-item:hover { color: #ffffff; }

  .dock-post-btn {
    background: var(--primary-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    font-size: 11.5px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--primary-glow);
  }

  /* ── SELL BUTTON — BLUE CIRCLE DESIGN ── */
  .dock-item--sell {
    position: relative;
    top: -10px;
    color: #ffffff !important;
    gap: 3px;
  }

  .dock-sell-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 60%, #1d4ed8 100%);
    box-shadow:
      0 4px 20px rgba(37, 99, 235, 0.6),
      0 0 0 3px rgba(37, 99, 235, 0.2),
      0 0 0 6px rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.22s ease;
  }

  .dock-item--sell:hover .dock-sell-circle,
  .dock-item--sell:active .dock-sell-circle {
    transform: scale(1.1) translateY(-2px);
    box-shadow:
      0 8px 28px rgba(37, 99, 235, 0.75),
      0 0 0 3px rgba(37, 99, 235, 0.3),
      0 0 0 7px rgba(255, 255, 255, 0.1);
  }

  .dock-item--sell span {
    font-size: 10px;
    font-weight: 700;
    color: #93c5fd;
    letter-spacing: 0.2px;
  }
}


/* SMALL PHONES (<= 380px) */
@media (max-width: 380px) {
  .app-container { padding: 0 8px; }
  .brand-logo__text { font-size: 18px; }
  .btn-sell-header span { display: none; }
  .btn-sell-header { padding: 6px 8px; }
  .categories-grid { gap: 6px; }
  .cat-tile { padding: 10px 4px; }
  .cat-tile__title { font-size: 11px; }
  .showcase-cards-grid { gap: 6px; }
  .item-card__media { height: 125px; }
  .item-card__title { font-size: 11px; }
  .item-card__price { font-size: 13.5px; }
}
/* ==========================================================================
   13. SMART PROFESSIONAL LISTING DETAILS ENGINE (MENE.NG)
   ========================================================================== */
.listing-top-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  margin-bottom: 24px;
}

.listing-top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.listing-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.crumb-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.crumb-sep {
  color: #cbd5e1;
}

.crumb-current {
  color: var(--text-main);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.listing-meta-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ad-id-badge, .ad-views-badge, .ad-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.ad-id-badge {
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
}

/* Two-column layout */
.listing-two-col-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 28px;
  align-items: start;
}

/* 13.1 Smart Image Showcase */
.smart-gallery-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  margin-bottom: 24px;
}

.smart-gallery__stage {
  position: relative;
  width: 100%;
  height: 520px;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.smart-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  background: #ffffff;
}

.gallery-pill-strip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.gallery-pill-strip.top-left {
  top: 14px;
  left: 14px;
}

.gallery-pill-strip.top-right {
  top: 14px;
  right: 14px;
}

.badge-verified-vendor {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #10b981;
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
}

.badge-escrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.badge-tier-indicator {
  background: #f59e0b;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.badge-tier-indicator--basic { background: #ea580c; }
.badge-tier-indicator--silver { background: #64748b; }
.badge-tier-indicator--gold { background: #d97706; }

.btn-fav-round, .btn-fullscreen-round {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.btn-fav-round:hover, .btn-fav-round.active {
  color: #ef4444;
  transform: scale(1.08);
}

.btn-fullscreen-round:hover {
  color: var(--primary);
  transform: scale(1.08);
}

.gallery-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  z-index: 10;
}

.gallery-arrow-btn.prev-btn { left: 16px; }
.gallery-arrow-btn.next-btn { right: 16px; }

.gallery-arrow-btn:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.gallery-photo-counter {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 10;
}

/* Thumbs row */
.smart-thumbs-row {
  display: flex;
  gap: 12px;
  padding: 14px 18px;
  background: #ffffff;
  overflow-x: auto;
  border-top: 1px solid var(--border-light);
}

.smart-thumb-item {
  width: 84px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background: #f8fafc;
}

.smart-thumb-item.active, .smart-thumb-item:hover {
  border-color: var(--primary);
  opacity: 1;
  box-shadow: 0 0 0 2px var(--primary-light);
}

.smart-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 13.2 Product Details Box */
.listing-details-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin-bottom: 28px;
}

.listing-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.listing-category-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.listing-main-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 8px;
}

.listing-location-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.listing-price-badge-wrap {
  text-align: right;
  flex-shrink: 0;
}

.listing-main-price {
  font-family: var(--font-sans);
  font-size: clamp(26px, 4.5vw, 36px);
  font-weight: 900;
  color: #ef4444;
  line-height: 1;
  margin-bottom: 6px;
}

.listing-price-sub {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.pill-negotiable {
  background: #ecfdf5;
  color: #10b981;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.pill-condition {
  background: #eff6ff;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* CTA Action Grid */
.listing-cta-action-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-primary-escrow {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--primary-glow);
  transition: transform 0.2s ease;
  text-align: left;
}

.btn-primary-escrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-cta-title {
  font-size: 14.5px;
  font-weight: 800;
  line-height: 1.2;
}

.btn-cta-subtitle {
  font-size: 11px;
  opacity: 0.9;
}

.btn-action-wa {
  background: #22c55e;
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

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

.btn-action-call {
  background: #f8fafc;
  color: #0f172a;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-action-call:hover {
  background: #ffffff;
  border-color: var(--primary);
  color: var(--primary);
}

/* 13.3 Specs Grid */
.smart-specs-section {
  margin-bottom: 28px;
}

.box-section-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 14px;
}

.smart-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-card {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.spec-card__label {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
}

.spec-card__val {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
}

.spec-card__val--green { color: #10b981; }
.spec-card__val--blue { color: var(--primary); }

/* Description */
.smart-desc-section {
  margin-bottom: 28px;
}

.smart-desc-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
}

/* Escrow 3-Step Assurance Card */
.escrow-assurance-box {
  background: linear-gradient(135deg, #070d1e 0%, #0f1f4b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid #1e3a78;
}

.escrow-assurance__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.escrow-shield-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 14px var(--primary-glow);
  flex-shrink: 0;
}

.escrow-box-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
}

.escrow-box-sub {
  font-size: 13px;
  color: #cbd5e1;
}

.escrow-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.escrow-step-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.step-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #38bdf8;
  color: #0f172a;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  font-size: 12px;
  color: #e2e8f0;
  line-height: 1.35;
}

/* 13.4 Right Column: Seller Profile & Interactive Chat */
.smart-seller-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin-bottom: 20px;
}

.seller-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.seller-avatar-wrap {
  position: relative;
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

.seller-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

.seller-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
}

.seller-badge-row {
  display: flex;
  gap: 6px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.seller-verified-chip, .seller-tier-chip {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.seller-verified-chip { background: #10b981; color: #fff; }
.seller-tier-chip { background: #f59e0b; color: #fff; }

.seller-name-heading {
  font-size: 16px;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.25;
}

.seller-rating-line {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
}

.rating-val { color: var(--text-main); }
.rating-count { color: #64748b; font-weight: 500; font-size: 11.5px; }

.seller-metrics-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 12px 6px;
  text-align: center;
  border: 1px solid var(--border-light);
  margin-bottom: 16px;
}

.seller-metric-box { flex: 1; }
.seller-metric-num { font-size: 16px; font-weight: 900; color: var(--text-main); }
.seller-metric-lbl { font-size: 10px; font-weight: 700; color: #94a3b8; }
.metric-divider { width: 1px; height: 26px; background: var(--border-light); }

.seller-actions-row {
  display: flex;
  gap: 8px;
}

.btn-seller-follow {
  flex: 1;
  background: #ffffff;
  border: 1.5px solid #ef4444;
  color: #ef4444;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-seller-follow.following {
  background: #ef4444;
  color: #ffffff;
}

.btn-seller-showroom {
  flex: 1.2;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

/* 13.5 Smart Interactive Chat Card */
.smart-chat-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  margin-bottom: 20px;
}

.chat-card-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.chat-card-sub {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 14px;
}

.quick-question-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.chip-btn {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.chip-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}

.chat-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-textarea-field {
  width: 100%;
  height: 68px;
  padding: 10px 12px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-family: var(--font-sans);
  outline: none;
  resize: none;
}

.chat-textarea-field:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.btn-send-inquiry {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.chat-response-feed {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-msg-bubble {
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  line-height: 1.4;
}

.chat-msg-bubble.user {
  background: #eff6ff;
  color: #1e3a8a;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-msg-bubble.merchant {
  background: #f1f5f9;
  color: #0f172a;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.typing-indicator {
  font-style: italic;
  color: #64748b;
  font-size: 11.5px;
}

/* 13.6 Safety Checklist Card */
.safety-card-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--border-light);
}

.safety-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.safety-icon-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-card-head h4 {
  font-size: 14px;
  font-weight: 800;
}

.safety-guidelines-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.safety-guidelines-list li {
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
  position: relative;
  padding-left: 14px;
}

.safety-guidelines-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 900;
}

/* 13.7 Lightbox Fullscreen */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 23, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsiveness for Listing Details */
@media (max-width: 900px) {
  .listing-two-col-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .smart-gallery__stage {
    height: 340px;
  }
  .listing-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .listing-price-badge-wrap {
    text-align: left;
  }
  .listing-price-sub {
    justify-content: flex-start;
  }
  .listing-cta-action-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .smart-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .escrow-steps-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .smart-gallery__stage {
    height: 280px;
  }
  .smart-specs-grid {
    grid-template-columns: 1fr;
  }
  .smart-thumb-item {
    width: 64px;
    height: 54px;
  }
  .badge-escrow-pill {
    display: none;
  }
}

/* ==========================================================================
   8. DEDICATED PAGES SHARED STYLES (ABOUT, CATEGORIES, SUPPORT, FAQ, ESCROW, MERCHANT)
   ========================================================================== */
.page-hero {
  background: var(--dark-hero);
  color: #ffffff;
  padding: clamp(48px, 6vw, 72px) 0 clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #93c5fd;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.page-hero__title {
  font-family: var(--font-sans);
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero__title span {
  color: #38bdf8;
}

.page-hero__subtitle {
  font-size: clamp(14px, 2vw, 16.5px);
  line-height: 1.6;
  color: #94a3b8;
  max-width: 680px;
  margin-bottom: 20px;
}

.page-content-wrapper {
  padding: clamp(32px, 5vw, 60px) 0 clamp(48px, 6vw, 80px);
  background: #f8fafc;
  min-height: 500px;
}

/* ── FAQ SECTION STYLES ─────────────────────────────────────────── */
.faq-search-wrap {
  margin-bottom: 32px;
  max-width: 640px;
}

.faq-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-full);
  padding: 8px 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.faq-search-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.faq-search-box input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 14.5px;
  width: 100%;
  color: var(--text-main);
}

.faq-category-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 28px;
  scrollbar-width: none;
}

.faq-category-nav::-webkit-scrollbar { display: none; }

.faq-tab-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-tab-btn.active, .faq-tab-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 900px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.faq-item.active {
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.faq-question {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  background: transparent;
  width: 100%;
  border: none;
  text-align: left;
}

.faq-question svg {
  transition: transform 0.25s ease;
  color: #64748b;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  border-top: 1px solid #f1f5f9;
  padding-top: 14px;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ── SUPPORT / CONTACT PAGE STYLES ──────────────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.support-channel-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: all 0.22s ease;
}

.support-channel-card:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.support-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-icon-box--green {
  background: #ecfdf5;
  color: #059669;
}

.support-channel-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.support-channel-desc {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.45;
}

.support-channel-action {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.support-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(20px, 3.5vw, 32px);
  box-shadow: var(--shadow-card);
}

.form-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  border: 1.5px solid #cbd5e1;
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 14px;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.btn-form-submit {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  border-radius: 9px;
  padding: 13px 24px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px var(--primary-glow);
  width: 100%;
  transition: transform 0.15s ease;
}

.btn-form-submit:hover {
  transform: translateY(-1px);
}

/* ── ABOUT PAGE STYLES ──────────────────────────────────────────── */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 48px;
}

.about-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.about-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.about-pillar-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.about-pillar-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #64748b;
}

.about-story-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: 40px;
}

.about-story-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
}

.about-story-p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 16px;
}

/* ── ESCROW PAGE STYLES ─────────────────────────────────────────── */
.escrow-steps-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 44px;
}

.escrow-flow-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 18px;
  position: relative;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.escrow-flow-card__step-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.escrow-flow-card__title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.escrow-flow-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: #64748b;
}

.escrow-calculator-card {
  background: #ffffff;
  border: 1.5px solid #93c5fd;
  border-radius: 16px;
  padding: clamp(22px, 3.5vw, 36px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
  max-width: 680px;
  margin: 0 auto 44px;
}

.calc-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.calc-subtitle {
  font-size: 13.5px;
  color: #64748b;
  margin-bottom: 20px;
}

.calc-input-wrap {
  margin-bottom: 20px;
}

.calc-result-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #475569;
}

.calc-result-row.total {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  border-top: 1px solid #e2e8f0;
  padding-top: 10px;
}

/* ── MERCHANT PORTAL STYLES ─────────────────────────────────────── */
.merchant-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0 48px;
}

.merchant-tier-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.22s ease;
  position: relative;
}

.merchant-tier-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
  border-color: #93c5fd;
}

.merchant-tier-card.featured {
  border-color: #f59e0b;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.tier-featured-pill {
  position: absolute;
  top: -11px;
  right: 20px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.tier-name {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.tier-price-row {
  margin: 12px 0 18px;
}

.tier-price {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.tier-price-period {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tier-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.tier-feature-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* ── DIRECTORY CATEGORIES STYLES ────────────────────────────────── */
.categories-dir-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-dir-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
  transition: all 0.22s ease;
}

.cat-dir-card:hover {
  transform: translateY(-2px);
  border-color: #93c5fd;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08);
}

.cat-dir-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cat-dir-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-dir-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
}

.cat-dir-count {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

.cat-dir-subtags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.cat-dir-subtag {
  background: #f1f5f9;
  color: #475569;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.cat-dir-subtag:hover {
  background: var(--primary);
  color: #ffffff;
}

/* ── RESPONSIVE MEDIA QUERIES FOR DEDICATED PAGES ───────────────── */
@media (max-width: 960px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
  .about-pillars-grid {
    grid-template-columns: 1fr;
  }
  .escrow-steps-flow {
    grid-template-columns: 1fr 1fr;
  }
  .merchant-tiers-grid {
    grid-template-columns: 1fr;
  }
  .categories-dir-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .escrow-steps-flow {
    grid-template-columns: 1fr;
  }
  .categories-dir-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   MOBILE SIDEBAR DRAWER & HAMBURGER TOGGLE (MODERN, CLEAN, PROFESSIONAL)
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.15s ease;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu-toggle:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: var(--primary);
}

.mobile-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 9, 23, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-sidebar-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(330px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: #080f24;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-sidebar-drawer.is-open {
  transform: translateX(0);
}

.mobile-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar__logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.mobile-sidebar__close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.mobile-sidebar__close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.mobile-sidebar__user-banner {
  padding: 14px 18px;
  background: rgba(37, 99, 235, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-sidebar__user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.3);
  border: 1.5px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.mobile-sidebar__user-info {
  flex: 1;
  min-width: 0;
}

.mobile-sidebar__user-name {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.mobile-sidebar__user-sub {
  display: block;
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

.btn-sidebar-auth {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
  flex-shrink: 0;
}

.mobile-sidebar__nav {
  padding: 14px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-sidebar__group-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
  padding: 10px 8px 4px;
  text-transform: uppercase;
}

.mobile-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.15s ease;
}

.mobile-sidebar__link:hover, .mobile-sidebar__link:active {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.mobile-sidebar__link-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  flex-shrink: 0;
}

.mobile-sidebar__badge {
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.mobile-sidebar__badge--gold {
  background: rgba(245, 158, 11, 0.25);
  color: #fcd34d;
}

.mobile-sidebar__badge--green {
  background: rgba(16, 185, 129, 0.25);
  color: #6ee7b7;
}

.mobile-sidebar__footer {
  padding: 16px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.btn-sidebar-post {
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-sidebar-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #25d366;
  padding: 10px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

/* ==========================================================================
   14. MODERN AUTH MODAL & SOCIAL LOGINS (GOOGLE, FACEBOOK, EMAIL)
   ========================================================================== */
.auth-modal-window {
  max-width: 440px !important;
  width: 100%;
  border-radius: 20px !important;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-light);
  position: relative;
}

.auth-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.15s ease;
}

.auth-modal-close:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.auth-modal-header {
  padding: 24px 22px 14px;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #f1f5f9;
}

.auth-brand-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.auth-brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
}

.auth-modal-title {
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.auth-modal-subtitle {
  font-size: 12.5px;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.4;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f1f5f9;
  padding: 3px;
  border-radius: 10px;
  gap: 3px;
}

.auth-tab-btn {
  padding: 8px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.auth-tab-btn.active {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.auth-modal-body {
  padding: 18px 22px 22px;
}

.social-auth-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 14px;
}

.btn-social-auth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.auth-social-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.btn-social-chip {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.btn-social-chip:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.btn-social-chip:active {
  transform: scale(0.98);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 14px 0;
  color: #94a3b8;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.auth-divider span {
  padding: 0 10px;
}

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-input-icon {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  pointer-events: none;
}

.auth-input {
  padding-left: 36px !important;
  height: 42px;
  font-size: 13px;
  border-radius: 9px;
}

.auth-password-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}

.auth-password-toggle:hover {
  color: #475569;
}

.auth-forgot-link {
  font-size: 11.5px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.auth-forgot-link:hover {
  text-decoration: underline;
}

.auth-role-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}

.auth-role-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  background: #f8fafc;
  color: #334155;
  transition: all 0.15s ease;
}

.auth-role-option:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
}

.auth-role-option input[type="radio"]:checked + span {
  color: var(--primary);
}

.btn-auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-size: 14px;
  border-radius: 10px;
  font-weight: 800;
  margin-top: 6px;
}

.auth-security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-align: center;
}



/* ═══════════════════════════════════════════════════════════════════════════
   HUGE ANIMATION ENGINE — SCROLL ENTRANCES, 3D HOVER, SHIMMER & PARTICLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* SCROLL REVEALS */
.reveal,
.categories-grid,
.recent-listings-section,
.hero-slider-col,
.price-card,
.merchant-stat-item {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.showcase-block {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.reveal.is-revealed,
.showcase-block.is-revealed,
.categories-grid.is-revealed,
.recent-listings-section.is-revealed,
.hero-slider-col.is-revealed,
.price-card.is-revealed,
.merchant-stat-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger item entrance */
.product-card,
.cat-tile,
.recent-card,
.item-card {
  opacity: 1;
  transform: none;
  transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, transform 0.25s ease !important;
}

.is-revealed .product-card,
.is-revealed .cat-tile,
.is-revealed .recent-card,
.is-revealed .item-card,
.product-card.item-revealed,
.cat-tile.item-revealed,
.recent-card.item-revealed,
.item-card.item-revealed {
  opacity: 1;
  transform: none;
}

/* 3D HOVER MICRO-INTERACTIONS */
.cat-tile:hover {
  transform: translateY(-8px) scale(1.04) !important;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.16), 0 6px 14px rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(37, 99, 235, 0.45) !important;
}

.cat-tile:hover .cat-tile__icon-wrap {
  transform: scale(1.22) rotate(-5deg);
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.35);
}

.cat-tile__icon-wrap {
  transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover,
.recent-card:hover {
  transform: translateY(-8px) scale(1.015) !important;
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.2), 0 8px 16px -4px rgba(15, 23, 42, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.35) !important;
}

.product-card__img-box img,
.recent-card__img-box img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover .product-card__img-box img,
.recent-card:hover .recent-card__img-box img {
  transform: scale(1.08) !important;
}

/* SHIMMER LIGHT WAVES */
@keyframes buttonShimmer {
  0% { transform: translateX(-120%) skewX(-20deg); }
  45%, 100% { transform: translateX(220%) skewX(-20deg); }
}

.btn-sell-header,
.hero-omni-search__btn,
.btn-primary-full,
.dock-sell-circle {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, filter 0.25s ease !important;
}

.btn-sell-header::after,
.hero-omni-search__btn::after,
.btn-primary-full::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%) skewX(-20deg);
  animation: buttonShimmer 4.5s infinite;
  pointer-events: none;
}

.btn-sell-header:hover,
.hero-omni-search__btn:hover,
.btn-primary-full:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4) !important;
}

.btn-sell-header:active,
.hero-omni-search__btn:active,
.btn-primary-full:active {
  transform: translateY(0) scale(0.98) !important;
}

/* FLOATING AMBIENCE */
@keyframes floatingCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.08); }
}

.hero-slider-col {
  animation: floatingCard 6.5s ease-in-out infinite;
}

.hero-glow-orb {
  animation: pulseGlow 7s ease-in-out infinite;
}

/* NAVBAR BLUR ELEVATION ON SCROLL */
.site-header {
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease !important;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8) !important;
}

/* MODAL BOUNCE */
.modal-backdrop.is-open .modal-window,
.auth-modal-window {
  animation: modalPopIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalPopIn {
  0% { opacity: 0; transform: scale(0.85) translateY(24px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* ==========================================================================
   RESPONSIVE NAVBAR — MEDIUM SCREEN FIXES (900px – 1260px)
   ========================================================================== */

/* 1100px–1260px: slightly compress gaps + search */
@media (min-width: 1100px) and (max-width: 1260px) {
  .site-header__inner { gap: 14px; }
  .header-search { max-width: 340px; }
  .header-nav { gap: 12px; }
  .nav-link { font-size: 12.5px; }
  .btn-sell-header { padding: 8px 14px; font-size: 12.5px; }
  .nav-link--escrow { font-size: 12px; }
}

/* 960px–1099px: hide escrow link text, shrink search, tighter gaps */
@media (min-width: 960px) and (max-width: 1099px) {
  .site-header__inner { gap: 10px; }
  .header-search { max-width: 260px; }
  .header-nav { gap: 8px; }
  .nav-link { font-size: 12px; }
  /* Hide lower-priority nav items at this range */
  .nav-link--escrow { display: none; }
  .btn-sell-header { padding: 7px 12px; font-size: 12px; }
  .btn-sell-header span { display: none; } /* icon only */
  .btn-sell-header { gap: 0; padding: 8px 10px; border-radius: 50%; }
}

/* 768px–959px: collapse to hamburger — hide all nav-links, show mobile toggle */
@media (min-width: 768px) and (max-width: 959px) {
  .site-header__inner { gap: 10px; height: 62px; }
  .header-search { max-width: 260px; display: flex; }
  .header-search input { font-size: 13px; }
  .header-search__btn { padding: 8px 14px; font-size: 12.5px; }

  /* Hide all desktop nav-links — use mobile drawer instead */
  .header-nav .nav-link { display: none; }
  .nav-link--escrow { display: none; }
  .btn-sell-header { padding: 8px 14px; font-size: 12.5px; }
  .btn-sell-header span { display: none; }
  .btn-sell-header { border-radius: 50%; padding: 9px 10px; }

  /* Always show hamburger + user btn */
  .mobile-menu-toggle { display: flex; }
  .header-user-btn { display: flex; }
}

/* Make sure mobile menu toggle is always visible on these ranges */
@media (min-width: 768px) and (max-width: 959px) {
  .mobile-menu-toggle { display: flex !important; }
}

/* Fix .site-header__inner for general overflow prevention */
@media (max-width: 1260px) {
  .site-header__inner {
    overflow: visible;
  }
  .header-nav {
    flex-shrink: 0;
    flex-wrap: nowrap;
  }
}







/* ==========================================================================
   ORIGINAL RESTORED MOBILE BOTTOM APP DOCK
   ========================================================================== */
.bottom-app-dock {
  display: none;
}

@media (max-width: 768px) {
  .bottom-app-dock {
    display: flex !important;
    position: fixed !important;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 400 !important;
    background: rgba(5, 10, 26, 0.96) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: var(--radius-full) !important;
    padding: 6px 14px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45) !important;
    align-items: center !important;
    gap: 8px !important;
    width: calc(100% - 24px) !important;
    max-width: 420px !important;
    justify-content: space-around !important;
  }

  .dock-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    text-decoration: none !important;
    color: #94a3b8 !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 4px 6px !important;
    min-width: 46px !important;
    transition: color 0.15s ease !important;
  }

  .dock-item.active, .dock-item:hover {
    color: #ffffff !important;
  }

  .dock-item svg {
    stroke: currentColor !important;
  }

  .dock-post-btn {
    background: var(--primary-gradient) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    padding: 7px 16px !important;
    border-radius: var(--radius-full) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px var(--primary-glow) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    white-space: nowrap !important;
  }

  .dock-post-btn svg {
    stroke: #ffffff !important;
  }

  .dock-post-btn:hover {
    transform: translateY(-1px) scale(1.03) !important;
    box-shadow: 0 6px 18px var(--primary-glow) !important;
  }
}

/* Deposit & Quick Amount Autofill Chips */
.deposit-preset-chip {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.15s ease;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.deposit-preset-chip:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  color: #1d4ed8;
  transform: translateY(-1px);
}

.deposit-preset-chip.active {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

/* Listings Filter Chips & Count Pills */
.dash-flt-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  text-decoration: none;
}

.dash-flt-chip:hover {
  border-color: #94a3b8;
  background: #f1f5f9;
  color: #0f172a;
}

.dash-flt-chip.active {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(15, 23, 42, 0.2);
}

.dash-count-pill, .adm-count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  background: #e2e8f0;
  color: #475569;
  min-width: 18px;
  line-height: 1;
}

.dash-flt-chip.active .dash-count-pill {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Rejection Card & Alert UI */
.listing-rejection-card {
  margin-top: 10px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: fadeIn 0.2s ease;
}

.listing-rejection-card__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fee2e2;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.listing-rejection-card__body {
  flex: 1;
}

.listing-rejection-card__title {
  font-size: 12.5px;
  font-weight: 800;
  color: #9f1239;
  margin-bottom: 2px;
}

.listing-rejection-card__desc {
  font-size: 12px;
  color: #be123c;
  line-height: 1.4;
}

.listing-rejection-card__actions {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-resubmit-edit {
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff !important;
  background: #e11d48;
  padding: 5px 12px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn-resubmit-edit:hover {
  background: #be123c;
}

/* ==========================================================================
   AFFILIATE & REFERRAL SUITE STYLES (DESKTOP & MOBILE)
   ========================================================================== */
.referral-hero-card {
  background: linear-gradient(135deg, #091224 0%, #172554 50%, #1d4ed8 100%);
  border-radius: 18px;
  padding: clamp(20px, 3.5vw, 32px);
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.referral-hero-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.referral-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 12px;
}

.referral-hero-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  line-height: 1.25;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.referral-hero-desc {
  font-size: 13.5px;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0 0 20px;
  max-width: 620px;
}

/* 3-Step How It Works Badges */
.referral-steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .referral-steps-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.referral-step-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.referral-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #3b82f6;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.referral-step-text {
  font-size: 12px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
}

.referral-step-sub {
  font-size: 10.5px;
  color: #94a3b8;
  font-weight: 500;
}

/* Referral Code & Share Link Box */
.referral-share-box {
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.referral-code-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.07);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  padding: 8px 14px;
  border-radius: 10px;
}

.referral-code-badge {
  font-family: monospace;
  font-size: 15px;
  font-weight: 900;
  color: #38bdf8;
  letter-spacing: 1px;
}

.referral-link-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.referral-link-input {
  flex: 1;
  min-width: 180px;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 12.5px;
  padding: 10px 14px;
  border-radius: 9px;
  border: none;
  outline: none;
}

.btn-share-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 800;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-share-action--copy {
  background: #2563eb;
  color: #ffffff;
}
.btn-share-action--copy:hover {
  background: #1d4ed8;
}

.btn-share-action--wa {
  background: #16a34a;
  color: #ffffff;
}
.btn-share-action--wa:hover {
  background: #15803d;
}

/* Compact Responsive Metrics Grid */
.referral-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

@media (max-width: 820px) {
  .referral-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.referral-metric-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.referral-metric-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgba(0,0,0,0.06);
}

.referral-metric-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.referral-metric-title {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.referral-metric-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.referral-metric-val {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 4px;
}

.referral-metric-footer {
  font-size: 11.5px;
  color: #94a3b8;
  font-weight: 600;
}

/* History List / Feed items */
.referral-item-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.15s ease;
}
.referral-item-card:hover {
  background: #f8fafc;
}
.referral-item-card:last-child {
  border-bottom: none;
}

.referral-item-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #dbeafe;
}
