/* Стили для маски телефона */
.woocommerce-Input[type="tel"] {
    font-family: monospace;
    letter-spacing: 1px;
}

.nasa-phone-notice {
    color: #e74c3c !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: block !important;
}

/* Анимация появления уведомления */
.nasa-phone-notice.show {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для поля с ошибкой */
.woocommerce-Input[type="tel"].error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 5px rgba(231, 76, 60, 0.3) !important;
}

/* Успешная валидация */
.woocommerce-Input[type="tel"].success {
    border-color: #27ae60 !important;
    box-shadow: 0 0 5px rgba(39, 174, 96, 0.3) !important;
}