/* ── PAGE LOADER · De Todo Un Poco Admin ── */
/* Agrega este archivo en todos los PHP del admin con:
   <link rel="stylesheet" href="page-loader.css">
   <script src="page-loader.js" defer></script>
   (justo antes del </body> o en el <head>)
*/

#page-loader {
  position: fixed;
  inset: 0;
  background: #0d0f13;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

#page-loader.pl-in {
  opacity: 1;
  pointer-events: all;
}

#page-loader.pl-out {
  opacity: 0;
  pointer-events: none;
}

.pl-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Logo / nombre */
.pl-inner::before {
  content: 'De Todo Un Poco';
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.pl-inner::after {
  content: 'PANEL ADMINISTRATIVO';
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #3a4155;
  margin-top: -10px;
}

/* Barra de progreso */
.pl-bar {
  width: 200px;
  height: 2px;
  background: #1e232d;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}

.pl-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #34d399, #60a5fa);
  border-radius: 2px;
  transition: width 0.18s ease;
  box-shadow: 0 0 8px rgba(52,211,153,0.4);
}

/* Texto de estado */
.pl-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #3a4155;
  letter-spacing: 2px;
  text-transform: uppercase;
}