@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --background: 220 20% 97%;
  --foreground: 220 30% 12%;
  --card: 0 0% 100%;
  --card-foreground: 220 30% 12%;
  --primary: 220 72% 45%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 15% 94%;
  --secondary-foreground: 220 30% 12%;
  --muted: 220 14% 92%;
  --muted-foreground: 220 10% 48%;
  --accent: 25 95% 55%;
  --accent-foreground: 0 0% 100%;
  --border: 220 15% 90%;
  --ring: 220 72% 45%;
  --radius: 0.625rem;
  --coupon-badge: 152 55% 42%;
  --coupon-badge-foreground: 0 0% 100%;
  --shadow-sm: 0 1px 3px 0 hsl(220 30% 50% / 0.06), 0 1px 2px -1px hsl(220 30% 50% / 0.06);
  --shadow-md: 0 4px 16px -2px hsl(220 30% 50% / 0.08), 0 2px 4px -2px hsl(220 30% 50% / 0.04);
  --shadow-lg: 0 10px 32px -4px hsl(220 30% 50% / 0.12), 0 4px 8px -4px hsl(220 30% 50% / 0.04);
}

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

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.font-display { font-family: 'Space Grotesk', 'DM Sans', system-ui, sans-serif; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea { font: inherit; color: inherit; }

/* Container */
.container { width: 100%; max-width: 920px; margin: 0 auto; padding: 0 16px; }
.container-sm { max-width: 448px; }
.container-md { max-width: 672px; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.logo-text { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.logo-primary { color: hsl(var(--primary)); }
.logo-accent { color: hsl(var(--accent)); }

.nav-desktop { display: none; align-items: center; gap: 4px; flex: 1; justify-content: center; }
@media (min-width: 640px) { .nav-desktop { display: flex; } }

.nav-link {
  padding: 6px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: hsl(var(--muted-foreground)); transition: all 0.15s;
}
.nav-link:hover { color: hsl(var(--foreground)); background: hsl(var(--secondary)); }
.nav-link.active { color: hsl(var(--primary)); background: hsl(var(--primary) / 0.05); }

.header-actions { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; transition: background 0.15s;
}
.icon-btn:hover { background: hsl(var(--secondary)); }
.icon-btn svg { width: 18px; height: 18px; color: hsl(var(--muted-foreground)); }

.menu-btn { display: flex; }
@media (min-width: 640px) { .menu-btn { display: none; } }

.mobile-nav {
  display: none; border-top: 1px solid hsl(var(--border));
  background: hsl(var(--card)); padding: 8px 16px;
}
.mobile-nav.open { display: block; }
@media (min-width: 640px) { .mobile-nav { display: none !important; } }

.mobile-nav a {
  display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: hsl(var(--muted-foreground)); transition: all 0.15s;
}
.mobile-nav a:hover { color: hsl(var(--foreground)); background: hsl(var(--secondary)); }
.mobile-nav a.active { color: hsl(var(--primary)); background: hsl(var(--primary) / 0.05); }

/* Header search */
.header-search { display: flex; align-items: center; gap: 8px; 
  position: relative;
  width: 220px; height: 36px;
  overflow: hidden;
  border-radius: 8px; background: hsl(var(--secondary)); border: none;
  font-size: 14px; color: hsl(var(--foreground));
}
.header-search-input {

}

@media(max-width: 768px){
  .header-search{
    width: 172px;
  }
}

.header-search-input button{
  width: 50px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
}

.header-search-input input {
  width: 100%;
  height: auto;
  background: transparent;
  padding: 0 15px;
  height: 36px;
}
@media (min-width: 640px) { .header-search-input input {  } }
.header-search-input input::placeholder { color: hsl(var(--muted-foreground)); }
.header-search-input svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: hsl(var(--muted-foreground)); pointer-events: none;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--card)); margin-top: auto; padding: 24px 0;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 12px; color: hsl(var(--muted-foreground));
}
.footer-links { display: flex; gap: 20px; }
.footer-links a:hover { color: hsl(var(--foreground)); }
.footer-copy { color: hsl(var(--muted-foreground) / 0.6); }

/* ===== HERO ===== */
.hero {
  background: hsl(var(--card)); border-bottom: 1px solid hsl(var(--border));
  padding: 40px 0;
}
@media (min-width: 640px) { .hero { padding: 56px 0; } }
.hero-inner { text-align: center; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 8px;
}
@media (min-width: 640px) { .hero h1 { font-size: 32px; } }
.hero p { font-size: 14px; color: hsl(var(--muted-foreground)); max-width: 448px; margin: 0 auto 24px; }

/* Search bar */
.search-bar { max-width: 448px; margin: 0 auto; position: relative; }
.search-bar input {
  width: 100%; height: 44px; padding-left: 44px; padding-right: 16px;
  border-radius: 12px; background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  font-size: 14px; transition: all 0.15s;
}
.search-bar input::placeholder { color: hsl(var(--muted-foreground)); }
.search-bar input:focus {
  outline: none; box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
  border-color: hsl(var(--primary) / 0.3);
}
.search-bar svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: hsl(var(--muted-foreground)); pointer-events: none;
}

/* ===== SECTIONS ===== */
.section { padding: 32px 0; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700;
}
@media (min-width: 640px) { .section-title { font-size: 18px; } }
.section-link {
  font-size: 12px; color: hsl(var(--primary)); font-weight: 500;
  display: flex; align-items: center; gap: 2px;
}
.section-link:hover { text-decoration: underline; }
.section-subtitle { font-size: 11px; color: hsl(var(--muted-foreground)); }

/* ===== STORE CARD ===== */
.stores-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .stores-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .stores-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .stores-grid { grid-template-columns: repeat(6, 1fr); } }

.stores-grid-5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (min-width: 640px) { .stores-grid-5 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .stores-grid-5 { grid-template-columns: repeat(5, 1fr); } }

.store-card {
  background: hsl(var(--card)); border-radius: 12px; border: 1px solid hsl(var(--border));
  padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: all 0.2s; text-decoration: none;
}
@media (min-width: 640px) { .store-card { padding: 20px; } }
.store-card:hover { border-color: hsl(var(--primary) / 0.25); box-shadow: var(--shadow-md); }
.store-card-logo { width: 100%; height: 48px; display: flex; align-items: center; justify-content: center; }
.store-card-logo img { max-width: 80px; max-height: 40px; object-fit: contain; }
.store-card-info { text-align: center; width: 100%; }
.store-card-name {
  font-size: 12px; font-weight: 600; display: block;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  transition: color 0.15s;
}
.store-card:hover .store-card-name { color: hsl(var(--primary)); }
.store-card-count { font-size: 11px; color: hsl(var(--muted-foreground)); margin-top: 2px; display: block; }

@media(max-width: 639px){
  .store-card-logo img {
    max-width: 100%;
  }
}

/* ===== COUPON CARD ===== */
.coupon-card {
  background: hsl(var(--card)); border-radius: 12px; border: 1px solid hsl(var(--border));
  overflow: hidden; transition: all 0.2s;
}
.coupon-card:hover { border-color: hsl(var(--primary) / 0.15); }
.coupon-card-inner { display: flex; align-items: stretch; }
.coupon-badge {
  flex-shrink: 0; width: 88px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-right: 1px dashed hsl(var(--border)); padding: 12px;
}
@media (min-width: 640px) { .coupon-badge { width: 100px; } }
.coupon-badge-discount {
  color: hsl(var(--primary)); font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 18px; line-height: 1; text-align: center;
}
@media (min-width: 640px) { .coupon-badge-discount { font-size: 20px; } }
.coupon-badge-type {
  font-size: 10px; color: hsl(var(--muted-foreground)); margin-top: 6px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em;
}
.coupon-content {
  flex: 1; padding: 14px 16px; min-width: 0;
  display: flex; flex-direction: column; justify-content: space-between; gap: 8px;
}
.coupon-title {
  font-size: 13px; font-weight: 600; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .coupon-title { font-size: 14px; } }
.coupon-desc {
  font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 4px;
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.coupon-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 4px; }
.coupon-meta { display: flex; align-items: center; gap: 12px; font-size: 10px; color: hsl(var(--muted-foreground)); }
@media (min-width: 640px) { .coupon-meta { font-size: 11px; } }
.coupon-meta span { display: flex; align-items: center; gap: 4px; }
.coupon-meta svg { width: 12px; height: 12px; }
.coupon-meta .verified svg { color: hsl(var(--coupon-badge)); }

.btn-coupon {
  flex-shrink: 0; display: inline-flex; align-items: stretch;
  height: 38px; border-radius: 8px; overflow: hidden;
  font-size: 12px; font-weight: 700; transition: opacity 0.15s, transform 0.15s; white-space: nowrap;
  border: 1.5px solid hsl(var(--coupon-badge));
  box-shadow: 0 2px 8px hsl(var(--coupon-badge) / 0.3);
}
@media (min-width: 640px) { .btn-coupon { height: 42px; font-size: 13px; } }
.btn-coupon:hover { opacity: 0.88; }
.btn-coupon:active { transform: scale(0.97); }
.btn-coupon-label {
  background: hsl(var(--coupon-badge)); color: hsl(var(--coupon-badge-foreground));
  padding: 0 16px; display: flex; align-items: center;
}
.btn-coupon-code {
  padding: 0 7px; display: flex; align-items: center;
  background: #fff; color: hsl(var(--coupon-badge));
  border-left: 1.5px dashed hsl(var(--coupon-badge) / 0.5);
  font-family: monospace; font-size: 11px; letter-spacing: 1.5px; font-weight: 700;
  max-width: 42px; overflow: hidden; position: relative;
}
.btn-coupon-code::after {
  content: ''; position: absolute; right: 0; top: 0; bottom: 0; width: 28px;
  background: linear-gradient(to right, transparent, #fff);
  pointer-events: none;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  display: flex; align-items: flex-end; justify-content: center;
  visibility: hidden; opacity: 0; transition: all 0.2s;
}
@media (min-width: 640px) { .modal-overlay { align-items: center; } }
.modal-overlay.open { visibility: visible; opacity: 1; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: hsl(var(--foreground) / 0.3); backdrop-filter: blur(4px);
}
.modal-content {
  position: relative; width: 100%; max-width: 384px;
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  border-radius: 16px 16px 0 0; padding: 24px 24px 32px;
  box-shadow: var(--shadow-lg);
  transform: translateY(16px); transition: transform 0.2s;
}
@media (min-width: 640px) {
  .modal-content { border-radius: 16px; padding: 24px; margin: 0 16px; }
}
.modal-overlay.open .modal-content { transform: translateY(0); }
.modal-close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; transition: background 0.15s;
}
.modal-close:hover { background: hsl(var(--secondary)); }
.modal-close svg { width: 16px; height: 16px; color: hsl(var(--muted-foreground)); }
.modal-header { text-align: center; margin-bottom: 20px; }
.modal-store-logo {
  width: 48px; height: 48px; border-radius: 12px; background: hsl(var(--secondary));
  margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.modal-store-logo img { width: 32px; height: 32px; object-fit: contain; }
.modal-store-name { font-size: 12px; color: hsl(var(--muted-foreground)); margin-bottom: 2px; }
.modal-title { font-size: 16px; font-weight: 700; }
.modal-desc { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 4px; }
.modal-code-box {
  background: hsl(var(--secondary)); border-radius: 12px; padding: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.modal-code {
  font-family: 'Space Grotesk', monospace; font-size: 16px; font-weight: 700;
  letter-spacing: 0.1em; user-select: all;
}
.btn-copy {
  flex-shrink: 0; display: flex; align-items: center; gap: 6px;
  height: 36px; padding: 0 16px; border-radius: 8px;
  font-size: 12px; font-weight: 600; transition: all 0.15s;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
}
.btn-copy:hover { opacity: 0.9; }
.btn-copy:active { transform: scale(0.97); }
.btn-copy.copied { background: hsl(var(--coupon-badge)); color: hsl(var(--coupon-badge-foreground)); }
.btn-copy svg { width: 14px; height: 14px; }

/* ===== STORE PAGE ===== */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; color: hsl(var(--muted-foreground)); margin-bottom: 16px;
  transition: color 0.15s;
}
.breadcrumb:hover { color: hsl(var(--foreground)); }
.breadcrumb svg { width: 14px; height: 14px; }

.store-header {
  background: hsl(var(--card)); border-radius: 12px; border: 1px solid hsl(var(--border));
  padding: 20px; margin-bottom: 20px;
}
@media (min-width: 640px) { .store-header { padding: 24px; } }
.store-header-top { display: flex; align-items: flex-start; gap: 20px; }
.store-logo-box {
  flex-shrink: 0; width: 80px; height: 80px; border-radius: 16px;
  border: 1px solid hsl(var(--border)); background: hsl(var(--background));
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
@media (min-width: 640px) { .store-logo-box { width: 96px; height: 96px; } }
.store-logo-box img { max-width: 60px; max-height: 48px; object-fit: contain; }
@media (min-width: 640px) { .store-logo-box img { max-width: 72px; max-height: 56px; } }
.store-info { flex: 1; min-width: 0; }
.store-info h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px; font-weight: 700;
}
@media (min-width: 640px) { .store-info h1 { font-size: 20px; } }
.store-meta { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 4px; display: flex; align-items: center; gap: 6px; }
.store-meta svg { width: 12px; height: 12px; }
.store-meta-sub { font-size: 12px; color: hsl(var(--muted-foreground)); margin-top: 2px; }

.store-filters {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px; padding-top: 16px; border-top: 1px solid hsl(var(--border));
}
.store-filters-label { font-size: 12px; color: hsl(var(--muted-foreground)); margin-right: 4px; }
.filter-btn {
  height: 32px; padding: 0 12px; border-radius: 8px; font-size: 12px; font-weight: 500;
  border: 1px solid hsl(var(--border)); color: hsl(var(--muted-foreground)); transition: all 0.15s;
}
.filter-btn:hover { color: hsl(var(--foreground)); border-color: hsl(var(--foreground) / 0.2); }
.filter-btn.active {
  border-color: hsl(var(--primary)); background: hsl(var(--primary) / 0.05); color: hsl(var(--primary));
}

.store-layout { display: flex; flex-direction: column; gap: 20px; }
@media (min-width: 1024px) { .store-layout { flex-direction: row; } }
.store-main { flex: 1; min-width: 0; }
.coupons-list { display: flex; flex-direction: column; gap: 12px; }

.store-sidebar { width: 100%; flex-shrink: 0; }
@media (min-width: 1024px) { .store-sidebar { width: 256px; } }
.sidebar-card {
  background: hsl(var(--card)); border-radius: 12px; border: 1px solid hsl(var(--border)); padding: 16px;
}
.sidebar-title { font-size: 12px; font-weight: 600; margin-bottom: 12px; }
.sidebar-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.sidebar-link {
  border: 1px solid hsl(var(--border)); border-radius: 8px; padding: 8px 12px;
  font-size: 12px; color: hsl(var(--muted-foreground)); text-align: center;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: all 0.15s;
}
.sidebar-link:hover { color: hsl(var(--primary)); border-color: hsl(var(--primary) / 0.2); }

.empty-state {
  background: hsl(var(--card)); border-radius: 12px; border: 1px solid hsl(var(--border));
  padding: 32px; text-align: center; font-size: 14px; color: hsl(var(--muted-foreground));
}

/* ===== SEO TEXT ===== */
.seo-text {
  background: hsl(var(--card)); border-radius: 12px; border: 1px solid hsl(var(--border));
  padding: 24px; margin-top: 24px;
}
.seo-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px; font-weight: 700; margin-bottom: 12px;
}
.seo-text h3 {
  font-size: 14px; font-weight: 600; margin-top: 16px; margin-bottom: 8px;
}
.seo-text p {
  font-size: 13px; color: hsl(var(--muted-foreground)); line-height: 1.7; margin-bottom: 8px;
}
.seo-text ul,
.seo-text ol {
  font-size: 13px; color: hsl(var(--muted-foreground)); line-height: 1.7;
  padding-left: 20px; margin-bottom: 8px;
}
.seo-text ul { list-style-type: disc; }
.seo-text ul ul { list-style-type: circle; margin-bottom: 0; }
.seo-text ol { list-style-type: decimal; }
.seo-text ol ol { list-style-type: lower-alpha; margin-bottom: 0; }
.seo-text li { margin-bottom: 4px; }

/* ===== ALL STORES PAGE ===== */
.page-header { margin-bottom: 24px; }
.page-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px; font-weight: 700; margin-bottom: 4px;
}
.page-subtitle { font-size: 14px; color: hsl(var(--muted-foreground)); }

.filter-input {
  position: relative; margin-bottom: 24px;
}
.filter-input input {
  width: 100%; height: 40px; padding-left: 40px; padding-right: 16px;
  border-radius: 12px; background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  font-size: 14px; transition: all 0.15s;
}
.filter-input input::placeholder { color: hsl(var(--muted-foreground)); }
.filter-input input:focus {
  outline: none; box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
  border-color: hsl(var(--primary) / 0.3);
}
.filter-input svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: hsl(var(--muted-foreground)); pointer-events: none;
}

.category-section { margin-bottom: 32px; }
.category-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 600; color: hsl(var(--muted-foreground));
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px;
}

/* ===== CONTACT ===== */
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 12px; font-weight: 500; margin-bottom: 6px; }
.form-input {
  width: 100%; height: 44px; padding: 0 14px;
  border-radius: 12px; background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  font-size: 14px; transition: all 0.15s;
}
.form-input:focus {
  outline: none; box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
  border-color: hsl(var(--primary) / 0.3);
}
.form-input::placeholder { color: hsl(var(--muted-foreground)); }
.form-textarea {
  width: 100%; padding: 12px 14px;
  border-radius: 12px; background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  font-size: 14px; resize: none; transition: all 0.15s;
}
.form-textarea:focus {
  outline: none; box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
  border-color: hsl(var(--primary) / 0.3);
}
.form-textarea::placeholder { color: hsl(var(--muted-foreground)); }
.btn-primary {
  width: 100%; height: 44px; border-radius: 12px;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.15s; margin-top: 4px;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { transform: scale(0.98); }
.btn-primary svg { width: 14px; height: 14px; }

/* ===== PRIVACY ===== */
.prose h1 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.prose section { margin-bottom: 24px; }
.prose h2 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.prose p {
  font-size: 14px; color: hsl(var(--muted-foreground)); line-height: 1.7;
}
.prose .last-update {
  font-size: 12px; color: hsl(var(--muted-foreground) / 0.6);
  padding-top: 16px; border-top: 1px solid hsl(var(--border));
}

/* ===== SEARCH RESULTS ===== */
.no-results { text-align: center; padding: 64px 0; }
.no-results svg { width: 48px; height: 48px; color: hsl(var(--muted-foreground)); margin: 0 auto 16px; }
.no-results p { font-weight: 600; margin-bottom: 4px; }
.no-results .sub { font-size: 14px; color: hsl(var(--muted-foreground)); margin-bottom: 16px; }
.no-results a { color: hsl(var(--primary)); font-size: 14px; font-weight: 500; }
.no-results a:hover { text-decoration: underline; }

/* Stores grid for search results */
.stores-grid-search { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (min-width: 640px) { .stores-grid-search { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .stores-grid-search { grid-template-columns: repeat(6, 1fr); } }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: hsl(var(--foreground)); color: hsl(var(--background));
  padding: 10px 20px; border-radius: 10px; font-size: 13px; font-weight: 500;
  z-index: 100; opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.toast.show { opacity: 1; }

/* Page content wrapper */
.page-content { flex: 1; padding: 24px 0; }
.page-content-lg { padding: 32px 0 40px; }

/* Utility */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.hidden { display: none; }
