@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f5f6f8;
  --bg-card: #ffffff;
  --text: #1d1d1f;
  --text-secondary: #86868b;
  --text-muted: #a8a8ad;
  --line: #ececf0;
  --line-soft: #f1f1f4;
  --primary: #0071e3;
  --primary-hover: #0077ed;
  --primary-active: #0062c6;
  --surface: #f5f5f7;
  --surface-soft: #fafafb;
  --shadow-icon: 0 8px 28px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.06);
  --shadow-card-soft: 0 1px 2px rgba(15, 23, 42, 0.03), 0 4px 12px rgba(15, 23, 42, 0.04);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1100px 380px at 75% -100px, rgba(0, 113, 227, 0.07), transparent 60%),
    radial-gradient(900px 320px at 10% -60px, rgba(52, 199, 89, 0.05), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.store-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.hidden {
  display: none !important;
}

/* Background elements */
.store-background {
  display: none;
}

/* Main Layout */
.store-shell {
  max-width: 1080px;
  margin: 32px auto 48px;
  padding: 0;
  background: var(--bg-card);
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

@media (max-width: 768px) {
  .store-shell {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Topbar */
.store-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: saturate(160%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 5;
}

@media (max-width: 768px) {
  .store-topbar {
    padding: 14px 16px;
  }
}

.store-domain {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.domain-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34c759;
}

.lang-switch {
  display: flex;
  background: var(--surface);
  border-radius: 999px;
  padding: 3px;
}

.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-switch button.active {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Base Sections */
.store-main {
  display: flex;
  flex-direction: column;
  padding: 0 32px;
}

.hero-card {
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--line);
}

.panel {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.panel:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .store-main {
    padding: 0 16px;
  }
  .hero-card {
    padding: 24px 0;
  }
  .panel {
    padding: 28px 0;
  }
}

/* Hero Grid */
.hero-grid {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

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

.app-icon {
  width: 160px;
  height: 160px;
  border-radius: 36px;
  background: #ffffff;
  box-shadow: var(--shadow-icon);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-icon-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0071e3, #34c759);
  color: white;
  font-size: clamp(32px, 8vw, 54px);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow-row, .meta-chips {
  display: none; /* Hide for cleaner look */
}

.app-title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

.app-subline {
  margin-top: 6px;
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
}

.developer-name {
  color: var(--text-secondary);
}

.subline-divider {
  display: none;
}

.app-subline [data-role="category-label"] {
  margin-left: 8px;
}

.app-summary {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 600px;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.install-btn {
  border: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 24px;
  cursor: pointer;
  min-width: 120px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.install-btn.primary {
  background: var(--primary);
  color: white;
}

.install-btn.primary:hover {
  background: var(--primary-hover);
  transform: scale(1.02);
}

.install-btn.secondary {
  background: var(--surface);
  color: var(--primary);
}

.install-btn.secondary:hover {
  background: #e5e5ea;
  transform: scale(1.02);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 0;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 120px;
}

.stat-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--line);
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-secondary);
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #c7c7cc;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.stat-stars svg {
  width: 14px;
  height: 14px;
  fill: #ff9500;
}

/* Panel Headers */
.panel-head {
  margin-bottom: 24px;
}

.panel-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.panel-desc {
  margin-top: 8px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Screenshots */
.screenshot-stage {
  position: relative;
}

.screenshot-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 4px 16px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.18) transparent;
}

.screenshot-rail.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.screenshot-rail::-webkit-scrollbar {
  height: 6px;
}

.screenshot-rail::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.screenshot-rail::-webkit-scrollbar-track {
  background: transparent;
}

.screenshot-progress {
  margin-top: 4px;
  height: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.screenshot-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #34c759);
  border-radius: 999px;
  transition: width 0.15s ease;
}

.screenshot-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
}

.screenshot-stage:hover .screenshot-nav,
.screenshot-nav:focus-visible {
  opacity: 1;
}

.screenshot-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.screenshot-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.screenshot-nav svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.screenshot-nav--prev { left: -8px; }
.screenshot-nav--next { right: -8px; }

.screen-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  transition: transform 0.25s ease;
}

.screen-card:hover {
  transform: translateY(-4px);
}

.screen-device {
  height: 580px;
  border-radius: 36px;
  border: 8px solid #111;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 12px 28px rgba(0, 0, 0, 0.10);
  transition: box-shadow 0.25s ease;
}

.screen-card:hover .screen-device {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 18px 40px rgba(0, 0, 0, 0.16);
}

.screen-shot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.screen-card.theme-a .screen-device { background: #fdfdfd; }
.screen-card.theme-b .screen-device { background: #f9f9fb; }
.screen-card.theme-c .screen-device { background: #fcfcfc; }

@media (max-width: 768px) {
  .screenshot-nav { display: none; }
}

.screen-topline { height: 12px; width: 40%; background: var(--line); border-radius: 999px; margin: 24px auto; }
.screen-topline.short { width: 25%; }
.screen-hero-card { height: 120px; background: var(--surface); border-radius: 20px; margin: 16px; }
.screen-hero-strip { height: 80px; background: var(--surface); border-radius: 20px; margin: 16px; }

.screen-grid { display: grid; gap: 12px; margin: 16px; }
.screen-grid.two { grid-template-columns: 1fr 1fr; }
.screen-grid.three { grid-template-columns: 1fr 1fr 1fr; }
.screen-grid.one { grid-template-columns: 1fr; }
.screen-grid span { height: 80px; background: var(--surface); border-radius: 16px; }

.screen-list { display: grid; gap: 12px; margin: 16px; }
.screen-list span { height: 60px; background: var(--surface); border-radius: 16px; }
.screen-list.compact span { height: 40px; }

.screen-chart { display: flex; align-items: flex-end; gap: 8px; margin: 16px; height: 120px; }
.screen-chart span { flex: 1; background: var(--surface); border-radius: 8px; }
.screen-chart span:nth-child(1) { height: 60%; }
.screen-chart span:nth-child(2) { height: 100%; }
.screen-chart span:nth-child(3) { height: 80%; }

.screen-caption {
  margin-top: 16px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}

/* Platforms / Downloads */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.platform-grid-single {
  grid-template-columns: 1fr;
}

.platform-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 24px;
}

.platform-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.platform-name {
  font-size: 20px;
  font-weight: 600;
}

.platform-sub {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 4px;
}

.platform-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-secondary);
}

.platform-tag.success {
  background: #34c759;
  color: white;
}

.platform-info {
  margin-top: 24px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-row span {
  color: var(--text-secondary);
}

.info-row strong {
  font-weight: 500;
}

.platform-notes {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.platform-action {
  margin-top: 24px;
  width: 100%;
}

/* Detail Layout (What's new + Aside) */
.detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* What's New */
.release-meta {
  display: flex;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 8px;
}

.notice-card {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

/* Aside Info */
.side-stack {
  display: grid;
  gap: 32px;
}

.about-list {
  display: flex;
  flex-direction: column;
}

.about-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.about-row span {
  color: var(--text-secondary);
}

.about-row strong {
  font-weight: 500;
  text-align: right;
  max-width: 60%;
}

.qr-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  padding: 16px;
  border-radius: 20px;
}

.qr-card img {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: white;
}

.qr-copy-title {
  font-weight: 600;
  font-size: 14px;
}

.qr-copy-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.4;
}

/* Reviews */
.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-summary {
  text-align: right;
}

.review-summary strong {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.review-summary span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #c7c7cc;
  margin-top: 4px;
}

.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 320px;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
}

.review-grid::-webkit-scrollbar {
  display: none;
}

.review-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  scroll-snap-align: start;
}

.review-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-card-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.review-card-meta {
  font-size: 13px;
  color: var(--text-secondary);
}

.review-card-stars {
  display: flex;
  gap: 2px;
  color: #ff9500;
}

.review-card-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.review-card-body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 24px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .store-shell {
    padding: 0 16px 40px;
  }

  .hero-grid {
    gap: 20px;
  }

  .app-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
  }

  .app-title {
    font-size: 28px;
  }

  .app-subline {
    font-size: 16px;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .screen-card {
    flex: 0 0 240px;
  }

  .screen-device {
    height: 480px;
  }

  .reviews-head {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .app-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
  }

  .app-title {
    font-size: 22px;
  }

  .app-subline {
    font-size: 15px;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .app-summary {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .review-grid {
    grid-auto-columns: 85vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* (hero gradient now lives on body — kept for future overrides) */

/* ============================================================
 * Store Footer (light variant — no longer breaks the page)
 * ============================================================ */
.store-footer {
  background: transparent;
  color: var(--text-secondary);
  margin: 0 auto;
  max-width: 1080px;
  padding: 0 20px 64px;
}

.store-footer__inner {
  background: var(--bg-card);
  border-radius: 28px;
  padding: 36px 40px 24px;
  box-shadow: var(--shadow-card-soft);
}

.store-footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.store-footer__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.store-footer__brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.store-footer__brand-slogan {
  margin-top: 3px;
  font-size: 13px;
  color: var(--text-secondary);
}

.store-footer__cols {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 0.9fr;
  gap: 36px;
  padding: 28px 0 24px;
}

.store-footer__col {
  min-width: 0;
}

.store-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.store-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.store-footer__contact {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
}

.store-footer__contact-icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--primary);
}

.store-footer__contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-footer__contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  word-break: break-word;
}

.store-footer__contact-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.store-footer__contact a,
.store-footer__contact .store-footer__contact-text > span:not(.store-footer__contact-label) {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.store-footer__contact a:hover {
  color: var(--primary);
}

.store-footer__company-name {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.store-footer__company-name--en {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 12px;
  margin-top: 4px;
}

.store-footer__company-row {
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  word-break: break-word;
}

.store-footer__company-row--muted {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 11px;
}

.store-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.store-footer__chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-family: 'Consolas', 'Monaco', monospace;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.store-footer__chip--link {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.store-footer__chip--link:hover {
  color: var(--primary-hover);
  border-color: rgba(0, 113, 227, 0.32);
  background: rgba(0, 113, 227, 0.06);
}

.store-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-footer__social-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.store-footer__social-btn:hover,
.store-footer__social-btn:focus-visible {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 113, 227, 0.25);
}

.store-footer__social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.store-footer__qr-pop {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) scale(0.94);
  transform-origin: bottom center;
  background: #fff;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(15, 23, 42, 0.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.store-footer__social-btn--qr:hover .store-footer__qr-pop,
.store-footer__social-btn--qr:focus-visible .store-footer__qr-pop {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

.store-footer__qr-pop img {
  width: 116px;
  height: 116px;
  border-radius: 10px;
  object-fit: cover;
}

.store-footer__qr-pop-tip {
  font-size: 11px;
  color: var(--text-secondary);
}

.store-footer__bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.store-footer__bottom a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.store-footer__bottom a:hover {
  color: var(--primary);
}

.store-footer__sep {
  color: var(--line);
}

@media (max-width: 1024px) {
  .store-footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .store-footer__col:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .store-footer {
    padding: 0 0 32px;
  }
  .store-footer__inner {
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .store-footer__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .store-footer__inner {
    padding: 28px 20px 18px;
  }
  .store-footer__bottom {
    justify-content: center;
    text-align: center;
  }
}
