.discount-info {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.discount-info-header {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.discount-info-header svg {
  width: 24px;
  height: 24px;
}

.discount-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.discount-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.discount-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.discount-amount {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.discount-condition {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .discount-grid {
    grid-template-columns: 1fr;
  }
}

.info-message {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 12px;
  padding: 15px 20px;
  margin: 20px 0;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-message svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.shiny-yellow {
    color: #FFFF00; /* A bright, shiny yellow (gold) color */
    font-weight: bold; /* Optional, makes the text stand out */
    font-style: italic;
}

@media (max-width: 768px) {
  .info-message {
    font-size: 0.9rem;
    padding: 12px 16px;
  }

  .info-message svg {
    width: 18px;
    height: 18px;
  }
}
