.cz-discount-bar-wrap {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #f1d0e7;
  border-radius: 12px;
  background: #fff;
}

.cz-discount-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.cz-discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: #fdf2f8;
  color: #E0007D;
  border: 1px solid #f8c4e3;
}

.cz-discount-badge--active {
  background: #ecfdf5;
  color: #047857;
  border-color: #86efac;
}

.cz-discount-prices {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: #475569;
}

.cz-rule-block + .cz-rule-block {
  margin-top: 10px;
}

.cz-rule-title {
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.cz-discount-track {
  height: 8px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}

.cz-discount-bar {
  height: 100%;
  width: 0;
  transition: width 0.4s ease;
  background: linear-gradient(90deg, #E0007D, #10b981);
}

.cz-nudge-message {
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
}

.cz-rule-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.cz-pulse {
  animation: cz-pulse 0.7s ease;
}

@keyframes cz-pulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

