.qv-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 9999;
}
.qv-content {
  background: #fff;
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
  padding: 35px;
  position: relative;
  border-radius: 12px;
}
.qv-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
}
.qv-wrapper {
  display: flex;
  gap: 20px;
} /* Thumbs */
.qv-thumbs {
  width: 90px;
  height: 400px;
}
.qv-thumbs img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
}
.qv-thumbs .swiper-slide-thumb-active img {
  border-color: #0d6efd;
} /* Main image */
.qv-main {
  width: 400px;
  height: 400px;
}
.qv-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} /* Info */
.qv-info {
  flex: 1;
}
.price span {
  color: red;
  font-size: 22px;
  font-weight: bold;
}
.btn-cart {
  padding: 12px 25px;
  background: #0d6efd;
  border: none;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.qv-info {
  position: relative;
  flex: 1;
  font-family: Arial, sans-serif;
}
.qv-discount {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff3b3b;
  color: #fff;
  padding: 6px 10px;
  font-size: 14px;
  border-radius: 6px;
}
.qv-info h2 {
  font-size: 26px;
  margin-bottom: 8px;
}
.qv-rating {
  font-size: 14px;
  margin-bottom: 10px;
}
.qv-rating span {
  color: #777;
  margin-left: 6px;
}
.qv-price {
  margin-bottom: 12px;
}
.qv-price del {
  color: #888;
  margin-right: 10px;
}
.qv-price strong {
  color: #ff3b3b;
  font-size: 22px;
}
.qv-desc {
  color: #555;
  margin-bottom: 15px;
}
.qv-info label {
  font-weight: 600;
  display: block;
  margin: 12px 0 6px;
} /* Select */
.qv-select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
} /* Colors */
.qv-colors {
  display: flex;
  gap: 10px;
}
.qv-colors span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
}
.qv-colors span.active {
  border-color: #000;
} /* Quantity */
.qv-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qv-qty button {
  width: 36px;
  height: 36px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
}
.qv-qty input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  height: 36px;
} /* Buttons */
.qv-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.btn-cart {
  flex: 1;
  background: #0d6efd;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.btn-buy {
  flex: 1;
  background: #ff9f00;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.btn-cart:hover {
  background: #084fc7;
}
.btn-buy:hover {
  background: #e68a00;
}
