/* Фон лоадера */
body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9998;
    animation: loaderFadeIn 0.3s ease forwards;
}

/* Кружок */
body.loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    border: 3px solid #EDE4D8;
    border-top-color: #89B9B6;  /* ← твой цвет */
    border-radius: 50%;
    animation: loader-spin 0.6s linear infinite;
    z-index: 9999;
}

@keyframes loaderFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes loader-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Скрываем контент */
body.loading .phone-frame {
    opacity: 0;
    transition: opacity 0.3s ease;
}
