/* ================= TOP RIGHT MINI POPUP ================= */

.top-product-popup {
  position: fixed;
  top: 90px;        /* Navbar height ke hisaab se adjust */
  right: 20px;      /* 🔥 left hatao, right add karo */
  width: 350px;
  background: #021061;
  color: white;
  padding: 15px 18px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  font-size: 13px;
  line-height: 1.5;
  display: none;
  z-index: 2000;
  animation: slideDownRight 0.3s ease;
}

/* Arrow effect (optional but premium look) */
.top-product-popup::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 25px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent #021061 transparent;
}

/* Animation */
@keyframes slideDownRight {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-product-popup {
    right: 10px;
    width: 90%;
  }
}