/* Production-specific fixes */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif !important;
}

/* Ensure all images load correctly */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Fix for Owl Carousel in production */
.owl-carousel .owl-stage {
  display: flex;
  align-items: center;
}

.owl-carousel .owl-item {
  display: flex;
  justify-content: center;
}

/* Force font loading */
.font-poppins {
  font-family: 'Poppins', sans-serif !important;
}

/* Loading animation fix */
.fade-in {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Ensure proper stacking context */
#loading {
  z-index: 9999;
}

#scrollToTop, #whatsappBtn {
  z-index: 9998;
}

/* Fix for navigation in production */
header {
  position: relative;
  z-index: 1000;
}

/* Responsive image fix */
.responsive-img {
  width: 100%;
  height: auto;
}