@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

/* ===== DESIGN TOKENS — Waka Event Service ===== */
/* Brand palette pulled from logo: deep black, vibrant orange, clean white, warm red accent */
:root {
  /* Brand primary: orange from logo */
  --orange:        #E8500A;
  --orange-dark:   #C03F06;
  --orange-mid:    #F06828;
  --orange-light:  #FFF0EA;
  --orange-glow:   rgba(232,80,10,.15);

  /* Trust/safe accent: green (secondary, not primary) */
  --green:         #1AA86C;
  --green-dark:    #0E7A4A;
  --green-light:   #E6F7EE;
  --green-mid:     #22C97E;

  /* Gold/deal */
  --gold:          #F5A623;
  --gold-dark:     #C47A00;
  --gold-light:    #FFF6E0;

  /* Red hot */
  --red-hot:       #E03020;
  --red-light:     #FFF0EE;

  /* Neutrals */
  --text:          #0F0F0F;
  --text-2:        #3A3A3A;
  --muted:         #7A7A8A;
  --bg:            #F7F7F9;
  --card:          #FFFFFF;
  --line:          #E8E8EE;

  /* Black from logo */
  --black:         #0F0F0F;
  --black-soft:    #1A1A1A;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow:        0 8px 28px rgba(0,0,0,.10);
  --shadow-lg:     0 20px 55px rgba(0,0,0,.15);
  --shadow-orange: 0 8px 28px rgba(232,80,10,.25);

  --radius:      20px;
  --radius-sm:   12px;
  --radius-lg:   28px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.container { width: min(1200px, 94%); margin: auto; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== TOPBAR / NAV ===== */
.topbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 20px rgba(232,80,10,.12);
}
.nav {
  display: flex; align-items: center; gap: 16px;
  min-height: 72px; padding: 10px 0;
}
.brand {
  font-size: 1.55rem; font-weight: 900; color: var(--text);
  white-space: nowrap; letter-spacing: -0.5px; font-family: "Outfit", sans-serif;
  display: flex; align-items: center; gap: 6px;
}
.brand img.logo-img {
  height: 68px; width: auto; display: block;
}
.menu-toggle {
  display: none; border: 0; background: var(--orange);
  color: white; border-radius: 10px; padding: 9px 12px; font-size: 1.1rem; cursor: pointer;
}

/* Nav Search */
.nav-search {
  flex: 1; display: grid;
  grid-template-columns: 155px 1fr 140px auto;
  background: var(--bg); border: 1.5px solid var(--line);
  padding: 5px; border-radius: 16px; gap: 4px;
  transition: border-color .2s, box-shadow .2s;
}
.nav-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,80,10,.1);
}
.nav-search input, .nav-search select {
  border: 0; background: transparent; padding: 10px 12px;
  outline: none; color: var(--text); min-width: 0;
  font-family: inherit; font-size: .93rem;
}
.nav-search select { color: var(--text-2); font-weight: 600; }

/* Buttons */
.search-btn, .primary-btn, .post-btn {
  border: 0; background: var(--orange); color: white;
  padding: 11px 20px; border-radius: 12px;
  font-weight: 700; font-size: .92rem; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit;
}
.search-btn:hover, .primary-btn:hover, .post-btn:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
}
.ghost-btn {
  border: 1.5px solid var(--line); background: white;
  border-radius: 12px; padding: 10px 16px; cursor: pointer;
  font-weight: 600; font-size: .9rem; color: var(--text-2);
  transition: border-color .2s, color .2s; font-family: inherit;
}
.ghost-btn:hover { border-color: var(--orange); color: var(--orange); }
.post-btn {
  background: var(--orange); color: white; font-weight: 800;
  border-radius: 12px; padding: 11px 18px;
}

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: var(--text-2); font-weight: 600; font-size: .88rem;
  padding: 8px 13px; border-radius: 10px; transition: background .18s, color .18s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--orange-light); color: var(--orange); font-weight: 700;
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-actions a.ghost-btn {
  border: 1.5px solid var(--line); background: white;
  border-radius: 12px; padding: 10px 16px; cursor: pointer;
  font-weight: 600; font-size: .9rem; color: var(--text-2);
  transition: border-color .2s, color .2s; font-family: inherit;
  display: inline-flex; align-items: center;
}
.nav-actions a.ghost-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ===== EVENT SALES BANNER STRIP ===== */
.event-sales-strip {
  background: var(--black);
  border-bottom: 2px solid var(--orange);
  overflow: hidden;
  position: relative;
}
.event-sales-strip .strip-inner {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
}
.event-ticker {
  display: flex; align-items: center; gap: 32px;
  padding: 10px 0; animation: ticker 30s linear infinite;
  font-size: .84rem; font-weight: 700; color: white;
}
.event-ticker:hover { animation-play-state: paused; }
.event-ticker span {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.event-ticker span.hot { color: var(--gold); }
.event-ticker span.new { color: #4DE8A0; }
.event-ticker .sep { color: rgba(255,255,255,.3); font-size: 1.2rem; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== FLASH SALE BANNER ===== */
.flash-sale-banner {
  background: linear-gradient(135deg, #1a0000 0%, #8B0000 40%, var(--red-hot) 100%);
  border-radius: var(--radius-lg); margin: 20px 0;
  padding: 32px 40px; color: white;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 28px; position: relative; overflow: hidden;
  box-shadow: 0 16px 48px rgba(224,48,32,.35);
}
.flash-sale-banner::before {
  content: "⚡";
  position: absolute; right: 180px; top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  font-size: 8rem; opacity: .08; pointer-events: none;
}
.flash-sale-badge {
  background: white; color: var(--red-hot);
  border-radius: 16px; padding: 14px 18px; text-align: center; min-width: 90px;
}
.flash-sale-badge span { display: block; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.flash-sale-badge strong { font-size: 1.7rem; font-weight: 900; line-height: 1; margin-top: 2px; display: block; }
.flash-sale-copy h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 900; letter-spacing: -1px; }
.flash-sale-copy p { color: rgba(255,255,255,.8); margin-top: 4px; font-size: .95rem; }
.flash-countdown {
  display: flex; gap: 10px; align-items: center;
}
.countdown-unit {
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px; padding: 10px 14px; text-align: center; min-width: 64px;
}
.countdown-unit .num {
  display: block; font-size: 1.85rem; font-weight: 900; line-height: 1; color: white;
}
.countdown-unit .lbl {
  display: block; font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px;
}
.countdown-sep { font-size: 1.4rem; font-weight: 900; color: rgba(255,255,255,.5); }
.flash-cta { background: white; color: var(--red-hot); border-radius: 14px; padding: 14px 22px; font-weight: 800; font-size: .95rem; border: 0; cursor: pointer; font-family: inherit; transition: all .2s; white-space: nowrap; }
.flash-cta:hover { background: var(--gold); color: #3B1800; transform: translateY(-2px); }

/* ===== BLACK FRIDAY BANNER ===== */
.blackfriday-banner {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a1400 100%);
  border-radius: var(--radius-lg); margin: 0 0 20px;
  padding: 36px 40px; color: white;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 28px; position: relative; overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 16px 48px rgba(0,0,0,.5), inset 0 1px 0 rgba(245,166,35,.15);
}
.blackfriday-banner::before {
  content: "BLACK FRIDAY";
  position: absolute; right: -20px; top: 50%; transform: translateY(-50%) rotate(90deg);
  font-size: 5rem; font-weight: 900; color: rgba(245,166,35,.06);
  letter-spacing: .1em; white-space: nowrap; pointer-events: none;
}
.bf-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black);
  border-radius: 999px; padding: 6px 14px; font-weight: 800; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.bf-copy h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; }
.bf-copy h2 em { color: var(--gold); font-style: normal; }
.bf-copy p { color: rgba(255,255,255,.72); margin-top: 8px; font-size: 1rem; }
.bf-deals-preview {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.bf-deal-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(245,166,35,.25);
  border-radius: 14px; padding: 14px; text-align: center;
}
.bf-deal-chip .disc { color: var(--gold); font-size: 1.6rem; font-weight: 900; line-height: 1; }
.bf-deal-chip .cat { color: rgba(255,255,255,.6); font-size: .76rem; font-weight: 700; margin-top: 4px; }
.bf-action-row { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.bf-btn { background: var(--gold); color: var(--black); border-radius: 14px; padding: 13px 22px; font-weight: 800; font-size: .95rem; border: 0; cursor: pointer; font-family: inherit; transition: all .2s; }
.bf-btn:hover { background: white; transform: translateY(-2px); }
.bf-ghost { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,.25); border-radius: 14px; padding: 13px 22px; font-weight: 700; font-size: .95rem; cursor: pointer; font-family: inherit; transition: all .2s; }
.bf-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ===== ANNIVERSARY BANNER ===== */
.anniversary-banner {
  background:
    radial-gradient(ellipse at 10% 20%, rgba(232,80,10,.35) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 80%, rgba(26,168,108,.25) 0%, transparent 45%),
    linear-gradient(135deg, #0F0F0F 0%, #1A0A00 60%, #0A1A0A 100%);
  border-radius: var(--radius-lg); margin: 0 0 20px;
  padding: 40px; color: white; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.anniversary-banner::after {
  content: "🎉"; position: absolute; right: 60px; top: 20px;
  font-size: 5rem; opacity: .15; animation: anniBob 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes anniBob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}
.anni-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: white; border-radius: 999px; padding: 6px 14px;
  font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 12px; width: fit-content;
}
.anni-copy h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -1.2px; line-height: 1.05; }
.anni-copy h2 .yr { color: var(--orange); font-size: 1.2em; }
.anni-copy p { color: rgba(255,255,255,.72); margin-top: 8px; font-size: 1rem; max-width: 520px; }
.anni-offers { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.anni-offer-tag {
  background: rgba(255,255,255,.1); border: 1px solid rgba(232,80,10,.35);
  border-radius: 999px; padding: 8px 14px; font-size: .84rem; font-weight: 700;
  color: rgba(255,255,255,.9); display: inline-flex; align-items: center; gap: 6px;
}
.anni-cta-wrap { text-align: center; }
.anni-cta-ring {
  width: 140px; height: 140px; border-radius: 50%;
  background: conic-gradient(var(--orange) 0deg, var(--gold) 120deg, var(--green) 240deg, var(--orange) 360deg);
  display: flex; align-items: center; justify-content: center;
  animation: anniSpin 8s linear infinite; box-shadow: 0 0 40px rgba(232,80,10,.3);
}
.anni-cta-inner {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--black); display: flex; flex-direction: column;
  align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s;
}
.anni-cta-inner:hover { background: var(--orange); }
.anni-cta-inner strong { color: white; font-size: 1.15rem; font-weight: 900; line-height: 1; }
.anni-cta-inner span { color: rgba(255,255,255,.7); font-size: .72rem; font-weight: 700; margin-top: 3px; }
@keyframes anniSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ===== JUMIA-STYLE ADVERT BANNER SLIDER ===== */
.advert-slider-section { padding: 0; }
.advert-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-lg);
  background: var(--black);
  user-select: none;
}
.advert-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .7s cubic-bezier(.4,0,.2,1);
  display: flex; align-items: center;
}
.advert-slide.advert-active {
  opacity: 1; pointer-events: auto;
}
.advert-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  opacity: .45;
  transition: transform 8s ease, opacity .7s;
  transform: scale(1.04);
}
.advert-slide.advert-active .advert-bg-img {
  transform: scale(1);
}
.advert-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,15,15,.92) 0%, rgba(42,18,0,.72) 50%, transparent 100%);
  z-index: 1;
}
.advert-content {
  position: relative; z-index: 2;
  padding: 42px 52px;
  max-width: 600px;
  animation: advertFadeIn .6s ease both;
}
@keyframes advertFadeIn {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
.advert-slide.advert-active .advert-content { animation: advertFadeIn .7s .15s ease both; }
.advert-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(232,80,10,.22); border: 1px solid rgba(232,80,10,.4);
  color: #FFD4A0; border-radius: 999px; padding: 7px 15px;
  font-weight: 800; font-size: .82rem; letter-spacing: .04em;
  margin-bottom: 14px;
}
.advert-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 900;
  color: white; line-height: 1.04; letter-spacing: -2px;
  margin-bottom: 12px;
}
.advert-content p {
  color: rgba(255,255,255,.78); font-size: 1.05rem; line-height: 1.65;
  max-width: 480px; margin-bottom: 26px;
}
.advert-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.advert-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: white;
  border: 0; border-radius: 14px; padding: 13px 26px;
  font-weight: 800; font-size: .96rem; font-family: inherit;
  cursor: pointer; transition: background .2s, transform .18s, box-shadow .2s;
  text-decoration: none; letter-spacing: -.02em;
  box-shadow: 0 6px 22px rgba(232,80,10,.35);
}
.advert-cta:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.advert-cta-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: white;
  border: 1.5px solid rgba(255,255,255,.3); border-radius: 14px; padding: 12px 22px;
  font-weight: 700; font-size: .96rem; font-family: inherit;
  cursor: pointer; transition: background .2s, transform .18s;
  text-decoration: none;
}
.advert-cta-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* Price / badge bubble — bottom right */
.advert-badge {
  position: absolute; bottom: 30px; right: 36px; z-index: 3;
  background: white; border-radius: 20px; padding: 14px 22px;
  box-shadow: 0 14px 44px rgba(0,0,0,.25);
  text-align: center; min-width: 110px;
  animation: badgePop .5s .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes badgePop {
  from { opacity: 0; transform: scale(.7) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.advert-badge small {
  display: block; color: var(--muted); font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .06em;
}
.advert-badge strong {
  display: block; color: var(--orange); font-size: 1.5rem; font-weight: 900; line-height: 1.1;
}

/* Arrow nav */
.advert-prev, .advert-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.25); color: white;
  border-radius: 50%; width: 50px; height: 50px;
  font-size: 1.8rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  opacity: 0; /* hidden by default, visible on hover */
}
.advert-slider:hover .advert-prev,
.advert-slider:hover .advert-next { opacity: 1; }
.advert-prev { left: 18px; }
.advert-next { right: 18px; }
.advert-prev:hover, .advert-next:hover {
  background: rgba(255,255,255,.3); transform: translateY(-50%) scale(1.08);
}

/* Dot indicators */
.advert-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.advert-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: all .35s cubic-bezier(.34,1.56,.64,1);
  padding: 0;
}
.advert-dot.active {
  background: white; width: 28px; border-radius: 20px;
}
.advert-dot:hover { background: rgba(255,255,255,.7); }

/* ===== HERO ===== */
.hero {
  display: grid; grid-template-columns: 1fr 285px; gap: 20px;
  padding: 28px 0 36px; align-items: stretch;
}
.hero-slider {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--black); min-height: 460px; box-shadow: var(--shadow-lg);
}
.slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity .65s ease;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: 0;
}
.slide.active { opacity: 1; pointer-events: auto; }

.deal-slide {
  background: radial-gradient(ellipse at 15% 0%, rgba(232,80,10,.25) 0%, transparent 38%),
              radial-gradient(ellipse at 80% 90%, rgba(26,168,108,.16) 0%, transparent 38%),
              linear-gradient(148deg, #0F0F0F 0%, #2A1200 60%, #1A0A00 100%);
}
.slide-vehicles {
  background-image:
    radial-gradient(ellipse at 15% 0%, rgba(232,80,10,.3) 0%, transparent 38%),
    linear-gradient(148deg,#0F0F0F,#2E1600 55%,#1A0D00 100%);
}
.slide-phones {
  background-image:
    radial-gradient(ellipse at 80% 10%, rgba(26,168,108,.3) 0%, transparent 40%),
    linear-gradient(148deg,#080818,#0E2860 55%,#081845 100%);
}
.slide-property {
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(232,80,10,.22) 0%, transparent 35%),
    linear-gradient(148deg,#0F0F0F,#1A0F28 55%,#120A1F 100%);
}

.slide-copy {
  padding: 50px 0 50px 50px; position: relative; z-index: 2;
}
.slide-copy .eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,80,10,.2); color: #FFD4A0;
  padding: 7px 13px; border: 1px solid rgba(232,80,10,.35);
  border-radius: 999px; font-weight: 700; font-size: .83rem; letter-spacing: .03em;
}
.slide-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1.04;
  color: white; margin: 14px 0 12px;
  letter-spacing: -2px; font-weight: 900;
}
.slide-copy p { color: rgba(255,255,255,.78); max-width: 500px; margin-bottom: 26px; font-size: 1.02rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.light-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.12); color: white;
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 11px 18px; border-radius: 12px; font-weight: 700;
  transition: background .2s, transform .15s;
}
.light-btn:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

.slide-media {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center; padding: 34px 42px 34px 12px;
}
.slide-media img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: 24px; border: 7px solid rgba(255,255,255,.12);
  box-shadow: 0 28px 70px rgba(0,0,0,.4);
}
.price-bubble {
  position: absolute; left: -14px; top: 52px; z-index: 3;
  background: white; border-radius: 18px; padding: 13px 18px;
  box-shadow: 0 14px 38px rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.5);
  min-width: 110px;
}
.price-bubble small { display: block; color: var(--muted); font-weight: 700; font-size: .78rem; }
.price-bubble strong { display: block; color: var(--orange); font-size: 1.25rem; font-weight: 900; }

.slider-dots {
  position: absolute; bottom: 22px; left: 50px;
  display: flex; gap: 8px; z-index: 10;
}
.slider-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s;
}
.slider-dots button.active {
  background: var(--orange); width: 34px; border-radius: 20px;
}

/* Spotlight card */
.hero-card {
  background: white; border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; position: relative;
}
.upgraded-spotlight {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.85) 75%),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=800&q=80');
  background-size: cover; background-position: center;
  color: white; min-height: 460px;
}
.spotlight-label {
  position: absolute; top: 18px; left: 18px;
  background: var(--orange); color: white; padding: 7px 12px;
  border-radius: 999px; font-weight: 800; font-size: .76rem;
}
.upgraded-spotlight h3 { font-size: 1.65rem; font-weight: 800; line-height: 1.18; }
.upgraded-spotlight p, .upgraded-spotlight small { color: rgba(255,255,255,.78); font-size: .9rem; }
.upgraded-spotlight strong { color: white; font-size: 1.85rem; font-weight: 900; display: block; margin: 6px 0 2px; }
.upgraded-spotlight a {
  display: block; background: var(--orange); color: white; font-weight: 800;
  text-align: center; border-radius: 14px; padding: 13px; margin-top: 14px;
  transition: background .2s, transform .15s;
}
.upgraded-spotlight a:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ===== SECTION HEADINGS ===== */
.section-row, .marketplace-section, .locations, .post-ad { margin-top: 52px; }
.section-row { display: flex; justify-content: space-between; align-items: flex-end; }
.section-heading span {
  color: var(--orange); font-weight: 800; text-transform: uppercase;
  font-size: .78rem; letter-spacing: .1em;
}
.section-heading h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.3rem); font-weight: 800;
  letter-spacing: -0.6px; margin-top: 4px;
}
.scroll-controls button, .filter-title button {
  border: 0; background: white; width: 40px; height: 40px; border-radius: 50%;
  box-shadow: var(--shadow); font-size: 1.3rem; cursor: pointer;
  transition: background .2s, transform .15s;
}
.scroll-controls button:hover { background: var(--orange); color: white; transform: scale(1.08); }

/* ===== CATEGORIES ===== */
.horizontal-scroll {
  display: flex; gap: 14px; overflow-x: auto; padding: 18px 2px;
  scrollbar-width: none;
}
.horizontal-scroll::-webkit-scrollbar { display: none; }
.cat-card {
  min-width: 148px; background: white; padding: 18px 16px;
  border-radius: 18px; border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm); transition: all .22s; cursor: pointer;
  text-align: center;
}
.cat-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow);
  border-color: var(--orange);
}
.cat-card:hover .cat-icon { transform: scale(1.15); }
.cat-icon { font-size: 2rem; display: block; transition: transform .22s; }
.cat-card b { display: block; margin-top: 10px; font-size: .92rem; font-weight: 700; }
.cat-card small { color: var(--muted); font-size: .78rem; margin-top: 3px; display: block; }

/* ===== STATS ===== */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px;
}
.stats-grid div {
  background: white; padding: 24px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--line);
  position: relative; overflow: hidden;
}
.stats-grid div::before {
  content: ""; position: absolute; right: -20px; bottom: -20px;
  width: 80px; height: 80px; background: var(--orange-light); border-radius: 50%;
}
.stats-grid strong { display: block; color: var(--orange); font-size: 2.1rem; font-weight: 900; letter-spacing: -1px; }
.stats-grid span { color: var(--muted); font-size: .88rem; font-weight: 600; margin-top: 2px; display: block; }

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px;
}
.product-card {
  background: white; border-radius: 18px; overflow: hidden;
  border: 1.5px solid var(--line); transition: all .22s;
  position: relative; cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow);
  border-color: rgba(232,80,10,.2);
}
.product-card img {
  width: 100%; height: 185px; object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-body { padding: 14px; }
.product-body h3 {
  font-size: .94rem; font-weight: 700; line-height: 1.35;
  margin-bottom: 7px; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.price { font-size: 1.12rem; font-weight: 900; color: var(--orange); margin: 6px 0; }
.meta { color: var(--muted); font-size: .82rem; font-weight: 500; }
.badge {
  display: inline-block; border-radius: 999px; padding: 4px 9px;
  font-size: .72rem; font-weight: 800;
  background: var(--gold-light); color: var(--gold-dark); border: 1px solid #FFDD9E;
}
.badge-hot { background: var(--red-light); color: #C0280E; border-color: #FFC5BC; }
.badge-verified { background: var(--green-light); color: var(--green-dark); border-color: #B8E8D3; }
.badge-new { background: var(--orange-light); color: var(--orange-dark); border-color: #FFCFBA; }
.heart {
  position: absolute; right: 10px; top: 10px;
  border: 0; background: rgba(255,255,255,.92);
  border-radius: 50%; width: 36px; height: 36px;
  cursor: pointer; font-size: 1.05rem; line-height: 36px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: transform .2s, background .2s;
  backdrop-filter: blur(4px);
}
.heart:hover { transform: scale(1.12); }
.heart.active { color: var(--red-hot); background: white; }

/* Sale tag on product cards */
.sale-tag {
  position: absolute; left: 10px; top: 10px;
  background: var(--red-hot); color: white;
  border-radius: 8px; padding: 4px 8px; font-size: .72rem; font-weight: 800;
  letter-spacing: .02em;
}
.quick-view-btn {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%) translateY(10px);
  background: rgba(0,0,0,.8); color: white; border: 0; border-radius: 999px;
  padding: 7px 14px; font-size: .78rem; font-weight: 700; cursor: pointer;
  opacity: 0; transition: all .22s; white-space: nowrap; font-family: inherit;
  backdrop-filter: blur(4px);
}
.card-img-wrap { position: relative; overflow: hidden; }
.product-card:hover .quick-view-btn { opacity: 1; transform: translateX(-50%) translateY(0); }

.contact-btn {
  display: block; width: 100%; margin-top: 10px;
  background: var(--orange-light); color: var(--orange-dark); border: 1.5px solid rgba(232,80,10,.2);
  border-radius: 10px; padding: 10px; font-weight: 700; font-size: .84rem;
  cursor: pointer; font-family: inherit; transition: all .2s;
}
.contact-btn:hover { background: var(--orange); color: white; border-color: var(--orange); }

/* ===== LISTING LAYOUT ===== */
.listing-layout { display: grid; grid-template-columns: 275px 1fr; gap: 22px; }
.filter-sidebar {
  background: white; padding: 22px; border-radius: var(--radius);
  border: 1.5px solid var(--line); height: max-content;
  position: sticky; top: 90px; box-shadow: var(--shadow-sm);
}
.filter-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.filter-title button { display: none; }
.filter-sidebar label { display: grid; gap: 7px; margin: 16px 0; font-weight: 700; font-size: .88rem; color: var(--text-2); }
.filter-sidebar select, .filter-sidebar input[type=range],
.ad-form input, .ad-form select, .ad-form textarea, .auth-form input {
  width: 100%; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 11px 13px; background: var(--bg); outline: none;
  font-family: inherit; font-size: .9rem; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.filter-sidebar select:focus, .ad-form input:focus,
.ad-form select:focus, .ad-form textarea:focus, .auth-form input:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,80,10,.1); background: white;
}
.filter-open {
  display: none; border: 0; background: var(--orange); color: white;
  border-radius: 12px; padding: 11px 16px; margin-top: 12px; cursor: pointer; font-family: inherit; font-weight: 700;
}

/* ===== DETAIL PAGE ===== */
.detail-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 50px;
}
.gallery > img {
  width: 100%; height: 400px; object-fit: cover; border-radius: 16px;
}
.thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumbs img {
  width: 76px; height: 68px; border-radius: 12px; object-fit: cover;
  cursor: pointer; border: 3px solid transparent; transition: border-color .2s;
}
.thumbs img.active { border-color: var(--orange); }
.detail-info h2 { font-size: 1.85rem; margin: 12px 0; font-weight: 800; letter-spacing: -.5px; }
.detail-info h3 { font-size: 1.85rem; color: var(--orange); font-weight: 900; }
.seller-card {
  display: grid; gap: 8px; background: var(--bg); border-radius: 16px;
  padding: 16px; margin: 18px 0; border: 1.5px solid var(--line);
}
.seller-card button, .seller-actions button {
  border: 0; border-radius: 12px; padding: 12px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all .2s;
}
.seller-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.seller-actions button { background: var(--orange); color: white; }
.seller-actions button:hover { background: var(--orange-dark); transform: translateY(-2px); }
.seller-actions .whatsapp { background: #25D366; }
.seller-actions .whatsapp:hover { background: #1EB35A; }
.warning {
  margin-top: 16px; background: var(--gold-light); border: 1.5px solid #FFE09A;
  padding: 14px 16px; border-radius: 14px; font-size: .88rem; line-height: 1.55; color: #6B4400;
}

/* ===== LOCATIONS ===== */
.location-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 18px;
}
.location-grid span {
  background: white; border-radius: 14px; padding: 15px;
  text-align: center; font-weight: 700; font-size: .88rem;
  border: 1.5px solid var(--line); cursor: pointer; transition: all .2s;
}
.location-grid span:hover {
  background: var(--orange); color: white; border-color: var(--orange); transform: translateY(-3px);
}

/* ===== INFO GRID ===== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.tips, .app-box {
  background: white; padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.app-box {
  background: linear-gradient(135deg, var(--black) 0%, #2A1200 100%);
  color: white; border: 2px solid var(--orange);
}
.app-box h2, .app-box p { color: white; }
.app-box p { opacity: .85; margin: 8px 0 18px; }

/* ===== POST AD FORM ===== */
.ad-form {
  background: white; border-radius: var(--radius-lg); padding: 26px;
  box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ad-form textarea, .upload-box, .preview-row, .ad-form button { grid-column: 1/-1; }
.ad-form textarea { min-height: 120px; resize: vertical; }
.upload-box {
  border: 2px dashed var(--line); border-radius: 18px; padding: 28px;
  text-align: center; cursor: pointer; background: var(--bg); transition: border-color .2s;
}
.upload-box:hover { border-color: var(--orange); }
.preview-row { display: flex; gap: 10px; flex-wrap: wrap; }
.preview-row img { width: 90px; height: 85px; object-fit: cover; border-radius: 14px; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 42px 0 18px; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -1.5px; line-height: 1.05; font-weight: 900; }
.page-hero p { color: var(--muted); max-width: 620px; margin-top: 10px; line-height: 1.7; }

/* ===== POST AD V4 ===== */
.post-hero-v4 {
  display: grid; grid-template-columns: 1.2fr .55fr; gap: 24px;
  align-items: stretch; margin-top: 32px; padding: 38px;
  border-radius: var(--radius-lg); color: white;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(232,80,10,.28) 0%, transparent 30%),
    linear-gradient(148deg, #0F0F0F 0%, #2A1200 58%, #1A0A00 100%);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.post-hero-v4::after {
  content: ""; position: absolute; right: -80px; bottom: -100px;
  width: 280px; height: 280px; background: rgba(255,255,255,.04); border-radius: 50%;
}
.post-hero-v4 h1 { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.06; letter-spacing: -1.8px; margin: 14px 0 12px; }
.post-hero-v4 p { color: rgba(255,255,255,.76); line-height: 1.7; }
.dark-eyebrow { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18) !important; color: #FFE2A0 !important; }
.post-hero-card {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px; padding: 26px; display: flex; flex-direction: column;
  justify-content: flex-end; min-height: 180px;
}
.post-hero-card strong { font-size: 2.4rem; color: white; line-height: 1; font-weight: 900; }
.post-hero-card span { color: #F7DF9C; font-weight: 700; margin-top: 8px; }

.post-ad-v4 { display: grid; grid-template-columns: 300px 1fr; gap: 22px; margin-top: 26px; align-items: start; }
.posting-guide { position: sticky; top: 90px; display: grid; gap: 12px; }
.guide-card {
  background: white; border: 1.5px solid var(--line); border-radius: 18px;
  padding: 15px; display: flex; gap: 13px; align-items: flex-start; box-shadow: var(--shadow-sm);
}
.guide-card b {
  width: 32px; height: 32px; border-radius: 50%; background: var(--orange-light);
  color: var(--orange); display: grid; place-items: center; flex: 0 0 auto; font-size: .85rem;
}
.guide-card.active { border-color: rgba(232,80,10,.3); box-shadow: var(--shadow); }
.guide-card.active b { background: var(--orange); color: white; }
.guide-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 3px; }
.guide-card p, .seller-note p { color: var(--muted); font-size: .87rem; line-height: 1.5; }
.seller-note {
  background: var(--gold-light); border: 1.5px solid #FFE1A0; border-radius: 18px;
  padding: 16px; display: flex; gap: 12px;
}
.seller-note span { font-size: 1.4rem; }

.upgraded-ad-form { padding: 28px; border: 1.5px solid var(--line); box-shadow: var(--shadow); gap: 18px; }
.form-section-title { grid-column: 1/-1; border-bottom: 1.5px solid var(--line); padding-bottom: 16px; margin-bottom: 2px; }
.form-section-title span { color: var(--orange); text-transform: uppercase; font-weight: 800; font-size: .76rem; letter-spacing: .1em; }
.form-section-title h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); letter-spacing: -.7px; margin-top: 5px; font-weight: 800; }
.field-block { display: grid; gap: 8px; font-weight: 700; font-size: .88rem; color: var(--text-2); }
.full-field { grid-column: 1/-1; }
.upgraded-ad-form input, .upgraded-ad-form select, .upgraded-ad-form textarea {
  transition: border-color .2s, box-shadow .2s; background: var(--bg); border-color: var(--line); border-radius: 12px; padding: 12px 14px;
}
.upgraded-ad-form input:focus, .upgraded-ad-form select:focus, .upgraded-ad-form textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 4px rgba(232,80,10,.1); background: white;
}
.condition-choice {
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 18px; padding: 16px; display: grid; gap: 10px;
}
.condition-choice span { font-weight: 700; font-size: .88rem; }
.condition-choice div { display: flex; flex-wrap: wrap; gap: 8px; }
.condition-choice button {
  border: 1.5px solid var(--line); background: white; color: var(--text-2);
  border-radius: 999px; padding: 8px 13px; font-weight: 700; cursor: pointer; font-size: .85rem; transition: all .2s;
}
.condition-choice button:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.upgraded-upload {
  display: grid; place-items: center; gap: 8px; min-height: 160px;
  background: linear-gradient(180deg, var(--bg), #F5EDE8); border: 2px dashed #DDD0CA;
  border-radius: 18px;
}
.upgraded-upload:hover { border-color: var(--orange); background: var(--orange-light); }
.upgraded-upload span { font-size: 2rem; }
.upgraded-upload strong { font-size: 1rem; color: var(--text); font-weight: 700; }
.upgraded-upload small { max-width: 420px; color: var(--muted); line-height: 1.5; font-size: .84rem; text-align: center; }
.publish-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: var(--bg); border: 1.5px solid var(--line); border-radius: 18px; padding: 16px;
}
.publish-row p { color: var(--muted); font-weight: 600; font-size: .88rem; }
.publish-row .primary-btn { min-width: 170px; }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0F0F0F, #050505);
  color: #BFC9C3; margin-top: 70px; overflow: hidden; position: relative;
}
.premium-footer::before {
  content: ""; position: absolute; right: -100px; bottom: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,80,10,.2), transparent 68%);
  pointer-events: none;
}
.footer .brand { color: white; }
.footer-top {
  position: relative; display: grid; grid-template-columns: 1.2fr .8fr;
  gap: 28px; padding: 50px 0 28px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-block p { max-width: 560px; color: #9BB0A4; line-height: 1.8; margin-top: 10px; }
.footer-brand { font-size: 1.65rem; }
.footer-trust-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.footer-trust-row span {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 8px 13px; color: #E0EDE7; font-weight: 700; font-size: .83rem;
}
.footer-newsletter {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px; padding: 22px;
}
.footer-newsletter h3 { color: white; font-size: 1.25rem; font-weight: 800; }
.footer-newsletter p { color: #9BB0A4; margin: 8px 0 14px; font-size: .9rem; }
.newsletter-form {
  display: grid; grid-template-columns: 1fr auto; gap: 8px;
  background: rgba(255,255,255,.1); border-radius: 14px; padding: 6px;
}
.newsletter-form input {
  border: 0; outline: 0; padding: 11px 13px; background: transparent;
  color: white; font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form button {
  border: 0; background: var(--orange); color: white; border-radius: 10px;
  padding: 0 16px; font-weight: 800; font-family: inherit; cursor: pointer; transition: background .2s;
}
.newsletter-form button:hover { background: var(--orange-mid); }
.enhanced-footer-grid {
  position: relative; display: grid;
  grid-template-columns: repeat(4, 1fr) 1.35fr;
  padding: 32px 0; gap: 24px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.enhanced-footer-grid h4 { color: white; margin-bottom: 14px; font-weight: 700; font-size: .92rem; }
.enhanced-footer-grid a {
  display: block; color: #9BB0A4; margin: 9px 0; transition: color .2s, transform .2s; font-size: .88rem;
}
.enhanced-footer-grid a:hover { color: white; transform: translateX(4px); }
.footer-app-card {
  background: linear-gradient(135deg, rgba(232,80,10,.35), rgba(245,166,35,.15));
  border: 1px solid rgba(232,80,10,.25); border-radius: 20px; padding: 20px;
}
.footer-app-card h4 { font-size: 1rem !important; }
.footer-app-card p { color: #C4D9CE; line-height: 1.6; font-size: .86rem; }
.app-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.app-buttons span {
  background: white; color: #0B1F15; border-radius: 12px; padding: 9px 13px;
  font-weight: 800; font-size: .82rem; cursor: pointer; transition: all .2s;
}
.app-buttons span:hover { background: var(--orange); color: white; }
.footer-bottom {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 0; color: #6B807A; font-size: .85rem;
}
.footer-bottom div { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-bottom span { cursor: pointer; transition: color .2s; }
.footer-bottom span:hover { color: white; }

/* ===== MODAL / AUTH ===== */
.modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: none; align-items: center; justify-content: center; z-index: 2000; padding: 20px;
  backdrop-filter: blur(4px);
}
.modal.show { display: flex; }
.modal-card {
  background: white; width: min(420px, 100%); border-radius: 26px;
  padding: 24px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.2);
}
.modal-close {
  position: absolute; right: 16px; top: 14px;
  border: 0; background: var(--bg); border-radius: 50%; width: 32px; height: 32px;
  cursor: pointer; font-size: 1rem; font-weight: 700; transition: background .2s;
}
.modal-close:hover { background: var(--line); }
.auth-tabs {
  display: grid; grid-template-columns: 1fr 1fr; background: var(--bg);
  border-radius: 14px; padding: 4px; margin-bottom: 20px;
}
.auth-tabs button {
  border: 0; padding: 11px; border-radius: 11px; background: transparent;
  font-weight: 700; cursor: pointer; font-family: inherit; font-size: .92rem; transition: all .2s;
}
.auth-tabs button.active { background: white; box-shadow: 0 4px 12px rgba(0,0,0,.07); color: var(--orange); }
.auth-form { display: none; gap: 12px; }
.auth-form.active { display: grid; }
.auth-form h2 { font-size: 1.55rem; font-weight: 800; letter-spacing: -.5px; margin-bottom: 4px; }

.full { width: 100%; }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,80,10,.16); color: #FF9560;
  padding: 7px 12px; border: 1px solid rgba(232,80,10,.28);
  border-radius: 999px; font-weight: 700; font-size: .82rem;
}

/* ===== PRODUCT STRIP ===== */
.product-strip .product-card { min-width: 230px; }

/* ===== EMPTY STATE ===== */
.empty-state {
  padding: 40px; background: white; border: 1.5px solid var(--line);
  border-radius: var(--radius); text-align: center; color: var(--muted);
}

/* ===== SEARCH SUGGEST ===== */
.search-suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 200;
  background: white; border-radius: 16px; box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--line); overflow: hidden;
}
.search-suggest-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; cursor: pointer; transition: background .15s; font-size: .9rem;
}
.search-suggest-item:hover { background: var(--orange-light); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== CART FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; border: 0;
  background: #25d366; color: white; font-size: 1.3rem;
  cursor: pointer; box-shadow: 0 6px 22px rgba(37,211,102,.38);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(37,211,102,.45); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .nav { flex-wrap: wrap; }
  .menu-toggle { display: block; }
  .nav-actions { display: flex; flex-shrink: 0; gap: 8px; margin-left: auto; }
  .nav-search { order: 3; width: 100%; grid-template-columns: 1fr; margin-top: 10px; }
  .nav-search select:first-child, .nav-search select:last-of-type { display: none; }
  .nav-links { order: 2; width: 100%; overflow-x: auto; gap: 4px; display: none; } /* Hide classic links, use drawer */
  .hero, .detail-section, .listing-layout { grid-template-columns: 1fr; }
  .hero-card { min-height: 220px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-open { display: inline-block; }
  .filter-sidebar {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 88%);
    z-index: 1500; transform: translateX(110%); transition: transform .3s;
    border-radius: 22px 0 0 22px; overflow: auto;
  }
  .filter-sidebar.show { transform: translateX(0); }
  .filter-title button { display: block; }
  .stats-grid, .location-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-slide { grid-template-columns: 1fr; }
  .slide-copy { padding: 38px 34px 8px; }
  .slide-media { padding: 0 34px 54px; }
  .slide-media img { height: 240px; }
  .hero-slider { min-height: 650px; }
  .price-bubble { left: 50px; top: auto; bottom: 90px; }
  .slider-dots { left: 34px; bottom: 26px; }
  .footer-top, .enhanced-footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-app-card { grid-column: 1/-1; }
  .post-hero-v4, .post-ad-v4 { grid-template-columns: 1fr; }
  .posting-guide { position: static; grid-template-columns: repeat(3, 1fr); }
  .seller-note { grid-column: 1/-1; }
  .info-grid { grid-template-columns: 1fr; }
  .flash-sale-banner { grid-template-columns: 1fr; padding: 24px; }
  .flash-countdown { justify-content: flex-start; }
  .flash-sale-banner::before { display: none; }
  .blackfriday-banner { grid-template-columns: 1fr; padding: 28px; }
  .bf-deals-preview { grid-template-columns: repeat(3, 1fr); }
  .blackfriday-banner::before { display: none; }
  .anniversary-banner { grid-template-columns: 1fr; padding: 28px; }
  .anni-cta-wrap { display: none; }
}

@media (max-width: 650px) {
  .nav-actions { gap: 4px; border: 0; }
  .nav-actions a.ghost-btn, .nav-actions a.post-btn { padding: 8px; font-size: .75rem; border-width: 1px; }
  .brand img.logo-img { height: 48px; }
  .menu-toggle { padding: 6px 10px; font-size: 1rem; }

  .hero-slider { min-height: 620px; }
  .deal-slide { position: absolute; min-height: 620px; padding: 28px 22px 70px; }
  .slide-copy h1 { font-size: 2rem; letter-spacing: -1.2px; }
  .slide-media img { height: 200px; border-radius: 20px; border-width: 5px; }
  .price-bubble { left: 32px; bottom: 86px; }
  .slider-dots { left: 22px; bottom: 22px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  /* Advert slider mobile */
  .advert-slider { height: 300px; border-radius: 18px; }
  .advert-content { padding: 22px 20px; }
  .advert-content h2 { font-size: 1.65rem; letter-spacing: -1px; }
  .advert-content p { font-size: .88rem; }
  .advert-badge { bottom: 14px; right: 14px; padding: 10px 16px; min-width: 80px; }
  .advert-badge strong { font-size: 1.1rem; }
  .advert-prev, .advert-next { opacity: 1; width: 38px; height: 38px; font-size: 1.3rem; }
  .advert-prev { left: 10px; }
  .advert-next { right: 10px; }
  .product-card { border-radius: 15px; }
  .product-card img { height: 130px !important; }
  .product-body { padding: 10px; }
  .product-body h3 { font-size: .83rem; }
  .price { font-size: .92rem; }
  .meta { font-size: .76rem; }
  .footer-top, .enhanced-footer-grid, .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form button { padding: 12px; }
  .footer-bottom { justify-content: start; }
  .upgraded-ad-form { grid-template-columns: 1fr !important; padding: 20px; border-radius: 20px; }
  .publish-row { display: grid; }
  .publish-row .primary-btn { width: 100%; }
  .post-hero-v4 { padding: 24px; border-radius: 22px; margin-top: 20px; }
  .posting-guide { grid-template-columns: 1fr; }
  .gallery > img { height: 270px; }
  .seller-actions { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .location-grid { grid-template-columns: repeat(3, 1fr); }
  .section-heading h2 { font-size: 1.35rem; }
  .flash-sale-banner { padding: 20px 18px; }
  .flash-countdown { flex-wrap: wrap; gap: 6px; }
  .countdown-unit { min-width: 52px; padding: 8px 10px; }
  .countdown-unit .num { font-size: 1.4rem; }
  .bf-deals-preview { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .bf-deal-chip .disc { font-size: 1.2rem; }
  .event-sales-strip { display: none; }
}

/* ===== FLASH SALE SECTION (Jumia-style) ===== */
.flash-section { padding-bottom: 8px; }

.flash-header-bar {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(135deg, #cc0000 0%, #E8500A 100%);
  border-radius: 16px 16px 0 0;
  padding: 14px 22px;
  flex-wrap: wrap;
}
.flash-title-group {
  display: flex; align-items: center; gap: 14px; flex: 1;
}
.flash-bolt { font-size: 1.8rem; }
.flash-label {
  display: block; color: white; font-weight: 900; font-size: 1.15rem;
  letter-spacing: .5px; line-height: 1.1;
}
.flash-sub {
  display: block; color: rgba(255,255,255,.82); font-size: .82rem; font-weight: 600;
}
.flash-countdown {
  display: flex; align-items: center; gap: 6px;
}
.flash-ends-in {
  color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-right: 4px;
}
.flash-countdown .countdown-unit {
  background: rgba(0,0,0,.35); border-radius: 8px;
  padding: 6px 10px; min-width: 44px; text-align: center;
}
.flash-countdown .countdown-unit .num {
  display: block; color: white; font-weight: 900; font-size: 1.2rem; line-height: 1;
}
.flash-countdown .countdown-unit .lbl {
  display: block; color: rgba(255,255,255,.7); font-size: .65rem; font-weight: 700;
  text-transform: uppercase; margin-top: 2px;
}
.flash-countdown .countdown-sep { color: white; font-weight: 900; font-size: 1.2rem; margin: 0 2px; }
.flash-see-all {
  background: white; color: #cc0000; border: 0; border-radius: 999px;
  padding: 8px 18px; font-weight: 800; font-size: .85rem; cursor: pointer;
  font-family: inherit; white-space: nowrap;
  transition: background .2s, transform .15s;
}
.flash-see-all:hover { background: #fff5f5; transform: translateY(-1px); }

.flash-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: white;
  border: 1.5px solid #f0f0f0;
  border-top: 0;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}

.flash-card {
  background: white;
  padding: 14px 12px 16px;
  cursor: pointer;
  border-right: 1px solid #f0f0f0;
  transition: background .2s, transform .2s;
  position: relative;
}
.flash-card:last-child { border-right: 0; }
.flash-card:hover { background: #fff8f5; transform: translateY(-2px); }

.flash-discount-badge {
  position: absolute; top: 10px; left: 10px;
  background: #cc0000; color: white;
  font-size: .72rem; font-weight: 900;
  padding: 3px 8px; border-radius: 6px;
  letter-spacing: .3px; z-index: 1;
}

.flash-card-img {
  width: 100%; aspect-ratio: 1/1;
  object-fit: cover; border-radius: 10px;
  margin-bottom: 10px; display: block;
}

.flash-card-title {
  font-size: .82rem; font-weight: 600; color: var(--text);
  line-height: 1.35; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.flash-price-row { margin-bottom: 4px; }
.flash-price-now {
  font-size: 1rem; font-weight: 900; color: #cc0000; display: block;
}
.flash-price-was {
  font-size: .78rem; color: var(--muted); text-decoration: line-through;
  display: block; margin-top: 1px;
}

.flash-stock-bar-wrap {
  margin-top: 8px;
}
.flash-stock-label {
  font-size: .73rem; font-weight: 700; color: #cc0000;
  margin-bottom: 4px; display: block;
}
.flash-stock-bar {
  height: 5px; background: #f0f0f0; border-radius: 999px; overflow: hidden;
}
.flash-stock-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, #E8500A, #cc0000);
  transition: width .6s ease;
}

/* Responsive flash grid */
@media (max-width: 1024px) {
  .flash-products-grid { grid-template-columns: repeat(4, 1fr); }
  .flash-card:nth-child(5) { display: none; }
}
@media (max-width: 768px) {
  .flash-products-grid { grid-template-columns: repeat(2, 1fr); }
  .flash-card:nth-child(n+5) { display: none; }
  .flash-header-bar { padding: 12px 16px; border-radius: 12px 12px 0 0; }
  .flash-label { font-size: 1rem; }
  .flash-countdown .countdown-unit .num { font-size: 1rem; }
  .flash-ends-in { display: none; }
}

/* ===== MOBILE DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 2000;
  opacity: 0; pointer-events: none; transition: opacity .35s ease;
  backdrop-filter: blur(4px);
}
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 85%);
  background: white; z-index: 2001; transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.15); display: flex; flex-direction: column;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-overlay.show { opacity: 1; pointer-events: auto; }

.drawer-header { padding: 20px 24px; border-bottom: 1.5px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer-title { font-weight: 800; font-size: 1.25rem; color: var(--text); }
.drawer-close { border: 0; background: var(--bg); width: 36px; height: 36px; border-radius: 50%; font-size: 1.3rem; font-weight: 800; cursor: pointer; color: var(--text-2); transition: all .2s; }
.drawer-close:hover { background: var(--line); color: var(--text); }

.drawer-content { overflow-y: auto; flex: 1; padding: 24px; display: flex; flex-direction: column; gap: 24px; }
.drawer-section h4 { font-size: .78rem; color: var(--orange); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; margin-bottom: 12px; }
.drawer-section a { display: flex; align-items: center; gap: 12px; padding: 12px 0; color: var(--text-2); font-weight: 700; font-size: 1.05rem; transition: color .2s; }
.drawer-section a:hover { color: var(--orange); }
.drawer-section a span { font-size: 1.25rem; display: flex; justify-content: center; width: 24px; }
.drawer-section hr { border: 0; height: 1.5px; background: var(--line); margin: 6px 0; }
