/* Coupon validation styles */
.coupon-feedback {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}

.feedback-icon {
  display: inline-flex;
  margin-right: 0.5rem;
}

.feedback-message {
  font-size: 0.875rem;
}

/* Animation for discount */
@keyframes highlight {
  0% { background-color: rgba(34, 197, 94, 0.2); }
  100% { background-color: transparent; }
}

.price-display {
  animation: highlight 1.5s ease-out;
  padding: 0.5rem;
  border-radius: 0.25rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .price-display {
    flex-direction: column;
  }
}
