/* MF150C: Two-state Download presentation; state selection occurs during generation, not in the browser. */
.download-hero .download-status-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 230px;
}

.download-state-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(245,184,75,0.34);
  border-radius: 999px;
  color: #ffe0a3;
  background: rgba(245,184,75,0.1);
  font-size: 0.82rem;
  font-weight: 800;
}

.pastefx-store-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 5px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.pastefx-store-badge:hover,
.pastefx-store-badge:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(95,155,255,0.3);
}

.pastefx-store-badge img {
  display: block;
  width: 220px;
  height: auto;
}

.download-store-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.download-route-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-details .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.download-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

html[data-theme="light"] .download-state-label {
  border-color: rgba(166,106,5,0.3);
  color: #765314;
  background: rgba(207,143,33,0.12);
}

@media (max-width: 640px) {
  .download-hero .download-status-card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .pastefx-store-badge { transition: none; }
}
