.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.store-badges.store-badges-compact { gap: 8px; justify-content: center; margin: 12px 0; }
.store-badges.store-badges-footer { flex-direction: column; gap: 8px; }
.store-badges.store-badges-footer .store-badge { width: 100%; max-width: 180px; }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text-primary, var(--text, #fff));
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  transition: all 0.18s ease;
  position: relative;
  cursor: pointer;
  min-height: 40px;
}
.store-badge:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.35);
  transform: translateY(-1px);
}
.store-badge svg { flex-shrink: 0; width: 20px; height: 20px; }
.store-badge-text { display: flex; flex-direction: column; gap: 2px; }
.store-badge-label {
  font-size: 0.6875rem;
  color: var(--text-muted, var(--text2, #94a3b8));
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.store-badge-name {
  font-size: 0.875rem;
  color: var(--text-primary, var(--text, #fff));
  font-weight: 600;
}

.store-badge.disabled {
  opacity: 0.55;
  filter: grayscale(1);
  cursor: help;
}
.store-badge.disabled:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  transform: none;
  opacity: 0.75;
  filter: grayscale(0.6);
}

#store-badge-tooltip {
  display: none;
  position: fixed;
  z-index: 99999;
  background: rgba(10, 14, 39, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 14px;
  max-width: 280px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  font-size: 0.8125rem;
  color: var(--text-secondary, var(--text2, #cbd5e1));
  line-height: 1.45;
}
#store-badge-tooltip strong {
  color: var(--accent-cyan, var(--cyan, #00d4ff));
  display: block;
  margin-bottom: 4px;
  font-size: 0.875rem;
}

.app-hint {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 1px 8px 1px 4px;
  border-radius: 20px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  font-size: 0.75rem;
  color: var(--accent-cyan, var(--cyan, #00d4ff));
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  transition: all 0.18s ease;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0 2px;
}
.app-hint:hover { background: rgba(0, 212, 255, 0.14); border-color: rgba(0, 212, 255, 0.45); }
.app-hint-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-cyan, var(--cyan, #00d4ff));
  color: #0a0e27;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  flex-shrink: 0;
}

#app-hint-tooltip {
  display: none;
  position: fixed;
  z-index: 99999;
  background: rgba(10, 14, 39, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 16px;
  width: 320px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}
#app-hint-tooltip h5 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent-cyan, var(--cyan, #00d4ff));
  margin-bottom: 8px;
}
#app-hint-tooltip p { font-size: 0.8125rem; color: rgba(180, 190, 220, 0.9); line-height: 1.5; margin-bottom: 12px; }
#app-hint-tooltip .store-badges { margin-top: 6px; }

@media (max-width: 640px) {
  .store-badge { padding: 8px 10px; }
  .store-badge-label { font-size: 0.625rem; }
  .store-badge-name { font-size: 0.8125rem; }
  #app-hint-tooltip { width: calc(100vw - 24px); max-width: 320px; }
}
