/* Preloader overlay styles */
#app-preloader.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #ffffff; /* Match site background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
body.is-loading {
    overflow: hidden; /* Prevent scroll while loading */
}
#app-preloader.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader__inner {
    text-align: center;
}
.preloader__logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.preloader__spinner {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 6px solid #ffe08a; /* light amber */
    border-top-color: #ab8e66; /* brand accent */
    animation: preloader-spin 1s linear infinite;
    margin: 0 auto 16px;
}
@keyframes preloader-spin {
    to {
        transform: rotate(360deg);
    }
}
.preloader__text {
    font-family: "Jost", sans-serif;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
}
/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
    .preloader__spinner {
        animation: none;
    }
}
