/* Click-to-zoom affordance on ramen images */
.product-item img {
  cursor: zoom-in;
}

/* Modal (same as Events) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  object-fit: contain;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1100;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 5px;
}
