/* ── LOADER — flutter boot spinner ── */

#seo-cover {
    position: relative;
    top: 0; left: 0;
    width: 100%;
    min-height: 100%;
    z-index: 9999;
    background: var(--light1);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#seo-cover.hidden {
    display: none;
}

#seo-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0;
}

.seo-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.seo-loader-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.seo-loader-brand {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
}

.seo-loader-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light2);
    border-top-color: var(--green);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }