/* GreenEPOS loading animation: the wordmark stays still, the trolley slides into its rounded frame from the left,
   then the three motion lines pulse one after another (left to right) for as long as loading lasts. */

.greenepos-loader-splash{position:fixed;inset:0;z-index:1000;display:grid;place-items:center;background:#fff;opacity:1;transition:opacity .35s ease,visibility .35s}
.greenepos-loader-splash.greenepos-loader-out{opacity:0;visibility:hidden}

.greenepos-loader-logo{display:block;width:min(380px,74vw);height:auto}

/* The trolley (with its motion lines) enters from outside the frame's left edge; the frame's clip path hides the part still outside. */
.greenepos-loader-cart{animation:greenepos-loader-slide .95s cubic-bezier(.22,.9,.28,1) backwards}
@keyframes greenepos-loader-slide{from{transform:translateX(-118px)}to{transform:translateX(0)}}

/* Sequential pulse: line 1, then 2, then 3, starting once the trolley has landed. */
.greenepos-loader-line{animation:greenepos-loader-pulse 1.1s ease-in-out .95s infinite backwards}
.greenepos-loader-line-2{animation-delay:1.15s}
.greenepos-loader-line-3{animation-delay:1.35s}
@keyframes greenepos-loader-pulse{0%,100%{opacity:.25}45%{opacity:1;stroke:#19c39a}}

@media (prefers-reduced-motion:reduce){
    .greenepos-loader-cart,.greenepos-loader-line{animation:none}
}
