.np-quick-view {
  position: fixed;
  inset: 0;
  z-index: 120;
  overflow-y: auto;
  color: #002b80;
  font-family: "Outfit", sans-serif;
}
.np-quick-view.hidden,
.np-quick-view .hidden {
  display: none;
}
.np-quick-view * {
  box-sizing: border-box;
}
.np-qv-backdrop {
  position: fixed;
  inset: 0;
  background: rgb(0 27 70 / 55%);
}
.np-qv-positioner {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  pointer-events: none;
}
.np-qv-panel {
  position: relative;
  width: 100%;
  max-width: 980px;
  border: 1px solid #dce5f1;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  pointer-events: auto;
  box-shadow: 0 24px 70px rgb(0 27 70 / 20%);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.np-qv-panel.opacity-0 {
  opacity: 0;
  transform: translateY(8px);
}
.np-qv-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #dce5f1;
  border-radius: 8px;
  background: #fff;
  color: #002b80;
  cursor: pointer;
}
.np-qv-close:hover {
  background: #eef6ff;
}
.np-qv-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.np-qv-image-area {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 400px;
  padding: 36px;
  background: #f7faff;
  border-right: 1px solid #dce5f1;
}
#qv-product-image {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: contain;
}
.np-qv-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: #f7faff;
  z-index: 1;
}
.np-qv-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #dce5f1;
  border-top-color: #002b80;
  border-radius: 50%;
  animation: np-qv-spin 0.8s linear infinite;
}
@keyframes np-qv-spin {
  to {
    transform: rotate(360deg);
  }
}
.np-qv-details {
  min-width: 0;
  padding: 64px 32px 32px;
  overflow-wrap: anywhere;
}
.np-qv-intro {
  padding: 20px;
  background: #eef6ff;
  border-radius: 8px;
  margin-bottom: 24px;
}
.np-qv-eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.np-qv-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #536787;
  font-size: 12px;
}
#qv-product-brand {
  margin: 0;
}
#qv-new-badge {
  padding: 3px 8px;
  border-radius: 4px;
  background: #fff;
  color: #002b80;
}
#qv-product-name {
  margin: 10px 0 14px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 650;
  color: #002b80;
}
.np-qv-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #536787;
}
.np-qv-price {
  margin-bottom: 20px;
}
.np-qv-description {
  font-size: 14px;
  line-height: 1.7;
  color: #536787;
}
.np-qv-description p {
  margin: 0 0 12px;
}
.np-qv-description ul,
.np-qv-description ol {
  padding-left: 20px;
}
.np-qv-expiry {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-top: 20px;
  border: 1px solid #f4d49c;
  border-radius: 8px;
  background: #fffbeb;
  color: #854d0e;
  font-size: 13px;
}
.np-qv-expiry p {
  margin: 4px 0 0;
}
.np-qv-actions {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #dce5f1;
}
#qv-action-buttons {
  margin-top: 16px;
}
#qv-action-buttons > button,
#qv-action-buttons > a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  background: #e9002b;
  color: #fff;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
}
#qv-action-buttons > :hover {
  background: #bf0023;
}
#qv-action-buttons > :disabled {
  background: #eef2f6;
  color: #64748b;
  cursor: not-allowed;
}
.np-qv-details-link {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 14px 0 0;
  color: #002b80;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.np-qv-details-link:hover {
  text-decoration: underline;
}
.np-quick-view a:focus-visible,
.np-quick-view button:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 3px;
}
@media (max-width: 767px) {
  .np-qv-positioner {
    padding: 16px 12px;
  }
  .np-qv-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .np-qv-image-area {
    min-height: 250px;
    padding: 24px 48px;
    border-right: 0;
    border-bottom: 1px solid #dce5f1;
  }
  #qv-product-image {
    height: 220px;
  }
  .np-qv-details {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .np-qv-panel {
    transition: none;
  }
  .np-qv-spinner {
    animation: none;
  }
}
