/* Loader Styles */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f7f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.loader {
    width: 200px;
    height: 200px;
    position: relative;
    animation: pulse 2s infinite;
}

.loader img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.loader::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 3px solid #FFD700;
    border-radius: 50%;
    animation: ripple 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% {
        width: 220px;
        height: 220px;
        opacity: 1;
    }
    100% {
        width: 260px;
        height: 260px;
        opacity: 0;
    }
}

.loader-hidden {
    opacity: 0;
    pointer-events: none;
}