/* Product grid */
.product-category {
  margin-bottom: 80px;
  margin-top: 60px;
}

.product-category h2 {
  margin-bottom: 40px;
  text-align: center;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.product-item {
  flex: 1 1 220px;
  max-width: 240px;
  text-align: center;
  cursor: pointer;
}

.product-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.product-item img:hover {
  transform: scale(1.05);
}

.product-name {
  font-size: 14px;
  margin: 6px 0 0;
}

.product-price {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-primary);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
