:root {
  --bg: #faf8f5;
  --bg-warm: #f5f0e8;
  --paper: #ffffff;
  --ink: #2c2c2c;
  --ink-light: #5a5a5a;
  --ink-muted: #6b6b6b;
  --border: #e8e2d9;
  --border-light: #f0ebe3;
  --sage: #e8ede5;
  --sage-deep: #c5d4be;
  --forest: #3d5a3a;
  --forest-light: #5a7a56;
  --forest-muted: #4a7345;
  --clay: #c4a882;
  --clay-light: #d9c4a8;
  --warn: #c9a227;
  --warn-bg: #faf3e0;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 2px 16px rgba(44,44,44,0.06);
  --shadow-lg: 0 8px 40px rgba(44,44,44,0.08);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(250,248,245,0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
}
.logo-mark svg {
  width: 28px; height: 28px;
  fill: none;
  stroke: var(--forest);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink-light);
  font-weight: 400;
  font-size: 0.88rem;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.nav-links a:hover {
  color: var(--forest);
  background: var(--sage);
}
.nav-links a.active {
  color: var(--forest);
  background: transparent;
  font-weight: 500;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--forest);
  padding: 0.25rem;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg-warm);
  padding: 3.5rem 2rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-overline {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.9rem;
  letter-spacing: 0.14em;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
}
.hero p {
  color: var(--ink-light);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
}

.search-bar {
  position: relative;
  display: flex;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
  background: var(--paper);
  padding: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
  color: var(--ink);
}
.search-bar input::placeholder { color: var(--ink-muted); font-weight: 300; }
.search-bar button {
  background: var(--forest);
  color: white;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.search-bar button:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.section-head {
  margin-bottom: 2rem;
  text-align: center;
}
.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}
.section-head p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ===== FILTERS ===== */
.filter-bar {
  background: var(--paper);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.filter-chips::-webkit-scrollbar { display: none; }
.search-bar button.filter-toggle-btn {
  background: var(--paper);
  color: var(--forest);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.search-bar button.filter-toggle-btn:hover { background: var(--sage); border-color: var(--sage-deep); }
.filter-dropdown {
  position: fixed;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  z-index: 200;
  max-height: 70vh;
  overflow-y: auto;
}
.filter-meta-line {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--ink-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-chips { -ms-overflow-style: none; scrollbar-width: none; }
.filter-chip {
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 400;
  transition: all 0.2s ease;
  user-select: none;
  color: var(--ink-light);
  letter-spacing: 0.01em;
}
.filter-chip:hover {
  border-color: var(--sage-deep);
  background: var(--sage);
  color: var(--forest);
}
.filter-chip.active {
  background: var(--forest);
  color: white;
  border-color: var(--forest);
}
.filter-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-actions small {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 300;
}
.btn-text {
  background: none;
  border: none;
  color: var(--forest);
  font-family: inherit;
  font-weight: 500;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.btn-text:hover { opacity: 0.7; }

/* ===== VIEW TABS ===== */
.view-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.view-tab {
  padding: 0.5rem 1.25rem;
  border: none;
  background: none;
  font-family: inherit;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--ink-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}
.view-tab:hover { color: var(--forest); background: var(--sage); }
.view-tab.active {
  color: var(--forest);
  background: var(--sage);
  font-weight: 500;
}

/* ===== SHOP CARDS ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}
.shop-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}
.shop-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--sage-deep);
}
.shop-card-top {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-light);
}
.shop-charity {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
}
.shop-branch {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.shop-meta-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.shop-meta-row span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 300;
}

.cause-bar-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.cause-bar-track {
  flex: 1;
  height: 5px;
  background: var(--border-light);
  border-radius: 100px;
  overflow: hidden;
}
.cause-bar-fill {
  height: 100%;
  background: var(--forest-light);
  border-radius: 100px;
}
.cause-bar-label {
  font-size: 0.72rem;
  color: var(--ink-muted);
  font-weight: 500;
  white-space: nowrap;
}

.shop-card-body {
  padding: 1.25rem 2rem;
  flex: 1;
}

.alert {
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.45;
  font-weight: 400;
}
.alert-need { background: var(--sage); color: var(--forest); }
.alert-pause { background: var(--warn-bg); color: #7a5c00; }

.accept-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.accept-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink-light);
  cursor: help;
  transition: all 0.2s ease;
  font-weight: 400;
}
.accept-item:hover { background: var(--sage); }
.accept-item.no { opacity: 0.4; text-decoration: line-through; }
.accept-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.accept-item.yes .dot { background: var(--forest); }
.accept-item.no .dot { background: var(--ink-muted); }

.shop-card-footer {
  padding: 1rem 2rem 1.75rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.btn {
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.25s ease;
  font-family: inherit;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--forest);
  color: white;
}
.btn-primary:hover { background: var(--forest-light); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--sage); border-color: var(--sage-deep); }
.btn-sm { padding: 0.4rem 0.85rem; font-size: 0.75rem; }

.verified {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.73rem;
  color: var(--ink-muted);
  margin-top: 0.6rem;
  font-weight: 300;
}
.verified.fresh { color: var(--forest-muted); }

/* ===== MAP ===== */
.map-wrap {
  display: none;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
#map {
  height: 550px;
  width: 100%;
}
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  box-shadow: var(--shadow-lg);
}
.leaflet-popup-content { margin: 0.7rem 1rem; }
.popup-charity {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 0.15rem;
  font-weight: 500;
}
.popup-branch { font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 0.5rem; }
.popup-addr { font-size: 0.78rem; color: var(--ink-light); margin-bottom: 0.3rem; font-weight: 300; }
.popup-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.8rem;
  background: var(--forest);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background 0.2s;
}
.popup-link:hover { background: var(--forest-light); }

/* ===== HELPERS PAGE ===== */
.helper-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.helper-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  flex: 1 1 300px;
  max-width: 340px;
}
.helper-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.helper-avatar {
  width: 80px; height: 80px;
  background: var(--sage);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  overflow: hidden;
}
.helper-avatar img { width: 100%; height: 100%; object-fit: cover; }
.helper-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.helper-card .role {
  font-size: 0.85rem;
  color: var(--forest-light);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.helper-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  margin-bottom: 0.6rem;
  font-weight: 300;
  line-height: 1.55;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem 0;
}
.badge {
  padding: 0.35rem 0.85rem;
  background: var(--sage);
  color: var(--forest);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== GUIDE / BLOG / ABOUT CARDS ===== */
.guide-step {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
  margin-bottom: 1.25rem;
  transition: box-shadow 0.3s ease;
}
.guide-step:hover { box-shadow: var(--shadow); }
.guide-step h2, .guide-step h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
  font-weight: 500;
}
.guide-step p, .guide-step li {
  font-size: 0.9rem;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.6;
}
.guide-step ul { margin-left: 1.4rem; margin-top: 0.6rem; }
.guide-step li { margin-bottom: 0.4rem; }
.guide-step a { color: var(--forest); text-decoration: none; border-bottom: 1px solid var(--sage-deep); transition: border-color 0.2s; }
.guide-step a:hover { border-color: var(--forest); }
.guide-step a.btn-primary { color: white; border-bottom: none; }
.guide-step a.btn-primary:hover { border-color: transparent; }
.guide-step a.btn-ghost { color: var(--forest); border-bottom: none; }
.guide-step strong { color: var(--ink); font-weight: 500; }
.warn-inline { color: var(--clay); font-weight: 500; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.35s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-body {
  padding: 1.75rem;
}
.blog-card .tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--forest-muted);
  background: var(--sage);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.7rem;
}
.blog-card .tag-behind-the-scenes { background: var(--sage); color: var(--forest); }
.blog-card .tag-money { background: var(--warn-bg); color: #7a5c00; }
.blog-card .tag-cost-of-living { background: var(--border-light); color: var(--forest-light); }
.blog-card .tag-market-traders { background: var(--clay); color: var(--ink); }
.blog-card .tag-community { background: var(--sage-deep); color: var(--forest); }
.blog-card .tag-sustainable-fashion { background: var(--bg-warm); color: var(--forest-muted); }
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--forest);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
  font-weight: 600;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--ink-light);
  font-weight: 300;
  line-height: 1.55;
}

/* ===== MODALS ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,0.35);
  z-index: 2000;
  display: none;
  place-items: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}
.modal-overlay.active { display: grid; }
.modal {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-header {
  padding: 1.75rem 2rem 1rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--forest);
  font-weight: 500;
}
.modal-close {
  background: var(--bg);
  border: none;
  width: 36px; height: 36px;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink-muted);
  line-height: 1;
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--ink); }
.modal-body { padding: 1.5rem 2rem; }
.modal-footer {
  padding: 1rem 2rem 2rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 4px var(--sage);
  background: var(--paper);
}
#guideSearchInput:focus {
  border-color: var(--sage-deep);
  box-shadow: 0 0 0 4px var(--sage);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-hint {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.3rem;
  font-weight: 300;
}

.cond-list {
  display: grid;
  gap: 0.85rem;
}
.cond-item {
  padding: 1rem;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--sage-deep);
}
.cond-item h3 {
  font-size: 0.88rem;
  color: var(--forest);
  margin-bottom: 0.25rem;
  font-weight: 500;
}
.cond-item p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.5;
  font-weight: 300;
}
.cond-item .warn {
  color: var(--clay);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-warm);
  color: var(--ink-muted);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}
.site-footer .logo {
  color: var(--forest);
  margin-bottom: 0.75rem;
  justify-content: center;
}
.site-footer p {
  font-size: 0.85rem;
  font-weight: 300;
}
.site-footer .footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.site-footer .footer-links a {
  color: var(--forest-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.site-footer .footer-links a:hover { color: var(--forest); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { height: 64px; padding: 0 1.25rem; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; padding: 0.75rem 1.25rem; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem; width: 100%; }
  .mobile-toggle { display: block; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero-stats { gap: 2rem; }
  .search-bar { flex-wrap: wrap; gap: 0.5rem; }
  .search-bar input { flex: 1 1 100%; }
  .search-bar button { justify-content: center; }
  .search-bar button.filter-toggle-btn { flex: 0 0 auto; }
  .search-bar button:not(.filter-toggle-btn) { flex: 1 1 auto; }
  .container { padding: 2rem 1.25rem; }
  .shop-grid { grid-template-columns: 1fr; }
  #map { height: 380px; }
  .filter-chips { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; justify-content: flex-start; mask-image: linear-gradient(to right, black calc(100% - 28px), transparent 100%); -webkit-mask-image: linear-gradient(to right, black calc(100% - 28px), transparent 100%); }
  .filter-chips.filter-dropdown { flex-wrap: wrap; overflow-x: visible; overflow-y: auto; max-height: 55vh; justify-content: flex-start; mask-image: none; -webkit-mask-image: none; }
  .accept-grid { grid-template-columns: 1fr; }
  .shop-card-top, .shop-card-body { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.hidden { display: none !important; }
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }

/* ===== FLOATING ACTION BUTTON ===== */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--forest);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,71,42,0.25);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 900;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  pointer-events: none;
}
.fab.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(26,71,42,0.35);
}
.fab svg {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .fab {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.8rem 1.25rem;
    font-size: 0.8rem;
  }
}
