/* ── AppCompat — iOS App Finder ────────────────────────────────────────────────
   Single stylesheet: dark theme (default) + light theme via .light class on <html>.
   CSS custom properties for all colours — swap theme by toggling the class.
   Mobile-first. No external dependencies.
   ──────────────────────────────────────────────────────────────────────────── */

/* ── RESET & BASE ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Dark theme (default) */
  --bg-base:        #0b0f1a;
  --bg-surface:     #141926;
  --bg-card:        #1a2035;
  --bg-card-hover:  #1f2742;
  --bg-input:       #0f1421;
  --bg-badge:       #0f1a2e;

  --text-primary:   #e8eaf6;
  --text-secondary: #8892b0;
  --text-muted:     #4a5568;
  --text-link:      #64b5f6;

  --accent:         #06b6d4;
  --accent-dark:    #0891b2;
  --accent-glow:    rgba(6, 182, 212, 0.15);

  --border:         rgba(255, 255, 255, 0.08);
  --border-strong:  rgba(255, 255, 255, 0.16);

  --badge-free:     #065f46;
  --badge-free-text:#6ee7b7;
  --badge-paid:     #1e3a5f;
  --badge-paid-text:#93c5fd;
  --badge-iap:      #451a03;
  --badge-iap-text: #fbbf24;
  --badge-ipad:     #312e81;
  --badge-ipad-text:#a5b4fc;

  --star-color:     #fbbf24;
  --shadow-card:    0 2px 8px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
  --shadow-hover:   0 8px 24px rgba(0,0,0,0.5), 0 0 0 1px var(--border-strong);

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "SF Mono", "Fira Code", "Consolas", monospace;

  --ad-bg: #0f1e32;
  --ad-border: #1e3a5f;
  --ad-text: #4a5568;

  --transition: 0.18s ease;
}

html.light {
  --bg-base:        #f0f4f8;
  --bg-surface:     #ffffff;
  --bg-card:        #ffffff;
  --bg-card-hover:  #f7f9fc;
  --bg-input:       #f8fafc;
  --bg-badge:       #eff6ff;

  --text-primary:   #1a202c;
  --text-secondary: #4a5568;
  --text-muted:     #9ca3af;
  --text-link:      #2563eb;

  --accent:         #0284c7;
  --accent-dark:    #0369a1;
  --accent-glow:    rgba(2, 132, 199, 0.1);

  --border:         rgba(0, 0, 0, 0.08);
  --border-strong:  rgba(0, 0, 0, 0.16);

  --badge-free:     #d1fae5;
  --badge-free-text:#065f46;
  --badge-paid:     #dbeafe;
  --badge-paid-text:#1e40af;
  --badge-iap:      #fef3c7;
  --badge-iap-text: #92400e;
  --badge-ipad:     #ede9fe;
  --badge-ipad-text:#4c1d95;

  --shadow-card:    0 1px 4px rgba(0,0,0,0.08), 0 0 0 1px var(--border);
  --shadow-hover:   0 4px 16px rgba(0,0,0,0.12), 0 0 0 1px var(--border-strong);
  --ad-bg:          #f0f9ff;
  --ad-border:      #bae6fd;
  --ad-text:        #94a3b8;
}

html { scroll-behavior: smooth; }

body {
  font-family:      var(--font-sans);
  background-color: var(--bg-base);
  color:            var(--text-primary);
  line-height:      1.5;
  min-height:       100vh;
  transition:       background-color var(--transition), color var(--transition);
}

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── LAYOUT SKELETON ─────────────────────────────────────────────────────────── */
.page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── NAVIGATION ──────────────────────────────────────────────────────────────── */
.site-nav {
  border-top: 1px solid var(--border);
  padding: 0;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.site-nav ul::-webkit-scrollbar { display: none; }

.site-nav a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.site-nav a:hover     { color: var(--text-primary); text-decoration: none; }
.site-nav a.active    { color: var(--accent); border-bottom-color: var(--accent); }

/* ── HERO BANNER ─────────────────────────────────────────────────────────────── */
.site-hero {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
  line-height: 0;
}

.site-hero img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: left 30%;
  display: block;
}

@media (max-width: 767px) {
  .site-hero { max-height: 180px; }
  .site-hero img { max-height: 180px; }
}

/* ── HEADER ──────────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 18px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.3px; }
.brand-tag  { font-size: 11px; color: var(--text-secondary); }

.header-right { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* ── AD SLOTS ────────────────────────────────────────────────────────────────── */
.ad-slot {
  background: var(--ad-bg);
  border: 1px dashed var(--ad-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ad-text);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.ad-leaderboard-top {
  height: 90px;
  margin: 16px 0;
}

.ad-sidebar {
  width: 300px;
  min-height: 250px;
  flex-shrink: 0;
  align-self: flex-start;
}

.ad-footer {
  height: 90px;
  margin: 32px 0 16px;
}

/* ── DEVICE PICKER ───────────────────────────────────────────────────────────── */
.device-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin: 20px 0 16px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}

.device-picker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.picker-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 160px;
  flex: 1;
}

.picker-group label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

select, .select-styled {
  background: var(--bg-input);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  width: 100%;
  transition: border-color var(--transition);
  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='%238892b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
select:hover, select:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-glow); }
select:disabled { opacity: 0.45; cursor: not-allowed; }

.ios-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
  min-height: 14px;   /* reserve space so layout doesn't shift when text appears */
  line-height: 1.4;
}
.ios-hint strong { color: var(--accent); }

/* Lock picker group heights so device selection doesn't shift sibling columns */
.device-picker-row .picker-group {
  align-self: stretch;
}
.device-picker-row select {
  margin-top: auto;
}

/* ── FILTER BAR ──────────────────────────────────────────────────────────────── */
.filter-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-bottom: 20px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
  flex: 1;
}

.filter-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-toggle:hover { border-color: var(--accent); color: var(--text-primary); }
.filter-toggle input[type="checkbox"] { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
.filter-toggle.active { border-color: var(--accent); background: var(--accent-glow); color: var(--text-primary); }

.filter-actions {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── NEWSLETTER SIGNUP ───────────────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--accent-glow) 100%);
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 20px;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.newsletter-copy { flex: 1; min-width: 220px; }

.newsletter-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.newsletter-sub {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.newsletter-form input[type="email"] {
  background: var(--bg-input);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  width: 200px;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.newsletter-form select {
  width: 150px;
  flex-shrink: 0;
}

.newsletter-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  width: 100%;
}
.newsletter-note.success { color: var(--success, #3fb950); }
.newsletter-note.error   { color: #f87171; }

@media (max-width: 767px) {
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form  { width: 100%; }
  .newsletter-form input[type="email"] { flex: 1; width: auto; }
}

/* ── RESULTS AREA ────────────────────────────────────────────────────────────── */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.results-main { min-width: 0; }

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.results-count {
  font-size: 14px;
  color: var(--text-secondary);
}
.results-count strong { color: var(--text-primary); }

.sort-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.sort-controls select { width: auto; flex: none; min-width: 130px; }

/* ── APP GRID ────────────────────────────────────────────────────────────────── */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

/* ── APP CARD ────────────────────────────────────────────────────────────────── */
.app-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 16px;
  display: flex;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition), background-color var(--transition);
  cursor: pointer;
}
.app-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 13px;
  background: var(--bg-badge);
  flex-shrink: 0;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.app-icon img { width: 100%; height: 100%; border-radius: 13px; display: block; }
.app-icon-placeholder { font-size: 28px; }

.app-meta { flex: 1; min-width: 0; }

.app-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-name a { color: inherit; }
.app-name a:hover { color: var(--accent); text-decoration: none; }

.app-developer {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 8px;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.6;
}
.badge-free    { background: var(--badge-free);  color: var(--badge-free-text); }
.badge-paid    { background: var(--badge-paid);  color: var(--badge-paid-text); }
.badge-iap     { background: var(--badge-iap);   color: var(--badge-iap-text); }
.badge-ipad    { background: var(--badge-ipad);  color: var(--badge-ipad-text); }
.badge-cat {
  background: var(--bg-badge);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.badge-ios {
  background: var(--bg-badge);
  color: var(--accent);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 10px;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-secondary);
}
.stars { color: var(--star-color); font-size: 12px; letter-spacing: -1px; }
.rating-value { font-weight: 600; color: var(--text-primary); }

/* ── EMPTY STATE ─────────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; color: var(--text-primary); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ── LOADING STATE ───────────────────────────────────────────────────────────── */
.loading-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── LOAD MORE ───────────────────────────────────────────────────────────────── */
.load-more-wrap {
  text-align: center;
  margin: 24px 0;
}

/* ── NOTICE BANNER ───────────────────────────────────────────────────────────── */
.notice {
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notice strong { color: var(--accent); }

/* ── FOOTER ──────────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding: 32px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { font-size: 13px; color: var(--text-secondary); }
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }

.footer-about { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.footer-about p + p { margin-top: 8px; }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ── RESPONSIVE ADJUSTMENTS ──────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .ad-sidebar { display: none; }
  .results-layout { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .device-picker-row { flex-direction: column; }
  .picker-group { min-width: 100%; }
  .filter-row { flex-direction: column; }
  .filter-group { min-width: 100%; }
  .filter-actions { width: 100%; }
  .filter-actions .btn { flex: 1; text-align: center; }
  .ad-leaderboard-top { height: 60px; }
  .results-header { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 768px) {
  .ad-inline-mobile { display: none; }
}

/* Inline ad after every ~4 rows of results (all viewport sizes) */
.ad-inline-grid {
  display: flex;
  height: 90px;
  grid-column: 1 / -1;
}

@media (max-width: 767px) {
  .ad-inline-grid { height: 60px; }
}

/* ── SEARCH ROW ──────────────────────────────────────────────────────────────── */
.filter-search-row {
  margin-bottom: 12px;
}

.filter-search-row input[type="search"] {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color var(--transition);
  appearance: none;
}
.filter-search-row input[type="search"]::placeholder { color: var(--text-muted); }
.filter-search-row input[type="search"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.filter-search-row input[type="search"]::-webkit-search-cancel-button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── STALE BADGE ─────────────────────────────────────────────────────────────── */
.badge-stale {
  background: #1c1207;
  color: #f59e0b;
  border: 1px solid #92400e;
}

html.light .badge-stale {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fcd34d;
}

/* ── APP DETAIL MODAL ────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.modal-overlay[hidden] { display: none; }

.modal-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 28px 28px 24px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }

.modal-app-header {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-right: 36px; /* avoid close button overlap */
}

.modal-app-icon { flex-shrink: 0; }

.modal-app-info { flex: 1; min-width: 0; }

.modal-app-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.modal-app-dev {
  font-size: 13px;
  color: var(--text-secondary);
}

.modal-meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.modal-meta-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  flex: 1;
  min-width: 90px;
}

.modal-meta-label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.modal-meta-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-description {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  white-space: pre-line;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.modal-store-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 12px;
}
.modal-store-btn:hover { text-decoration: none; }
