/* =========================================
   VARIABLES & BASE STYLES
   ========================================= */
:root {
  /* Primary Color Palette */
  --color-primary: #2e6e32;
  --color-primary-light: #4a8a4e;
  --color-primary-dark: #1c4b1f;
  
  /* Secondary Colors */
  --color-accent: #e67e22;
  --color-accent-light: #f39c12;
  --color-accent-dark: #d35400;
  
  /* Neutrals */
  --color-bg: #fcfaf7;
  --color-text: #2d3436;
  --color-text-light: #636e72;
  --color-border: #dfe6e9;
  
  /* Category Colors */
  --color-farm: #27ae60;
  --color-cafe: #e67e22;
  --color-meat: #c0392b;
  --color-dairy: #3498db;
  --color-veggies: #8e44ad;
  --color-honey: #f1c40f;
  
  /* UI Elements */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  
  /* Layout */
  --container-width: 1320px;
  --header-height: 80px;
  --section-spacing: 6rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 1rem;
  color: var(--color-text);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

p {
  margin: 0 0 1.5rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.main-header {
  background: var(--color-primary);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.05);
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  color: var(--color-accent);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.nav-item {
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 0.6rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  border-radius: var(--radius-sm);
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}

.nav-icon {
  font-size: 0.9rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform var(--transition-fast);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-banner {
  position: relative;
  padding: 5rem 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background-image: image-set(url('/images/warmland-4454471.webp') type('image/webp'), url('/images/warmland-4454471.jpg') type('image/jpeg')); 
  background-size: cover; 
  background-position: center; 
  z-index: -2; 
}

/* Cloud shadows animation - works with parallax */
.hero-image::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: 
    radial-gradient(ellipse 1200px 600px at 25% 40%, rgba(0, 0, 0, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 900px 450px at 65% 25%, rgba(0, 0, 0, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 1100px 550px at 85% 65%, rgba(0, 0, 0, 0.22) 0%, transparent 58%),
    radial-gradient(ellipse 800px 400px at 15% 75%, rgba(0, 0, 0, 0.18) 0%, transparent 50%);
  animation: cloudShadows 80s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes cloudShadows {
  0% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  20% {
    transform: translate(-8%, 5%);
    opacity: 0.8;
  }
  40% {
    transform: translate(-15%, -3%);
    opacity: 0.7;
  }
  60% {
    transform: translate(-10%, 7%);
    opacity: 0.9;
  }
  80% {
    transform: translate(-4%, 2%);
    opacity: 0.75;
  }
  100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
}

/* Parallax specific styles */
.hero-banner.parallax .hero-image {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

/* Subtle parallax depth using transform (progressive enhancement) */
.hero-banner.parallax {
  perspective: 1px;
  overflow-x: hidden;
}

.hero-banner.parallax .hero-image {
  transform: translateZ(-0.4px) scale(1.4);
  will-change: transform;
}

/* Ensure cloud shadows work with parallax */
.hero-banner.parallax .hero-image::after {
  /* Counteract the parallax transform slightly */
  transform: translateZ(0.2px) scale(0.85);
  animation: cloudShadowsParallax 80s ease-in-out infinite;
}

@keyframes cloudShadowsParallax {
  0% {
    transform: translateZ(0.2px) scale(0.85) translate(0, 0);
    opacity: 0.6;
  }
  20% {
    transform: translateZ(0.2px) scale(0.85) translate(-8%, 5%);
    opacity: 0.8;
  }
  40% {
    transform: translateZ(0.2px) scale(0.85) translate(-15%, -3%);
    opacity: 0.7;
  }
  60% {
    transform: translateZ(0.2px) scale(0.85) translate(-10%, 7%);
    opacity: 0.9;
  }
  80% {
    transform: translateZ(0.2px) scale(0.85) translate(-4%, 2%);
    opacity: 0.75;
  }
  100% {
    transform: translateZ(0.2px) scale(0.85) translate(0, 0);
    opacity: 0.6;
  }
}

/* Reduce motion preference - respect accessibility */
@media (prefers-reduced-motion: reduce){
  .hero-banner.parallax .hero-image {
    transform: none;
    background-attachment: scroll;
  }
  
  .hero-image::after {
    animation: none;
    opacity: 0.5;
  }
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  color: #fff;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* =========================================
   SEARCH COMPONENTS
   ========================================= */
.search-container {
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  transition: all var(--transition-fast);
  overflow: hidden;
}

.search-box:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 110, 50, 0.2);
}

.search-icon {
  color: var(--color-text-light);
  margin-left: 1rem;
}

.search-box input {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  background: transparent;
  color: var(--color-text);
}

.search-box input:focus {
  outline: none;
}

.clear-btn {
  background: transparent;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 0.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  font-size: 1.1rem;
  position: absolute;
  right: 52px; /* Position before the geo button */
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.clear-btn:hover {
  color: #dc3545;
  background: rgba(220, 53, 69, 0.1);
}

.icon-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0.75rem 1.25rem;
  height: 100%;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.search-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chips-scroll {
  margin: 1.25rem 0;
  overflow-x: auto;
  padding: 0.5rem 0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.chips-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari/Opera */
}

.chips {
  display: flex;
  gap: 0.75rem;
  min-width: min-content;
}

.chip {
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  color: var(--color-text);
}

.chip:hover {
  background: #eaeaea;
  transform: translateY(-1px);
}

.chip-icon {
  color: var(--color-primary);
}

.chip.active, .chip[aria-pressed="true"] {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.chip.active .chip-icon, .chip[aria-pressed="true"] .chip-icon {
  color: #fff;
}

/* =========================================
   PROMPT SUGGESTIONS
   ========================================= */
.prompt-banner {
  background: var(--color-primary-dark);
  color: #fff;
  padding: 0.75rem 0;
}

.prompt-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prompt-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.prompt-examples {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.prompt-label {
  font-weight: 500;
  white-space: nowrap;
  margin: 0;
}

.prompt-carousel {
  position: relative;
  height: 1.5rem;
  overflow: hidden;
  flex: 1;
}

.prompt-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-style: italic;
  cursor: pointer;
  user-select: none;
}

.prompt-item.active {
  opacity: 1;
  transform: translateY(0);
}

.prompt-item:hover {
  text-decoration: underline;
  opacity: 0.9;
}

/* =========================================
   RESULT LAYOUT
   ========================================= */
.result-shell {
  padding: 3rem 0;
}

.split {
  display: flex;
  gap: 2rem;
  min-height: 520px;
}

.map-pane {
  flex: 1;
  position: relative;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map {
  width: 100%;
  height: 100%;
  background: #e5e5e5;
  border-radius: var(--radius-lg);
}

/* Sticky map on desktop for side-by-side layout */
@media (min-width: 992px) {
  .card.shadow-sm[style*="position: sticky"] {
    position: sticky !important;
    top: 100px;
  }
}

/* Mobile: Stack vertically */
@media (max-width: 991px) {
  #resultsContainer .row {
    flex-direction: column-reverse;
  }
  
  #resultsContainer .col-lg-6 {
    width: 100%;
  }
  
  .card.shadow-sm[style*="position: sticky"] {
    position: relative !important;
  }
  
  #resultMapContainer {
    height: 400px !important;
  }
}

/* Ensure overlay is always above Leaflet panes and avoid flicker */
.map-overlay {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 10000 !important; /* very high to sit above Leaflet panes */
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); /* promote to own layer to reduce repaint flicker */
  transition: none !important; /* avoid CSS transitions that can cause flicker */
}

/* Lower Leaflet control container stacking to avoid overlap issues */
.leaflet-control-container {
  z-index: 5000 !important;
}

/* Allow controls inside Leaflet container to receive pointer events normally */
.leaflet-control-container * { pointer-events: auto; }

.map-tools {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  pointer-events: auto;
  will-change: transform, opacity;
}

.map-tool-btn {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast), transform 0.12s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  pointer-events: auto;
  touch-action: manipulation;
}

.map-tool-btn:hover { background: #f6f6f6; transform: translateY(-2px); }

/* Ensure the overlay isn't hidden by leaflet panes that sometimes get higher z-index via JS */
.leaflet-control-container .map-overlay { z-index: 10000; }

.list-pane {
  width: 450px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  background: #f9f9f9;
}

.count {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.count:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

.result-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sort-select {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}

.view-toggle {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}

.sheet-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

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

.live-results {
  padding: 1.25rem;
  overflow: auto;
  flex: 1;
  scroll-behavior: smooth;
}

/* =========================================
   PLACE CARDS
   ========================================= */
.place-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.place-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}

.place-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  cursor: pointer;
}

.place-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.place-card:hover:before {
  opacity: 1;
}

.place-card-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  background: #f5f5f5;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.place-card-content {
  flex: 1;
  padding: 0;
  min-width: 0;
}

.place-card .card-head {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
}

.place-card strong {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.place-card-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.place-card-description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin: 0.5rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.status-open {
  color: #27ae60;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.status-open:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #27ae60;
  border-radius: 50%;
}

.status-closed {
  color: #e74c3c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.status-closed:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
}

.place-card .mini {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.35rem;
}

.mini-badges {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.badge-inline {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #eef0e8;
  color: var(--color-primary-dark);
}

.place-card .card-actions {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.act-btn {
  background: #f5f5f5;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.act-btn:hover {
  background: #eaeaea;
  text-decoration: none;
}

.act-btn.primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.act-btn.primary:hover {
  background: var(--color-primary-light);
  color: #fff;
}

.fav-btn {
  background: rgba(255,255,255,0.95);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
  color: #aaa;
}

.fav-btn.on {
  color: #e74c3c;
}

.fav-btn:hover {
  transform: scale(1.1);
}

/* =========================================
   NEW HERO SECTION WITH INTEGRATED SEARCH
   ========================================= */
.hero-banner-new {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: image-set(
    url('/images/warmland-4454471.webp') type('image/webp'),
    url('/images/warmland-4454471.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(46, 110, 50, 0.85) 0%, rgba(46, 110, 50, 0.65) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-large {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

.hero-subtitle-large {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero-search-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  margin-bottom: 2rem;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-icon-large {
  position: absolute;
  left: 1.25rem;
  font-size: 1.25rem;
  color: var(--color-primary);
  pointer-events: none;
  z-index: 2;
}

.search-input-large {
  flex: 1;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem;
  font-size: 1.1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  background: white;
}

.search-input-large:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 110, 50, 0.1);
}

.clear-btn-large {
  position: absolute;
right: 180px;
  background: transparent;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.clear-btn-large:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.geo-btn-large {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.geo-btn-large:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 110, 50, 0.3);
}

.geo-btn-large i {
  font-size: 1.1rem;
}

.suggest-large {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
}

.suggest-large.hidden {
  display: none;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.hero-chip {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid transparent;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
}

.hero-chip:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-chip i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.hero-chip.active,
.hero-chip[aria-pressed="true"] {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.hero-chip.active i,
.hero-chip[aria-pressed="true"] i {
  color: white;
}

/* Advanced filters */
.advanced-filters {
  background: #f8f9fa;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.sticky-map {
  position: sticky;
  top: 100px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-banner-new {
    min-height: 500px;
 padding: 2rem 0;
  }

  .hero-title-large {
    font-size: 2.25rem;
  }

  .hero-subtitle-large {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-search-box {
  padding: 1rem;
  }

  .search-input-large {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 3rem;
  }

  .geo-btn-large .btn-text {
    display: none;
  }

  .geo-btn-large {
    padding: 1rem 1.25rem;
  }

  .hero-chips {
    gap: 0.5rem;
  }

  .hero-chip {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .sticky-map {
    position: relative;
    top: 0;
  }
}

/* =========================================
   HERO SECTION (OLD - Keep for fallback)
   ========================================= */
.hero-banner {
