.bulk-offer-message{
  font-size: 15px;
  color: #0057d8;
  font-weight: 500;
  background: orange;
  padding: 6px 10px;
  margin-top: 6px;
  border-left: 4px solid #1a73e8;
  border-radius: 4px;
}

#offer-rotator:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

#offer-rotator {
  display: inline-block;
  background: red; 
  color: #fff;
  font-weight: bold;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 1em;
  margin: 0.6rem auto;
  max-width: 95%;
  animation: bounceFlash 1.8s infinite ease-in-out;
  text-align: center;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-shadow: 1px 1px 2px #00000055;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  font-size: clamp(0.65rem, 1.4vw, 0.9rem);
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: red;
  color: white;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  animation: pulse 1s infinite ease-in-out;
}

.bulk-discount-note {
  font-size: 0.9em;
  font-style: italic;
  color: green;
  font-weight: bold;
  margin-top: 4px;
}


.bulk-discount-note-container {
  margin-top: 4px;
}