#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulsing-svg {
    animation: pulse 1.5s infinite ease-in-out;
    transform-origin: center;
    fill: #c5a96a !imporant;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}