.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: var(--z-base);
}

.section-wrapper {
  padding: var(--space-8) var(--space-4);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.loading-screen {
  position: fixed;
  inset: 0;
  background-color: var(--cream);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 500ms ease;
}

.loading-screen.hidden {
  display: none !important;
}

.loading-flower {
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  margin-bottom: var(--space-4);
}

.loading-text {
  font-family: 'Nunito', sans-serif;
  color: var(--gray-500);
  font-size: var(--text-lg);
  animation: pulse 2s infinite;
}
