/* ==========================================================================
   ZARA BEAUTY - PREISE SEITE CSS
   Elegante Preistabellen und moderne Layouts
   ========================================================================== */

@import url("01-prices-hero.css");
@import url("02-price-tables.css");
@import url("03-price-filters.css");
@import url("04-price-cta.css");

.main {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Price animations */
@keyframes priceSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-card,
.package-card {
  animation: priceSlideIn 0.6s ease-out;
}

