/* ═══════════════════════════════════════════════════════
   愛豐原卡 - 新版樣式表
   基於 prototype/ifengyuan-card.html 版型
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #FBF7F0;
  --bg-card: #FFFFFF;
  --primary: #C94B1A;
  --primary-dark: #A03515;
  --primary-light: #F0773A;
  --secondary: #1E1510;
  --accent: #E8AA28;
  --accent2: #4A9E6B;
  --text: #2C1F14;
  --text-muted: #7A6553;
  --text-light: #B8A898;
  --border: #EDE6DA;
  --shadow: rgba(44, 31, 20, 0.08);
  --shadow-hover: rgba(201, 75, 26, 0.18);
  --tag-food: #E8462A; --tag-food-bg: #FEF0ED;
  --tag-cloth: #9B59B6; --tag-cloth-bg: #F4ECF7;
  --tag-home: #2980B9; --tag-home-bg: #EAF4FB;
  --tag-trans: #27AE60; --tag-trans-bg: #EAFAF1;
  --tag-edu: #E67E22; --tag-edu-bg: #FEF5EC;
  --tag-fun: #E91E8C; --tag-fun-bg: #FDE9F4;
  --tag-med: #16A085; --tag-med-bg: #E8F8F5;
  --tag-other: #7F8C8D; --tag-other-bg: #F2F3F4;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans TC', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ─── HEADER ─────────────────────────────── */
.site-header {
  background: var(--secondary);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Noto Serif TC', serif;
  font-size: 18px; font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.logo-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 18px; font-weight: 700;
  color: #fff;
}
.logo-sub {
  font-size: 10px; color: #B8A898; letter-spacing: 0.05em;
}
.header-search {
  flex: 1; max-width: 480px;
  display: flex; gap: 0;
}
.header-search input {
  flex: 1;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  font-family: 'Noto Sans TC', sans-serif;
  outline: none;
  transition: background 0.2s;
}
.header-search input::placeholder { color: rgba(255,255,255,0.45); }
.header-search input:focus { background: rgba(255,255,255,0.15); }
.header-search button {
  background: var(--primary);
  border: none; cursor: pointer;
  padding: 8px 16px;
  border-radius: 0 8px 8px 0;
  color: #fff; font-size: 16px;
  transition: background 0.2s;
}
.header-search button:hover { background: var(--primary-dark); }
.header-nav { display: flex; gap: 4px; align-items: center; }
.nav-btn {
  background: rgba(255,255,255,0.08);
  border: none; cursor: pointer;
  color: rgba(255,255,255,0.8);
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-family: 'Noto Sans TC', sans-serif;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-btn:hover { background: var(--primary); color: #fff; }
.nav-btn.accent { background: var(--accent); color: var(--secondary); font-weight: 700; }
.nav-btn.accent:hover { background: #d99a20; }

/* ─── HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #2C1F14 0%, #4A2E1A 40%, #C94B1A 100%);
  padding: 72px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: var(--accent); padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 500; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: 'Noto Serif TC', serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: clamp(14px, 2vw, 17px);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-search-wrap {
  display: flex; gap: 0;
  max-width: 560px; margin: 0 auto 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  border-radius: 14px; overflow: hidden;
}
.hero-search-wrap input {
  flex: 1; border: none; outline: none;
  padding: 16px 22px;
  font-size: 16px; font-family: 'Noto Sans TC', sans-serif;
  background: #fff; color: var(--text);
}
.hero-search-wrap input::placeholder { color: var(--text-light); }
.hero-search-wrap button {
  background: var(--primary); border: none; cursor: pointer;
  padding: 16px 28px;
  color: #fff; font-size: 15px; font-weight: 700;
  font-family: 'Noto Sans TC', sans-serif;
  transition: background 0.2s; white-space: nowrap;
}
.hero-search-wrap button:hover { background: var(--primary-dark); }
.hero-stats {
  display: flex; justify-content: center; gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Noto Serif TC', serif;
  font-size: 28px; font-weight: 900;
  color: var(--accent);
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ─── NEW STORES TICKER ──────────────────────── */
.new-stores-bar {
  background: linear-gradient(90deg, #1E1510 0%, #2C1F14 100%);
  border-bottom: 1px solid rgba(201,75,26,0.3);
  overflow: hidden;
  height: 46px;
  position: relative;
}
.new-stores-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 100%;
}
.new-stores-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 0 18px;
  height: 100%;
  white-space: nowrap;
  font-family: 'Noto Sans TC', sans-serif;
  letter-spacing: 0.05em;
  z-index: 2;
  position: relative;
}
.new-stores-label::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 0; bottom: 0;
  width: 0;
  height: 0;
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-left: 10px solid var(--primary);
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.ticker-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 18px;
  position: relative;
}
.ticker-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(90deg, transparent, #1E1510);
  pointer-events: none;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: 'Noto Sans TC', sans-serif;
  padding: 0 20px;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ticker-item:hover { color: var(--accent); }
.ticker-item .ticker-cat {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 600;
}
.ticker-item .ticker-new-badge {
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ─── CATEGORIES ────────────────────────────── */
.categories-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 90;
  box-shadow: 0 2px 8px var(--shadow);
}
.categories-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; gap: 4px;
  overflow-x: auto; scrollbar-width: none;
}
.categories-inner::-webkit-scrollbar { display: none; }
.cat-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 14px 18px;
  border: none; background: none; cursor: pointer;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  position: relative;
}
.cat-btn:hover { color: var(--primary); }
.cat-btn.active {
  color: var(--primary); font-weight: 700;
  border-bottom-color: var(--primary);
}
.cat-count {
  background: var(--bg);
  border-radius: 10px;
  font-size: 11px; font-weight: 600;
  padding: 2px 7px; color: var(--text-muted);
}
.cat-btn.active .cat-count {
  background: var(--tag-food-bg); color: var(--primary);
}

/* ─── MAIN CONTENT ──────────────────────────── */
.main-content {
  max-width: 1280px; margin: 0 auto;
  padding: 36px 24px 60px;
}
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px; flex-wrap: wrap;
}
.section-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 22px; font-weight: 700;
  color: var(--text);
}
.section-title span { color: var(--primary); }
.result-count {
  font-size: 13px; color: var(--text-muted);
  background: var(--bg); padding: 6px 14px;
  border-radius: 20px; border: 1px solid var(--border);
}

/* ─── STORE GRID ────────────────────────────── */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.store-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-hover);
  border-color: rgba(201, 75, 26, 0.25);
}
.card-top {
  padding: 20px 20px 0;
  display: flex; gap: 14px; align-items: flex-start;
}
.card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.card-info { flex: 1; min-width: 0; }
.card-name {
  font-family: 'Noto Serif TC', serif;
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-addr {
  font-size: 12px; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  display: flex; align-items: center; gap: 4px;
}
.card-tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600; padding: 3px 9px;
  border-radius: 20px; margin-top: 6px;
}
.card-discount {
  margin: 14px 20px;
  background: linear-gradient(135deg, var(--tag-food-bg), #fff5f0);
  border: 1px solid #f8d8cc;
  border-radius: 10px; padding: 12px 14px;
  font-size: 13px; color: var(--text);
  line-height: 1.55;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.card-discount strong { color: var(--primary); }

.card-actions {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 0 20px 18px;
}
.action-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 12px; border-radius: 8px;
  font-size: 12px; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.18s;
  font-family: 'Noto Sans TC', sans-serif;
  white-space: nowrap;
}
.btn-map { background: #E8F5E9; color: #2E7D32; }
.btn-map:hover { background: #2E7D32; color: #fff; }
.btn-phone { background: #E3F2FD; color: #1565C0; }
.btn-phone:hover { background: #1565C0; color: #fff; }
.btn-foodpanda { background: #FDE0F0; color: #D30060; }
.btn-foodpanda:hover { background: #D30060; color: #fff; }
.btn-ubereats { background: #E8F5E0; color: #06C167; }
.btn-ubereats:hover { background: #06C167; color: #fff; }
.btn-web { background: #FFF8E1; color: #F57F17; }
.btn-web:hover { background: #F57F17; color: #fff; }
.btn-report { background: #FFF8E1; color: #F57F17; }
.btn-report:hover { background: #F57F17; color: #fff; }
.btn-manage { background: #E8EAF6; color: #283593; }
.btn-manage:hover { background: #283593; color: #fff; }

/* ─── NO RESULTS ────────────────────────────── */
.no-results {
  text-align: center; padding: 80px 20px;
  color: var(--text-muted);
  display: none;
}
.no-results.show { display: block; }
.no-results-icon { font-size: 56px; margin-bottom: 16px; }
.no-results h3 { font-size: 20px; margin-bottom: 8px; color: var(--text); }

/* ─── FAQ SECTION ──────────────────────────── */
.faq-section {
  background: var(--secondary);
  padding: 64px 24px;
  margin-top: 40px;
}
.faq-inner { max-width: 840px; margin: 0 auto; }
.faq-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 26px; font-weight: 700; color: #fff;
  margin-bottom: 8px; text-align: center;
}
.faq-sub { text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 40px; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.faq-q {
  font-size: 15px; font-weight: 600; color: var(--accent);
  margin-bottom: 8px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-a { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* ─── JOIN BANNER ──────────────────────────── */
.join-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 20px; margin: 40px 24px;
  max-width: calc(1280px - 48px); margin-left: auto; margin-right: auto;
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.join-text h2 {
  font-family: 'Noto Serif TC', serif;
  font-size: 24px; color: #fff; margin-bottom: 6px;
}
.join-text p { color: rgba(255,255,255,0.8); font-size: 14px; }
.join-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.join-btn {
  padding: 13px 24px; border-radius: 10px; border: none;
  cursor: pointer; font-size: 14px; font-weight: 700;
  font-family: 'Noto Sans TC', sans-serif; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
}
.join-btn.primary { background: #fff; color: var(--primary); }
.join-btn.primary:hover { background: var(--accent); color: var(--secondary); }
.join-btn.secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.join-btn.secondary:hover { background: rgba(255,255,255,0.25); }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.6);
  padding: 40px 24px 24px;
  text-align: center;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-logo {
  font-family: 'Noto Serif TC', serif;
  font-size: 22px; font-weight: 900; color: #fff;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--accent); }
.footer-links {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; margin: 16px 0; font-size: 13px;
}
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 20px; }
.footer-structured {
  text-align: left; max-width: 800px; margin: 0 auto 32px;
  background: rgba(255,255,255,0.04); border-radius: 12px;
  padding: 24px; font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.footer-structured h3 { color: rgba(255,255,255,0.7); margin-bottom: 8px; font-size: 14px; }

/* ─── BADGE TAGS ─────────────────────────── */
.tag-1, .tag-food { background: var(--tag-food-bg); color: var(--tag-food); }
.tag-2, .tag-cloth { background: var(--tag-cloth-bg); color: var(--tag-cloth); }
.tag-3, .tag-home { background: var(--tag-home-bg); color: var(--tag-home); }
.tag-4, .tag-trans { background: var(--tag-trans-bg); color: var(--tag-trans); }
.tag-5, .tag-edu { background: var(--tag-edu-bg); color: var(--tag-edu); }
.tag-6, .tag-fun { background: var(--tag-fun-bg); color: var(--tag-fun); }
.tag-7, .tag-med { background: var(--tag-med-bg); color: var(--tag-med); }
.tag-8, .tag-other { background: var(--tag-other-bg); color: var(--tag-other); }
.icon-1 { background: #FEF0ED; }
.icon-2 { background: #F4ECF7; }
.icon-3 { background: #EAF4FB; }
.icon-4 { background: #EAFAF1; }
.icon-5 { background: #FEF5EC; }
.icon-6 { background: #FDE9F4; }
.icon-7 { background: #E8F8F5; }
.icon-8 { background: #F2F3F4; }

/* ─── FORM STYLES ────────────────────────────── */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px;
}
.form-card {
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 32px;
  box-shadow: 0 4px 20px var(--shadow);
}
.form-title {
  font-family: 'Noto Serif TC', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-group label .required {
  color: var(--primary);
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Noto Sans TC', sans-serif;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201, 75, 26, 0.1);
}
textarea.form-control {
  min-height: 100px;
  resize: vertical;
}
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237A6553' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Noto Sans TC', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
}
.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--border);
}
.btn-block {
  display: flex;
  width: 100%;
}
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 20px;
}
.alert-success {
  background: #EAFAF1;
  color: #27AE60;
  border: 1px solid #C8F0D8;
}
.alert-error {
  background: #FEF0ED;
  color: #E8462A;
  border: 1px solid #F8D8CC;
}
.alert-info {
  background: #EAF4FB;
  color: #2980B9;
  border: 1px solid #C8E0F0;
}

/* ─── ADMIN TABLE ──────────────────────────── */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.admin-table th,
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.admin-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
}
.admin-table tbody tr:hover {
  background: #FFFBF5;
}
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}
.status-approved { background: #EAFAF1; color: #27AE60; }
.status-pending { background: #FEF5EC; color: #E67E22; }
.status-rejected { background: #FEF0ED; color: #E8462A; }

/* ─── MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-search { max-width: none; flex: 1; }
  .logo-sub { display: none; }
  .hero { padding: 48px 16px 40px; }
  .hero-stats { gap: 20px; }
  .store-grid { grid-template-columns: 1fr; gap: 14px; }
  .main-content { padding: 24px 16px 48px; }
  .join-banner { padding: 28px 24px; flex-direction: column; }
  .categories-inner { padding: 0 16px; }
  .form-card { padding: 24px 16px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .header-inner { padding: 0 16px; gap: 10px; }
  .logo-title { font-size: 16px; }
  .hero-search-wrap { flex-direction: column; border-radius: 12px; }
  .hero-search-wrap input { border-radius: 12px 12px 0 0; }
  .hero-search-wrap button { border-radius: 0 0 12px 12px; }
}

/* ─── LOADING ─────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg) 25%, #F0EBE0 50%, var(--bg) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
  height: 14px;
}
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
