/* =========================
   CLEAN STORE LIST PAGE
   ========================= */

:root {
  --orange: #f97316;
  --orange-soft: #fb923c;
  --bg-main: #020617;
  --bg-card: #020617;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
}

/* HEADER */
.store-header {
  padding: 60px 0 30px;
  text-align: center;
}

.store-header h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
}

.store-header p {
  color: var(--text-muted);
}

/* A–Z FILTER */
.az-filter {
  padding: 20px 0 40px;
  text-align: center;
}

.az-filter a {
  display: inline-block;
  margin: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #020617;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid #1f2937;
}

.az-filter a:hover {
  background: linear-gradient(135deg, #7c2d12, var(--orange));
  color: #020617;
}

/* LETTER SECTION */
.letter-section {
  margin-bottom: 60px;
}

.letter-section h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 20px;
}

/* STORE GRID */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.store-card {
  background: var(--bg-card);
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  transition: all .25s ease;
}

.store-card:hover {
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: #020617;
  transform: translateY(-4px);
}

/* MOBILE */
@media (max-width: 768px) {
  .store-header h1 {
    font-size: 30px;
  }
}
/* ===============================
   FOOTER SAFETY RESET (STORE PAGE)
   =============================== */

.site-footer,
footer {
  background: #020617;
  color: #e5e7eb;
  margin-top: 80px;
}

.site-footer *,
footer * {
  box-sizing: border-box;
}

/* Restore container behavior inside footer */
.site-footer .container,
footer .container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* Prevent flex/grid leaks */
.site-footer section,
footer section {
  display: block;
}

/* Fix broken columns */
.site-footer .row,
footer .row {
  display: flex;
  flex-wrap: wrap;
}

/* Footer links */
.site-footer a,
footer a {
  color: #cbd5e1;
  text-decoration: none;
}

.site-footer a:hover,
footer a:hover {
  color: #f97316;
}
