/*<!-- ✅ Popup CSS -->*/
  .popup-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    transition: all 0.4s ease;
  }

  .popup-box {
    position: relative;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    overflow: hidden;
    min-height: 120px;
    width: 320px;
    max-width: 92vw;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s ease;
    font-family: "Inter", sans-serif;
  }

  .popup-show {
    transform: translateX(0);
    opacity: 1;
  }

  .popup-hide {
    transform: translateX(-120%);
    opacity: 0;
  }

  .popup-badge {
    position: absolute;
    top: 8px;
    left: 10px;
    background: #e8f2ff;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .popup-time {
    position: absolute;
    top: 8px;
    right: 10px;
    color: #9ca3af;
    font-size: 11px;
  }

  .popup-text {
    flex: 1;
    font-size: 14px;
    color: #1f2937;
    line-height: 1.45;
    margin-top: 25px;
    padding-right: 8px;
  }

  .popup-text strong {
    color: #000;
  }

  .popup-verify {
    display: flex;
    align-items: center;
    color: #2563eb;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
  }

  .popup-verify svg {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    color: #3b82f6;
  }

  .popup-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 25px;
  }

  @media (max-width: 480px) {
    .popup-box {
      width: 92vw;
      padding: 12px;
      border-radius: 10px;
    }
    .popup-text {
      font-size: 13px;
      line-height: 1.4;
    }
    .popup-img {
      width: 55px;
      height: 55px;
    }
  }