:root {
  --primary: #ff5a61;
  --dark: #050505;
  --dark-light: #0d0d0d;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --border: rgba(255, 255, 255, 0.08);
}

/* =====================================
PAGE LOADER
===================================== */
#wpm-page-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/*
INNER
*/
.wpm-loader-inner {
  text-align: center;
}

/*
HEART
*/
.wpm-heart-loader {
  font-size: 70px;
  color: var(--primary);
  animation: wpmPulse 1s infinite;
}

/*
TEXT
*/
.wpm-loader-inner p {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

/*
ANIMATION
*/
@keyframes wpmPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*
HIDE
*/
.wpm-loader-hide {
  opacity: 0;
  visibility: hidden;
}