/* Utility Styles */

/* Text Emphasis */
.emphasis {
  font-style: italic;
  /* Could add color or weight if desired */
  /* color: var(--color-primary); */ 
}

/* Price Highlighting */
.price {
  color: var(--color-accent);
  font-weight: bold;
}

/* Basic Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Animation Placeholders */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
} 