/* An Flowers — custom styles */

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@keyframes call-pulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 42, 86, 0.55); }
  70% { box-shadow: 0 0 0 14px rgba(217, 42, 86, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 42, 86, 0); }
}

.call-pulse {
  animation: call-pulse 2.2s infinite;
}

.region-filter-btn.active {
  background-color: #d92a56 !important;
  color: white !important;
}

.cat-filter-btn.active {
  background-color: #d92a56 !important;
  color: white !important;
}

#order-modal.flex {
  display: flex;
}

.prose-flowers p {
  font-size: 1.05rem;
}

/* Simple fade-in for elements */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
