.spinner {
    width: 46px;
    height: 46px;

    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid #ff3b3b;

    box-shadow:
            0 0 12px rgba(255, 60, 60, 0.4),
            inset 0 0 8px rgba(255, 60, 60, 0.2);

    animation: spin 0.9s linear infinite;
}

.loading-text {
    font-size: 14px;
    color: #c9b37a;
    letter-spacing: 0.5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 10;

    background: rgba(0, 0, 0, 0.25);
}

.loading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    height: 100%;
    gap: 12px;
}