/* Custom CSS for Nature Care */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom font classes */
.font-poppins {
  font-family: "Poppins", sans-serif;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

/* Custom animation for loading spinner */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Product image hover effects */
.product-image-hover {
  transition: transform 0.3s ease;
}

.product-image-hover:hover {
  transform: scale(1.05);
}

/* Custom focus styles */
.custom-focus:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Print styles for order confirmation */
@media print {
  nav,
  footer,
  button {
    display: none !important;
  }

  body {
    padding: 0;
    margin: 0;
    background: white;
  }

  #orderConfirmation {
    max-width: 100% !important;
    padding: 20px !important;
  }

  .no-print {
    display: none !important;
  }
}
