product-downloads,
.product-downloads {
  display: block;
  width: 100%;
}

.product-downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.download-card:hover,
.download-card:focus-visible {
  border-color: #999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.download-card:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.download-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #0047ba;
}

.download-card-icon svg {
  width: 100%;
  height: 100%;
}

.download-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.download-card-skeleton {
  min-height: 120px;
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 37%, #f0f0f0 63%);
  background-size: 400% 100%;
  animation: product-downloads-shimmer 1.4s ease infinite;
  border-color: transparent;
}

@keyframes product-downloads-shimmer {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
