
#modalProductPrices{
    color:red;
}
.grid-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.grid-container::-webkit-scrollbar {
  display: none;
}
.card {
  flex: 0 0 250px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  position: relative;
}
.video-wrapper {
  width: 100%;
  height: 280px;
  position: relative;
  cursor: pointer;
}
.views {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  z-index: 1;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}
.caption { padding: 10px; font-size: 14px; text-align: center; }
.product-info { display: flex; align-items: center; padding: 10px; }
.product-info img { width: 50px; height: 50px; object-fit: cover; border-radius: 5px; margin-right: 10px; }
.product-details { flex: 1; }
.product-details h4 { margin: 0; font-size: 14px; }
.product-details p { margin: 5px 0 0; font-size: 12px; color: gray; text-decoration: line-through; }
.add-cart-btn { width: 100%; padding: 10px; background: #7a4b3a; color: white; text-align: center; border: none; cursor: pointer; font-weight: bold; }
.modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.7); display: flex; align-items: center; justify-content: center;
  display: none; z-index: 999;
}
.modal-content {
  position: relative;
  background: white;
  border-radius: 10px;
  width: 90%; max-width: 500px;
  padding: 20px;
  text-align: center;
}
.modal-content iframe { width: 100%; height: 300px; border-radius: 10px; }
.close-modal { position: absolute; top: 10px; right: 10px; font-size: 20px; cursor: pointer; }
