.store-banner {
  display: none;
}

.store-banner-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 38px;
}

.store-banner-apple {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 1rem;
  line-height: 1;
}

.store-banner-icon {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(255, 0, 115, 0.22);
}

.store-banner-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.store-banner-copy strong,
.store-banner-copy span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-banner-copy strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.25;
}

.store-banner-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

@media (max-width: 760px) {
  .store-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(18px);
  }
}

@media (prefers-color-scheme: dark) {
  .store-banner-link {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #f3f0e8;
  }
}
