.fiyat-kampanya-bilgi {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #fff7e7, #fff0dc);
  border-left: 4px solid #ff9f1a;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  border-radius: 8px;
  margin-top: 16px;
  animation: fadeInCampaign 0.6s ease-in-out;
}

.fiyat-kampanya-bilgi strong {
  color: #b73522;
  font-weight: 600;
}

/* Kritik stok için ayrı vurgu */
.fiyat-kampanya-bilgi.kritik-stok {
  background-color: #fff3f0;
  border: 1px solid #e74c3c;
  color: #c0392b;
  animation: titreme 0.25s ease-in-out 2;
}

@keyframes titreme {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-1px); }
  100% { transform: translateX(0); }
}
