#promo-popup {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(15, 32, 67, 0.9) !important; /* Šiek tiek tamsesnis fonas geresniam fejerverkų kontrastui */
    z-index: 999999 !important;
    justify-content: center;
    align-items: center;
    font-family: 'Raleway', sans-serif;
  }

  .popup-content {
    background: #ffffff !important;
    width: 95%;
    max-width: 500px;
    /* Pakeistas padding: mažiau viršuje, kad $100 būtų aukščiau */
    padding: 30px 40px 40px;
    position: relative !important;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    overflow: hidden;
  }

  /* Dekoratyvinė linija viršuje */
  .popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #2d56a3, #f7b529);
  }

  .popup-icon {
    width: 70px;
    height: 70px;
    background: #fdf4e3;
    color: #f7b529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px; /* Šiek tiek mažiau maržos */
  }

  /* Akcentas tekstui - dabar didesnis ir aukščiau */
  .highlight-price {
    color: #f7b529;
    display: block;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px;
    line-height: 1.1;
  }

  .popup-content h2 {
    color: #2d56a3;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: none; /* Neleisk tėvinėms taisyklėms visko paversti didžiosiomis */
  }

  .popup-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .popup-btn {
    display: block;
    background: #2d56a3;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(45, 86, 163, 0.3);
  }

  .popup-btn:hover {
    background: #1e3a73;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(45, 86, 163, 0.4);
  }

  .popup-note {
    display: block;
    margin-top: 25px;
    font-size: 12px;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    color: #cbd5e0;
    cursor: pointer;
    line-height: 1;
    z-index: 10; /* Užtikrink, kad būtų virš visko */
  }

  .close-popup:hover { color: #2d56a3; }