/* ─── Mint District — Premium Design System ─────────────────────────────────
   Pinterest-inspired, scroll-first, editorial layout.
   ──────────────────────────────────────────────────────────────────────────── */

/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  --bg:             #faf9f7;
  --fg:             #1a1a1a;
  --card:           #ffffff;
  --border:         #e8e6e3;
  --muted:          #6b6966;
  --sage:           hsl(155 28% 48%);
  --sage-light:     hsl(155 20% 93%);
  --sage-dark:      hsl(155 35% 32%);
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:      0 12px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  --radius:         12px;
  --radius-lg:      16px;
  --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Base ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  line-height: 1.5;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* ── Site nav ──────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-logo:hover { opacity: 0.7; }

.browse-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.2s var(--ease);
}

.browse-link:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
  border-color: var(--sage);
}

/* ── Page wrapper ──────────────────────────────────────────────────────────── */
.district-page { min-height: 100vh; }

/* ── District hero (typographic — NO image overlay) ────────────────────────── */
.district-hero {
  max-width: 40rem;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.hero-breadcrumb a:hover { color: var(--sage-dark); }

.hero-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin: 0 0 1rem;
}

.hero-intro {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 34rem;
}

/* Decorative product thumbnails row */
.hero-thumbnails {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.hero-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.hero-thumb:hover {
  transform: scale(1.1);
  border-color: var(--sage);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 640px) {
  .hero-thumb { width: 64px; height: 64px; }
  .district-hero { padding: 4.5rem 1.5rem 2.5rem; }
}

/* ── Brand list ────────────────────────────────────────────────────────────── */
.brand-list {
  max-width: 32rem;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Brand card ────────────────────────────────────────────────────────────── */
.brand-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ── In-card carousel ──────────────────────────────────────────────────────── */
.card-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f5f4f2;
  overflow: hidden;
}

.card-media:hover .slide-btn { opacity: 1; }

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.carousel-track:active { cursor: grabbing; }
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  background: #f5f4f2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease);
}

.brand-card:hover .carousel-slide img {
  transform: scale(1.03);
}

/* Product name badge */
.product-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(26, 26, 26, 0.75);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
  max-width: calc(100% - 1.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
}

/* Prev/next arrow buttons */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border: none;
  color: var(--fg);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.25s, background 0.2s, transform 0.2s;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.slide-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.slide-btn:disabled { opacity: 0 !important; pointer-events: none; }

.slide-prev { left: 0.6rem; }
.slide-next { right: 0.6rem; }

/* ── Card body ─────────────────────────────────────────────────────────────── */
.card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--fg);
  margin: 0;
  letter-spacing: -0.025em;
}

.brand-location {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.category-badge {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.brand-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── Expandable story ──────────────────────────────────────────────────────── */
.story-toggle {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--sage-dark);
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  padding: 0.7rem 0 0;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
  letter-spacing: 0.02em;
}

.story-toggle:hover { color: var(--sage); }

.story-body {
  display: none;
  padding: 0.5rem 0 0;
  animation: fadeIn 0.25s var(--ease);
}

.story-body.open { display: block; }

.story-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Card CTA ──────────────────────────────────────────────────────────────── */
.enter-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--sage-dark);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s;
  align-self: flex-start;
  letter-spacing: 0.01em;
}

.enter-store-btn:hover {
  background: var(--sage);
  transform: translateY(-1px);
}

/* ── Related districts ─────────────────────────────────────────────────────── */
.related-section {
  max-width: 40rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
  border-top: 1px solid var(--border);
}

.related-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.85rem;
}

.related-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.related-pill {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  text-decoration: none;
  background: var(--sage-light);
  color: var(--sage-dark);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
}

.related-pill:hover {
  background: var(--sage-dark);
  color: #fff;
}

/* ── Home page ─────────────────────────────────────────────────────────────── */
.home-hero {
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
  max-width: 40rem;
  margin: 0 auto;
}

.home-hero h1 {
  font-size: clamp(2.25rem, 7vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--fg);
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.home-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.7;
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

@media (max-width: 400px) {
  .districts-grid { grid-template-columns: 1fr; }
}

.district-tile {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.district-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.tile-img-wrap {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f5f4f2;
}

.tile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.district-tile:hover .tile-img {
  transform: scale(1.05);
}

.tile-body {
  padding: 0.9rem 1rem;
}

.tile-category {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 0.2rem;
}

.tile-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

/* ── Mobile ────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .district-hero { padding: 2.5rem 1.25rem 1.5rem; }
  .card-body { padding: 1rem 1.15rem 1.15rem; }
  .slide-btn { display: none; }
  .home-hero { padding: 3rem 1.25rem 2rem; }
}

/* ── District Guide ────────────────────────────────────────────────────────── */
.district-guide {
  max-width: 620px;
  margin: 2.5rem auto;
  padding: 1.75rem 2rem;
  border-top: 2px solid var(--sage-light);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.district-guide h2 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 0 0 0.85rem;
}

.district-guide p {
  margin: 0;
  color: var(--muted);
}

/* ── FAQ Section ───────────────────────────────────────────────────────────── */
.faq-section {
  max-width: 620px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.faq-section h2 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 0 0 1rem;
}

.faq-section details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-section details + details {
  margin-top: 0;
}

.faq-section summary {
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--fg);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  user-select: none;
  -webkit-user-select: none;
}

.faq-section summary::-webkit-details-marker { display: none; }

.faq-section summary::after {
  content: '+';
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--sage);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s var(--ease);
}

.faq-section details[open] summary::after {
  transform: rotate(45deg);
  color: var(--sage-dark);
}

.faq-section details[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-section details p {
  margin: 0;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Reduced motion ────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ─── NEW FEATURES — Production-readiness upgrade ────────────────────────── */

/* ── Logo wordmark ──────────────────────────────────────────────────────────── */
.logo-mark {
  color: var(--sage-dark);
  font-weight: 800;
  font-size: 1.1rem;
}
.logo-word {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-left: 1px;
}

/* ── Nav actions ────────────────────────────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s var(--ease);
}
.nav-btn:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
  border-color: var(--sage);
}
.picks-count {
  background: var(--sage-dark);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
  min-width: 16px;
  text-align: center;
}

/* ── Search overlay ─────────────────────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10vh;
}
.search-overlay[hidden] { display: none; }
.search-modal {
  width: min(640px, calc(100vw - 2rem));
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: var(--fg);
}
.search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0.25rem;
}
.search-results { max-height: 400px; overflow-y: auto; }
.search-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  text-decoration: none;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.search-result:hover { background: var(--sage-light); }
.sr-icon { font-size: 1rem; flex-shrink: 0; }
.sr-name { font-weight: 600; font-size: 0.9rem; }
.sr-sub { font-size: 0.78rem; color: var(--muted); margin-left: auto; }
.search-hint { padding: 1rem 1.25rem; color: var(--muted); font-size: 0.8rem; margin: 0; }
.search-empty { padding: 1.5rem; color: var(--muted); font-size: 0.9rem; text-align: center; }
.search-icon-inner { flex-shrink: 0; color: var(--muted); }

/* ── Save button ────────────────────────────────────────────────────────────── */
.save-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  transition: color 0.2s, transform 0.2s;
  margin-left: auto;
  flex-shrink: 0;
}
.save-btn:hover {
  color: var(--sage-dark);
  transform: scale(1.15);
}
.save-btn.saved { color: var(--sage-dark); }
.save-btn.saved svg { fill: var(--sage-dark); }

/* ── Category filter chips (home page) ──────────────────────────────────────── */
.category-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0 1.5rem 1.5rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.filter-chip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--muted);
  transition: all 0.2s var(--ease);
}
.filter-chip:hover {
  border-color: var(--sage);
  color: var(--sage-dark);
}
.filter-chip.active {
  background: var(--sage-dark);
  color: #fff;
  border-color: var(--sage-dark);
}
.chip-count {
  font-weight: 400;
  opacity: 0.7;
  margin-left: 0.25rem;
}

/* ── Home tile enhancements ──────────────────────────────────────────────────── */
.tile-img-wrap { position: relative; }
.tile-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.tile-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.25rem 0 0;
  line-height: 1.5;
}
.home-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.75rem auto 0;
}

/* ── Related district cards ──────────────────────────────────────────────────── */
.related-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
  border-top: 1px solid var(--border);
}
.related-heading {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}
.related-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 640px) {
  .related-cards { grid-template-columns: 1fr; }
}
.related-card {
  text-decoration: none;
  color: var(--fg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: block;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.related-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-card-body { padding: 0.75rem; }
.related-card-cat {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.related-card-name {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0.2rem 0 0;
}

/* ── Site footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding: 3rem 1.5rem 2rem;
  background: var(--card);
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo { margin-bottom: 0.75rem; display: inline-flex; }
.footer-tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0.5rem 0 0;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.25rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--sage-dark); }
.footer-bottom {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--muted); margin: 0; }
.footer-bottom a { font-size: 0.78rem; color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--sage-dark); }

/* ── Share button ────────────────────────────────────────────────────────────── */
.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  gap: 0.75rem;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  letter-spacing: 0.01em;
}
.share-btn:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
  border-color: var(--sage);
}

/* ── Lazy-hidden home tiles (infinite scroll) ────────────────────────────────── */
.lazy-hidden { display: none !important; }

/* ── Picks page ──────────────────────────────────────────────────────────────── */
.picks-grid {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.picks-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.picks-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.picks-brand-name { font-weight: 700; font-size: 1rem; margin: 0; }
.remove-pick {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1.2rem;
  padding: 0;
  line-height: 1;
}
.remove-pick:hover { color: #c0392b; }
.picks-tagline { font-size: 0.85rem; color: var(--muted); margin: 0 0 0.75rem; }
.picks-district-link {
  font-size: 0.8rem;
  color: var(--sage-dark);
  text-decoration: none;
  display: block;
  margin-top: 0.5rem;
}
.picks-empty { text-align: center; padding: 4rem 1rem; color: var(--muted); }
