/* Global / Generic Loader Styles */
.loader-progress-container {
    width: 300px;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

/* IDs */
#loader-fill {
    width: 0%;
    height: 100%;
    background: var(--color-accent, #cda45e);
    transition: width 0.4s ease-out;
    box-shadow: 0 0 10px rgba(205, 164, 94, 0.5);
}



#site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.8s ease-out;
}

#site-loader img {
    width: 120px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}