/* Product Card */
.product-card {
  background-color: #1f1f1f;
  border-radius: 1rem;
  padding: 1rem;
  transition: all 0.3s;
  text-align: center;
}
.product-card:hover {
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Product Image */
.productImage {
  cursor: zoom-in;
  border-radius: 0.5rem;
  transition: transform 0.3s;
  width: 100%;
  height: 16rem;
  object-fit: cover;
}
.productImage:hover {
  transform: scale(1.05);
}

/* Buttons */
.btn-gold {
  background-color: #D4AF37;
  color: #000;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-gold:hover {
  background-color: #c49f2a;
  color: #fff;
}

/* Price */
.product-price {
  color: #D4AF37;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Quick View Modal */
#quickViewModal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
#quickViewModal .modal-content {
  background-color: #1f1f1f;
  border-radius: 1rem;
  max-width: 28rem;
  width: 100%;
  text-align: center;
  position: relative;
}
#quickViewModal img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.5rem;
  cursor: zoom-in;
  transition: transform 0.3s;
}

/* Zoom Overlay */
#imageZoomOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.95);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
#zoomedImage {
  max-width: 90%;
  max-height: 90%;
  border-radius: 1rem;
  cursor: zoom-in;
  transition: transform 0.3s;
}
