#discount-popup h2 {
  margin: 0 0 16px;
  font-size: 30px;
  color: #080652;
}
#discount-popup p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
#discount-popup button {
  background: #e17027;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
#discount-popup button:hover {
  background: #d15e1f;
}

#discount-chip {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 9px 18px;
  border-radius: 32px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: bold;
  color: #080652;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  transition: transform 0.2s;
}
#discount-chip:hover {
  transform: scale(1.05);
}
#discount-chip span:first-child {
  color: #e17027;
}

.free-transfer-sticker {
  position: absolute;
  top: -12px;
  right: -46px;
  background: linear-gradient(135deg, #ff6b6b, #f94d6a);
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(249, 77, 106, 0.3);
  transform: rotate(12deg);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 3s ease-in-out infinite;
}

.free-transfer-sticker span {
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.free-transfer-sticker::before {
  content: "★";
  font-size: 14px;
  animation: pulse 1.5s infinite;
}

.sticker-tooltip {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: #fff;
  font-size: 13px;
  font-weight: normal;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateY(8px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 11;
  pointer-events: none;
  line-height: 1.4;
}

.free-transfer-sticker:hover .sticker-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.sticker-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 18px;
  border: 6px solid transparent;
  border-bottom-color: #333;
}

@keyframes float {
  0%,
  100% {
    transform: rotate(12deg) translateY(0);
  }
  50% {
    transform: rotate(12deg) translateY(-6px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}
