/* SteriTex - proizvodi.css */

.product-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

.product-header {
  text-align: center;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.product-gallery a {
  display: block;
  width: 280px;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-gallery a:hover {
  transform: scale(1.03);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-description {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  padding: 0 1rem;
}

.product-back {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .product-gallery {
    flex-direction: column;
    align-items: center;
  }

  .product-gallery a {
    width: 90%;
    height: auto;
  }

  .product-gallery img {
    height: auto;
  }
}