/* /CSS/indie.css */

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

@media (max-width: 525px) {
  .product-grid {
    flex-direction: column;
  }
}

img {
  width: fit-content;
}

.top-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: var(--pico-primary);
  color: white;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  text-align: center;
  line-height: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s;
}

.top-button:hover {
  background-color: var(--pico-primary-hover, #3367d6);
}