/* Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F6E1BD;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    color: white;
}

#lottie-loader {
    width: 600px;
    height: 500px;
    margin: 0 auto;
    transform: scale(1.5);
}

#lottie-loader svg path {
    stroke: #9B783B !important;
    fill: none !important;
    stroke-width: 6 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #lottie-loader {
        width: 450px;
        height: 380px;
        transform: scale(1.3);
    }
}

@media (max-width: 480px) {
    #lottie-loader {
        width: 350px;
        height: 300px;
        transform: scale(1.2);
    }
}