/* Product Gallery Component Styles */
/* Extracted from product_detail.html inline styles */

.product-gallery {
  margin-top: 14px;
}

.product-gallery-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #222;
  margin: 10px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 968px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.gallery-item {
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.gallery-cap {
  padding: 8px 10px;
  font-size: 0.85rem;
  color: #666;
  line-height: 1.35;
}
