/**
 * CVZ Availability - Modern Styles
 * 
 * Custom styles for the availability component
 */

/* Custom pulse animation for availability indicator */
@keyframes cvz-pulse-custom {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.5);
  }
}

.cvz-pulse-custom {
  animation: cvz-pulse-custom 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Availability wrapper */
.cvz-availability-wrapper {
  margin: 16px 0;
}

/* Hover effects for better UX */
.cvz-availability-wrapper .bg-white:hover {
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
}

/* Ensure proper spacing in WooCommerce context */
.woocommerce .cvz-availability-wrapper {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cvz-availability-wrapper {
    margin: 12px 0;
  }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
  .cvz-availability-wrapper .bg-white {
    background-color: #1f2937;
    border-color: #374151;
  }

  .cvz-availability-wrapper .text-gray-600 {
    color: #9ca3af;
  }
}

/* Print styles */
@media print {
  .cvz-availability-wrapper .shadow-sm,
  .cvz-availability-wrapper .shadow-md {
    box-shadow: none !important;
  }

  .cvz-availability-wrapper .hover\:shadow-md:hover {
    box-shadow: none !important;
  }
}
