/*
 * NxtGen Review — sticky.css
 * Sticky bar at top of review page
 */

#nxrv-page .nxrv-sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #ffffff;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}

#nxrv-page .nxrv-sticky__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

#nxrv-page .nxrv-sticky__persona {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #374151;
}

#nxrv-page .nxrv-sticky__persona strong {
  color: #6C63FF;
  font-weight: 700;
}

#nxrv-page .nxrv-sticky__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  #nxrv-page .nxrv-sticky {
    padding: 10px 20px;
  }
}

@media (max-width: 640px) {
  #nxrv-page .nxrv-sticky {
    padding: 8px 16px;
  }
  #nxrv-page .nxrv-sticky__price {
    display: none;
  }
}
