*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  /* ── Palette — sourced directly from Naari logo ── */
  --bg: #FFFFFF;
  /* pure white base */
  --bg-alt: #FDF5F5;
  /* very faint red-tinted section bg */
  --surface: #FFFFFF;
  /* cards / drawers */
  --surface-2: #FAF0F0;
  /* subtle inset surface */

  /* Text — charcoal ink from logo icon */
  --text-head: #1C1C1E;
  /* deep charcoal – headings */
  --text-body: #4A4A52;
  /* medium ink – body copy */
  --text-muted: #8A8A96;
  /* muted for captions / labels */

  /* Accent — bold Naari red from logo letterform */
  --accent: #D91C1C;
  /* logo red – primary accent */
  --accent-lt: #FDEAEA;
  /* very light red tint for hover/bg */
  --accent-dk: #B51515;
  /* deeper red for hover/active */

  /* Utility */
  --border: rgba(28, 28, 30, 0.10);
  --shadow-sm: 0 2px 8px rgba(217, 28, 28, 0.06);
  --shadow-md: 0 6px 24px rgba(217, 28, 28, 0.10);
  --shadow-lg: 0 12px 40px rgba(217, 28, 28, 0.13);

  --radius: 16px;
  --radius-sm: 10px;
  --font-head: 'Outfit', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  --font-body: 'Inter', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-head)
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-body)
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

/* ═══════════════════════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════════════════════ */
.fixed-top-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.fixed-top-wrap,
.site-header,
.navbar {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.site-header {
  position: relative;
  z-index: 1000;
}

/* ── Main nav bar ── */

.navbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

/* ── Inner row ── */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  /* refined tighter height */
  gap: 12px;
  flex-wrap: nowrap;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-logo:hover {
  opacity: 0.85;
  transform: scale(1.02)
}

.nav-logo-img {
  height: 64px;
  /* slightly smaller logo for better fit */
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  /* allow shrinking if needed */
}

.nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-body);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(217, 28, 28, 0.06)
}

.nav-link:hover::after {
  transform: scaleX(1)
}

.nav-link.active {
  color: var(--accent)
}

.nav-link.active::after {
  transform: scaleX(1)
}

/* ── Actions cluster ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* ── Icon buttons (search / cart) ── */
.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.nav-icon-btn:hover {
  color: var(--accent);
  background: var(--accent-lt);
  border-color: rgba(217, 28, 28, 0.25);
  transform: translateY(-1px);
}

.nav-icon-btn.active {
  color: var(--accent);
  background: var(--accent-lt);
  border-color: rgba(217, 28, 28, 0.3);
}

.nav-icon {
  width: 19px;
  height: 19px;
  display: block;
  transition: transform var(--transition);
}

.nav-icon-btn:hover .nav-icon {
  transform: scale(1.08)
}


/* ── Badge on icons ── */
.nav-icon-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
  animation: pulse-badge 2.2s ease-in-out infinite;
  transition: transform 0.2s;
}

.hidden-badge {
  display: none !important
}

/* ── Login button ── */
.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  border-radius: 40px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border: 1.5px solid var(--accent);
  box-shadow: 0 2px 10px rgba(217, 28, 28, 0.22);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
  margin-left: 6px;
  flex-shrink: 0;
}

.nav-login-btn:hover {
  background: var(--accent-dk);
  border-color: var(--accent-dk);
  box-shadow: 0 4px 16px rgba(217, 28, 28, 0.32);
  transform: translateY(-1px);
}

.nav-login-btn svg {
  flex-shrink: 0
}

/* ── Animated hamburger ── */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  padding: 0;
  align-items: center;
  transition: background var(--transition), border-color var(--transition);
}

.mobile-toggle:hover {
  background: var(--accent-lt);
  border-color: rgba(217, 28, 28, 0.25)
}

.ham-line {
  width: 20px;
  height: 1.8px;
  background: var(--text-head);
  border-radius: 2px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s, width 0.3s;
  transform-origin: center;
}

/* Open state morphs into × */
.mobile-toggle.open .ham-line:nth-child(1) {
  transform: translateY(6.8px) rotate(45deg)
}

.mobile-toggle.open .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0)
}

.mobile-toggle.open .ham-line:nth-child(3) {
  transform: translateY(-6.8px) rotate(-45deg)
}

/* ── Unified Header Search (Expanded Dropdown) ── */
.nav-search-toggle {
  display: flex !important;
}

/* Expanded Search Bar Container */
.expanded-search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  z-index: 999;
}

.expanded-search-bar.active {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Search Inner Container */
.expanded-search-inner {
  display: flex;
  align-items: center;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 5px 8px 5px 16px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.02);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.expanded-search-inner:focus-within {
  border-color: var(--accent);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.02), 0 0 0 4px rgba(217, 28, 28, 0.1);
}

.expanded-search-icon,
.header-search-icon {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 10px;
}

.expanded-search-inner input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-head);
  outline: none;
  width: 100%;
  padding: 6px 0;
}

.expanded-search-inner input::placeholder {
  color: var(--text-muted);
}

.header-search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-left: 10px;
}

.header-search-btn:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

.search-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 5px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.search-close-btn:hover {
  background: var(--bg-alt);
  color: var(--text-head);
}

/* Responsiveness */
@media (max-width: 768px) {
  .nav-links { display: none; }
  #loginText { display: none; }
  .nav-login-btn { padding: 10px; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
  .nav-login-btn svg { margin: 0 !important; width: 18px; height: 18px; }
  .mobile-toggle { display: flex; }
  
  .expanded-search-inner {
    max-width: 90%;
    padding: 4px 6px 4px 12px;
    border-radius: 10px;
  }
  .expanded-search-inner input { font-size: 13px; padding: 5px 0; }
  .header-search-btn { padding: 5px 12px; font-size: 12px; border-radius: 6px; }
}

@media (max-width: 480px) {
  .nav-inner { gap: 4px !important; }
  .nav-logo-img { height: 42px !important; }
  .nav-icon-btn { width: 34px; height: 34px; }
  
  .expanded-search-inner { padding: 4px 5px 4px 10px; border-radius: 8px; }
  .expanded-search-icon, .header-search-icon { width: 16px; height: 16px; margin-right: 8px; }
  .expanded-search-inner input { font-size: 12px; padding: 4px 0; }
  .header-search-btn { padding: 4px 10px; font-size: 11px; margin-left: 6px; }
  .search-close-btn { width: 28px; height: 28px; font-size: 16px; }
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 53, 48, 0.25);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition)
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all
}

/* ═══ ORDER CONFIRMATION OVERLAY (Moved to global to prevent flow gaps) ═══ */
.order-confirm-overlay {
  position: fixed; inset: 0;
  background: rgba(28,28,30,.72); backdrop-filter: blur(10px);
  z-index: 5000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .4s;
}
.order-confirm-overlay.open { opacity: 1; pointer-events: all; }
.order-confirm-box {
  background: var(--surface); border-radius: 28px; padding: 40px 36px;
  max-width: 460px; width: 90%; text-align: center;
  transform: scale(.88) translateY(28px);
  transition: transform .5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
}
.order-confirm-overlay.open .order-confirm-box { transform: scale(1) translateY(0); }
.order-confirm-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex; align-items: center; justify-content: center; font-size: 38px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 36px rgba(34,197,94,.35);
}
.order-confirm-title { font-size: 24px; font-weight: 900; color: var(--text-head); margin-bottom: 10px; }
.order-confirm-sub { font-size: 13.5px; color: var(--text-body); line-height: 1.75; margin-bottom: 22px; }
.order-confirm-btns { display: flex; gap: 10px; }
.ocb-primary {
  flex: 1; padding: 12px; border-radius: 40px; background: var(--accent); color: #fff;
  font-size: 13.5px; font-weight: 700; border: none; cursor: pointer; transition: background .2s, transform .2s;
}
.ocb-secondary {
  flex: 1; padding: 12px; border-radius: 40px; background: var(--bg-alt);
  color: var(--text-body); font-size: 13.5px; font-weight: 600;
  border: 1.5px solid var(--border); cursor: pointer; transition: border-color .2s, color .2s;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 90vw;
  height: 100vh;
  background: var(--surface);
  z-index: 2001;
  transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg)
}

.cart-drawer.open {
  right: 0
}

.cart-header {
  padding: 17px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border)
}

.cart-header h3 {
  font-size: 19px;
  color: var(--text-head)
}

.cart-close {
  background: none;
  color: var(--text-muted);
  font-size: 22px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: var(--transition)
}

.cart-close:hover {
  background: var(--accent-lt);
  color: var(--accent)
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 14px 24px
}

.features-strip {
  background: var(--bg-alt);
  padding: 32px 0;
  /* Home page standard tight spacing */
  border-bottom: 1px solid var(--border);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border)
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: var(--bg-alt)
}

.cart-item-info {
  flex: 1
}

.cart-item-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--text-head)
}

.cart-item-info p {
  font-size: 13px;
  color: var(--text-muted)
}

.cart-item-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 15px
}

.cart-item-remove {
  background: none;
  color: var(--text-muted);
  font-size: 17px;
  transition: var(--transition)
}

.cart-item-remove:hover {
  color: var(--accent)
}

.cart-footer {
  padding: 17px 18px;
  border-top: 1px solid var(--border)
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-head)
}

.cart-checkout {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.5px
}

.cart-checkout:hover {
  background: var(--accent-dk);
  box-shadow: var(--shadow-md)
}

.cart-empty {
  text-align: center;
  padding: 23px 15px;
  color: var(--text-muted)
}

.cart-empty span {
  font-size: 46px;
  display: block;
  margin-bottom: 14px
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px 0 15px;
  background: var(--bg)
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_bg.png') center/cover no-repeat;
  opacity: 0.25;
  mix-blend-mode: multiply
}

/* Very subtle soft blobs — low opacity, warm tones */
.morph-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  animation: morph 10s ease-in-out infinite alternate
}

.morph-1 {
  width: 420px;
  height: 420px;
  background: #D91C1C;
  top: -80px;
  right: -100px;
  animation-delay: 0s
}

.morph-2 {
  width: 320px;
  height: 320px;
  background: #FAB0B0;
  bottom: -60px;
  left: -60px;
  animation-delay: 3s
}

.morph-3 {
  width: 260px;
  height: 260px;
  background: #C01414;
  top: 50%;
  right: 28%;
  animation-delay: 6s
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35
}

/* 2-col inner */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 15px;
  align-items: center;
  width: 100%
}

.hero-content {
  max-width: 620px
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-lt);
  border: 1px solid rgba(217, 28, 28, 0.22);
  padding: 7px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 17px;
  color: var(--accent)
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  background: #7DBFA0;
  border-radius: 50%;
  animation: pulse-dot 2s infinite
}

.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  margin-bottom: 18px;
  line-height: 1.08;
  color: var(--text-head)
}

.hero h1 .highlight {
  color: var(--accent);
  white-space: nowrap;
}

/* typewriter cursor sits ON the highlight span only */
.hero h1 .highlight:not(:empty) {
  /* Cursor disabled as requested */
  border-right: none;
  animation: none;
}

.hero h1 .typewriter {
  border-right: none;
  animation: none
}

.hero p {
  font-size: 17px;
  color: var(--text-body);
  max-width: 500px;
  margin-bottom: 17px;
  line-height: 1.75
}

/* Hero entrance */
.hero-content {
  animation: heroFadeUp 0.85s cubic-bezier(0.4, 0, 0.2, 1) both
}

.hero-visual {
  animation: heroFadeUp 0.95s 0.15s cubic-bezier(0.4, 0, 0.2, 1) both;
  margin-left: -50px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(32px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  position: relative;
  overflow: hidden;
  padding: 13px 23px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.3px
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 3px 14px rgba(217, 28, 28, 0.25)
}

.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(217, 28, 28, 0.32)
}

.btn-outline {
  background: transparent;
  color: var(--text-head);
  border: 1.5px solid var(--border)
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px)
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-anim 0.6s linear
}

.hero-stats {
  display: flex;
  gap: 19px;
  margin-top: 24px
}

.hero-stat {
  text-align: center
}

.hero-stat .num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--accent)
}

.hero-stat .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px
}

.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-visual-center {
  font-size: 80px;
  animation: float-center 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(217, 28, 28, 0.2))
}

.hero-visual-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  color: var(--text-head);
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
  z-index: 3
}

.hero-visual-card span {
  font-size: 32px;
  line-height: 1
}

.hvc-img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border: 2px solid #fff
}

.hero-visual-card:hover {
  transform: scale(1.07);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 28, 28, 0.22);
  z-index: 10
}

.hvc-1 {
  top: 10px;
  left: 8%;
  animation: hvc-float 5s ease-in-out infinite
}

.hvc-2 {
  top: 10px;
  right: 8%;
  animation: hvc-float 5s ease-in-out infinite 0.8s
}

.hvc-3 {
  bottom: 10px;
  left: 4%;
  animation: hvc-float 5s ease-in-out infinite 1.6s
}

.hvc-4 {
  bottom: 10px;
  right: 4%;
  animation: hvc-float 5s ease-in-out infinite 2.4s
}

.hvc-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-110px);
  animation: hvc-float 5s ease-in-out infinite 3.2s
}

/* ===== SECTIONS ===== */
section {
  padding: 16px 0;
  scroll-margin-top: 115px
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
}

.section-header .tag {
  display: inline-block;
  background: var(--accent-lt);
  color: var(--accent);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px
}

.section-header h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  margin-bottom: 12px;
  color: var(--text-head)
}

.section-header p {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 15px
}

/* ===== CATEGORIES ===== */
.categories {
  background: var(--bg-alt)
}

.cat-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center
}

.cat-btn {
  padding: 9px 17px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-body);
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm)
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(217, 28, 28, 0.22)
}

/* ═══════════════════════════════════════════════
   OUR FOOD — FEATURED SPOTLIGHT
═══════════════════════════════════════════════ */
.our-food-section {
  background: var(--bg)
}

.food-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px 40px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 8px;
  transition: box-shadow 0.3s;
}

.food-spotlight:hover {
  box-shadow: var(--shadow-lg)
}

/* Spotlight progress dots */
.spotlight-dots {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.sdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-lt);
  border: 1.5px solid rgba(217, 28, 28, 0.25);
  transition: all 0.35s;
  cursor: pointer;
}

.sdot.active {
  width: 22px;
  border-radius: 6px;
  background: var(--accent);
  border-color: var(--accent);
}

/* animated background orbs */
.spotlight-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.sorb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.18
}

.sorb-1 {
  width: 280px;
  height: 280px;
  background: var(--accent);
  top: -80px;
  right: -60px;
  animation: sorb-float 7s ease-in-out infinite
}

.sorb-2 {
  width: 200px;
  height: 200px;
  background: #FAB0B0;
  bottom: -60px;
  left: 10%;
  animation: sorb-float 9s ease-in-out infinite 2s
}

.sorb-3 {
  width: 150px;
  height: 150px;
  background: #C01414;
  top: 40%;
  right: 30%;
  animation: sorb-float 6s ease-in-out infinite 4s
}

@keyframes sorb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(20px, -20px) scale(1.08)
  }
}

.spotlight-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}

.spotlight-emoji {
  font-size: 110px;
  line-height: 1;
  text-align: center;
  animation: spotlight-bounce 3.5s ease-in-out infinite;
  filter: drop-shadow(0 12px 32px rgba(217, 28, 28, 0.18));
}

.spotlight-pic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--surface);
  animation: spotlight-bounce 3.5s ease-in-out infinite;
}

@keyframes spotlight-bounce {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg)
  }

  50% {
    transform: translateY(-14px) rotate(3deg)
  }
}

.spotlight-info {
  position: relative;
  z-index: 1
}

.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.spotlight-info h3 {
  font-size: clamp(22px, 3vw, 34px);
  color: var(--text-head);
  margin-bottom: 8px;
  line-height: 1.2
}

.spotlight-info p {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 51px;
}

.spotlight-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 17px;
  flex-wrap: wrap
}

.spotlight-price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent)
}

.spotlight-vendor {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500
}

.spotlight-rating {
  font-size: 13px;
  font-weight: 600;
  color: #C8A024;
  background: #FFF8E1;
  padding: 4px 10px;
  border-radius: 20px
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px
}

/* ═══════════════════════════════════════════════
   VENDORS SECTION
═══════════════════════════════════════════════ */
.vendors-section {
  background: var(--bg-alt);
  padding: 30px 0 40px;
  overflow: hidden;
}

/* ── Static centered 4-card grid (home page) ── */
.vendors-grid-home {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 0 auto 32px;
  max-width: 1200px;
}

/* Vendor card — distinct from product card (no flip, 3D tilt) */
.vendor-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 21px 18px 17px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s, border-color 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.vendor-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(217, 28, 28, 0.05), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.vendor-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 28, 28, 0.28)
}

.vendor-card:hover::before {
  opacity: 1
}

.vendor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 14px;
  border: 3px solid var(--surface);
  box-shadow: 0 4px 16px rgba(217, 28, 28, 0.15);
  position: relative;
  overflow: hidden;
}

.vendor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.vendor-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 3px
}

.vendor-specialty {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-weight: 500
}

.vendor-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px
}

.vendor-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center
}

.vendor-stat-item .vs-val {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent)
}

.vendor-stat-item .vs-lbl {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1px
}

.vendor-city {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center
}

/* Centered single Explore All Vendors CTA */
.vendors-home-cta {
  text-align: center;
  margin-top: 36px;
  padding-bottom: 8px;
}

/* Responsive — below 1024px go 2 columns, below 600px go 1 column */
@media (max-width: 1024px) {
  .vendors-grid-home {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .vendors-grid-home {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

/* ═══════════════════════════════════════════════
   HOW IT WORKS — COMPACT HORIZONTAL FLOW
═══════════════════════════════════════════════ */
.hiw-section {
  background: var(--bg-alt);
  padding: 30px 0 24px;
  overflow: hidden;
}

/* ── 4-column grid with connectors between ── */
.hiw-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 8px;
}

/* ── Step card ── */
.hiw-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 21px 17px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  /* Entry animation */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s ease-out,
    transform 0.4s ease-out,
    box-shadow 0.3s,
    border-color 0.3s;
}

.hiw-card.hiw-visible {
  opacity: 1;
  transform: translateY(0)
}

/* Subtle red glow accent top-left on hover */
.hiw-card::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  filter: blur(36px);
  transition: opacity 0.4s;
  pointer-events: none;
}

.hiw-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 28, 28, 0.28);
  transform: translateY(-5px);
}

.hiw-card:hover::before {
  opacity: 0.12
}

/* Step number + icon row */
.hiw-card-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.hiw-card-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid rgba(217, 28, 28, 0.18);
}

/* Icon bubble */
.hiw-card-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(217, 28, 28, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 4px 18px rgba(217, 28, 28, 0.10);
  animation: hiw-icon-pulse 3.5s ease-in-out infinite;
}

.hiw-card[data-step="2"] .hiw-card-icon-wrap {
  animation-delay: 0.8s
}

.hiw-card[data-step="3"] .hiw-card-icon-wrap {
  animation-delay: 1.6s
}

.hiw-card[data-step="4"] .hiw-card-icon-wrap {
  animation-delay: 2.4s
}

@keyframes hiw-icon-pulse {

  0%,
  100% {
    box-shadow: 0 4px 18px rgba(217, 28, 28, 0.10), 0 0 0 0 rgba(217, 28, 28, 0.07)
  }

  50% {
    box-shadow: 0 4px 18px rgba(217, 28, 28, 0.10), 0 0 0 10px rgba(217, 28, 28, 0.00)
  }
}

.hiw-card-icon {
  font-size: 32px;
  line-height: 1;
  animation: hiw-icon-float 4s ease-in-out infinite;
}

.hiw-card[data-step="2"] .hiw-card-icon {
  animation-delay: 0.9s
}

.hiw-card[data-step="3"] .hiw-card-icon {
  animation-delay: 1.8s
}

.hiw-card[data-step="4"] .hiw-card-icon {
  animation-delay: 2.7s
}

@keyframes hiw-icon-float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

/* Text */
.hiw-card-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 7px;
  line-height: 1.25;
}

.hiw-card-desc {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px;
}

.hiw-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
}

.hiw-card-list li {
  font-size: 12.5px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 12px;
  text-align: left;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.hiw-card:hover .hiw-card-list li {
  background: var(--accent-lt);
  border-color: rgba(217, 28, 28, 0.18);
  color: var(--accent);
}

/* ── Connectors between cards ── */
.hiw-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  /* align connector to icon row level */
  margin-top: 36px;
  min-width: 40px;
  align-self: start;
}

.hiw-connector-line {
  width: 28px;
  height: 2px;
  background: repeating-linear-gradient(to right,
      var(--accent) 0, var(--accent) 5px,
      transparent 5px, transparent 10px);
  opacity: 0.45;
  margin-bottom: 4px;
}

.hiw-connector-arrow {
  font-size: 20px;
  color: var(--accent);
  opacity: 0.55;
  line-height: 1;
  animation: conn-pulse 2s ease-in-out infinite;
}

@keyframes conn-pulse {

  0%,
  100% {
    opacity: 0.55;
    transform: translateX(0)
  }

  50% {
    opacity: 1;
    transform: translateX(3px)
  }
}

/* ── CTA strip ── */
.hiw-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hiw-cta-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media(max-width:900px) {
  .hiw-flow {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hiw-connector {
    display: none
  }
}

@media(max-width:560px) {
  .hiw-flow {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .hiw-card {
    padding: 17px 18px
  }
}



/* ===== PRODUCTS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px
}

.product-card {
  perspective: 500px;
  height: 320px;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s, transform 0.55s
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0)
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.58s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d
}

.product-card:hover .card-inner {
  transform: rotateY(180deg)
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm)
}

.card-front {
  background: var(--surface);
  display: flex;
  flex-direction: column
}

/* Card image area */
.card-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--bg-alt), var(--surface-2))
}

.card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease
}

.product-card:hover .card-photo {
  transform: scale(1.05)
}

.card-emoji {
  position: relative;
  z-index: 1;
  font-size: 75px;
  line-height: 1;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.10));
  transition: transform 0.3s ease
}

.product-card:hover .card-emoji {
  transform: scale(1.08) translateY(-4px)
}

.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(240, 237, 232, 0.6))
}

/* Live badge */
.vendor-live {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(125, 191, 160, 0.15);
  border: 1px solid rgba(125, 191, 160, 0.35);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #5A9E80;
  z-index: 2
}

.vendor-live .live-dot {
  width: 6px;
  height: 6px;
  background: #7DBFA0;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite
}

/* Wishlist heart on card front */
.card-wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition), transform var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.card-wishlist-btn:hover {
  color: var(--accent);
  background: #fff;
  border-color: var(--accent);
  transform: scale(1.12)
}

.card-wishlist-btn.wished {
  color: var(--accent);
  background: var(--accent-lt);
  border-color: var(--accent)
}

.card-wishlist-btn svg {
  pointer-events: none
}

/* Card info */
.card-info {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.card-info h3 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-head)
}

.card-info .vendor {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: auto
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px
}

.card-price {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--accent)
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #C8A024
}

/* Card back */
.card-back {
  background: var(--surface-2);
  transform: rotateY(180deg);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.card-back-emoji {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 2px
}

.card-back h3 {
  font-size: 18px;
  color: var(--text-head);
  margin: 0
}

.card-back p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1
}

/* Card back dual-action row */
.card-back-actions {
  display: flex;
  gap: 10px;
  align-items: center
}

.card-back .add-to-cart {
  flex: 1;
  padding: 11px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
  text-align: center;
  border: none;
  cursor: pointer;
}

.card-back .add-to-cart:hover {
  background: var(--accent-dk);
  transform: scale(1.02);
  box-shadow: var(--shadow-md)
}

.card-back-wish {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}

.card-back-wish:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-lt)
}

.card-back-wish.wished {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-lt)
}

/* ===== SHIMMER SKELETON ===== */
.shimmer-card {
  height: 320px;
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  border: 1px solid var(--border)
}

.shimmer-card .shimmer-img {
  height: 170px;
  background: var(--surface-2)
}

.shimmer-card .shimmer-line {
  height: 13px;
  margin: 12px 16px 0;
  border-radius: 7px;
  background: var(--surface-2)
}

.shimmer-card .shimmer-line.short {
  width: 58%
}

.shimmer-card .shimmer-img,
.shimmer-card .shimmer-line {
  position: relative;
  overflow: hidden
}

.shimmer-card .shimmer-img::after,
.shimmer-card .shimmer-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  animation: shimmer 1.5s infinite
}

/* ===== IMPACT ===== */
.impact {
  background: var(--bg-alt)
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px
}

.impact-card {
  text-align: center;
  padding: 18px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow-sm)
}

.impact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 28, 28, 0.22)
}

.impact-card .icon {
  font-size: 36px;
  margin-bottom: 12px
}

.impact-card .number {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
  transition: color 0.2s
}

.impact-card .desc {
  font-size: 13px;
  color: var(--text-muted)
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--bg)
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px
}

.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm)
}

.test-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 28, 28, 0.2)
}

.test-card .quote {
  font-size: 36px;
  color: var(--accent);
  opacity: 0.18;
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: Georgia, serif
}

.test-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
  font-style: italic
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px
}

.test-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: linear-gradient(135deg, rgba(217, 28, 28, 0.12), rgba(217, 28, 28, 0.05));
  border: 2px solid rgba(217, 28, 28, 0.2);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.test-author-info h4 {
  font-size: 14px;
  color: var(--text-head)
}

.test-author-info span {
  font-size: 11px;
  color: var(--text-muted)
}

/* ===== VENDOR FORM ===== */
.vendor-section {
  background: var(--bg-alt)
}

.vendor-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  padding: 16px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden
}

.vendor-join-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none
}

.vendor-info {
  max-width: 440px;
  position: relative;
  z-index: 1
}

.vendor-info h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin-bottom: 12px;
  color: var(--text-head)
}

.vendor-info h2 .highlight {
  color: var(--accent)
}

.vendor-info p {
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 15px
}

.vendor-perks {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.vendor-perks .perk {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  color: var(--text-body)
}

.vendor-perks .perk span {
  font-size: 18px
}

.vendor-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-md)
}

.vendor-form h3 {
  font-size: 20px;
  margin-bottom: 17px;
  text-align: center;
  color: var(--text-head)
}

.form-group {
  margin-bottom: 16px
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-head);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted)
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 28, 28, 0.10)
}

.form-group select {
  color: var(--text-head)
}

.form-group textarea {
  resize: vertical;
  min-height: 96px
}

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.5px;
  margin-top: 8px
}

.form-submit:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md)
}

/* ═══════════════════════════════════════════════
   VENDOR JOIN — FULL EXPERIENCE
═══════════════════════════════════════════════ */

/* ── VJ Hero ── */
.vj-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 40%, #1c1010 100%);
  padding: 40px 0 23px;
  overflow: hidden
}

.vj-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.vj-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35
}

.vj-orb-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #d91c1c, transparent);
  top: -120px;
  right: -80px;
  animation: vj-pulse 6s ease-in-out infinite
}

.vj-orb-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #b87a00, transparent);
  bottom: -60px;
  left: 10%;
  animation: vj-pulse 8s ease-in-out infinite 2s
}

.vj-orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #7b2c2c, transparent);
  top: 40%;
  left: 40%;
  animation: vj-pulse 5s ease-in-out infinite 1s
}

@keyframes vj-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.35
  }

  50% {
    transform: scale(1.12);
    opacity: 0.5
  }
}

.vj-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 23px;
  align-items: center;
  position: relative;
  z-index: 2
}

.vj-hero-content {
  color: #fff
}

.vj-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 17px;
  backdrop-filter: blur(8px)
}

.vj-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: dot-ping 1.4s ease-in-out infinite
}

@keyframes dot-ping {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6
  }
}

.vj-hero-title {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
  color: #fff;
  font-family: var(--font-head)
}

.vj-title-gold {
  background: linear-gradient(90deg, #f4a825, #ff6b00, #f4a825);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shimmer 3s linear infinite
}

@keyframes gold-shimmer {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 200%
  }
}

.vj-hero-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 21px;
  max-width: 480px
}

.vj-earn-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 21px;
  backdrop-filter: blur(6px)
}

.vj-earn-item {
  flex: 1;
  text-align: center
}

.vj-earn-num {
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 800;
  color: #f4a825;
  font-family: var(--font-head)
}

.vj-earn-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 2px
}

.vj-earn-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 8px
}

.vj-hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 17px;
  flex-wrap: wrap
}

.vj-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d91c1c, #b01212);
  color: #fff;
  padding: 13px 21px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(217, 28, 28, 0.45)
}

.vj-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(217, 28, 28, 0.6);
  background: linear-gradient(135deg, #e52020, #c01515)
}

.vj-cta-ghost {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: all 0.2s
}

.vj-cta-ghost:hover {
  color: #fff;
  border-color: #fff
}

.vj-trust-strip {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap
}

.vj-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9)
}

/* Vendor Showcase */
.vj-vendor-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "main sm1"
    "main sm2"
    "stat1 stat2";
  gap: 15px;
  perspective: 1200px;
  width: 100%;
}

.vj-showcase-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  overflow: visible;
  /* Allows badge to pop out */
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s, border-color 0.4s;
  cursor: pointer;
  position: relative;
  transform-style: preserve-3d;
}

.vj-showcase-card:hover {
  transform: translateY(-8px) scale(1.02) rotateX(2deg) rotateY(-2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.35);
}

.vj-sc-main {
  grid-area: main;
  display: flex;
  flex-direction: column;
}

.vj-sc-main .vj-sc-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.vj-sc-info {
  padding: 16px;
  color: #fff;
  border-radius: 0 0 15px 15px;
}

.vj-sc-name {
  font-weight: 700;
  font-size: 16px;
}

.vj-sc-loc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.9);
  margin: 4px 0;
}

.vj-sc-earn {
  font-size: 14.5px;
  color: #FFD93D;
  margin-top: 6px;
}

.vj-sc-earn strong {
  color: #4EE97B;
}

.vj-sc-badge {
  position: absolute;
  top: -12px;
  left: -12px;
  background: linear-gradient(135deg, #FFD93D, #F4A825);
  color: #1C0A0A;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(244, 168, 37, 0.6);
  transform: translateZ(20px);
}

.vj-sc-sm {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 12px;
}

.vj-sc-sm1 {
  grid-area: sm1;
  animation: subtle-float 6s ease-in-out infinite;
}

.vj-sc-sm2 {
  grid-area: sm2;
  animation: subtle-float 7s ease-in-out infinite 1s;
}

.vj-sc-sm .vj-sc-img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
}

.vj-sc-sm .vj-sc-info {
  padding: 0;
}

.vj-sc-sm .vj-sc-name {
  font-size: 15px;
}

.vj-sc-sm .vj-sc-earn {
  font-size: 13.5px;
  color: #4EE97B;
  margin-top: 4px;
}

@keyframes subtle-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

.vj-float-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s;
  cursor: pointer;
}

.vj-float-stat:hover {
  transform: scale(1.04);
}

.vj-fs-icon {
  font-size: 26px;
}

.vj-fs-val {
  font-size: 20px;
  font-weight: 800;
  color: #FFD93D;
}

.vj-fs-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.vj-fs-1 {
  grid-area: stat1;
}

.vj-fs-2 {
  grid-area: stat2;
}

/* ── Benefits Grid ── */
.vj-benefits {
  padding: 36px 0;
  background: var(--bg)
}

.vj-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 48px
}

.vj-benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 21px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden
}

.vj-benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 28, 28, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s
}

.vj-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 28, 28, 0.25)
}

.vj-benefit-card:hover::before {
  opacity: 1
}

.vj-bc-accent {
  background: linear-gradient(135deg, #1a0808 0%, #2a0d0d 100%);
  border-color: rgba(217, 28, 28, 0.4);
  color: #fff
}

.vj-bc-accent h3 {
  color: #fff
}

.vj-bc-accent p {
  color: rgba(255, 255, 255, 0.9)
}

.vj-bc-icon {
  font-size: 32px;
  margin-bottom: 14px
}

.vj-benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 10px
}

.vj-benefit-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px
}

.vj-bc-highlight {
  display: inline-block;
  background: rgba(244, 168, 37, 0.15);
  border: 1px solid rgba(244, 168, 37, 0.35);
  color: #c8870a;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px
}

.vj-bc-check-list {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.vj-bc-check-list span {
  font-size: 12.5px;
  color: var(--text-muted)
}

.vj-bc-accent .vj-bc-check-list span {
  color: rgba(255, 255, 255, 0.9)
}

/* ── Vendor Stories ── */
.vj-stories {
  padding: 36px 0;
  background: var(--bg-alt)
}

.vj-stories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 15px;
  margin-top: 18px;
  align-items: stretch
}

.vj-story-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.vj-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.vj-story-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden
}

.vj-story-img-wrap img.vj-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s
}

.vj-story-card:hover .vj-story-img {
  transform: scale(1.06)
}

/* .vj-si-sm removed as all image wraps are 240px */

.vj-story-earnings-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 8px 14px;
  color: #fff;
  text-align: center
}

.vj-se-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.vj-se-amount {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #22c55e
}

.vj-story-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.vj-story-quote-mark {
  font-size: 52px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 8px
}

.vj-story-quote {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic
}

.vj-story-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
  margin-top: auto;
}

.vj-story-author strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-head)
}

.vj-story-author span {
  font-size: 12px;
  color: var(--text-muted)
}

.vj-story-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 12px
}

.vj-ss-item {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--border)
}

.vj-ss-item:last-child {
  border-right: none
}

.vj-ss-val {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--accent)
}

.vj-ss-lbl {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.vj-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.vj-stag {
  background: rgba(217, 28, 28, 0.08);
  border: 1px solid rgba(217, 28, 28, 0.2);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px
}

/* ── 3-Step Journey ── */
.vj-steps {
  padding: 36px 0;
  background: var(--bg)
}

.vj-steps-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 18px;
  position: relative
}

.vj-step-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  text-align: center;
  transition: all 0.35s;
  position: relative;
  overflow: hidden
}

.vj-step-card::after {
  content: attr(data-vstep);
  position: absolute;
  bottom: -16px;
  right: -8px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(217, 28, 28, 0.05);
  line-height: 1;
  font-family: var(--font-head)
}

.vj-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(217, 28, 28, 0.3)
}

.vj-step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px
}

.vj-step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 28, 28, 0.12), rgba(217, 28, 28, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid rgba(217, 28, 28, 0.2);
  flex-shrink: 0;
}

.vj-step-icon {
  font-size: 28px
}

.vj-step-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 10px
}

.vj-step-card p {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 14px
}

.vj-step-time {
  display: inline-block;
  background: rgba(217, 28, 28, 0.06);
  border: 1px solid rgba(217, 28, 28, 0.15);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px
}

.vj-step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  flex-shrink: 0
}

.vj-sc-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(217, 28, 28, 0.3), rgba(217, 28, 28, 0.6));
  border-radius: 2px
}

.vj-sc-arrow {
  font-size: 28px;
  color: var(--accent);
  line-height: 1;
  margin-top: 4px;
  opacity: 0.7
}

.vj-steps-cta {
  text-align: center;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px
}

.vj-steps-note {
  font-size: 13px;
  color: var(--text-muted)
}

/* ── Application Form Section ── */
.vj-form-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #fdf0f0 0%, #fff5f0 50%, #fdf0f0 100%)
}

.vj-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 18px;
  align-items: start;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 20px 80px rgba(217, 28, 28, 0.12);
  border: 1px solid rgba(217, 28, 28, 0.1);
  overflow: hidden
}

.vj-form-left {
  padding: 18px 15px;
  background: linear-gradient(160deg, #1a0808, #2d1010);
  color: #fff;
  height: 100%
}

.vj-form-headline {
  margin-bottom: 32px
}

.vj-form-tag {
  display: inline-block;
  background: rgba(244, 168, 37, 0.15);
  border: 1px solid rgba(244, 168, 37, 0.3);
  color: #f4a825;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: 0.5px
}

.vj-form-left h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25
}

.vj-form-left p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.7
}

.vj-form-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px
}

.vj-fp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.vj-fp-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  flex-shrink: 0;
  margin-top: 4px
}

.vj-fp-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700
}

.vj-fp-item span {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  margin-top: 2px
}

.vj-live-counter {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 11px 16px;
  margin-bottom: 15px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8)
}

.vj-live-counter strong {
  color: #22c55e
}

.vj-lc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
  animation: dot-ping 1.4s ease-in-out infinite;
  flex-shrink: 0
}

.vj-avatar-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap
}

.vj-av-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
  margin-left: -8px
}

.vj-av-img:first-child {
  margin-left: 0
}

.vj-av-more {
  width: 18px;
  height: 36px;
  border-radius: 50%;
  background: rgba(217, 28, 28, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -8px
}

.vj-av-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-left: 6px
}

/* Form right */
.vj-form-right {
  padding: 18px 40px
}

.vj-app-form {
  display: flex;
  flex-direction: column;
  gap: 0
}

.vj-form-header {
  margin-bottom: 24px
}

.vj-form-header h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-head);
  margin-bottom: 4px
}

.vj-form-header p {
  font-size: 13px;
  color: var(--text-muted)
}

.vj-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.vj-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0
}

.vj-field-group>label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.vj-optional {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0
}

.vj-field-group input,
.vj-field-group select,
.vj-field-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-head);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.25s;
  outline: none
}

.vj-field-group textarea {
  padding: 11px 14px;
  resize: vertical;
  min-height: 80px;
  margin-bottom: 16px
}

.vj-field-group input:focus,
.vj-field-group select:focus,
.vj-field-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217, 28, 28, 0.1)
}

.vj-field-group input:focus,
.vj-field-group select:focus {
  background: #fff
}

.vj-checkbox-row {
  margin-bottom: 16px
}

.vj-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.5
}

.vj-checkbox-label input[type=checkbox] {
  display: none
}

.vj-checkbox-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center
}

.vj-checkbox-label input:checked~.vj-checkbox-box {
  background: var(--accent);
  border-color: var(--accent)
}

.vj-checkbox-label input:checked~.vj-checkbox-box::after {
  content: '✓';
  color: #fff;
  font-size: 11px;
  font-weight: 800
}

.vj-submit-btn {
  position: relative;
  width: 100%;
  padding: 15px 18px;
  background: linear-gradient(135deg, #d91c1c, #b01212);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 24px rgba(217, 28, 28, 0.4)
}

.vj-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(217, 28, 28, 0.55)
}

.vj-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s
}

.vj-submit-btn:hover .vj-btn-shine {
  left: 160%
}

.vj-btn-arrow {
  font-size: 18px;
  transition: transform 0.3s
}

.vj-submit-btn:hover .vj-btn-arrow {
  transform: translateX(4px)
}

.vj-form-footer-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px
}

/* Responsive */
@media(max-width:1024px) {

  .vj-hero-inner,
  .vj-stories-grid {
    grid-template-columns: 1fr
  }

  .vj-hero-visual {
    display: none
  }

  .vj-benefits-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .vj-form-wrap {
    grid-template-columns: 1fr
  }

  .vj-form-left {
    padding: 18px 28px
  }
}

@media(max-width:768px) {
  .vj-steps-flow {
    flex-direction: column
  }

  .vj-step-connector {
    transform: rotate(90deg)
  }

  .vj-benefits-grid {
    grid-template-columns: 1fr
  }

  .vj-field-row {
    grid-template-columns: 1fr
  }

  .vj-form-right {
    padding: 28px
  }
}


/* ===== FOOTER ===== */
.footer {
  background: var(--text-head);
  padding: 48px 0 24px;
  border: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 40px;
}

.footer-logo {
  height: 54px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 18px;
}

/* Newsletter in footer */
.footer-newsletter {
  display: flex;
  gap: 8px;
  max-width: 320px;
}

.footer-newsletter input {
  flex: 1;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 13px;
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .7);
}

.footer-newsletter button {
  padding: 9px 16px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}

.footer-newsletter button:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

.footer-newsletter button:active {
  transform: translateY(0);
}

.footer-col h4 {
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 9px;
  transition: color .2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .75);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(217, 28, 28, 0.30);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.25s;
  font-size: 18px;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0)
}

.scroll-top:hover {
  background: var(--accent-dk);
  transform: translateY(-2px) !important
}

/* ===== SCROLL REVEAL ===== */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===== CART QTY BUTTONS ===== */
.cart-item-remove {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 15px;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0
}

.cart-item-remove:hover {
  background: var(--accent-lt);
  border-color: var(--accent);
  color: var(--accent)
}

/* ===== TOAST NOTIFICATION ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text-head);
  color: #fff;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0)
}

/* ===== KEYFRAMES ===== */
@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: rotate(0deg) scale(1)
  }

  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    transform: rotate(180deg) scale(1.08)
  }

  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    transform: rotate(360deg) scale(1)
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4)
  }
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.12)
  }
}

@keyframes blink-caret {

  from,
  to {
    border-color: transparent
  }

  50% {
    border-color: var(--accent)
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(100%)
  }
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0
  }
}

@keyframes float-up {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(0deg)
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) rotate(360deg)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes float-center {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-14px) scale(1.04)
  }
}

@keyframes hvc-float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-9px)
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {

  /* Slightly tighter nav on medium screens */
  .nav-link {
    font-size: 12.5px;
    padding: 6px 9px
  }

  .nav-login-btn {
    padding: 8px 16px
  }
}

@media(max-width:900px) {
  .nav-inner {
    height: 76px
  }

  .nav-logo-img {
    height: 60px
  }

  .footer-logo {
    height: 60px
  }

  /* ── Hide desktop nav links, show hamburger ── */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 16px 0;
    gap: 2px;
    /* Animate in */
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    font-size: 14px;
    padding: 11px 18px;
    border-radius: 0;
    border-bottom: 1px solid rgba(28, 28, 30, 0.05);
    width: 100%;
  }

  .nav-link:last-child {
    border-bottom: none
  }

  .nav-link::after {
    bottom: 0;
    left: 24px;
    right: 24px;
    height: 1.5px;
  }

  .mobile-toggle {
    display: flex
  }

  /* ── Hide login text, show icon only ── */
  .nav-login-btn span.login-text {
    display: none
  }

  /* ── Layout ── */
  .vendor-wrapper {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-content {
    max-width: 100%
  }

  .hero-stats {
    gap: 17px;
    justify-content: center
  }

  .hero-actions {
    justify-content: center
  }

  .hero-visual {
    height: 300px
  }

  .hero-badge {
    margin: 0 auto 22px
  }
}

@media(max-width:640px) {
  .hero h1 {
    font-size: 30px
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 14px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer-newsletter {
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter button {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr
  }

  .hero-actions {
    flex-direction: column
  }

  .btn {
    text-align: center
  }

  .hero-visual {
    display: none
  }

  /* ── On very small screens shrink action cluster ── */
  .nav-login-btn {
    padding: 8px 14px;
    font-size: 12px;
    gap: 5px;
    margin-left: 2px
  }

  .nav-icon-btn {
    width: 18px;
    height: 36px
  }

  /* Spotlight stack */
  .food-spotlight {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 21px 24px
  }

  .spotlight-emoji {
    font-size: 80px
  }

  .spotlight-meta {
    justify-content: center
  }

  .vendors-cta-row {
    flex-direction: column;
    text-align: center
  }
}

@media(max-width:400px) {
  .nav-login-btn {
    display: none
  }

  /* hide entirely below 400px — use mobile nav */
}

/* ═══════════════════════════════════════════════
   FOOD TEMPTATION ENHANCEMENTS
═══════════════════════════════════════════════ */

/* ── Urgency Announcement Strip ── */
.announce-strip {
  position: relative;
  background: linear-gradient(90deg, #B51515, #D91C1C, #E84040, #D91C1C, #B51515);
  background-size: 200% auto;
  animation: stripe-slide 4s linear infinite;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 9px 18px 9px 16px;
  font-size: 12.5px;
  font-weight: 500;
  z-index: 1100;
  line-height: 1.4;
  transition: max-height 0.4s, padding 0.4s, opacity 0.4s;
  overflow: hidden;
}

.announce-strip.closed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none
}

.announce-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden
}

.announce-fire {
  font-size: 15px;
  animation: fire-shake 0.6s ease-in-out infinite alternate
}

.announce-text {
  opacity: 0.95
}

.announce-text strong {
  font-weight: 700;
  color: #FFE4A0
}

.announce-text #offerCountdown {
  font-family: var(--font-head);
  font-weight: 800;
  color: #FFE4A0;
  letter-spacing: 1px
}

.announce-sep {
  opacity: 0.4;
  font-size: 10px
}

.announce-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.announce-close:hover {
  background: rgba(255, 255, 255, 0.28)
}

@keyframes stripe-slide {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 200% 0
  }
}

@keyframes fire-shake {
  0% {
    transform: rotate(-8deg) scale(1.1)
  }

  100% {
    transform: rotate(8deg) scale(1.2)
  }
}

/* Padding logic via CSS has() */
body {
  --strip-height: 0px;
}

body:has(.announce-strip:not(.closed)) {
  --strip-height: 40px;
}

.hero {
  padding-top: calc(120px + var(--strip-height)) !important;
}

/* ── Food Temptation Scrolling Ticker Strip ── */
.food-tempt-strip {
  background: linear-gradient(135deg, #FDF5F5 0%, #FDEAEA 50%, #FDF5F5 100%);
  border-top: 1px solid rgba(217, 28, 28, 0.1);
  border-bottom: 1px solid rgba(217, 28, 28, 0.1);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

.food-tempt-strip::before,
.food-tempt-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.food-tempt-strip::before {
  left: 0;
  background: linear-gradient(to right, #FDF5F5, transparent)
}

.food-tempt-strip::after {
  right: 0;
  background: linear-gradient(to left, #FDF5F5, transparent)
}

.food-tempt-track {
  display: flex;
  align-items: center;
  gap: 17px;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.food-tempt-track span {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.2s;
}

.food-tempt-track span:not(.ft-dot):hover {
  color: var(--accent)
}

.ft-dot {
  color: var(--accent);
  opacity: 0.4 !important;
  font-size: 20px !important
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ── Floating Aroma Badges on Hero ── */
.aroma-badge {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  border: 1.5px solid rgba(217, 28, 28, 0.18);
  box-shadow: 0 8px 28px rgba(217, 28, 28, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-head);
  white-space: nowrap;
  pointer-events: none;
}

.aroma-1 {
  bottom: 28%;
  left: 6%;
  animation: aroma-float 5s ease-in-out infinite
}

.aroma-2 {
  top: 30%;
  right: 5%;
  animation: aroma-float 6s ease-in-out infinite 1.5s
}

.aroma-3 {
  bottom: 18%;
  right: 8%;
  animation: aroma-float 4.5s ease-in-out infinite 3s
}

@keyframes aroma-float {

  0%,
  100% {
    transform: translateY(0) rotate(-1deg)
  }

  50% {
    transform: translateY(-14px) rotate(1deg)
  }
}

@media(max-width:900px) {
  .aroma-badge {
    display: none
  }
}

/* Slide 2 aroma badge positions (same animation, different positions) */
.aroma-s2-1 {
  bottom: 28%;
  left: 6%;
  animation: aroma-float 5s ease-in-out infinite
}

.aroma-s2-2 {
  top: 30%;
  right: 5%;
  animation: aroma-float 6s ease-in-out infinite 1.5s
}

.aroma-s2-3 {
  bottom: 18%;
  right: 8%;
  animation: aroma-float 4.5s ease-in-out infinite 3s
}

/* ─────────────────────────────────────────────
   TRENDING / HOT SECTION
───────────────────────────────────────────── */
.trending-section {
  background: linear-gradient(135deg, #1C1C1E 0%, #2A2A2E 40%, #1C1C1E 100%);
  padding: 36px 0 40px;
  position: relative;
  overflow: hidden;
}

.trending-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(217, 28, 28, 0.18) 0%, transparent 65%),
    radial-gradient(circle at 80% 30%, rgba(217, 28, 28, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.trending-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trending-left h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  color: #fff;
  margin-bottom: 8px
}

.trending-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0
}

.highlight-gold {
  color: #F5C842
}

.trend-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(217, 28, 28, 0.25);
  border: 1px solid rgba(217, 28, 28, 0.45);
  color: #FF8080;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.fire-anim {
  animation: fire-shake 0.5s ease-in-out infinite alternate;
  display: inline-block
}

/* Countdown timer */
.trending-timer-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 17px 16px;
  text-align: center;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.timer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px
}

.timer-digits {
  display: flex;
  align-items: center;
  gap: 4px
}

.t-digit {
  background: rgba(217, 28, 28, 0.25);
  border: 1px solid rgba(217, 28, 28, 0.4);
  border-radius: 12px;
  padding: 10px 14px;
  min-width: 58px;
  text-align: center;
}

.t-digit span {
  display: block;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  animation: digit-flip 0.3s ease;
}

.t-digit small {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 3px
}

.t-colon {
  font-size: 20px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 2px;
  line-height: 1
}

@keyframes digit-flip {
  from {
    transform: translateY(-6px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

/* Trending cards row */
.trending-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 15px;
  position: relative;
  z-index: 1;
}

.trending-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s, border-color 0.3s;
  cursor: pointer;
  position: relative;
}

.trending-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(217, 28, 28, 0.4);
  border-color: rgba(217, 28, 28, 0.45);
}

.tc-img-wrap {
  position: relative;
  overflow: hidden;
  height: 190px;
  background: linear-gradient(145deg, #2A2A2E, #1C1C1E);
}

.tc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.92) saturate(1.2);
}

.trending-card:hover .tc-img-wrap img {
  transform: scale(1.12)
}

.tc-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(217, 28, 28, 0.9);
  color: #fff;
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.tc-badge-off {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #F5C842, #E8A800);
  color: #1C1C1E;
  border-radius: 30px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  z-index: 2;
}

.tc-body {
  padding: 18px 15px 20px
}

.tc-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px
}

.tc-vendor {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px
}

.tc-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 14px
}

.tc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px
}

.tc-price {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #F5C842
}

.tc-orig-price {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  margin-left: 4px
}

.tc-order-btn {
  padding: 9px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.tc-order-btn:hover {
  background: var(--accent-dk);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(217, 28, 28, 0.4)
}

.tc-rating {
  font-size: 12px;
  color: #F5C842;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px
}

.tc-urgency {
  font-size: 11px;
  color: #FF8080;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
  animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.6
  }
}

/* ── Enhanced Product Card Hover Zoom ── */
.product-card {
  height: 340px
}

.card-img {
  height: 185px
}

/* Zoom effect with warm overlay */
.card-photo {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s
}

.product-card:hover .card-photo {
  transform: scale(1.10);
  filter: brightness(1.05) saturate(1.15)
}

/* Shimmer warm glow on card hover */
.card-front {
  transition: box-shadow 0.3s
}

.product-card:hover .card-front {
  box-shadow: 0 12px 36px rgba(217, 28, 28, 0.14)
}

/* Category badge on product cards */
.card-cat-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--text-body);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

/* ── Spotlight Enhancements ── */
.spotlight-servings {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #D91C1C;
  background: #FDEAEA;
  border: 1px solid rgba(217, 28, 28, 0.25);
  padding: 4px 12px;
  border-radius: 20px;
  animation: urgency-pulse 2s ease-in-out infinite;
}

.spotlight-desc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.dtag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-body);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.food-spotlight:hover .dtag {
  background: var(--accent-lt);
  border-color: rgba(217, 28, 28, 0.2);
  color: var(--accent)
}

/* ── Hot badge on live product cards ── */
.card-hot-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  background: linear-gradient(135deg, #D91C1C, #E84040);
  color: #fff;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(217, 28, 28, 0.3);
  animation: hot-pulse 2.5s ease-in-out infinite;
}

@keyframes hot-pulse {

  0%,
  100% {
    box-shadow: 0 4px 10px rgba(217, 28, 28, 0.3)
  }

  50% {
    box-shadow: 0 4px 18px rgba(217, 28, 28, 0.55)
  }
}

/* ── Section header enhancements ── */
.our-food-section .section-header h2::after,
.categories .section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(217, 28, 28, 0.2));
  border-radius: 4px;
  margin: 12px auto 0;
  animation: line-expand 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes line-expand {
  from {
    width: 0;
    opacity: 0
  }

  to {
    width: 48px;
    opacity: 1
  }
}

/* ── Enhanced category pill hover glow ── */
.cat-btn {
  transition: var(--transition), box-shadow 0.2s
}

.cat-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 28, 28, 0.28);
}

.cat-btn.active {
  box-shadow: 0 4px 16px rgba(217, 28, 28, 0.3);
}

/* ── Enhanced spotlight CTA pulse ── */
.spotlight-cta {
  animation: cta-glow 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

@keyframes cta-glow {

  0%,
  100% {
    box-shadow: 0 3px 14px rgba(217, 28, 28, 0.25)
  }

  50% {
    box-shadow: 0 6px 28px rgba(217, 28, 28, 0.50), 0 0 0 4px rgba(217, 28, 28, 0.08)
  }
}

/* Trending section responsive */
@media(max-width:768px) {
  .trending-header {
    flex-direction: column;
    text-align: center
  }

  .trending-timer-box {
    width: 100%;
    max-width: 320px;
    margin: 0 auto
  }

  .trending-cards {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  .announce-inner {
    gap: 6px
  }

  .announce-sep {
    display: none
  }

  .announce-text:not(:first-child) {
    display: none
  }
}

/* ═══════════════════════════════════════════════
   COMMUNITY STRIP (TESTIMONIALS BOTTOM)
═══════════════════════════════════════════════ */
.community-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
  padding: 16px 0;
}

@media (min-width: 768px) {
  .community-strip {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 18px 0;
    gap: 0;
  }
}

.cs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition);
}

.cs-item:hover {
  transform: translateY(-4px);
}

.cs-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.cs-lbl {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.cs-divider {
  display: none;
}

/* Homepage Layout Fix (Desktop Only) */
@media (min-width: 1024px) {
  .container:has(#fixedTopWrap) {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  main:has(#fixedTopWrap) {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media (min-width: 768px) {
  .cs-divider {
    display: block;
    width: 1px;
    height: 40px;
    background: var(--border);
  }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.anim-fade-in,
.anim-slide-up,
.anim-slide-down,
.anim-slide-left,
.anim-slide-right,
.anim-zoom-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.anim-slide-up {
  transform: translateY(40px);
}

.anim-slide-down {
  transform: translateY(-40px);
}

.anim-slide-left {
  transform: translateX(-40px);
}

.anim-slide-right {
  transform: translateX(40px);
}

.anim-zoom-in {
  transform: scale(0.95);
}

.anim-fade-in.in-view,
.anim-slide-up.in-view,
.anim-slide-down.in-view,
.anim-slide-left.in-view,
.anim-slide-right.in-view,
.anim-zoom-in.in-view {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

.anim-d-1 {
  transition-delay: 100ms;
}

.anim-d-2 {
  transition-delay: 200ms;
}

.anim-d-3 {
  transition-delay: 300ms;
}

.anim-d-4 {
  transition-delay: 400ms;
}

/* ═══════════════════════════════════════════════
   THREE GENERATIONS SECONDARY HERO
═══════════════════════════════════════════════ */
.gen-hero {
  background: linear-gradient(135deg, #fff8f0 0%, #fff1f1 50%, #fff8f5 100%);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.gen-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 28, 28, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gen-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 28, 28, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Two-column inner ── */
.gen-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 21px;
  align-items: center;
}

/* ── Left: Image container ── */
.gen-hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(217, 28, 28, 0.08);
  line-height: 0;
}

.gen-hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  display: block;
  border-radius: 24px;
}

/* ── Right: Content ── */
.gen-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Pill badge */
.gen-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(217, 28, 28, 0.08);
  border: 1px solid rgba(217, 28, 28, 0.2);
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 17px;
  width: fit-content;
}

.gen-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Title */
.gen-hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--text-head);
  line-height: 1.15;
  margin-bottom: 15px;
}

.gen-title-accent {
  color: var(--accent);
  position: relative;
}

/* Sub text */
.gen-hero-sub {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 21px;
  max-width: 490px;
}

/* Three generation mini-cards */
.gen-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.gen-trio-card {
  background: #fff;
  border: 1px solid rgba(217, 28, 28, 0.12);
  border-radius: 16px;
  padding: 16px 12px;
  text-align: center;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}

.gen-trio-card:hover {
  box-shadow: 0 8px 24px rgba(217, 28, 28, 0.12);
  border-color: rgba(217, 28, 28, 0.28);
  transform: translateY(-3px);
}

.gen-trio-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 8px;
}

.gen-trio-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 5px;
}

.gen-trio-desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA area */
.gen-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gen-cta-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(217, 28, 28, 0.28);
}

.gen-cta-primary:hover {
  background: var(--accent-dk);
  box-shadow: 0 10px 28px rgba(217, 28, 28, 0.36);
  transform: translateY(-2px);
}

.gen-trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.gen-trust-item {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .gen-hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gen-hero-visual {
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }

  .gen-hero-content {
    text-align: center;
    align-items: center;
  }

  .gen-hero-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .gen-hero-sub {
    text-align: center;
  }

  .gen-cta-primary {
    margin: 0 auto;
  }

  .gen-trust-row {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .gen-hero {
    padding: 21px 0;
  }

  .gen-trio {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.anim-d-5 {
  transition-delay: 500ms;
}

/* ═══════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════ */
.hero-slider-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-slider-inner {
  display: flex;
  /* Each slide is 100vw; inner track is 200vw for 2 slides */
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hero-slide {
  /* Each slide occupies exactly 100% of the viewport */
  min-width: 100vw;
  width: 100vw;
  flex: 0 0 100vw;
  box-sizing: border-box;
  overflow: hidden;
}

/* Suppress repeated entrance animation on hero-slide-2
   so it doesn't re-animate every time it slides in */
.hero-slide-2 .hero-content,
.hero-slide-2 .hero-visual {
  animation: none;
}

.hero-slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hs-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(217, 28, 28, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.hs-dot:hover {
  background: rgba(217, 28, 28, 0.4);
}

.hs-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  width: 28px;
  border-radius: 6px;
}


/* ═══════════════════════════════════════════════
   AD SYSTEM — non-intrusive, design-consistent
═══════════════════════════════════════════════ */

/* ── Shared: "Sponsored" label (Removed) ── */

/* ── Shared: close button ── */
.naari-ad-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}

.naari-ad-close:hover {
  background: #fff;
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   AD 1 — Leaderboard Strip
───────────────────────────────────────────── */
.naari-ad--leaderboard {
  position: relative;
  background: linear-gradient(90deg, #fffaf9 0%, #fff5f5 50%, #fffaf9 100%);
  padding: 14px 0 10px;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.4s ease;
}

.naari-ad-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  padding-top: 10px;
  padding-right: 18px;
}

.naari-ad-leaderboard-slot {
  flex: 1;
  max-width: 880px;
}

.naari-ad-placeholder {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 22px 14px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(217, 28, 28, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, border-color 0.25s;
}

.naari-ad-placeholder:hover {
  box-shadow: 0 6px 24px rgba(217, 28, 28, 0.12);
  border-color: rgba(217, 28, 28, 0.25);
}

.naari-adph-logo {
  font-size: 40px;
  flex-shrink: 0;
  line-height: 1;
}

.naari-adph-content {
  flex: 1;
}

.naari-adph-brand {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-head);
  margin-bottom: 4px;
}

.naari-adph-copy {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.5;
}

.naari-adph-cta {
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.naari-adph-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   AD 2 — Native Inline Card
───────────────────────────────────────────── */
.naari-ad--inline {
  position: relative;
  padding: 12px 0 18px;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.4s ease;
}

.naari-ad-inline-card {
  position: relative;
  background: linear-gradient(135deg, #fffbfb 0%, #fff8f6 100%);
  border-radius: 16px;
  border: 1px solid rgba(217, 28, 28, 0.12);
  padding: 20px 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.naari-ad-inline-card:hover {
  box-shadow: 0 8px 24px rgba(217, 28, 28, 0.12);
  border-color: rgba(217, 28, 28, 0.25);
}

.naari-ad-inline-content {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.naari-ad-inline-visual {
  font-size: 52px;
  flex-shrink: 0;
  line-height: 1;
}

.naari-ad-inline-text {
  flex: 1;
  min-width: 180px;
}

.naari-ad-inline-brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-head);
  margin-bottom: 5px;
}

.naari-ad-inline-copy {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 520px;
}

.naari-ad-inline-actions {
  flex-shrink: 0;
}

.naari-ad-inline-btn {
  display: inline-block;
  padding: 11px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.naari-ad-inline-btn:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

.naari-ad-close--inline {
  top: 12px;
  right: 14px;
}

/* ─────────────────────────────────────────────
   AD 3 — Sticky Floating Sidebar (desktop only)
───────────────────────────────────────────── */
.naari-ad--sticky {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 900;
  width: 260px;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(217, 28, 28, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(217, 28, 28, 0.12);
  padding: 24px 20px 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
  transform: translateX(280px);
  opacity: 0;
  pointer-events: none;
}

.naari-ad--sticky-visible {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

.naari-ad-sticky-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-top: 4px;
}

.naari-ad-sticky-img {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 4px;
}

.naari-ad-sticky-brand {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-head);
}

.naari-ad-sticky-copy {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.naari-ad-sticky-cta {
  margin-top: 10px;
  display: block;
  padding: 11px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}

.naari-ad-sticky-cta:hover {
  background: var(--accent-dk);
  transform: translateY(-1px);
}

.naari-ad-close--sticky {
  top: 8px;
  top: 12px;
  right: 12px;
}

/* ── Hide sticky on mobile ── */
@media (max-width: 1023px) {
  .naari-ad--sticky {
    display: none !important;
  }
}

/* ── Leaderboard responsive ── */
@media (max-width: 600px) {
  .naari-ad-placeholder {
    flex-wrap: wrap;
    gap: 10px;
  }

  .naari-adph-cta {
    width: 100%;
    text-align: center;
  }

  .naari-ad-inline-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─────────────────────────────────────────────
   AD 3 — Native In-Grid Sponsored Card
───────────────────────────────────────────── */
.naari-ad-grid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 28, 28, 0.12);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  cursor: default;
}

.naari-ad-grid-card:hover {
  box-shadow: 0 8px 24px rgba(217, 28, 28, 0.1);
  border-color: rgba(217, 28, 28, 0.25);
  transform: translateY(-2px);
}



.naari-ad-grid-visual {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.naari-ad-grid-icon {
  font-size: 68px;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.12));
}

.naari-ad-grid-body {
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.naari-ad-grid-brand {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-head);
}

.naari-ad-grid-copy {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.55;
  flex: 1;
}

.naari-ad-grid-cta {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s, transform 0.2s;
}

.naari-ad-grid-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────
   AD 4 — Pre-Footer Premium Compact Banner
───────────────────────────────────────────── */
.naari-ad--prefooter {
  padding: 20px 0 16px;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin 0.4s ease;
}

.naari-ad-prefooter-inner {
  position: relative;
  padding-right: 40px;
  /* space for the close × button */
}


/* Single compact banner card */
.naari-adpf-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 14px 20px 14px 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: box-shadow 0.28s ease, transform 0.28s ease, border-color 0.28s ease;
}

.naari-adpf-banner:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Shine sweep animation */
.naari-adpf-banner-shine {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(105deg,
      transparent 30%,
      rgba(255, 255, 255, 0.9) 50%,
      transparent 70%);
  background-size: 220% 100%;
  background-position: 200% 0;
  pointer-events: none;
  transition: background-position 0s;
}

.naari-adpf-banner:hover .naari-adpf-banner-shine {
  animation: adpf-shine 0.65s ease forwards;
}

@keyframes adpf-shine {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -40% 0;
  }
}

/* Icon */
.naari-adpf-banner-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Text block (takes remaining space) */
.naari-adpf-banner-text {
  flex: 1;
  min-width: 0;
}

.naari-adpf-banner-brand {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-head);
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.naari-adpf-banner-copy {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA button */
.naari-adpf-banner-cta {
  flex-shrink: 0;
  padding: 9px 20px;
  border-radius: 40px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.2px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.naari-adpf-banner-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
}

/* "Sponsored" micro-label */
.naari-adpf-banner-sponsored {
  position: absolute;
  top: 7px;
  right: 48px;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.6;
}

/* Close button positioning */
.naari-ad-close--pf {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .naari-adpf-banner {
    gap: 12px;
    padding: 12px 14px;
  }

  .naari-adpf-banner-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .naari-adpf-banner-copy {
    display: none;
  }

  .naari-adpf-banner-brand {
    font-size: 13px;
  }

  .naari-adpf-banner-cta {
    padding: 8px 14px;
    font-size: 12px;
  }

  .naari-adpf-banner-sponsored {
    display: none;
  }

  .naari-ad-grid-card {
    display: none;
  }
}
.mega-parent {
    position: relative;
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    width: 1000px;
    max-width: 95vw;
    background: #fff;

    padding: 30px;

    column-count: 4;         /* vertical flow */
    column-gap: 40px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 10px;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9999;
}

.mega-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* IMPORTANT: prevents breaking category */
.mega-column {
    break-inside: avoid;
    margin-bottom: 25px;
}


/* CATEGORY TITLE */
.mega-column h4 {
    font-size: 18px;        /* 🔼 increased from 14px */
    font-weight: 700;
    margin-bottom: 12px;    /* more spacing */
    color: #111;
    line-height: 1.4;
}

/* LINK INSIDE TITLE */
    .mega-column h4 a {
        color: #111;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s;
        font-size: 18px;
    }

.mega-column h4 a:hover {
    color: #e91e63;
}
/* LINKS */
.mega-column a {
    display: block;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    padding: 3px 0;
}

.mega-column a:hover {
    color: #e91e63;
}
@media (max-width: 1024px) {
    .mega-menu {
        width: 900px;
        column-count: 3;
    }
}

@media (max-width: 900px) {
    .mega-menu {
        width: 95vw;
        column-count: 2;
        padding: 25px;
    }
}

@media (max-width: 600px) {
    .mega-menu {
        column-count: 1;
    }
}