.product-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  flex-wrap: wrap;
  flex-direction: row;
}

.left-section {
  flex: 1;
  max-width: 500px;
}

.right-section {
  flex: 1;
  max-width: 500px;
}

.main-media img,
.main-media video {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  background: #222;
}

.thumbnails {
  display: flex;
  margin-top: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.thumbnails img,
.thumbnails video {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnails img:hover,
.thumbnails video:hover {
  border-color: #00f7ff;
}

.buy-btn {
  padding: 1rem 2rem;
  background: #00f7ff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  color: #000;
  margin-top: 1.5rem;
  cursor: pointer;
}



.thumb-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222; /* fallback */
}

.thumb-wrapper video,
.thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 4px 8px;
  pointer-events: none;
  z-index: 2;
}

/* 
#productCategory{
  font-family: "MonoSign";
  color: #E6BDBC;
  font-size: 1rem;
} */

#productName{
  font-family: "Nohemi";
  color: #E6BDBC;
  font-size: 3rem;
  padding-bottom: 20px;
}

#productPrice{
  font-family: "Nohemi";
  font-style: normal;
  font-size: 2rem;
  padding-bottom: 20px;
}

#productDescription{
  font-family: "Nohemi";
  font-style: normal;
  font-size: 0.8rem;
  padding-bottom: 20px;
}  

@media (max-width: 768px) {
  .product-container{
    flex-direction: column;
  }
}