  .promo-btn {
    position: fixed;
    bottom: 377px;
    right: 0px;
    width: 111px;
    height: 40px;
    background: linear-gradient(135deg, #ff0000, #b50000);
    color: #fff;
    border-top-left-radius: 0%;
    border-bottom-left-radius: 0%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 13px;
    cursor: grab;
    z-index: 11001;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    user-select: none;
    transition: transform 0.3s ease;
    overflow: hidden;
    }
    

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); } 
  100% { transform: scale(1); }
}
  
.promo-btn span {
  font-weight: bold;
  font-size: 13px;
  background: linear-gradient(90deg, #fff, #fffe, #ff0000);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
}
.letter {
  display: inline-block;
  animation: zoomLetter 1s ease-in-out infinite;
}


.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.2s; }
.letter:nth-child(3) { animation-delay: 0.4s; }
.letter:nth-child(4) { animation-delay: 0.6s; }
.letter:nth-child(5) { animation-delay: 0.8s; }

@keyframes zoomLetter {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.5); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}
.promo-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );
  animation: shineBox 2.5s infinite;
}

@keyframes shineBox {
  0%   { left: -150%; }
  100% { left: 150%; }
}
  .promo-btn:active {
    cursor: grabbing;
    transform: scale(1.1);
  }

  .promo-info {
    position: fixed;
    bottom: 33px;
    right: 80px;
    width: 250px;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: none;
    z-index: 11000;
  }

  .promo-info h4 {
    margin: 0 0 10px;
    color: #d32f2f;
    font-weight: 500px;
  }

  .close-info {
    display: block;
    margin-top: 10px;
    text-align: right;
    cursor: pointer;
    color: #333;
    font-size: 14px;
  }
  .fa {
  margin-right: 8px; /* jarak icon ke teks */
  font-size: 20px;   /* ukuran icon */
  color: white;      /* warna icon */
}