/*
Theme Name: Kreator3D
Description: Platforma wizualizacji tuningu samochodów w 3D - PTETUNING
Version: 1.0.0
Author: PTETUNING Team
Text Domain: kreator3d
Domain Path: /languages
*/

/* Basic loading styles dla WordPress */
.k3d-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #1a1a1a;
    color: #ffffff;
}

.k3d-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #333;
    border-top: 4px solid #00d4ff;
    border-radius: 50%;
    animation: k3d-spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.k3d-loading p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}