/* Loading Overlay - iFruut */
#ifruut-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#ifruut-loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

#ifruut-loading-overlay .spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(125, 157, 67, 0.2);
    border-top-color: #7d9d43;
    border-right-color: #7d9d43;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
