/* =============================================
   TRUCKSPOT — Design System
   Palette: Amber warmth + deep charcoal
   Font: Fraunces (display) + DM Sans (body)
   ============================================= */

:root {
  --amber:     #F59E0B;
  --amber-light: #FEF3C7;
  --amber-dark:  #D97706;
  --orange:    #EA580C;
  --cream:     #FFFBF2;
  --charcoal:  #1C1917;
  --stone:     #78716C;
  --stone-light: #E7E5E4;
  --white:     #FFFFFF;
  --green:     #16A34A;
  --green-light: #DCFCE7;
  --red:       #DC2626;
  --red-light: #FEE2E2;
  --blue:      #2563EB;
  --blue-light: #DBEAFE;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-amber: 0 4px 20px rgba(245,158,11,.25);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --nav-h: 68px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--charcoal); line-height: 1.2; }
.section-title.center { text-align: center; }
.section-sub { color: var(--stone); font-size: 1.1rem; margin-top: 12px; max-width: 540px; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 40px; }
.see-all { color: var(--amber-dark); font-weight: 600; text-decoration: none; font-size: .95rem; }
.see-all:hover { text-decoration: underline; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px; font-family: var(--font-body);
  font-size: .95rem; font-weight: 600; cursor: pointer; text-decoration: none;
  border: 2px solid transparent; transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber); color: var(--charcoal); border-color: var(--amber);
}
.btn-primary:hover { background: var(--amber-dark); border-color: var(--amber-dark); transform: translateY(-1px); box-shadow: var(--shadow-amber); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent; color: var(--charcoal); border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-ghost {
  background: transparent; color: var(--stone); border-color: var(--stone-light);
}
.btn-ghost:hover { background: var(--stone-light); color: var(--charcoal); }

.btn-xl { padding: 16px 32px; font-size: 1.05rem; }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.btn-danger { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-danger:hover { background: #b91c1c; }
.btn-success { background: var(--green); color: var(--white); border-color: var(--green); }

/* ---- NAV ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,251,242,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,158,11,.15);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  height: var(--nav-h); display: flex; align-items: center; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--charcoal); font-size: 1.3rem;
}
.logo-icon { font-size: 1.5rem; }
.logo-text { font-family: var(--font-display); font-weight: 400; }
.logo-text strong { font-weight: 900; color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link { padding: 8px 16px; text-decoration: none; color: var(--stone); font-weight: 500; border-radius: 999px; transition: all .2s; }
.nav-link:hover { color: var(--charcoal); background: var(--stone-light); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; background: none; border: none; margin-left: auto; }
.burger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; flex-direction: column; padding: 12px 20px 20px;
  border-top: 1px solid var(--stone-light);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 14px 0; text-decoration: none; color: var(--charcoal); font-weight: 500; border-bottom: 1px solid var(--stone-light); }
.mobile-menu a:last-child { border: none; }
.mobile-menu .mobile-cta { color: var(--orange); font-weight: 700; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh; padding-top: calc(var(--nav-h) + 40px);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; max-width: var(--container);
  margin: 0 auto; padding-left: 20px; padding-right: 20px;
  position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: -1; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .5;
}
.blob-1 { width: 600px; height: 600px; background: #FEF3C7; top: -100px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: #FFEDD5; bottom: 0; left: -100px; }
.blob-3 { width: 300px; height: 300px; background: #FEF9C3; top: 40%; left: 40%; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green); padding: 8px 16px;
  border-radius: 999px; font-size: .85rem; font-weight: 600; margin-bottom: 24px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,.4); }
  50% { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
}

.hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; line-height: 1.05; color: var(--charcoal);
  margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--orange); }

.hero-sub { font-size: 1.15rem; color: var(--stone); margin-bottom: 36px; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--charcoal); }
.stat-l { font-size: .8rem; color: var(--stone); text-transform: uppercase; letter-spacing: .05em; }
.stat-sep { width: 1px; height: 40px; background: var(--stone-light); }

/* ---- PHONE FRAME ---- */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-frame {
  width: 280px; height: 560px; border-radius: 40px;
  background: var(--charcoal); padding: 12px; box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-frame::before {
  content: ''; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 6px; background: #333; border-radius: 3px;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: var(--white); display: flex; flex-direction: column;
}
.mini-map { flex: 1; background: #e8f4ea; position: relative; overflow: hidden; }
.mini-cards { padding: 8px; display: flex; flex-direction: column; gap: 6px; background: var(--white); }
.mini-card {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  border-radius: var(--radius-sm); background: var(--cream); border: 1px solid var(--stone-light);
  cursor: pointer; transition: all .2s; font-size: .78rem;
}
.mini-card.active { border-color: var(--amber); background: var(--amber-light); }
.mini-card strong { margin-left: auto; }
.mini-dist { color: var(--green); font-size: .72rem; font-weight: 600; }
.mini-tag { font-size: .7rem; }

/* ---- CATEGORIES ---- */
.categories-section { background: var(--white); }
.categories-section .section-title { margin-bottom: 40px; }
.categories-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 24px 16px; border-radius: var(--radius-lg); background: var(--cream);
  border: 1px solid transparent; text-decoration: none; color: var(--charcoal);
  transition: all .2s; cursor: pointer;
}
.category-card:hover { border-color: var(--amber); background: var(--amber-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cat-emoji { font-size: 2rem; }
.cat-name { font-weight: 600; font-size: .9rem; text-align: center; }
.cat-count { font-size: .75rem; color: var(--stone); }

/* ---- MAP SECTION ---- */
.map-section { background: var(--charcoal); color: var(--white); }
.map-section .section-title { color: var(--white); }
.map-section .section-sub { color: rgba(255,255,255,.6); }
.map-intro { margin-bottom: 40px; }
.map-preview-wrap { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.home-map { height: 400px; }
.map-overlay-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  color: var(--white); padding: 8px 16px; border-radius: 999px;
  font-size: .85rem; font-weight: 600; display: flex; align-items: center; gap: 6px;
}
.map-overlay-badge svg { fill: var(--green); }

/* ---- HOW IT WORKS ---- */
.how-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 52px; }
.step-card {
  padding: 32px; border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--stone-light); position: relative;
  transition: all .3s; animation: fadeUp .6s ease both;
  animation-delay: calc(var(--i) * 0.15s);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.step-num {
  font-family: var(--font-display); font-size: 4rem; font-weight: 900;
  color: var(--stone-light); line-height: 1; margin-bottom: 16px;
}
.step-icon { font-size: 2rem; margin-bottom: 16px; }
.step-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.step-card p { color: var(--stone); font-size: .95rem; }

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

/* ---- TRUCKS GRID ---- */
.trucks-section { background: var(--white); }
.trucks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.truck-card {
  border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--stone-light); overflow: hidden;
  transition: all .2s; cursor: pointer; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.truck-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.truck-card-img {
  height: 180px; background: linear-gradient(135deg, #FEF3C7, #FFEDD5);
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
  position: relative; overflow: hidden;
}
.truck-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.truck-card-top { display: flex; justify-content: space-between; align-items: start; gap: 8px; margin-bottom: 8px; }
.truck-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; }
.truck-badge {
  padding: 4px 10px; border-radius: 999px; font-size: .75rem; font-weight: 600;
  flex-shrink: 0;
}
.badge-open { background: var(--green-light); color: var(--green); }
.badge-closed { background: var(--red-light); color: var(--red); }
.truck-meta { color: var(--stone); font-size: .85rem; margin-bottom: 12px; display: flex; gap: 12px; }
.truck-rating { color: var(--amber-dark); font-weight: 600; font-size: .85rem; }
.truck-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: auto; }
.truck-tag {
  padding: 4px 10px; border-radius: 999px; background: var(--cream);
  font-size: .75rem; color: var(--stone); border: 1px solid var(--stone-light);
}
.fav-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
  transition: all .2s;
}
.fav-btn:hover { transform: scale(1.1); }
.fav-btn.active { background: var(--red-light); }

/* ---- PRO CTA ---- */
.pro-section { background: var(--cream); }
.pro-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  background: var(--charcoal); color: var(--white);
  border-radius: var(--radius-xl); padding: 60px; overflow: hidden; position: relative;
}
.pro-card::before {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(245,158,11,.15); top: -100px; right: 200px; filter: blur(60px);
}
.pro-badge {
  display: inline-block; background: rgba(245,158,11,.2); color: var(--amber);
  padding: 6px 14px; border-radius: 999px; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 20px;
}
.pro-content h2 { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; }
.pro-content p { color: rgba(255,255,255,.7); margin-bottom: 24px; }
.pro-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.pro-features li { color: rgba(255,255,255,.85); font-size: .95rem; }
.pro-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }
.price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--amber); }
.price-period { font-size: 1.2rem; color: rgba(255,255,255,.5); }
.price-tag {
  margin-left: 8px; background: rgba(255,255,255,.1); padding: 4px 10px;
  border-radius: 999px; font-size: .75rem; color: rgba(255,255,255,.6);
}
.pro-note { margin-top: 12px; font-size: .85rem; color: rgba(255,255,255,.45); }

/* ---- DASHBOARD PREVIEW ---- */
.dashboard-preview {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg); padding: 24px; margin: auto 0;
}
.dp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dp-status { font-size: .8rem; font-weight: 700; }
.dp-status.active { color: var(--green); }
.dp-title { font-size: .85rem; color: rgba(255,255,255,.5); }
.dp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 24px; }
.dp-stat { text-align: center; }
.dp-stat span { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); }
.dp-stat small { font-size: .72rem; color: rgba(255,255,255,.45); }
.dp-bar-wrap { display: flex; flex-direction: column; gap: 6px; }
.dp-bar { display: flex; align-items: center; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.5); }
.dp-bar div { flex: 1; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.dp-bar div::after {
  content: ''; display: block; height: 100%; width: var(--w);
  background: var(--amber); border-radius: 3px; transition: width 1s ease;
}

/* ---- REVIEWS ---- */
.reviews-section { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
.review-card {
  padding: 28px; border-radius: var(--radius-lg); background: var(--cream);
  border: 1px solid var(--stone-light);
}
.review-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 12px; }
.review-card p { color: var(--stone); font-style: italic; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--charcoal); flex-shrink: 0;
}
.reviewer strong { display: block; font-size: .9rem; }
.reviewer small { color: var(--stone); font-size: .8rem; }

/* ---- FOOTER ---- */
.footer { background: var(--charcoal); color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  color: rgba(255,255,255,.6); font-size: .75rem; font-weight: 700; transition: all .2s;
}
.footer-social a:hover { background: var(--amber); color: var(--charcoal); }
.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.5); text-decoration: none; font-size: .9rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; font-size: .8rem; color: rgba(255,255,255,.3); }

/* ---- RGPD BANNER ---- */
.rgpd-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: var(--charcoal); color: var(--white); padding: 20px 24px;
  border-top: 2px solid var(--amber); transform: translateY(100%);
  transition: transform .4s ease; box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.rgpd-banner.show { transform: translateY(0); }
.rgpd-content { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.rgpd-content div:first-child { flex: 1; min-width: 280px; }
.rgpd-content strong { color: var(--amber); }
.rgpd-content p { font-size: .85rem; color: rgba(255,255,255,.65); margin-top: 4px; }
.rgpd-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* ============ MAP PAGE ============ */
.map-layout {
  display: flex; height: calc(100vh - var(--nav-h)); padding-top: var(--nav-h);
  overflow: hidden;
}
.map-sidebar {
  width: 380px; flex-shrink: 0; height: 100%; overflow-y: auto;
  background: var(--white); border-right: 1px solid var(--stone-light);
  display: flex; flex-direction: column;
}
.sidebar-header { padding: 16px 16px 0; }
.search-bar {
  display: flex; align-items: center; gap: 8px; background: var(--cream);
  border: 1px solid var(--stone-light); border-radius: 999px; padding: 10px 16px;
  margin-bottom: 12px;
}
.search-bar input { flex: 1; border: none; background: none; font-family: var(--font-body); font-size: .95rem; outline: none; color: var(--charcoal); }
.search-bar svg { color: var(--stone); flex-shrink: 0; }
.filters { display: flex; gap: 6px; flex-wrap: wrap; padding-bottom: 12px; border-bottom: 1px solid var(--stone-light); }
.filter-chip {
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--stone-light);
  background: var(--white); font-size: .8rem; font-weight: 500; cursor: pointer;
  transition: all .15s; color: var(--stone); white-space: nowrap;
}
.filter-chip:hover, .filter-chip.active { background: var(--amber); color: var(--charcoal); border-color: var(--amber); }
.sidebar-list { flex: 1; overflow-y: auto; padding: 12px; }
.sidebar-count { font-size: .8rem; color: var(--stone); padding: 8px 4px; }

.list-truck-card {
  display: flex; gap: 12px; padding: 14px; border-radius: var(--radius-md);
  border: 1px solid transparent; cursor: pointer; transition: all .2s;
  margin-bottom: 8px; text-decoration: none; color: inherit;
}
.list-truck-card:hover, .list-truck-card.active { background: var(--amber-light); border-color: var(--amber); }
.ltc-emoji { font-size: 2.5rem; flex-shrink: 0; width: 56px; height: 56px; border-radius: var(--radius-sm); background: var(--cream); display: flex; align-items: center; justify-content: center; }
.ltc-body { flex: 1; min-width: 0; }
.ltc-body h4 { font-weight: 700; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ltc-meta { font-size: .8rem; color: var(--stone); display: flex; gap: 8px; margin-top: 2px; }
.ltc-status { font-size: .75rem; font-weight: 700; }
.ltc-status.open { color: var(--green); }
.ltc-status.closed { color: var(--red); }

#mainMapContainer { flex: 1; position: relative; }
#mainMap { width: 100%; height: 100%; }
.map-fab {
  position: absolute; bottom: 24px; right: 24px; z-index: 500;
  width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  border: none; cursor: pointer; box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  transition: all .2s;
}
.map-fab:hover { transform: scale(1.05); box-shadow: var(--shadow-lg); }

/* ---- TRUCK DETAIL PANEL ---- */
.detail-panel {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 600;
  background: var(--white); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,.15); padding: 20px;
  transform: translateY(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  max-height: 75vh; overflow-y: auto;
}
.detail-panel.open { transform: translateY(0); }
.panel-drag { width: 40px; height: 4px; background: var(--stone-light); border-radius: 2px; margin: 0 auto 16px; }

/* ============ PROFILE PAGES ============ */
.page-wrap { padding-top: calc(var(--nav-h) + 40px); min-height: 100vh; }
.page-hero { background: var(--charcoal); color: var(--white); padding: 60px 0 80px; }
.page-hero h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.65); }

.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 20px 40px; background: var(--cream); }
.auth-card { background: var(--white); border-radius: var(--radius-xl); padding: 48px; width: 100%; max-width: 440px; box-shadow: var(--shadow-lg); border: 1px solid var(--stone-light); }
.auth-card h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.auth-card p { color: var(--stone); margin-bottom: 32px; }

/* ---- FORM ELEMENTS ---- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--stone-light);
  border-radius: var(--radius-md); font-family: var(--font-body); font-size: .95rem;
  background: var(--cream); color: var(--charcoal); transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--amber); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .8rem; color: var(--stone); margin-top: 4px; }

/* ---- PRICING PAGE ---- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  border: 2px solid var(--stone-light); text-align: center; position: relative;
}
.pricing-card.featured { border-color: var(--amber); }
.pricing-featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber); padding: 4px 16px; border-radius: 999px;
  font-size: .8rem; font-weight: 700; color: var(--charcoal);
}
.pricing-price { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: var(--charcoal); margin: 16px 0 4px; }
.pricing-period { color: var(--stone); margin-bottom: 24px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--stone-light); font-size: .9rem; color: var(--stone); }
.pricing-features li::before { content: '✓ '; color: var(--green); font-weight: 700; }

/* ---- DASHBOARD ---- */
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - var(--nav-h)); padding-top: var(--nav-h); }
.dash-sidebar { background: var(--charcoal); padding: 24px 0; }
.dash-nav-item {
  display: flex; align-items: center; gap: 10px; padding: 12px 20px;
  color: rgba(255,255,255,.55); text-decoration: none; font-size: .9rem; font-weight: 500;
  transition: all .15s;
}
.dash-nav-item:hover, .dash-nav-item.active { color: var(--white); background: rgba(255,255,255,.1); }
.dash-nav-item.active { border-left: 3px solid var(--amber); }
.dash-main { background: var(--cream); padding: 40px; overflow-y: auto; }
.dash-title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 8px; }
.dash-sub { color: var(--stone); margin-bottom: 32px; }

.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }
.metric-card { background: var(--white); border-radius: var(--radius-md); padding: 20px; border: 1px solid var(--stone-light); }
.metric-card h4 { font-size: .8rem; color: var(--stone); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.metric-card .metric-val { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--charcoal); }
.metric-card .metric-delta { font-size: .8rem; color: var(--green); margin-top: 4px; }

.subscription-banner {
  background: linear-gradient(135deg, var(--charcoal), #44403C);
  color: var(--white); border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.sub-info h3 { font-family: var(--font-display); font-weight: 700; margin-bottom: 4px; }
.sub-info p { color: rgba(255,255,255,.6); font-size: .9rem; }
.sub-status { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 700; }
.sub-status.active { color: var(--green); }
.sub-status.expired { color: var(--red-light); }

/* ---- TRUCK PROFILE ---- */
.truck-profile { padding-top: var(--nav-h); }
.tp-hero { height: 320px; background: linear-gradient(135deg, #FEF3C7, #FED7AA); display: flex; align-items: center; justify-content: center; font-size: 6rem; position: relative; }
.tp-body { max-width: 860px; margin: 0 auto; padding: 0 20px 60px; }
.tp-header { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-top: -40px; margin-bottom: 32px; flex-wrap: wrap; }
.tp-avatar { width: 80px; height: 80px; background: var(--white); border: 3px solid var(--white); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; box-shadow: var(--shadow-md); flex-shrink: 0; }
.tp-title h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 900; margin-top: 8px; }
.tp-actions { display: flex; gap: 8px; margin-top: 8px; }

.tp-section { margin-bottom: 40px; }
.tp-section h2 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--stone-light); }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px; }
.hour-item { display: flex; justify-content: space-between; font-size: .9rem; padding: 8px 12px; background: var(--cream); border-radius: var(--radius-sm); }
.hour-item.today { background: var(--amber-light); font-weight: 600; }

.review-form { background: var(--cream); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 24px; }
.review-form h3 { font-weight: 700; margin-bottom: 16px; }
.star-picker { display: flex; gap: 4px; margin-bottom: 12px; }
.star-btn { font-size: 1.5rem; cursor: pointer; background: none; border: none; opacity: .3; transition: opacity .15s; }
.star-btn.active { opacity: 1; }

.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.review-item { padding: 16px; background: var(--cream); border-radius: var(--radius-md); border: 1px solid var(--stone-light); }
.review-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }

/* ============ REGISTER TRUCK PAGE ============ */
.register-wrap { min-height: 100vh; padding-top: var(--nav-h); background: var(--cream); }
.register-hero { background: linear-gradient(135deg, var(--charcoal) 60%, #44403c); color: var(--white); padding: 60px 0; }
.register-hero h1 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; }
.register-hero p { color: rgba(255,255,255,.65); font-size: 1.1rem; }

.register-body { max-width: 720px; margin: -40px auto 0; padding: 0 20px 80px; position: relative; }
.register-card { background: var(--white); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--stone-light); }
.steps-indicator { display: flex; gap: 0; margin-bottom: 40px; }
.step-ind {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: relative;
}
.step-ind::before {
  content: ''; position: absolute; top: 14px; left: 50%; width: 100%; height: 2px;
  background: var(--stone-light); z-index: 0;
}
.step-ind:last-child::before { display: none; }
.step-dot {
  width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--stone-light);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700; color: var(--stone); z-index: 1;
  transition: all .2s;
}
.step-ind.done .step-dot { background: var(--amber); border-color: var(--amber); color: var(--charcoal); }
.step-ind.active .step-dot { border-color: var(--amber); color: var(--amber); }
.step-ind span { font-size: .72rem; color: var(--stone); text-align: center; }

/* ---- IMAGE UPLOAD ---- */
.upload-area {
  border: 2px dashed var(--stone-light); border-radius: var(--radius-lg);
  padding: 40px; text-align: center; cursor: pointer; transition: all .2s;
}
.upload-area:hover, .upload-area.dragging { border-color: var(--amber); background: var(--amber-light); }
.upload-area .upload-icon { font-size: 2.5rem; margin-bottom: 12px; }
.upload-area p { color: var(--stone); font-size: .9rem; }

/* ---- PAYMENT ---- */
.payment-card {
  background: var(--white); border: 1px solid var(--stone-light);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px;
}
.card-icons { display: flex; gap: 8px; margin-bottom: 16px; }
.card-icon { padding: 4px 8px; border: 1px solid var(--stone-light); border-radius: 4px; font-size: .7rem; font-weight: 700; }

/* ---- LIST PAGE ---- */
.list-page { padding-top: var(--nav-h); min-height: 100vh; }
.list-header { background: var(--white); border-bottom: 1px solid var(--stone-light); padding: 20px; sticky: top 0; }
.list-controls { max-width: var(--container); margin: 0 auto; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.list-body { max-width: var(--container); margin: 0 auto; padding: 32px 20px; }
.list-body .trucks-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }

/* ---- TOAST ---- */
.toast-container { position: fixed; bottom: 80px; right: 20px; z-index: 3000; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--charcoal); color: var(--white); padding: 12px 20px;
  border-radius: var(--radius-md); font-size: .9rem; box-shadow: var(--shadow-lg);
  animation: slideIn .3s ease, fadeOut .3s ease 2.7s forwards;
  border-left: 3px solid var(--amber);
}
.toast.success { border-color: var(--green); }
.toast.error { border-color: var(--red); }
@keyframes slideIn { from { transform: translateX(100px); opacity: 0; } }
@keyframes fadeOut { to { opacity: 0; transform: translateX(100px); } }

/* ---- LOADING ---- */
.loading { display: flex; align-items: center; justify-content: center; padding: 40px; color: var(--stone); }
.spinner { width: 24px; height: 24px; border: 2px solid var(--stone-light); border-top-color: var(--amber); border-radius: 50%; animation: spin .6s linear infinite; margin-right: 10px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- EMPTY STATE ---- */
.empty-state { text-align: center; padding: 80px 20px; }
.empty-state .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 8px; }
.empty-state p { color: var(--stone); margin-bottom: 24px; }

/* ---- LEAFLET CUSTOM ---- */
.leaflet-container { font-family: var(--font-body); }
.truck-marker {
  background: var(--amber); border: 3px solid var(--white); border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: var(--shadow-md); cursor: pointer; transition: all .2s;
}
.truck-marker:hover, .truck-marker.active { transform: scale(1.15); background: var(--orange); }
.truck-marker.closed { filter: grayscale(.8); opacity: .7; }

.leaflet-popup-content-wrapper { border-radius: var(--radius-md) !important; border: 1px solid var(--stone-light); box-shadow: var(--shadow-md) !important; }
.leaflet-popup-content { margin: 0 !important; }
.popup-inner { padding: 16px; min-width: 200px; }
.popup-inner h4 { font-weight: 700; margin-bottom: 4px; }
.popup-inner small { color: var(--stone); font-size: .8rem; }
.popup-inner .btn { margin-top: 10px; width: 100%; justify-content: center; font-size: .85rem; padding: 8px 16px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 1; }
  .hero-visual { order: 0; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .pro-card { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .map-sidebar { width: 100%; height: 45vh; }
  .map-layout { flex-direction: column; }
  #mainMapContainer { flex: 1; min-height: 55vh; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 40px; }
  .section { padding: 52px 0; }
  .phone-frame { width: 220px; height: 440px; }
  .categories-grid { grid-template-columns: repeat(3,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
  .hero-badge { font-size: .78rem; }
  .pro-card { padding: 32px 24px; }
  .register-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .map-sidebar { height: 50vh; }
  .dash-main { padding: 20px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2,1fr); }
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-xl { padding: 14px 24px; }
}

/* ---- LEAFLET FIX ---- */
.leaflet-control-zoom { border: 1px solid var(--stone-light) !important; box-shadow: var(--shadow-sm) !important; }
.leaflet-control-zoom a { color: var(--charcoal) !important; font-family: var(--font-body) !important; }

/* ---- SKIP LINK (accessibilité) ---- */
.skip-link {
  position: absolute; top: -40px; left: 6px; padding: 8px 16px;
  background: var(--amber); color: var(--charcoal); border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  text-decoration: none; font-weight: 700; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---- UTILITY CLASSES ---- */
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.flex { display: flex; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* ============ ADDITIONS v2 ============ */

/* ---- Promo Banner (truck profile highlight) ---- */
.promo-strip {
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: var(--charcoal); padding: 10px 20px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: .9rem; font-weight: 600;
}
.promo-strip .strip-code {
  background: rgba(0,0,0,.15); padding: 4px 10px; border-radius: 999px;
  font-family: monospace; letter-spacing: .1em;
}

/* ---- Verified badge ---- */
.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--blue-light); color: var(--blue);
  padding: 3px 10px; border-radius: 999px; font-size: .75rem; font-weight: 700;
}

/* ---- Open/Closed indicator dot ---- */
.status-dot {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .82rem; font-weight: 700;
}
.status-dot::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.status-dot.open { color: var(--green); }
.status-dot.open::before { background: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.2); }
.status-dot.closed { color: var(--stone); }
.status-dot.closed::before { background: var(--stone); }

/* ---- Map distance chip ---- */
.dist-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--cream); border: 1px solid var(--stone-light);
  padding: 4px 10px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  color: var(--stone);
}

/* ---- Agenda ---- */
.agenda-date {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
  line-height: 1; color: var(--charcoal);
}
.agenda-month { font-size: .75rem; color: var(--stone); text-transform: uppercase; letter-spacing: .06em; }

/* ---- Skeleton loader ---- */
.skeleton {
  background: linear-gradient(90deg, var(--stone-light) 25%, #f5f5f5 50%, var(--stone-light) 75%);
  background-size: 200% 100%; animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }
.skeleton-card { height: 260px; border-radius: var(--radius-lg); }
.skeleton-text { height: 14px; margin-bottom: 8px; }
.skeleton-text.short { width: 60%; }

/* ---- Notification bell badge ---- */
.notif-bell { position: relative; display: inline-block; }
.notif-count {
  position: absolute; top: -6px; right: -6px;
  background: var(--red); color: var(--white);
  width: 18px; height: 18px; border-radius: 50%; font-size: .65rem;
  font-weight: 700; display: flex; align-items: center; justify-content: center;
}

/* ---- Back to top button ---- */
#backToTop {
  position: fixed; bottom: 80px; right: 20px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%; background: var(--charcoal);
  color: var(--white); border: none; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: all .3s;
  box-shadow: var(--shadow-md);
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { background: var(--amber); color: var(--charcoal); transform: translateY(-2px); }

/* ---- Horizontal scrolling truck row ---- */
.trucks-row {
  display: flex; gap: 20px; overflow-x: auto; padding-bottom: 12px;
  scrollbar-width: thin; scrollbar-color: var(--stone-light) transparent;
}
.trucks-row::-webkit-scrollbar { height: 4px; }
.trucks-row::-webkit-scrollbar-track { background: transparent; }
.trucks-row::-webkit-scrollbar-thumb { background: var(--stone-light); border-radius: 2px; }
.trucks-row .truck-card { min-width: 280px; flex-shrink: 0; }

/* ---- Chip group (selected filters) ---- */
.active-filters { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.active-filter {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--amber-light); color: var(--amber-dark);
  border: 1px solid var(--amber); padding: 4px 10px; border-radius: 999px; font-size: .8rem;
}
.active-filter button { background: none; border: none; cursor: pointer; font-size: .9rem; line-height: 1; padding: 0; color: var(--amber-dark); }

/* ---- Image gallery ---- */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4px; border-radius: var(--radius-lg); overflow: hidden; max-height: 320px; }
.gallery-grid img, .gallery-grid .gallery-ph { width: 100%; height: 100%; object-fit: cover; }
.gallery-ph { background: var(--stone-light); display: flex; align-items: center; justify-content: center; font-size: 2rem; }

/* ---- Floating label input ---- */
.float-group { position: relative; }
.float-group input { padding-top: 20px; padding-bottom: 4px; }
.float-group label {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  font-size: .95rem; color: var(--stone); pointer-events: none; transition: all .2s;
}
.float-group input:focus + label,
.float-group input:not(:placeholder-shown) + label {
  top: 8px; font-size: .72rem; color: var(--amber-dark);
}

/* ---- Progress bar (subscription remaining) ---- */
.progress-bar {
  height: 6px; background: var(--stone-light); border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--amber); border-radius: 3px;
  transition: width 1s ease;
}
.progress-fill.danger { background: var(--red); }
.progress-fill.success { background: var(--green); }

/* ---- Tooltip ---- */
[data-tip] { position: relative; cursor: help; }
[data-tip]::after {
  content: attr(data-tip);
  position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
  background: var(--charcoal); color: var(--white); padding: 6px 10px;
  border-radius: var(--radius-sm); font-size: .78rem; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .15s; z-index: 100;
}
[data-tip]:hover::after { opacity: 1; }

/* ---- Scroll reveal (add class with JS IntersectionObserver) ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: all .5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- PWA install banner ---- */
.pwa-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1999;
  background: var(--white); border-top: 1px solid var(--stone-light);
  padding: 14px 20px; display: flex; align-items: center; gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1); transform: translateY(100%);
  transition: transform .4s ease;
}
.pwa-banner.show { transform: translateY(0); }
.pwa-banner .pwa-icon { font-size: 2rem; flex-shrink: 0; }
.pwa-banner .pwa-text strong { display: block; font-size: .95rem; }
.pwa-banner .pwa-text span { font-size: .82rem; color: var(--stone); }
.pwa-banner .pwa-actions { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }

/* ---- Social share bar ---- */
.share-bar { display: flex; gap: 8px; }
.share-btn {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700; cursor: pointer; border: none; transition: all .2s;
  text-decoration: none; color: var(--white);
}
.share-btn.whatsapp { background: #25D366; }
.share-btn.twitter { background: #1DA1F2; }
.share-btn.copy { background: var(--stone); color: var(--white); }
.share-btn:hover { transform: scale(1.08); }

/* ---- Rating breakdown ---- */
.rating-bars { display: flex; flex-direction: column; gap: 4px; }
.rating-row { display: flex; align-items: center; gap: 8px; font-size: .82rem; }
.rating-row .stars-label { width: 24px; text-align: right; color: var(--stone); }
.rating-row .bar { flex: 1; height: 6px; background: var(--stone-light); border-radius: 3px; overflow: hidden; }
.rating-row .bar-fill { height: 100%; background: var(--amber); border-radius: 3px; }
.rating-row .count { width: 24px; color: var(--stone); }

/* ============ NOMADSPOT ADDITIONS ============ */

/* Home/à-domicile category badge */
.home-badge {
  display: inline-block; background: var(--blue-light); color: var(--blue);
  font-size: .58rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px; margin-bottom: 4px;
}
.category-card.home-cat { border-color: var(--blue-light); }
.category-card.home-cat:hover { border-color: var(--blue); background: var(--blue-light); }

/* Category section label */
.cat-section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  margin-bottom: 12px; display: flex; align-items: center; gap: 7px;
}
.cat-section-label::after { content: ''; flex: 1; height: 1px; background: var(--stone-light); }

/* Nav separator */
.nav-sep { width: 1px; height: 18px; background: var(--stone-light); margin: 0 4px; }

/* Logo em accent */
.logo-text em { font-style: normal; color: var(--orange); font-weight: 900; }

/* Hero cats row */
.hero-cats {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px;
}
.hero-cat-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 6px 13px; border-radius: 999px; font-size: .78rem; font-weight: 600;
  border: 1px solid var(--stone-light); background: var(--white);
  color: var(--stone); text-decoration: none; transition: all .15s;
}
.hero-cat-pill:hover { border-color: var(--amber); color: var(--charcoal); background: var(--amber-light); }

/* Section header row */
.section-label-mini {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber-dark); margin-bottom: 6px;
}

/* Shop card (NomadSpot multi-category) */
.shop-card {
  border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--stone-light); overflow: hidden;
  transition: all .2s; text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--amber); }
.shop-card-img {
  height: 160px; display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative; background: linear-gradient(135deg, #FEF3C7, #FFEDD5);
}
.shop-card-body { padding: 16px 20px; flex: 1; display: flex; flex-direction: column; }
.shop-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.shop-meta { font-size: .82rem; color: var(--stone); display: flex; gap: 10px; margin-bottom: 6px; }
.shop-rating { font-size: .82rem; color: var(--amber-dark); font-weight: 600; }
.shop-cat-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 6px;
}

/* Dashboard preview on index */
.dp-bar-wrap-new {
  display: flex; align-items: flex-end; gap: 5px; height: 72px;
}
.dp-bar-new { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; height: 100%; }
.dp-bar-new span { font-size: .6rem; color: rgba(255,255,255,.4); }
.dp-bar-new div { width: 100%; background: rgba(245,158,11,.3); border-radius: 3px 3px 0 0; }
.dp-bar-new.top div { background: var(--amber); }

/* Next location mini card */
.next-loc-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(245,158,11,.2);
  border-radius: var(--radius-md); padding: 11px 14px;
  display: flex; align-items: center; gap: 10px; margin-top: 14px;
}
.next-loc-card-info { font-weight: 600; font-size: .82rem; color: var(--white); }
.next-loc-card-sub  { font-size: .72rem; color: rgba(255,255,255,.55); }

/* Ticker (ambulant items scroller) */
.ns-ticker { background: var(--amber); padding: 10px 0; overflow: hidden; white-space: nowrap; }
.ns-ticker-track { display: inline-flex; animation: nsTicker 32s linear infinite; }
@keyframes nsTicker { to { transform: translateX(-50%); } }
.ns-ticker-item {
  font-family: var(--font-display); font-size: .9rem; font-weight: 700;
  letter-spacing: .07em; color: var(--charcoal); padding: 0 24px;
}
.ns-ticker-dot { opacity: .4; padding: 0 4px; }

/* Pro features list */
.pro-features li { color: rgba(255,255,255,.8); font-size: .92rem; }

/* Responsive additions */
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-cats { justify-content: center; }
}
@media (max-width: 768px) {
  .categories-grid { grid-template-columns: repeat(2,1fr); }
}
