  /* Floating button */
  .floating-promo-btn {
    position: fixed;
    right: 16px;
    bottom: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
  }
  .floating-promo-btn img { width: 50px; height: auto; }

  /* Popup */
  #promo-popup {
    display: none;
    position: fixed;
    right: 85px;
    bottom: 105px;
    width: 320px;
    max-width: 90%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    z-index: 10001;
    overflow: hidden;
    animation: slideUp .35s ease;
  }
  #promo-popup .header-popup {
    background: #e60000;
    color: #fff;
    padding: 10px 14px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #promo-popup header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }
  #promo-popup .content {
    padding: 14px;
    font-size: 14px;
    line-height: 1.4;
  }
  #promo-popup .content img {
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
  }
  #promoClose {
    cursor:pointer;
  }
  @media only screen and (max-width: 768px) {
    #promo-popup {
      display: none;
      position: fixed;
      right: 85px;
      bottom: 130px;
      width: 260px;
      max-width: 90%;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0,0,0,.25);
      z-index: 10001;
      overflow: hidden;
      animation: slideUp .35s ease;
    }
    .floating-promo-btn {
      position: fixed;
      right: 16px;
      bottom: 130px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #ff0000;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10000;
      box-shadow: 0 4px 12px rgba(0,0,0,.3);
    }
  }
  @keyframes slideUp { from{transform:translateY(20px);opacity:0;} to{transform:translateY(0);opacity:1;} }


  #promo-popup { display: none; }

  #promo-popup.active { display: block; }

