/* Efectos y animaciones adicionales */
.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.producto-visible {
  animation: scaleIn 0.5s ease forwards;
}

@keyframes scaleIn {
  from {
    opacity: 0.7;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.cart-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.cart-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.success-message {
  background: rgba(40, 167, 69, 0.9);
  color: white;
  padding: 10px 20px;
  margin-top: 15px;
  border-radius: 5px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.success-message.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

.no-productos {
  width: 100%;
  text-align: center;
  padding: 3rem;
  color: #aaa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.no-productos i {
  font-size: 3rem;
  color: var(--primary-color);
  opacity: 0.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
