.discount-qv-modal {
  display: none;
}

.discount-qv-modal.is-open {
  display: block;
}

.discount-qv-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 9998;
}

.discount-qv-dialog {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(760px, calc(100% - 32px));
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  z-index: 9999;
  display: grid;
  grid-template-columns: 42% 58%;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.35);
}

.discount-qv-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: rgba(255,255,255,.9);
  color: #0f172a;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.discount-qv-image-wrap {
  position: relative;
  background: #f8fafc;
  min-height: 330px;
}

.discount-qv-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: contain;
}

.discount-qv-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: linear-gradient(135deg, #dc35cf, #7c3aed);
  color: #fff;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 10px 26px rgba(124, 58, 237, .35);
}

.discount-qv-content {
  padding: 28px;
}

.discount-qv-brand {
  color: #7c3aed;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.discount-qv-content h3 {
  color: #0f172a;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 14px;
}

.discount-qv-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

#discountQvOldPrice {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 15px;
}

#discountQvNewPrice {
  color: #dc35cf;
  font-size: 28px;
  font-weight: 900;
}

.discount-qv-dates {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 14px;
  margin: 14px 0 18px;
}

.discount-qv-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.discount-qv-actions button,
.discount-qv-actions a {
  flex: 1;
  min-height: 44px;
  border-radius: 14px;
  border: 0;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#discountQvPhoneBtn {
  background: #22c55e;
  color: #fff;
}

#discountQvWebsiteBtn {
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  color: #fff;
}

@media (max-width: 680px) {
  .discount-qv-dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .discount-qv-image-wrap,
  .discount-qv-image-wrap img {
    min-height: 240px;
  }

  .discount-qv-content {
    padding: 22px;
  }

  .discount-qv-content h3 {
    font-size: 22px;
  }
}

#discounts-page .img-wrap {
  position: relative;
  overflow: hidden;
}

#discounts-page .discount-qv-btn {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(12px);
  opacity: 0;
  pointer-events: none;

  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  background: linear-gradient(135deg, #7c3aed, #4c1d95);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(124, 58, 237, .35);
  transition: .22s ease;
  white-space: nowrap;
  z-index: 4;
}

#discounts-page .product:hover .discount-qv-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
